diff --git a/manual/src/adding_a_parser.md b/manual/src/adding_a_parser.md index 1b6903b9d4..e9c4fb7a43 100644 --- a/manual/src/adding_a_parser.md +++ b/manual/src/adding_a_parser.md @@ -51,7 +51,6 @@ Add an entry to `tree_sitter_parser.rs` for your language. Json => { let language = unsafe { tree_sitter_json() }; TreeSitterConfig { - name: "JSON", language, atom_nodes: vec!["string"].into_iter().collect(), delimiter_tokens: vec![("{", "}"), ("[", "]")], @@ -64,8 +63,6 @@ Json => { } ``` -`name` is the human-readable name shown in the UI. - `atom_nodes` is a list of tree-sitter node names that should be treated as atoms even though the nodes have children. This is common for things like string literals or interpolated strings, where the diff --git a/vendor/tree-sitter-markdown/.github/ISSUE_TEMPLATE/bug_report.md b/vendor/tree-sitter-markdown/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000000..34cf6bf50d --- /dev/null +++ b/vendor/tree-sitter-markdown/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,20 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** + +**Code example** +```markdown +Your example here +``` + +**Expected behavior** + + +**Actual behavior** diff --git a/vendor/tree-sitter-markdown/.github/ISSUE_TEMPLATE/feature_request.md b/vendor/tree-sitter-markdown/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000000..35949577f8 --- /dev/null +++ b/vendor/tree-sitter-markdown/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,11 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +assignees: '' + +--- + + + diff --git a/vendor/tree-sitter-markdown/.github/workflows/node.js.yml b/vendor/tree-sitter-markdown/.github/workflows/node.js.yml new file mode 100644 index 0000000000..2e1c5bde78 --- /dev/null +++ b/vendor/tree-sitter-markdown/.github/workflows/node.js.yml @@ -0,0 +1,28 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: Node.js CI + +on: + push: + branches: [ "split_parser" ] + pull_request: + branches: [ "split_parser" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js 14 + uses: actions/setup-node@v3 + with: + node-version: 14 + cache: 'npm' + - run: npm ci + - run: npm run build --if-present + - name: Check grammar is compiled correctly + run: git diff --exit-code + - run: npm test diff --git a/vendor/tree-sitter-markdown/.gitignore b/vendor/tree-sitter-markdown/.gitignore new file mode 100644 index 0000000000..6844e0a87f --- /dev/null +++ b/vendor/tree-sitter-markdown/.gitignore @@ -0,0 +1,3 @@ +node_modules +build +target diff --git a/vendor/tree-sitter-markdown/CONTRIBUTING.md b/vendor/tree-sitter-markdown/CONTRIBUTING.md new file mode 100644 index 0000000000..26e2f7ffeb --- /dev/null +++ b/vendor/tree-sitter-markdown/CONTRIBUTING.md @@ -0,0 +1,70 @@ +# Contributing + +All contributions are welcome. Specifically, if you found a bug or have a +suggestion for a new feature or markdown extension, you can always open an +[issue] or [pull request]. + +## Issues + +If you open an issue please give a short description of your bug or feature +along with a code example. If there is a relevant spec like the [CommonMark +Spec][commonmark] or the [GitHub Flavored Markdown Spec][gfm] please link it in +the issue. + +Any feature suggestions are welcome. The grammar should by default only support +very common syntax, but any extension can be implemented behind a compile time +flag. (See below) + +Some bug reports belong in other repositories if they only concern the +implementation of the grammar in a specific context like `nvim-treesitter`, but +you can always open an issue here and I will point you in the right direction. + +## Code Overview + +Please refer to the [tree-sitter spec] for more details on how to write a tree- +sitter grammar. + +This parse is split into two grammars. One for block structure, which can be +found in the `tree-sitter-markdown` folder, and one for inline structure, which +can be found in the `tree-sitter-markdown-inline` folder. Components that are +parts of either grammar can be found in the `common` folder. + +For either of the grammar the most important files are the `grammar.js` which +defines most nodes and the `src/scanner.cc` which defines nodes that cannot +be parsed with normal tree-sitter rules. All other files in the `src` subfolder +are auto-generated by running `tree-sitter generate --no-bindings`. (You need to +install the [tree-sitter cli tool][tree-sitter-cli] first.) + +Some syntactical components can be enabled or disabled by environment variables +at compile time. The logic for this can be found in the `common/grammar.js` +file. + +Tests are located in the `corpus` subfolder: +* `spec.txt` is taken from the examples in the [GFM spec][gfm]. +* `failing.txt` are those examples from the spec that do not pass yet. +* `issues.txt` are test cases covering solved issues. +* `extension_<>.txt` are covering specific extensions. Some of these are also + taken from the GFM spec. + +## Pull Requests + +I will happily accept any pull requests. + +Before submitting any code please check the following: + +* You ran `tree-sitter generate --no-bindings` in the `tree-sitter-markdown` or + `tree-sitter-markdown-inline` directories respecively after modifying any + `grammar.js` file. +* When running `tree-sitter test` only the cases defined in `failing.txt` or + `extension_<>.txt` for not activated extensions fail for **both** gramars. +* If you implemented new behavior please add tests. (In most cases these belong + in a `extension_<>.txt`.) +* You deleted any auto-generated bindings and files for debugging purposes + like `log.html` + +[issue]: https://github.com/MDeiml/tree-sitter-markdown/issues/new +[pull request]: https://github.com/MDeiml/tree-sitter-markdown/compare +[gfm]: https://github.github.com/gfm/ +[commonmark]: https://spec.commonmark.org/ +[tree-sitter spec]: https://tree-sitter.github.io/tree-sitter/ +[tree-sitter-cli]: https://github.com/tree-sitter/tree-sitter/blob/master/cli/README.md diff --git a/vendor/tree-sitter-markdown/Cargo.toml b/vendor/tree-sitter-markdown/Cargo.toml new file mode 100644 index 0000000000..647c3d0951 --- /dev/null +++ b/vendor/tree-sitter-markdown/Cargo.toml @@ -0,0 +1,35 @@ +[package] +name = "tree-sitter-md" +description = "markdown grammar for the tree-sitter parsing library" +version = "0.1.1" +keywords = ["incremental", "parsing", "markdown"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/MDeiml/tree-sitter-markdown" +edition = "2018" +license = "MIT" + +build = "bindings/rust/build.rs" +include = [ + "bindings/rust/*", + "tree-sitter-markdown/src/*", + "tree-sitter-markdown-inline/src/*", + "tree-sitter-markdown/queries/*", + "tree-sitter-markdown-inline/queries/*", + "benchmark/main.rs", +] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = "~0.20" + +[build-dependencies] +cc = "1.0" + +[[bin]] +name = "benchmark" +path = "benchmark/main.rs" + +[profile.release] +debug = true diff --git a/vendor/tree-sitter-markdown/LICENSE b/vendor/tree-sitter-markdown/LICENSE new file mode 100644 index 0000000000..c125939af9 --- /dev/null +++ b/vendor/tree-sitter-markdown/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Matthias Deiml + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/tree-sitter-markdown/README.md b/vendor/tree-sitter-markdown/README.md new file mode 100644 index 0000000000..7236b6255b --- /dev/null +++ b/vendor/tree-sitter-markdown/README.md @@ -0,0 +1,16 @@ +# tree-sitter-markdown +A markdown parser for tree-sitter + +For now this implements the [CommonMark Spec](https://spec.commonmark.org/). Maybe it will be extended to support [Github flavored markdown](https://github.github.com/gfm/) + +## Structure + +The parser is spit into two grammars. One for the [block structure](https://spec.commonmark.org/0.30/#blocks-and-inlines) which can be found in `/tree-sitter-markdown` and one for the [inline structure](https://spec.commonmark.org/0.30/#inlines) which is in `/tree-sitter-markdown-inline`. +Because of this the entire document has to be scanned twice in order to be fully parsed. +This is motivated by the [parsing strategy section](https://spec.commonmark.org/0.30/#appendix-a-parsing-strategy) of the CommonMark Spec which suggests doing exactly this: Parsing the document twice, first determining the block structure and then parsing any inline content. + +It also helps managing complexity, which was a problem with earlier versions of this parser, by allowing block and inline structure to be considered seperately. This was not the case as tree-sitters dynamic precedence can create hard to predict effects. + +## Usage + +To use the two grammars, first parse the document with the block grammar. Then perform a second parse with the inline grammar using `ts_parser_set_included_ranges` to specify which parts are inline content. These parts are marked as `inline` nodes. Children of those inline nodes should be excluded from these ranges. For an example implementation see `lib.rs` in the `bindings` folder. diff --git a/vendor/tree-sitter-markdown/benchmark/main.rs b/vendor/tree-sitter-markdown/benchmark/main.rs new file mode 100644 index 0000000000..ecefd01824 --- /dev/null +++ b/vendor/tree-sitter-markdown/benchmark/main.rs @@ -0,0 +1,21 @@ +use tree_sitter_md::*; + +fn main() { + let mut parser = MarkdownParser::default(); + let filename = std::env::args().nth(1).unwrap(); + let source = std::fs::read(filename).unwrap(); + let mut tree = parser.parse(&source, None).unwrap(); + tree.edit(&tree_sitter::InputEdit { + start_byte: 0, + old_end_byte: 1, + new_end_byte: 0, + start_position: tree_sitter::Point::new(0, 0), + old_end_position: tree_sitter::Point::new(0, 1), + new_end_position: tree_sitter::Point::new(0, 0), + }); + reparse(&mut parser, &source[1..], tree); +} + +fn reparse(parser: &mut MarkdownParser, source: &[u8], old_tree: MarkdownTree) { + parser.parse(source, Some(&old_tree)); +} diff --git a/vendor/tree-sitter-markdown/binding.gyp b/vendor/tree-sitter-markdown/binding.gyp new file mode 100644 index 0000000000..a591615a37 --- /dev/null +++ b/vendor/tree-sitter-markdown/binding.gyp @@ -0,0 +1,23 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_markdown_binding", + "include_dirs": [ + " +#include "nan.h" + +using namespace v8; + +extern "C" TSLanguage * tree_sitter_markdown(); +extern "C" TSLanguage * tree_sitter_markdown_inline(); + +namespace { + +NAN_METHOD(New) {} + +void Init(Local exports, Local module) { + Local tpl = Nan::New(New); + tpl->SetClassName(Nan::New("Language").ToLocalChecked()); + tpl->InstanceTemplate()->SetInternalFieldCount(1); + + Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); + + Local instance_block = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); + Nan::SetInternalFieldPointer(instance_block, 0, tree_sitter_markdown()); + Nan::Set(instance_block, Nan::New("name").ToLocalChecked(), Nan::New("markdown").ToLocalChecked()); + Nan::Set(exports, Nan::New("markdown").ToLocalChecked(), instance_block); + + Local instance_inline = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); + Nan::SetInternalFieldPointer(instance_inline, 0, tree_sitter_markdown_inline()); + Nan::Set(instance_inline, Nan::New("name").ToLocalChecked(), Nan::New("markdown_inline").ToLocalChecked()); + Nan::Set(exports, Nan::New("markdown_inline").ToLocalChecked(), instance_inline); +} + +NODE_MODULE(tree_sitter_markdown_binding, Init) + +} // namespace + diff --git a/vendor/tree-sitter-markdown/bindings/node/index.js b/vendor/tree-sitter-markdown/bindings/node/index.js new file mode 100644 index 0000000000..f31eb9e198 --- /dev/null +++ b/vendor/tree-sitter-markdown/bindings/node/index.js @@ -0,0 +1,21 @@ +try { + module.exports = require("../../build/Release/tree_sitter_markdown_binding"); +} catch (error1) { + if (error1.code !== 'MODULE_NOT_FOUND') { + throw error1; + } + try { + module.exports = require("../../build/Debug/tree_sitter_markdown_binding"); + } catch (error2) { + if (error2.code !== 'MODULE_NOT_FOUND') { + throw error2; + } + throw error1 + } +} + +try { + module.exports.nodeTypeInfo = require("../../tree-sitter-markdown/src/node-types.json"); + module.exports.nodeTypeInfoInline = require("../../tree-sitter-markdown-inline/src/node-types.json"); +} catch (_) {} + diff --git a/vendor/tree-sitter-markdown/bindings/rust/build.rs b/vendor/tree-sitter-markdown/bindings/rust/build.rs new file mode 100644 index 0000000000..c6522db28d --- /dev/null +++ b/vendor/tree-sitter-markdown/bindings/rust/build.rs @@ -0,0 +1,48 @@ +fn main() { + let src_dir_block = std::path::Path::new("tree-sitter-markdown/src"); + let src_dir_inline = std::path::Path::new("tree-sitter-markdown-inline/src"); + + let mut c_config = cc::Build::new(); + c_config.include(&src_dir_block); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); + let parser_path = src_dir_block.join("parser.c"); + c_config.file(&parser_path); + c_config.compile("parser_block"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + let mut c_config = cc::Build::new(); + c_config.include(&src_dir_inline); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); + let parser_path = src_dir_inline.join("parser.c"); + c_config.file(&parser_path); + c_config.compile("parser_inline"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + let mut cpp_config = cc::Build::new(); + cpp_config.cpp(true); + cpp_config.include(&src_dir_block); + cpp_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable"); + let scanner_path = src_dir_block.join("scanner.cc"); + cpp_config.file(&scanner_path); + cpp_config.compile("scanner_block"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + + let mut cpp_config = cc::Build::new(); + cpp_config.cpp(true); + cpp_config.include(&src_dir_inline); + cpp_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable"); + let scanner_path = src_dir_inline.join("scanner.cc"); + cpp_config.file(&scanner_path); + cpp_config.compile("scanner_inline"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); +} diff --git a/vendor/tree-sitter-markdown/bindings/rust/lib.rs b/vendor/tree-sitter-markdown/bindings/rust/lib.rs new file mode 100644 index 0000000000..83d608d417 --- /dev/null +++ b/vendor/tree-sitter-markdown/bindings/rust/lib.rs @@ -0,0 +1,274 @@ +//! This crate provides markdown language support for the [tree-sitter][] parsing library. +//! +//! It contains two grammars: [`language`] to parse the block structure of markdown documents and +//! [`inline_language`] to parse inline content. +//! +//! It also supplies [`MarkdownParser`] as a convenience wrapper around the two grammars. +//! [`MarkdownParser::parse`] returns a [`MarkdownTree`] instread of a [`Tree`][Tree]. This struct +//! contains a block tree and an inline tree for each node in the block tree that has inline +//! content +//! +//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +//! [Tree]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Tree.html +//! [tree-sitter]: https://tree-sitter.github.io/ + +use std::collections::HashMap; + +use tree_sitter::{InputEdit, Language, Node, Parser, Query, QueryCursor, Range, Tree}; + +extern "C" { + fn tree_sitter_markdown() -> Language; + fn tree_sitter_markdown_inline() -> Language; +} + +/// Get the tree-sitter [Language][] for the block grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn language() -> Language { + unsafe { tree_sitter_markdown() } +} + +/// Get the tree-sitter [Language][] for the inline grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn inline_language() -> Language { + unsafe { tree_sitter_markdown_inline() } +} + +pub const HIGHLIGHT_QUERY_BLOCK: &str = + include_str!("../../tree-sitter-markdown/queries/highlights.scm"); +pub const INJECTION_QUERY_BLOCK: &str = + include_str!("../../tree-sitter-markdown/queries/injections.scm"); +pub const HIGHLIGHT_QUERY_INLINE: &str = + include_str!("../../tree-sitter-markdown-inline/queries/highlights.scm"); +pub const INJECTION_QUERY_INLINE: &str = + include_str!("../../tree-sitter-markdown-inline/queries/injections.scm"); + +/// The content of the [`node-types.json`][] file for the block grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES_BLOCK: &str = include_str!("../../tree-sitter-markdown/src/node-types.json"); + +/// The content of the [`node-types.json`][] file for the inline grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES_INLINE: &str = + include_str!("../../tree-sitter-markdown-inline/src/node-types.json"); + +/// The matches of this query are the ranges that should be passed to the inline grammar +pub const INLINE_INJECTION_QUERY: &str = "(inline) @inline"; + +/// A parser that produces [`MarkdownTree`]s. +/// +/// This is a convenience wrapper around [`language`] and [`inline_language`]. +pub struct MarkdownParser { + parser: Parser, + block_language: Language, + inline_language: Language, + inline_injection_query: Query, + query_cursor: QueryCursor, +} + +#[derive(Debug, Clone)] +pub struct MarkdownTree { + block_tree: Tree, + inline_trees: Vec, + inline_indices: HashMap, +} + +impl MarkdownTree { + /// Edit the block tree and inline trees to keep them in sync with source code that has been + /// edited. + /// + /// You must describe the edit both in terms of byte offsets and in terms of + /// row/column coordinates. + pub fn edit(&mut self, edit: &InputEdit) { + self.block_tree.edit(edit); + for inline_tree in self.inline_trees.iter_mut() { + inline_tree.edit(edit); + } + } + + /// Returns the block tree for the parsed document + pub fn block_tree(&self) -> &Tree { + &self.block_tree + } + + /// Returns the inline tree for the given inline node. + /// + /// Returns `None` if the given node does not have an associated inline tree. Either because + /// the nodes type is not `inline` or because the inline content is empty. + pub fn inline_tree(&self, parent: &Node) -> Option<&Tree> { + let index = *self.inline_indices.get(&parent.id())?; + Some(&self.inline_trees[index]) + } +} + +impl Default for MarkdownParser { + fn default() -> Self { + let block_language = language(); + let inline_language = inline_language(); + let parser = Parser::new(); + let inline_injection_query = Query::new(block_language, INLINE_INJECTION_QUERY) + .expect("Could not load injection query"); + let query_cursor = QueryCursor::new(); + MarkdownParser { + parser, + block_language, + inline_language, + inline_injection_query, + query_cursor, + } + } +} + +impl MarkdownParser { + /// Parse a slice of UTF8 text. + /// + /// # Arguments: + /// * `text` The UTF8-encoded text to parse. + /// * `old_tree` A previous syntax tree parsed from the same document. + /// If the text of the document has changed since `old_tree` was + /// created, then you must edit `old_tree` to match the new text using + /// [MarkdownTree::edit]. + /// + /// Returns a [MarkdownTree] if parsing succeeded, or `None` if: + /// * The timeout set with [tree_sitter::Parser::set_timeout_micros] expired + /// * The cancellation flag set with [tree_sitter::Parser::set_cancellation_flag] was flipped + pub fn parse(&mut self, text: &[u8], old_tree: Option<&MarkdownTree>) -> Option { + let MarkdownParser { + parser, + block_language, + inline_language, + inline_injection_query, + query_cursor, + } = self; + parser + .set_included_ranges(&[]) + .expect("Can not set included ranges to whole document"); + parser + .set_language(*block_language) + .expect("Could not load block grammar"); + let block_tree = parser.parse(text, old_tree.map(|tree| &tree.block_tree))?; + let (mut inline_trees, mut inline_indices) = if let Some(old_tree) = old_tree { + let len = old_tree.inline_trees.len(); + (Vec::with_capacity(len), HashMap::with_capacity(len)) + } else { + (Vec::new(), HashMap::new()) + }; + let mut tree_cursor = block_tree.walk(); + parser + .set_language(*inline_language) + .expect("Could not load inline grammar"); + for (i, capture) in query_cursor + .matches(inline_injection_query, block_tree.root_node(), text) + .flat_map(|query_match| query_match.captures) + .enumerate() + { + let mut range = capture.node.range(); + let children_iter = capture.node.named_children(&mut tree_cursor); + let mut ranges = Vec::with_capacity(children_iter.size_hint().0 + 1); + for child in children_iter { + let child_range = child.range(); + ranges.push(Range { + start_byte: range.start_byte, + start_point: range.start_point, + end_byte: child_range.start_byte, + end_point: child_range.start_point, + }); + range.start_byte = child_range.end_byte; + range.start_point = child_range.end_point; + } + ranges.push(range); + parser.set_included_ranges(&ranges).ok()?; + let inline_tree = parser.parse( + text, + old_tree.and_then(|old_tree| old_tree.inline_trees.get(i)), + )?; + inline_trees.push(inline_tree); + inline_indices.insert(capture.node.id(), i); + } + drop(tree_cursor); + inline_trees.shrink_to_fit(); + inline_indices.shrink_to_fit(); + Some(MarkdownTree { + block_tree, + inline_trees, + inline_indices, + }) + } +} + +#[cfg(test)] +mod tests { + use tree_sitter::Point; + + use super::*; + + #[test] + fn can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(language()) + .expect("Error loading markdown language"); + let mut inline_parser = tree_sitter::Parser::new(); + inline_parser + .set_language(inline_language()) + .expect("Error loading markdown language"); + } + + #[test] + fn inline_ranges() { + let code = "# title\n\nInline [content].\n"; + let mut parser = MarkdownParser::default(); + let mut tree = parser.parse(code.as_bytes(), None).unwrap(); + dbg!(&tree); + + let section = tree.block_tree().root_node().child(0).unwrap(); + assert_eq!(section.kind(), "section"); + let heading = section.child(0).unwrap(); + assert_eq!(heading.kind(), "atx_heading"); + let paragraph = section.child(1).unwrap(); + assert_eq!(paragraph.kind(), "paragraph"); + let inline = paragraph.child(0).unwrap(); + assert_eq!(inline.kind(), "inline"); + assert_eq!( + tree.inline_tree(&inline) + .unwrap() + .root_node() + .child(0) + .unwrap() + .kind(), + "shortcut_link" + ); + + let code = "# Title\n\nInline [content].\n"; + tree.edit(&InputEdit { + start_byte: 2, + old_end_byte: 3, + new_end_byte: 3, + start_position: Point { row: 0, column: 2 }, + old_end_position: Point { row: 0, column: 3 }, + new_end_position: Point { row: 0, column: 3 }, + }); + let tree = parser.parse(code.as_bytes(), Some(&tree)).unwrap(); + + let section = tree.block_tree().root_node().child(0).unwrap(); + assert_eq!(section.kind(), "section"); + let heading = section.child(0).unwrap(); + assert_eq!(heading.kind(), "atx_heading"); + let paragraph = section.child(1).unwrap(); + assert_eq!(paragraph.kind(), "paragraph"); + let inline = paragraph.child(0).unwrap(); + assert_eq!(inline.kind(), "inline"); + assert_eq!( + tree.inline_tree(&inline) + .unwrap() + .root_node() + .named_child(0) + .unwrap() + .kind(), + "shortcut_link" + ); + } +} diff --git a/vendor/tree-sitter-markdown/common/grammar.js b/vendor/tree-sitter-markdown/common/grammar.js new file mode 100644 index 0000000000..5465d635c2 --- /dev/null +++ b/vendor/tree-sitter-markdown/common/grammar.js @@ -0,0 +1,126 @@ +exports.EXTENSION_DEFAULT = !process.env.NO_DEFAULT_EXTENSIONS; +exports.EXTENSION_GFM = process.env.EXTENSION_GFM || exports.EXTENSION_DEFAULT; +exports.EXTENSION_TASK_LIST = process.env.EXTENSION_TASK_LIST || exports.EXTENSION_GFM; +exports.EXTENSION_STRIKETHROUGH = process.env.EXTENSION_STRIKETHROUGH || exports.EXTENSION_GFM; +exports.EXTENSION_PIPE_TABLE = process.env.EXTENSION_PIPE_TABLE || exports.EXTENSION_GFM; +exports.EXTENSION_MINUS_METADATA = process.env.EXTENSION_MINUS_METADATA || exports.EXTENSION_DEFAULT; +exports.EXTENSION_PLUS_METADATA = process.env.EXTENSION_PLUS_METADATA || exports.EXTENSION_DEFAULT; + +const PUNCTUATION_CHARACTERS_REGEX = '!-/:-@\\[-`\\{-~'; +const PUNCTUATION_CHARACTERS_ARRAY = [ + '!', '"', '#', '$', '%', '&', "'", '(', ')', '*', '+', ',', '-', '.', '/', ':', ';', '<', + '=', '>', '?', '@', '[', '\\', ']', '^', '_', '`', '{', '|', '}', '~' +]; + +const PRECEDENCE_LEVEL_LINK = 10; + +exports.PRECEDENCE_LEVEL_LINK = PRECEDENCE_LEVEL_LINK; + +exports.PUNCTUATION_CHARACTERS_REGEX = PUNCTUATION_CHARACTERS_REGEX; + +exports.rules = { + + // A backslash escape. This can often be part of different nodes like link labels + // + // https://github.github.com/gfm/#backslash-escapes + backslash_escape: $ => $._backslash_escape, + _backslash_escape: $ => new RegExp('\\\\[' + PUNCTUATION_CHARACTERS_REGEX + ']'), + + // HTML entity and numeric character references. + // + // The regex for entity references are build from the html_entities.json file. + // + // https://github.github.com/gfm/#entity-and-numeric-character-references + entity_reference: $ => html_entity_regex(), + numeric_character_reference: $ => /&#([0-9]{1,7}|[xX][0-9a-fA-F]{1,6});/, + + link_label: $ => seq('[', repeat1(choice( + $._text_inline_no_link, + $.backslash_escape, + $.entity_reference, + $.numeric_character_reference, + $._soft_line_break + )), ']'), + + link_destination: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, choice( + seq('<', repeat(choice($._text_no_angle, $.backslash_escape, $.entity_reference, $.numeric_character_reference)), '>'), + seq( + choice( // first character is not a '<' + $._word, + punctuation_without($, ['<', '(', ')']), + $.backslash_escape, + $.entity_reference, + $.numeric_character_reference, + $._link_destination_parenthesis + ), + repeat(choice( + $._word, + punctuation_without($, ['(', ')']), + $.backslash_escape, + $.entity_reference, + $.numeric_character_reference, + $._link_destination_parenthesis + )), + ) + )), + _link_destination_parenthesis: $ => seq('(', repeat(choice( + $._word, + punctuation_without($, ['(', ')']), + $.backslash_escape, + $.entity_reference, + $.numeric_character_reference, + $._link_destination_parenthesis + )), ')'), + _text_no_angle: $ => choice($._word, punctuation_without($, ['<', '>']), $._whitespace), + link_title: $ => choice( + seq('"', repeat(choice( + $._word, + punctuation_without($, ['"']), + $._whitespace, + $.backslash_escape, + $.entity_reference, + $.numeric_character_reference, + seq($._soft_line_break, optional(seq($._soft_line_break, $._trigger_error))) + )), '"'), + seq("'", repeat(choice( + $._word, + punctuation_without($, ["'"]), + $._whitespace, + $.backslash_escape, + $.entity_reference, + $.numeric_character_reference, + seq($._soft_line_break, optional(seq($._soft_line_break, $._trigger_error))) + )), "'"), + seq('(', repeat(choice( + $._word, + punctuation_without($, ['(', ')']), + $._whitespace, + $.backslash_escape, + $.entity_reference, + $.numeric_character_reference, + seq($._soft_line_break, optional(seq($._soft_line_break, $._trigger_error))) + )), ')'), + ), + + _newline_token: $ => /\n|\r\n?/, +}; + +// Returns a rule that matches all characters that count as punctuation inside markdown, besides +// a list of excluded punctuation characters. Calling this function with a empty list as the second +// argument returns a rule that matches all punctuation. +function punctuation_without($, chars) { + return seq(choice(...PUNCTUATION_CHARACTERS_ARRAY.filter(c => !chars.includes(c))), optional($._last_token_punctuation)); +} + +exports.punctuation_without = punctuation_without; + +// Constructs a regex that matches all html entity references. +function html_entity_regex() { + // A file with all html entities, should be kept up to date with + // https://html.spec.whatwg.org/multipage/entities.json + let html_entities = require("./html_entities.json"); + let s = '&('; + s += Object.keys(html_entities).map(name => name.substring(1, name.length - 1)).join('|'); + s += ');'; + return new RegExp(s); +} diff --git a/vendor/tree-sitter-markdown/common/html_entities.json b/vendor/tree-sitter-markdown/common/html_entities.json new file mode 100644 index 0000000000..bdb5ead7be --- /dev/null +++ b/vendor/tree-sitter-markdown/common/html_entities.json @@ -0,0 +1,2234 @@ +{ + "Æ": { "codepoints": [198], "characters": "\u00C6" }, + "Æ": { "codepoints": [198], "characters": "\u00C6" }, + "&": { "codepoints": [38], "characters": "\u0026" }, + "&": { "codepoints": [38], "characters": "\u0026" }, + "Á": { "codepoints": [193], "characters": "\u00C1" }, + "Á": { "codepoints": [193], "characters": "\u00C1" }, + "Ă": { "codepoints": [258], "characters": "\u0102" }, + "Â": { "codepoints": [194], "characters": "\u00C2" }, + "Â": { "codepoints": [194], "characters": "\u00C2" }, + "А": { "codepoints": [1040], "characters": "\u0410" }, + "𝔄": { "codepoints": [120068], "characters": "\uD835\uDD04" }, + "À": { "codepoints": [192], "characters": "\u00C0" }, + "À": { "codepoints": [192], "characters": "\u00C0" }, + "Α": { "codepoints": [913], "characters": "\u0391" }, + "Ā": { "codepoints": [256], "characters": "\u0100" }, + "⩓": { "codepoints": [10835], "characters": "\u2A53" }, + "Ą": { "codepoints": [260], "characters": "\u0104" }, + "𝔸": { "codepoints": [120120], "characters": "\uD835\uDD38" }, + "⁡": { "codepoints": [8289], "characters": "\u2061" }, + "Å": { "codepoints": [197], "characters": "\u00C5" }, + "Å": { "codepoints": [197], "characters": "\u00C5" }, + "𝒜": { "codepoints": [119964], "characters": "\uD835\uDC9C" }, + "≔": { "codepoints": [8788], "characters": "\u2254" }, + "Ã": { "codepoints": [195], "characters": "\u00C3" }, + "Ã": { "codepoints": [195], "characters": "\u00C3" }, + "Ä": { "codepoints": [196], "characters": "\u00C4" }, + "Ä": { "codepoints": [196], "characters": "\u00C4" }, + "∖": { "codepoints": [8726], "characters": "\u2216" }, + "⫧": { "codepoints": [10983], "characters": "\u2AE7" }, + "⌆": { "codepoints": [8966], "characters": "\u2306" }, + "Б": { "codepoints": [1041], "characters": "\u0411" }, + "∵": { "codepoints": [8757], "characters": "\u2235" }, + "ℬ": { "codepoints": [8492], "characters": "\u212C" }, + "Β": { "codepoints": [914], "characters": "\u0392" }, + "𝔅": { "codepoints": [120069], "characters": "\uD835\uDD05" }, + "𝔹": { "codepoints": [120121], "characters": "\uD835\uDD39" }, + "˘": { "codepoints": [728], "characters": "\u02D8" }, + "ℬ": { "codepoints": [8492], "characters": "\u212C" }, + "≎": { "codepoints": [8782], "characters": "\u224E" }, + "Ч": { "codepoints": [1063], "characters": "\u0427" }, + "©": { "codepoints": [169], "characters": "\u00A9" }, + "©": { "codepoints": [169], "characters": "\u00A9" }, + "Ć": { "codepoints": [262], "characters": "\u0106" }, + "⋒": { "codepoints": [8914], "characters": "\u22D2" }, + "ⅅ": { "codepoints": [8517], "characters": "\u2145" }, + "ℭ": { "codepoints": [8493], "characters": "\u212D" }, + "Č": { "codepoints": [268], "characters": "\u010C" }, + "Ç": { "codepoints": [199], "characters": "\u00C7" }, + "Ç": { "codepoints": [199], "characters": "\u00C7" }, + "Ĉ": { "codepoints": [264], "characters": "\u0108" }, + "∰": { "codepoints": [8752], "characters": "\u2230" }, + "Ċ": { "codepoints": [266], "characters": "\u010A" }, + "¸": { "codepoints": [184], "characters": "\u00B8" }, + "·": { "codepoints": [183], "characters": "\u00B7" }, + "ℭ": { "codepoints": [8493], "characters": "\u212D" }, + "Χ": { "codepoints": [935], "characters": "\u03A7" }, + "⊙": { "codepoints": [8857], "characters": "\u2299" }, + "⊖": { "codepoints": [8854], "characters": "\u2296" }, + "⊕": { "codepoints": [8853], "characters": "\u2295" }, + "⊗": { "codepoints": [8855], "characters": "\u2297" }, + "∲": { "codepoints": [8754], "characters": "\u2232" }, + "”": { "codepoints": [8221], "characters": "\u201D" }, + "’": { "codepoints": [8217], "characters": "\u2019" }, + "∷": { "codepoints": [8759], "characters": "\u2237" }, + "⩴": { "codepoints": [10868], "characters": "\u2A74" }, + "≡": { "codepoints": [8801], "characters": "\u2261" }, + "∯": { "codepoints": [8751], "characters": "\u222F" }, + "∮": { "codepoints": [8750], "characters": "\u222E" }, + "ℂ": { "codepoints": [8450], "characters": "\u2102" }, + "∐": { "codepoints": [8720], "characters": "\u2210" }, + "∳": { "codepoints": [8755], "characters": "\u2233" }, + "⨯": { "codepoints": [10799], "characters": "\u2A2F" }, + "𝒞": { "codepoints": [119966], "characters": "\uD835\uDC9E" }, + "⋓": { "codepoints": [8915], "characters": "\u22D3" }, + "≍": { "codepoints": [8781], "characters": "\u224D" }, + "ⅅ": { "codepoints": [8517], "characters": "\u2145" }, + "⤑": { "codepoints": [10513], "characters": "\u2911" }, + "Ђ": { "codepoints": [1026], "characters": "\u0402" }, + "Ѕ": { "codepoints": [1029], "characters": "\u0405" }, + "Џ": { "codepoints": [1039], "characters": "\u040F" }, + "‡": { "codepoints": [8225], "characters": "\u2021" }, + "↡": { "codepoints": [8609], "characters": "\u21A1" }, + "⫤": { "codepoints": [10980], "characters": "\u2AE4" }, + "Ď": { "codepoints": [270], "characters": "\u010E" }, + "Д": { "codepoints": [1044], "characters": "\u0414" }, + "∇": { "codepoints": [8711], "characters": "\u2207" }, + "Δ": { "codepoints": [916], "characters": "\u0394" }, + "𝔇": { "codepoints": [120071], "characters": "\uD835\uDD07" }, + "´": { "codepoints": [180], "characters": "\u00B4" }, + "˙": { "codepoints": [729], "characters": "\u02D9" }, + "˝": { "codepoints": [733], "characters": "\u02DD" }, + "`": { "codepoints": [96], "characters": "\u0060" }, + "˜": { "codepoints": [732], "characters": "\u02DC" }, + "⋄": { "codepoints": [8900], "characters": "\u22C4" }, + "ⅆ": { "codepoints": [8518], "characters": "\u2146" }, + "𝔻": { "codepoints": [120123], "characters": "\uD835\uDD3B" }, + "¨": { "codepoints": [168], "characters": "\u00A8" }, + "⃜": { "codepoints": [8412], "characters": "\u20DC" }, + "≐": { "codepoints": [8784], "characters": "\u2250" }, + "∯": { "codepoints": [8751], "characters": "\u222F" }, + "¨": { "codepoints": [168], "characters": "\u00A8" }, + "⇓": { "codepoints": [8659], "characters": "\u21D3" }, + "⇐": { "codepoints": [8656], "characters": "\u21D0" }, + "⇔": { "codepoints": [8660], "characters": "\u21D4" }, + "⫤": { "codepoints": [10980], "characters": "\u2AE4" }, + "⟸": { "codepoints": [10232], "characters": "\u27F8" }, + "⟺": { "codepoints": [10234], "characters": "\u27FA" }, + "⟹": { "codepoints": [10233], "characters": "\u27F9" }, + "⇒": { "codepoints": [8658], "characters": "\u21D2" }, + "⊨": { "codepoints": [8872], "characters": "\u22A8" }, + "⇑": { "codepoints": [8657], "characters": "\u21D1" }, + "⇕": { "codepoints": [8661], "characters": "\u21D5" }, + "∥": { "codepoints": [8741], "characters": "\u2225" }, + "↓": { "codepoints": [8595], "characters": "\u2193" }, + "⤓": { "codepoints": [10515], "characters": "\u2913" }, + "⇵": { "codepoints": [8693], "characters": "\u21F5" }, + "̑": { "codepoints": [785], "characters": "\u0311" }, + "⥐": { "codepoints": [10576], "characters": "\u2950" }, + "⥞": { "codepoints": [10590], "characters": "\u295E" }, + "↽": { "codepoints": [8637], "characters": "\u21BD" }, + "⥖": { "codepoints": [10582], "characters": "\u2956" }, + "⥟": { "codepoints": [10591], "characters": "\u295F" }, + "⇁": { "codepoints": [8641], "characters": "\u21C1" }, + "⥗": { "codepoints": [10583], "characters": "\u2957" }, + "⊤": { "codepoints": [8868], "characters": "\u22A4" }, + "↧": { "codepoints": [8615], "characters": "\u21A7" }, + "⇓": { "codepoints": [8659], "characters": "\u21D3" }, + "𝒟": { "codepoints": [119967], "characters": "\uD835\uDC9F" }, + "Đ": { "codepoints": [272], "characters": "\u0110" }, + "Ŋ": { "codepoints": [330], "characters": "\u014A" }, + "Ð": { "codepoints": [208], "characters": "\u00D0" }, + "Ð": { "codepoints": [208], "characters": "\u00D0" }, + "É": { "codepoints": [201], "characters": "\u00C9" }, + "É": { "codepoints": [201], "characters": "\u00C9" }, + "Ě": { "codepoints": [282], "characters": "\u011A" }, + "Ê": { "codepoints": [202], "characters": "\u00CA" }, + "Ê": { "codepoints": [202], "characters": "\u00CA" }, + "Э": { "codepoints": [1069], "characters": "\u042D" }, + "Ė": { "codepoints": [278], "characters": "\u0116" }, + "𝔈": { "codepoints": [120072], "characters": "\uD835\uDD08" }, + "È": { "codepoints": [200], "characters": "\u00C8" }, + "È": { "codepoints": [200], "characters": "\u00C8" }, + "∈": { "codepoints": [8712], "characters": "\u2208" }, + "Ē": { "codepoints": [274], "characters": "\u0112" }, + "◻": { "codepoints": [9723], "characters": "\u25FB" }, + "▫": { "codepoints": [9643], "characters": "\u25AB" }, + "Ę": { "codepoints": [280], "characters": "\u0118" }, + "𝔼": { "codepoints": [120124], "characters": "\uD835\uDD3C" }, + "Ε": { "codepoints": [917], "characters": "\u0395" }, + "⩵": { "codepoints": [10869], "characters": "\u2A75" }, + "≂": { "codepoints": [8770], "characters": "\u2242" }, + "⇌": { "codepoints": [8652], "characters": "\u21CC" }, + "ℰ": { "codepoints": [8496], "characters": "\u2130" }, + "⩳": { "codepoints": [10867], "characters": "\u2A73" }, + "Η": { "codepoints": [919], "characters": "\u0397" }, + "Ë": { "codepoints": [203], "characters": "\u00CB" }, + "Ë": { "codepoints": [203], "characters": "\u00CB" }, + "∃": { "codepoints": [8707], "characters": "\u2203" }, + "ⅇ": { "codepoints": [8519], "characters": "\u2147" }, + "Ф": { "codepoints": [1060], "characters": "\u0424" }, + "𝔉": { "codepoints": [120073], "characters": "\uD835\uDD09" }, + "◼": { "codepoints": [9724], "characters": "\u25FC" }, + "▪": { "codepoints": [9642], "characters": "\u25AA" }, + "𝔽": { "codepoints": [120125], "characters": "\uD835\uDD3D" }, + "∀": { "codepoints": [8704], "characters": "\u2200" }, + "ℱ": { "codepoints": [8497], "characters": "\u2131" }, + "ℱ": { "codepoints": [8497], "characters": "\u2131" }, + "Ѓ": { "codepoints": [1027], "characters": "\u0403" }, + ">": { "codepoints": [62], "characters": "\u003E" }, + ">": { "codepoints": [62], "characters": "\u003E" }, + "Γ": { "codepoints": [915], "characters": "\u0393" }, + "Ϝ": { "codepoints": [988], "characters": "\u03DC" }, + "Ğ": { "codepoints": [286], "characters": "\u011E" }, + "Ģ": { "codepoints": [290], "characters": "\u0122" }, + "Ĝ": { "codepoints": [284], "characters": "\u011C" }, + "Г": { "codepoints": [1043], "characters": "\u0413" }, + "Ġ": { "codepoints": [288], "characters": "\u0120" }, + "𝔊": { "codepoints": [120074], "characters": "\uD835\uDD0A" }, + "⋙": { "codepoints": [8921], "characters": "\u22D9" }, + "𝔾": { "codepoints": [120126], "characters": "\uD835\uDD3E" }, + "≥": { "codepoints": [8805], "characters": "\u2265" }, + "⋛": { "codepoints": [8923], "characters": "\u22DB" }, + "≧": { "codepoints": [8807], "characters": "\u2267" }, + "⪢": { "codepoints": [10914], "characters": "\u2AA2" }, + "≷": { "codepoints": [8823], "characters": "\u2277" }, + "⩾": { "codepoints": [10878], "characters": "\u2A7E" }, + "≳": { "codepoints": [8819], "characters": "\u2273" }, + "𝒢": { "codepoints": [119970], "characters": "\uD835\uDCA2" }, + "≫": { "codepoints": [8811], "characters": "\u226B" }, + "Ъ": { "codepoints": [1066], "characters": "\u042A" }, + "ˇ": { "codepoints": [711], "characters": "\u02C7" }, + "^": { "codepoints": [94], "characters": "\u005E" }, + "Ĥ": { "codepoints": [292], "characters": "\u0124" }, + "ℌ": { "codepoints": [8460], "characters": "\u210C" }, + "ℋ": { "codepoints": [8459], "characters": "\u210B" }, + "ℍ": { "codepoints": [8461], "characters": "\u210D" }, + "─": { "codepoints": [9472], "characters": "\u2500" }, + "ℋ": { "codepoints": [8459], "characters": "\u210B" }, + "Ħ": { "codepoints": [294], "characters": "\u0126" }, + "≎": { "codepoints": [8782], "characters": "\u224E" }, + "≏": { "codepoints": [8783], "characters": "\u224F" }, + "Е": { "codepoints": [1045], "characters": "\u0415" }, + "IJ": { "codepoints": [306], "characters": "\u0132" }, + "Ё": { "codepoints": [1025], "characters": "\u0401" }, + "Í": { "codepoints": [205], "characters": "\u00CD" }, + "Í": { "codepoints": [205], "characters": "\u00CD" }, + "Î": { "codepoints": [206], "characters": "\u00CE" }, + "Î": { "codepoints": [206], "characters": "\u00CE" }, + "И": { "codepoints": [1048], "characters": "\u0418" }, + "İ": { "codepoints": [304], "characters": "\u0130" }, + "ℑ": { "codepoints": [8465], "characters": "\u2111" }, + "Ì": { "codepoints": [204], "characters": "\u00CC" }, + "Ì": { "codepoints": [204], "characters": "\u00CC" }, + "ℑ": { "codepoints": [8465], "characters": "\u2111" }, + "Ī": { "codepoints": [298], "characters": "\u012A" }, + "ⅈ": { "codepoints": [8520], "characters": "\u2148" }, + "⇒": { "codepoints": [8658], "characters": "\u21D2" }, + "∬": { "codepoints": [8748], "characters": "\u222C" }, + "∫": { "codepoints": [8747], "characters": "\u222B" }, + "⋂": { "codepoints": [8898], "characters": "\u22C2" }, + "⁣": { "codepoints": [8291], "characters": "\u2063" }, + "⁢": { "codepoints": [8290], "characters": "\u2062" }, + "Į": { "codepoints": [302], "characters": "\u012E" }, + "𝕀": { "codepoints": [120128], "characters": "\uD835\uDD40" }, + "Ι": { "codepoints": [921], "characters": "\u0399" }, + "ℐ": { "codepoints": [8464], "characters": "\u2110" }, + "Ĩ": { "codepoints": [296], "characters": "\u0128" }, + "І": { "codepoints": [1030], "characters": "\u0406" }, + "Ï": { "codepoints": [207], "characters": "\u00CF" }, + "Ï": { "codepoints": [207], "characters": "\u00CF" }, + "Ĵ": { "codepoints": [308], "characters": "\u0134" }, + "Й": { "codepoints": [1049], "characters": "\u0419" }, + "𝔍": { "codepoints": [120077], "characters": "\uD835\uDD0D" }, + "𝕁": { "codepoints": [120129], "characters": "\uD835\uDD41" }, + "𝒥": { "codepoints": [119973], "characters": "\uD835\uDCA5" }, + "Ј": { "codepoints": [1032], "characters": "\u0408" }, + "Є": { "codepoints": [1028], "characters": "\u0404" }, + "Х": { "codepoints": [1061], "characters": "\u0425" }, + "Ќ": { "codepoints": [1036], "characters": "\u040C" }, + "Κ": { "codepoints": [922], "characters": "\u039A" }, + "Ķ": { "codepoints": [310], "characters": "\u0136" }, + "К": { "codepoints": [1050], "characters": "\u041A" }, + "𝔎": { "codepoints": [120078], "characters": "\uD835\uDD0E" }, + "𝕂": { "codepoints": [120130], "characters": "\uD835\uDD42" }, + "𝒦": { "codepoints": [119974], "characters": "\uD835\uDCA6" }, + "Љ": { "codepoints": [1033], "characters": "\u0409" }, + "<": { "codepoints": [60], "characters": "\u003C" }, + "<": { "codepoints": [60], "characters": "\u003C" }, + "Ĺ": { "codepoints": [313], "characters": "\u0139" }, + "Λ": { "codepoints": [923], "characters": "\u039B" }, + "⟪": { "codepoints": [10218], "characters": "\u27EA" }, + "ℒ": { "codepoints": [8466], "characters": "\u2112" }, + "↞": { "codepoints": [8606], "characters": "\u219E" }, + "Ľ": { "codepoints": [317], "characters": "\u013D" }, + "Ļ": { "codepoints": [315], "characters": "\u013B" }, + "Л": { "codepoints": [1051], "characters": "\u041B" }, + "⟨": { "codepoints": [10216], "characters": "\u27E8" }, + "←": { "codepoints": [8592], "characters": "\u2190" }, + "⇤": { "codepoints": [8676], "characters": "\u21E4" }, + "⇆": { "codepoints": [8646], "characters": "\u21C6" }, + "⌈": { "codepoints": [8968], "characters": "\u2308" }, + "⟦": { "codepoints": [10214], "characters": "\u27E6" }, + "⥡": { "codepoints": [10593], "characters": "\u2961" }, + "⇃": { "codepoints": [8643], "characters": "\u21C3" }, + "⥙": { "codepoints": [10585], "characters": "\u2959" }, + "⌊": { "codepoints": [8970], "characters": "\u230A" }, + "↔": { "codepoints": [8596], "characters": "\u2194" }, + "⥎": { "codepoints": [10574], "characters": "\u294E" }, + "⊣": { "codepoints": [8867], "characters": "\u22A3" }, + "↤": { "codepoints": [8612], "characters": "\u21A4" }, + "⥚": { "codepoints": [10586], "characters": "\u295A" }, + "⊲": { "codepoints": [8882], "characters": "\u22B2" }, + "⧏": { "codepoints": [10703], "characters": "\u29CF" }, + "⊴": { "codepoints": [8884], "characters": "\u22B4" }, + "⥑": { "codepoints": [10577], "characters": "\u2951" }, + "⥠": { "codepoints": [10592], "characters": "\u2960" }, + "↿": { "codepoints": [8639], "characters": "\u21BF" }, + "⥘": { "codepoints": [10584], "characters": "\u2958" }, + "↼": { "codepoints": [8636], "characters": "\u21BC" }, + "⥒": { "codepoints": [10578], "characters": "\u2952" }, + "⇐": { "codepoints": [8656], "characters": "\u21D0" }, + "⇔": { "codepoints": [8660], "characters": "\u21D4" }, + "⋚": { "codepoints": [8922], "characters": "\u22DA" }, + "≦": { "codepoints": [8806], "characters": "\u2266" }, + "≶": { "codepoints": [8822], "characters": "\u2276" }, + "⪡": { "codepoints": [10913], "characters": "\u2AA1" }, + "⩽": { "codepoints": [10877], "characters": "\u2A7D" }, + "≲": { "codepoints": [8818], "characters": "\u2272" }, + "𝔏": { "codepoints": [120079], "characters": "\uD835\uDD0F" }, + "⋘": { "codepoints": [8920], "characters": "\u22D8" }, + "⇚": { "codepoints": [8666], "characters": "\u21DA" }, + "Ŀ": { "codepoints": [319], "characters": "\u013F" }, + "⟵": { "codepoints": [10229], "characters": "\u27F5" }, + "⟷": { "codepoints": [10231], "characters": "\u27F7" }, + "⟶": { "codepoints": [10230], "characters": "\u27F6" }, + "⟸": { "codepoints": [10232], "characters": "\u27F8" }, + "⟺": { "codepoints": [10234], "characters": "\u27FA" }, + "⟹": { "codepoints": [10233], "characters": "\u27F9" }, + "𝕃": { "codepoints": [120131], "characters": "\uD835\uDD43" }, + "↙": { "codepoints": [8601], "characters": "\u2199" }, + "↘": { "codepoints": [8600], "characters": "\u2198" }, + "ℒ": { "codepoints": [8466], "characters": "\u2112" }, + "↰": { "codepoints": [8624], "characters": "\u21B0" }, + "Ł": { "codepoints": [321], "characters": "\u0141" }, + "≪": { "codepoints": [8810], "characters": "\u226A" }, + "⤅": { "codepoints": [10501], "characters": "\u2905" }, + "М": { "codepoints": [1052], "characters": "\u041C" }, + " ": { "codepoints": [8287], "characters": "\u205F" }, + "ℳ": { "codepoints": [8499], "characters": "\u2133" }, + "𝔐": { "codepoints": [120080], "characters": "\uD835\uDD10" }, + "∓": { "codepoints": [8723], "characters": "\u2213" }, + "𝕄": { "codepoints": [120132], "characters": "\uD835\uDD44" }, + "ℳ": { "codepoints": [8499], "characters": "\u2133" }, + "Μ": { "codepoints": [924], "characters": "\u039C" }, + "Њ": { "codepoints": [1034], "characters": "\u040A" }, + "Ń": { "codepoints": [323], "characters": "\u0143" }, + "Ň": { "codepoints": [327], "characters": "\u0147" }, + "Ņ": { "codepoints": [325], "characters": "\u0145" }, + "Н": { "codepoints": [1053], "characters": "\u041D" }, + "​": { "codepoints": [8203], "characters": "\u200B" }, + "​": { "codepoints": [8203], "characters": "\u200B" }, + "​": { "codepoints": [8203], "characters": "\u200B" }, + "​": { "codepoints": [8203], "characters": "\u200B" }, + "≫": { "codepoints": [8811], "characters": "\u226B" }, + "≪": { "codepoints": [8810], "characters": "\u226A" }, + " ": { "codepoints": [10], "characters": "\u000A" }, + "𝔑": { "codepoints": [120081], "characters": "\uD835\uDD11" }, + "⁠": { "codepoints": [8288], "characters": "\u2060" }, + " ": { "codepoints": [160], "characters": "\u00A0" }, + "ℕ": { "codepoints": [8469], "characters": "\u2115" }, + "⫬": { "codepoints": [10988], "characters": "\u2AEC" }, + "≢": { "codepoints": [8802], "characters": "\u2262" }, + "≭": { "codepoints": [8813], "characters": "\u226D" }, + "∦": { "codepoints": [8742], "characters": "\u2226" }, + "∉": { "codepoints": [8713], "characters": "\u2209" }, + "≠": { "codepoints": [8800], "characters": "\u2260" }, + "≂̸": { "codepoints": [8770, 824], "characters": "\u2242\u0338" }, + "∄": { "codepoints": [8708], "characters": "\u2204" }, + "≯": { "codepoints": [8815], "characters": "\u226F" }, + "≱": { "codepoints": [8817], "characters": "\u2271" }, + "≧̸": { "codepoints": [8807, 824], "characters": "\u2267\u0338" }, + "≫̸": { "codepoints": [8811, 824], "characters": "\u226B\u0338" }, + "≹": { "codepoints": [8825], "characters": "\u2279" }, + "⩾̸": { "codepoints": [10878, 824], "characters": "\u2A7E\u0338" }, + "≵": { "codepoints": [8821], "characters": "\u2275" }, + "≎̸": { "codepoints": [8782, 824], "characters": "\u224E\u0338" }, + "≏̸": { "codepoints": [8783, 824], "characters": "\u224F\u0338" }, + "⋪": { "codepoints": [8938], "characters": "\u22EA" }, + "⧏̸": { "codepoints": [10703, 824], "characters": "\u29CF\u0338" }, + "⋬": { "codepoints": [8940], "characters": "\u22EC" }, + "≮": { "codepoints": [8814], "characters": "\u226E" }, + "≰": { "codepoints": [8816], "characters": "\u2270" }, + "≸": { "codepoints": [8824], "characters": "\u2278" }, + "≪̸": { "codepoints": [8810, 824], "characters": "\u226A\u0338" }, + "⩽̸": { "codepoints": [10877, 824], "characters": "\u2A7D\u0338" }, + "≴": { "codepoints": [8820], "characters": "\u2274" }, + "⪢̸": { "codepoints": [10914, 824], "characters": "\u2AA2\u0338" }, + "⪡̸": { "codepoints": [10913, 824], "characters": "\u2AA1\u0338" }, + "⊀": { "codepoints": [8832], "characters": "\u2280" }, + "⪯̸": { "codepoints": [10927, 824], "characters": "\u2AAF\u0338" }, + "⋠": { "codepoints": [8928], "characters": "\u22E0" }, + "∌": { "codepoints": [8716], "characters": "\u220C" }, + "⋫": { "codepoints": [8939], "characters": "\u22EB" }, + "⧐̸": { "codepoints": [10704, 824], "characters": "\u29D0\u0338" }, + "⋭": { "codepoints": [8941], "characters": "\u22ED" }, + "⊏̸": { "codepoints": [8847, 824], "characters": "\u228F\u0338" }, + "⋢": { "codepoints": [8930], "characters": "\u22E2" }, + "⊐̸": { "codepoints": [8848, 824], "characters": "\u2290\u0338" }, + "⋣": { "codepoints": [8931], "characters": "\u22E3" }, + "⊂⃒": { "codepoints": [8834, 8402], "characters": "\u2282\u20D2" }, + "⊈": { "codepoints": [8840], "characters": "\u2288" }, + "⊁": { "codepoints": [8833], "characters": "\u2281" }, + "⪰̸": { "codepoints": [10928, 824], "characters": "\u2AB0\u0338" }, + "⋡": { "codepoints": [8929], "characters": "\u22E1" }, + "≿̸": { "codepoints": [8831, 824], "characters": "\u227F\u0338" }, + "⊃⃒": { "codepoints": [8835, 8402], "characters": "\u2283\u20D2" }, + "⊉": { "codepoints": [8841], "characters": "\u2289" }, + "≁": { "codepoints": [8769], "characters": "\u2241" }, + "≄": { "codepoints": [8772], "characters": "\u2244" }, + "≇": { "codepoints": [8775], "characters": "\u2247" }, + "≉": { "codepoints": [8777], "characters": "\u2249" }, + "∤": { "codepoints": [8740], "characters": "\u2224" }, + "𝒩": { "codepoints": [119977], "characters": "\uD835\uDCA9" }, + "Ñ": { "codepoints": [209], "characters": "\u00D1" }, + "Ñ": { "codepoints": [209], "characters": "\u00D1" }, + "Ν": { "codepoints": [925], "characters": "\u039D" }, + "Œ": { "codepoints": [338], "characters": "\u0152" }, + "Ó": { "codepoints": [211], "characters": "\u00D3" }, + "Ó": { "codepoints": [211], "characters": "\u00D3" }, + "Ô": { "codepoints": [212], "characters": "\u00D4" }, + "Ô": { "codepoints": [212], "characters": "\u00D4" }, + "О": { "codepoints": [1054], "characters": "\u041E" }, + "Ő": { "codepoints": [336], "characters": "\u0150" }, + "𝔒": { "codepoints": [120082], "characters": "\uD835\uDD12" }, + "Ò": { "codepoints": [210], "characters": "\u00D2" }, + "Ò": { "codepoints": [210], "characters": "\u00D2" }, + "Ō": { "codepoints": [332], "characters": "\u014C" }, + "Ω": { "codepoints": [937], "characters": "\u03A9" }, + "Ο": { "codepoints": [927], "characters": "\u039F" }, + "𝕆": { "codepoints": [120134], "characters": "\uD835\uDD46" }, + "“": { "codepoints": [8220], "characters": "\u201C" }, + "‘": { "codepoints": [8216], "characters": "\u2018" }, + "⩔": { "codepoints": [10836], "characters": "\u2A54" }, + "𝒪": { "codepoints": [119978], "characters": "\uD835\uDCAA" }, + "Ø": { "codepoints": [216], "characters": "\u00D8" }, + "Ø": { "codepoints": [216], "characters": "\u00D8" }, + "Õ": { "codepoints": [213], "characters": "\u00D5" }, + "Õ": { "codepoints": [213], "characters": "\u00D5" }, + "⨷": { "codepoints": [10807], "characters": "\u2A37" }, + "Ö": { "codepoints": [214], "characters": "\u00D6" }, + "Ö": { "codepoints": [214], "characters": "\u00D6" }, + "‾": { "codepoints": [8254], "characters": "\u203E" }, + "⏞": { "codepoints": [9182], "characters": "\u23DE" }, + "⎴": { "codepoints": [9140], "characters": "\u23B4" }, + "⏜": { "codepoints": [9180], "characters": "\u23DC" }, + "∂": { "codepoints": [8706], "characters": "\u2202" }, + "П": { "codepoints": [1055], "characters": "\u041F" }, + "𝔓": { "codepoints": [120083], "characters": "\uD835\uDD13" }, + "Φ": { "codepoints": [934], "characters": "\u03A6" }, + "Π": { "codepoints": [928], "characters": "\u03A0" }, + "±": { "codepoints": [177], "characters": "\u00B1" }, + "ℌ": { "codepoints": [8460], "characters": "\u210C" }, + "ℙ": { "codepoints": [8473], "characters": "\u2119" }, + "⪻": { "codepoints": [10939], "characters": "\u2ABB" }, + "≺": { "codepoints": [8826], "characters": "\u227A" }, + "⪯": { "codepoints": [10927], "characters": "\u2AAF" }, + "≼": { "codepoints": [8828], "characters": "\u227C" }, + "≾": { "codepoints": [8830], "characters": "\u227E" }, + "″": { "codepoints": [8243], "characters": "\u2033" }, + "∏": { "codepoints": [8719], "characters": "\u220F" }, + "∷": { "codepoints": [8759], "characters": "\u2237" }, + "∝": { "codepoints": [8733], "characters": "\u221D" }, + "𝒫": { "codepoints": [119979], "characters": "\uD835\uDCAB" }, + "Ψ": { "codepoints": [936], "characters": "\u03A8" }, + """: { "codepoints": [34], "characters": "\u0022" }, + """: { "codepoints": [34], "characters": "\u0022" }, + "𝔔": { "codepoints": [120084], "characters": "\uD835\uDD14" }, + "ℚ": { "codepoints": [8474], "characters": "\u211A" }, + "𝒬": { "codepoints": [119980], "characters": "\uD835\uDCAC" }, + "⤐": { "codepoints": [10512], "characters": "\u2910" }, + "®": { "codepoints": [174], "characters": "\u00AE" }, + "®": { "codepoints": [174], "characters": "\u00AE" }, + "Ŕ": { "codepoints": [340], "characters": "\u0154" }, + "⟫": { "codepoints": [10219], "characters": "\u27EB" }, + "↠": { "codepoints": [8608], "characters": "\u21A0" }, + "⤖": { "codepoints": [10518], "characters": "\u2916" }, + "Ř": { "codepoints": [344], "characters": "\u0158" }, + "Ŗ": { "codepoints": [342], "characters": "\u0156" }, + "Р": { "codepoints": [1056], "characters": "\u0420" }, + "ℜ": { "codepoints": [8476], "characters": "\u211C" }, + "∋": { "codepoints": [8715], "characters": "\u220B" }, + "⇋": { "codepoints": [8651], "characters": "\u21CB" }, + "⥯": { "codepoints": [10607], "characters": "\u296F" }, + "ℜ": { "codepoints": [8476], "characters": "\u211C" }, + "Ρ": { "codepoints": [929], "characters": "\u03A1" }, + "⟩": { "codepoints": [10217], "characters": "\u27E9" }, + "→": { "codepoints": [8594], "characters": "\u2192" }, + "⇥": { "codepoints": [8677], "characters": "\u21E5" }, + "⇄": { "codepoints": [8644], "characters": "\u21C4" }, + "⌉": { "codepoints": [8969], "characters": "\u2309" }, + "⟧": { "codepoints": [10215], "characters": "\u27E7" }, + "⥝": { "codepoints": [10589], "characters": "\u295D" }, + "⇂": { "codepoints": [8642], "characters": "\u21C2" }, + "⥕": { "codepoints": [10581], "characters": "\u2955" }, + "⌋": { "codepoints": [8971], "characters": "\u230B" }, + "⊢": { "codepoints": [8866], "characters": "\u22A2" }, + "↦": { "codepoints": [8614], "characters": "\u21A6" }, + "⥛": { "codepoints": [10587], "characters": "\u295B" }, + "⊳": { "codepoints": [8883], "characters": "\u22B3" }, + "⧐": { "codepoints": [10704], "characters": "\u29D0" }, + "⊵": { "codepoints": [8885], "characters": "\u22B5" }, + "⥏": { "codepoints": [10575], "characters": "\u294F" }, + "⥜": { "codepoints": [10588], "characters": "\u295C" }, + "↾": { "codepoints": [8638], "characters": "\u21BE" }, + "⥔": { "codepoints": [10580], "characters": "\u2954" }, + "⇀": { "codepoints": [8640], "characters": "\u21C0" }, + "⥓": { "codepoints": [10579], "characters": "\u2953" }, + "⇒": { "codepoints": [8658], "characters": "\u21D2" }, + "ℝ": { "codepoints": [8477], "characters": "\u211D" }, + "⥰": { "codepoints": [10608], "characters": "\u2970" }, + "⇛": { "codepoints": [8667], "characters": "\u21DB" }, + "ℛ": { "codepoints": [8475], "characters": "\u211B" }, + "↱": { "codepoints": [8625], "characters": "\u21B1" }, + "⧴": { "codepoints": [10740], "characters": "\u29F4" }, + "Щ": { "codepoints": [1065], "characters": "\u0429" }, + "Ш": { "codepoints": [1064], "characters": "\u0428" }, + "Ь": { "codepoints": [1068], "characters": "\u042C" }, + "Ś": { "codepoints": [346], "characters": "\u015A" }, + "⪼": { "codepoints": [10940], "characters": "\u2ABC" }, + "Š": { "codepoints": [352], "characters": "\u0160" }, + "Ş": { "codepoints": [350], "characters": "\u015E" }, + "Ŝ": { "codepoints": [348], "characters": "\u015C" }, + "С": { "codepoints": [1057], "characters": "\u0421" }, + "𝔖": { "codepoints": [120086], "characters": "\uD835\uDD16" }, + "↓": { "codepoints": [8595], "characters": "\u2193" }, + "←": { "codepoints": [8592], "characters": "\u2190" }, + "→": { "codepoints": [8594], "characters": "\u2192" }, + "↑": { "codepoints": [8593], "characters": "\u2191" }, + "Σ": { "codepoints": [931], "characters": "\u03A3" }, + "∘": { "codepoints": [8728], "characters": "\u2218" }, + "𝕊": { "codepoints": [120138], "characters": "\uD835\uDD4A" }, + "√": { "codepoints": [8730], "characters": "\u221A" }, + "□": { "codepoints": [9633], "characters": "\u25A1" }, + "⊓": { "codepoints": [8851], "characters": "\u2293" }, + "⊏": { "codepoints": [8847], "characters": "\u228F" }, + "⊑": { "codepoints": [8849], "characters": "\u2291" }, + "⊐": { "codepoints": [8848], "characters": "\u2290" }, + "⊒": { "codepoints": [8850], "characters": "\u2292" }, + "⊔": { "codepoints": [8852], "characters": "\u2294" }, + "𝒮": { "codepoints": [119982], "characters": "\uD835\uDCAE" }, + "⋆": { "codepoints": [8902], "characters": "\u22C6" }, + "⋐": { "codepoints": [8912], "characters": "\u22D0" }, + "⋐": { "codepoints": [8912], "characters": "\u22D0" }, + "⊆": { "codepoints": [8838], "characters": "\u2286" }, + "≻": { "codepoints": [8827], "characters": "\u227B" }, + "⪰": { "codepoints": [10928], "characters": "\u2AB0" }, + "≽": { "codepoints": [8829], "characters": "\u227D" }, + "≿": { "codepoints": [8831], "characters": "\u227F" }, + "∋": { "codepoints": [8715], "characters": "\u220B" }, + "∑": { "codepoints": [8721], "characters": "\u2211" }, + "⋑": { "codepoints": [8913], "characters": "\u22D1" }, + "⊃": { "codepoints": [8835], "characters": "\u2283" }, + "⊇": { "codepoints": [8839], "characters": "\u2287" }, + "⋑": { "codepoints": [8913], "characters": "\u22D1" }, + "Þ": { "codepoints": [222], "characters": "\u00DE" }, + "Þ": { "codepoints": [222], "characters": "\u00DE" }, + "™": { "codepoints": [8482], "characters": "\u2122" }, + "Ћ": { "codepoints": [1035], "characters": "\u040B" }, + "Ц": { "codepoints": [1062], "characters": "\u0426" }, + " ": { "codepoints": [9], "characters": "\u0009" }, + "Τ": { "codepoints": [932], "characters": "\u03A4" }, + "Ť": { "codepoints": [356], "characters": "\u0164" }, + "Ţ": { "codepoints": [354], "characters": "\u0162" }, + "Т": { "codepoints": [1058], "characters": "\u0422" }, + "𝔗": { "codepoints": [120087], "characters": "\uD835\uDD17" }, + "∴": { "codepoints": [8756], "characters": "\u2234" }, + "Θ": { "codepoints": [920], "characters": "\u0398" }, + "  ": { "codepoints": [8287, 8202], "characters": "\u205F\u200A" }, + " ": { "codepoints": [8201], "characters": "\u2009" }, + "∼": { "codepoints": [8764], "characters": "\u223C" }, + "≃": { "codepoints": [8771], "characters": "\u2243" }, + "≅": { "codepoints": [8773], "characters": "\u2245" }, + "≈": { "codepoints": [8776], "characters": "\u2248" }, + "𝕋": { "codepoints": [120139], "characters": "\uD835\uDD4B" }, + "⃛": { "codepoints": [8411], "characters": "\u20DB" }, + "𝒯": { "codepoints": [119983], "characters": "\uD835\uDCAF" }, + "Ŧ": { "codepoints": [358], "characters": "\u0166" }, + "Ú": { "codepoints": [218], "characters": "\u00DA" }, + "Ú": { "codepoints": [218], "characters": "\u00DA" }, + "↟": { "codepoints": [8607], "characters": "\u219F" }, + "⥉": { "codepoints": [10569], "characters": "\u2949" }, + "Ў": { "codepoints": [1038], "characters": "\u040E" }, + "Ŭ": { "codepoints": [364], "characters": "\u016C" }, + "Û": { "codepoints": [219], "characters": "\u00DB" }, + "Û": { "codepoints": [219], "characters": "\u00DB" }, + "У": { "codepoints": [1059], "characters": "\u0423" }, + "Ű": { "codepoints": [368], "characters": "\u0170" }, + "𝔘": { "codepoints": [120088], "characters": "\uD835\uDD18" }, + "Ù": { "codepoints": [217], "characters": "\u00D9" }, + "Ù": { "codepoints": [217], "characters": "\u00D9" }, + "Ū": { "codepoints": [362], "characters": "\u016A" }, + "_": { "codepoints": [95], "characters": "\u005F" }, + "⏟": { "codepoints": [9183], "characters": "\u23DF" }, + "⎵": { "codepoints": [9141], "characters": "\u23B5" }, + "⏝": { "codepoints": [9181], "characters": "\u23DD" }, + "⋃": { "codepoints": [8899], "characters": "\u22C3" }, + "⊎": { "codepoints": [8846], "characters": "\u228E" }, + "Ų": { "codepoints": [370], "characters": "\u0172" }, + "𝕌": { "codepoints": [120140], "characters": "\uD835\uDD4C" }, + "↑": { "codepoints": [8593], "characters": "\u2191" }, + "⤒": { "codepoints": [10514], "characters": "\u2912" }, + "⇅": { "codepoints": [8645], "characters": "\u21C5" }, + "↕": { "codepoints": [8597], "characters": "\u2195" }, + "⥮": { "codepoints": [10606], "characters": "\u296E" }, + "⊥": { "codepoints": [8869], "characters": "\u22A5" }, + "↥": { "codepoints": [8613], "characters": "\u21A5" }, + "⇑": { "codepoints": [8657], "characters": "\u21D1" }, + "⇕": { "codepoints": [8661], "characters": "\u21D5" }, + "↖": { "codepoints": [8598], "characters": "\u2196" }, + "↗": { "codepoints": [8599], "characters": "\u2197" }, + "ϒ": { "codepoints": [978], "characters": "\u03D2" }, + "Υ": { "codepoints": [933], "characters": "\u03A5" }, + "Ů": { "codepoints": [366], "characters": "\u016E" }, + "𝒰": { "codepoints": [119984], "characters": "\uD835\uDCB0" }, + "Ũ": { "codepoints": [360], "characters": "\u0168" }, + "Ü": { "codepoints": [220], "characters": "\u00DC" }, + "Ü": { "codepoints": [220], "characters": "\u00DC" }, + "⊫": { "codepoints": [8875], "characters": "\u22AB" }, + "⫫": { "codepoints": [10987], "characters": "\u2AEB" }, + "В": { "codepoints": [1042], "characters": "\u0412" }, + "⊩": { "codepoints": [8873], "characters": "\u22A9" }, + "⫦": { "codepoints": [10982], "characters": "\u2AE6" }, + "⋁": { "codepoints": [8897], "characters": "\u22C1" }, + "‖": { "codepoints": [8214], "characters": "\u2016" }, + "‖": { "codepoints": [8214], "characters": "\u2016" }, + "∣": { "codepoints": [8739], "characters": "\u2223" }, + "|": { "codepoints": [124], "characters": "\u007C" }, + "❘": { "codepoints": [10072], "characters": "\u2758" }, + "≀": { "codepoints": [8768], "characters": "\u2240" }, + " ": { "codepoints": [8202], "characters": "\u200A" }, + "𝔙": { "codepoints": [120089], "characters": "\uD835\uDD19" }, + "𝕍": { "codepoints": [120141], "characters": "\uD835\uDD4D" }, + "𝒱": { "codepoints": [119985], "characters": "\uD835\uDCB1" }, + "⊪": { "codepoints": [8874], "characters": "\u22AA" }, + "Ŵ": { "codepoints": [372], "characters": "\u0174" }, + "⋀": { "codepoints": [8896], "characters": "\u22C0" }, + "𝔚": { "codepoints": [120090], "characters": "\uD835\uDD1A" }, + "𝕎": { "codepoints": [120142], "characters": "\uD835\uDD4E" }, + "𝒲": { "codepoints": [119986], "characters": "\uD835\uDCB2" }, + "𝔛": { "codepoints": [120091], "characters": "\uD835\uDD1B" }, + "Ξ": { "codepoints": [926], "characters": "\u039E" }, + "𝕏": { "codepoints": [120143], "characters": "\uD835\uDD4F" }, + "𝒳": { "codepoints": [119987], "characters": "\uD835\uDCB3" }, + "Я": { "codepoints": [1071], "characters": "\u042F" }, + "Ї": { "codepoints": [1031], "characters": "\u0407" }, + "Ю": { "codepoints": [1070], "characters": "\u042E" }, + "Ý": { "codepoints": [221], "characters": "\u00DD" }, + "Ý": { "codepoints": [221], "characters": "\u00DD" }, + "Ŷ": { "codepoints": [374], "characters": "\u0176" }, + "Ы": { "codepoints": [1067], "characters": "\u042B" }, + "𝔜": { "codepoints": [120092], "characters": "\uD835\uDD1C" }, + "𝕐": { "codepoints": [120144], "characters": "\uD835\uDD50" }, + "𝒴": { "codepoints": [119988], "characters": "\uD835\uDCB4" }, + "Ÿ": { "codepoints": [376], "characters": "\u0178" }, + "Ж": { "codepoints": [1046], "characters": "\u0416" }, + "Ź": { "codepoints": [377], "characters": "\u0179" }, + "Ž": { "codepoints": [381], "characters": "\u017D" }, + "З": { "codepoints": [1047], "characters": "\u0417" }, + "Ż": { "codepoints": [379], "characters": "\u017B" }, + "​": { "codepoints": [8203], "characters": "\u200B" }, + "Ζ": { "codepoints": [918], "characters": "\u0396" }, + "ℨ": { "codepoints": [8488], "characters": "\u2128" }, + "ℤ": { "codepoints": [8484], "characters": "\u2124" }, + "𝒵": { "codepoints": [119989], "characters": "\uD835\uDCB5" }, + "á": { "codepoints": [225], "characters": "\u00E1" }, + "á": { "codepoints": [225], "characters": "\u00E1" }, + "ă": { "codepoints": [259], "characters": "\u0103" }, + "∾": { "codepoints": [8766], "characters": "\u223E" }, + "∾̳": { "codepoints": [8766, 819], "characters": "\u223E\u0333" }, + "∿": { "codepoints": [8767], "characters": "\u223F" }, + "â": { "codepoints": [226], "characters": "\u00E2" }, + "â": { "codepoints": [226], "characters": "\u00E2" }, + "´": { "codepoints": [180], "characters": "\u00B4" }, + "´": { "codepoints": [180], "characters": "\u00B4" }, + "а": { "codepoints": [1072], "characters": "\u0430" }, + "æ": { "codepoints": [230], "characters": "\u00E6" }, + "æ": { "codepoints": [230], "characters": "\u00E6" }, + "⁡": { "codepoints": [8289], "characters": "\u2061" }, + "𝔞": { "codepoints": [120094], "characters": "\uD835\uDD1E" }, + "à": { "codepoints": [224], "characters": "\u00E0" }, + "à": { "codepoints": [224], "characters": "\u00E0" }, + "ℵ": { "codepoints": [8501], "characters": "\u2135" }, + "ℵ": { "codepoints": [8501], "characters": "\u2135" }, + "α": { "codepoints": [945], "characters": "\u03B1" }, + "ā": { "codepoints": [257], "characters": "\u0101" }, + "⨿": { "codepoints": [10815], "characters": "\u2A3F" }, + "&": { "codepoints": [38], "characters": "\u0026" }, + "&": { "codepoints": [38], "characters": "\u0026" }, + "∧": { "codepoints": [8743], "characters": "\u2227" }, + "⩕": { "codepoints": [10837], "characters": "\u2A55" }, + "⩜": { "codepoints": [10844], "characters": "\u2A5C" }, + "⩘": { "codepoints": [10840], "characters": "\u2A58" }, + "⩚": { "codepoints": [10842], "characters": "\u2A5A" }, + "∠": { "codepoints": [8736], "characters": "\u2220" }, + "⦤": { "codepoints": [10660], "characters": "\u29A4" }, + "∠": { "codepoints": [8736], "characters": "\u2220" }, + "∡": { "codepoints": [8737], "characters": "\u2221" }, + "⦨": { "codepoints": [10664], "characters": "\u29A8" }, + "⦩": { "codepoints": [10665], "characters": "\u29A9" }, + "⦪": { "codepoints": [10666], "characters": "\u29AA" }, + "⦫": { "codepoints": [10667], "characters": "\u29AB" }, + "⦬": { "codepoints": [10668], "characters": "\u29AC" }, + "⦭": { "codepoints": [10669], "characters": "\u29AD" }, + "⦮": { "codepoints": [10670], "characters": "\u29AE" }, + "⦯": { "codepoints": [10671], "characters": "\u29AF" }, + "∟": { "codepoints": [8735], "characters": "\u221F" }, + "⊾": { "codepoints": [8894], "characters": "\u22BE" }, + "⦝": { "codepoints": [10653], "characters": "\u299D" }, + "∢": { "codepoints": [8738], "characters": "\u2222" }, + "Å": { "codepoints": [197], "characters": "\u00C5" }, + "⍼": { "codepoints": [9084], "characters": "\u237C" }, + "ą": { "codepoints": [261], "characters": "\u0105" }, + "𝕒": { "codepoints": [120146], "characters": "\uD835\uDD52" }, + "≈": { "codepoints": [8776], "characters": "\u2248" }, + "⩰": { "codepoints": [10864], "characters": "\u2A70" }, + "⩯": { "codepoints": [10863], "characters": "\u2A6F" }, + "≊": { "codepoints": [8778], "characters": "\u224A" }, + "≋": { "codepoints": [8779], "characters": "\u224B" }, + "'": { "codepoints": [39], "characters": "\u0027" }, + "≈": { "codepoints": [8776], "characters": "\u2248" }, + "≊": { "codepoints": [8778], "characters": "\u224A" }, + "å": { "codepoints": [229], "characters": "\u00E5" }, + "å": { "codepoints": [229], "characters": "\u00E5" }, + "𝒶": { "codepoints": [119990], "characters": "\uD835\uDCB6" }, + "*": { "codepoints": [42], "characters": "\u002A" }, + "≈": { "codepoints": [8776], "characters": "\u2248" }, + "≍": { "codepoints": [8781], "characters": "\u224D" }, + "ã": { "codepoints": [227], "characters": "\u00E3" }, + "ã": { "codepoints": [227], "characters": "\u00E3" }, + "ä": { "codepoints": [228], "characters": "\u00E4" }, + "ä": { "codepoints": [228], "characters": "\u00E4" }, + "∳": { "codepoints": [8755], "characters": "\u2233" }, + "⨑": { "codepoints": [10769], "characters": "\u2A11" }, + "⫭": { "codepoints": [10989], "characters": "\u2AED" }, + "≌": { "codepoints": [8780], "characters": "\u224C" }, + "϶": { "codepoints": [1014], "characters": "\u03F6" }, + "‵": { "codepoints": [8245], "characters": "\u2035" }, + "∽": { "codepoints": [8765], "characters": "\u223D" }, + "⋍": { "codepoints": [8909], "characters": "\u22CD" }, + "⊽": { "codepoints": [8893], "characters": "\u22BD" }, + "⌅": { "codepoints": [8965], "characters": "\u2305" }, + "⌅": { "codepoints": [8965], "characters": "\u2305" }, + "⎵": { "codepoints": [9141], "characters": "\u23B5" }, + "⎶": { "codepoints": [9142], "characters": "\u23B6" }, + "≌": { "codepoints": [8780], "characters": "\u224C" }, + "б": { "codepoints": [1073], "characters": "\u0431" }, + "„": { "codepoints": [8222], "characters": "\u201E" }, + "∵": { "codepoints": [8757], "characters": "\u2235" }, + "∵": { "codepoints": [8757], "characters": "\u2235" }, + "⦰": { "codepoints": [10672], "characters": "\u29B0" }, + "϶": { "codepoints": [1014], "characters": "\u03F6" }, + "ℬ": { "codepoints": [8492], "characters": "\u212C" }, + "β": { "codepoints": [946], "characters": "\u03B2" }, + "ℶ": { "codepoints": [8502], "characters": "\u2136" }, + "≬": { "codepoints": [8812], "characters": "\u226C" }, + "𝔟": { "codepoints": [120095], "characters": "\uD835\uDD1F" }, + "⋂": { "codepoints": [8898], "characters": "\u22C2" }, + "◯": { "codepoints": [9711], "characters": "\u25EF" }, + "⋃": { "codepoints": [8899], "characters": "\u22C3" }, + "⨀": { "codepoints": [10752], "characters": "\u2A00" }, + "⨁": { "codepoints": [10753], "characters": "\u2A01" }, + "⨂": { "codepoints": [10754], "characters": "\u2A02" }, + "⨆": { "codepoints": [10758], "characters": "\u2A06" }, + "★": { "codepoints": [9733], "characters": "\u2605" }, + "▽": { "codepoints": [9661], "characters": "\u25BD" }, + "△": { "codepoints": [9651], "characters": "\u25B3" }, + "⨄": { "codepoints": [10756], "characters": "\u2A04" }, + "⋁": { "codepoints": [8897], "characters": "\u22C1" }, + "⋀": { "codepoints": [8896], "characters": "\u22C0" }, + "⤍": { "codepoints": [10509], "characters": "\u290D" }, + "⧫": { "codepoints": [10731], "characters": "\u29EB" }, + "▪": { "codepoints": [9642], "characters": "\u25AA" }, + "▴": { "codepoints": [9652], "characters": "\u25B4" }, + "▾": { "codepoints": [9662], "characters": "\u25BE" }, + "◂": { "codepoints": [9666], "characters": "\u25C2" }, + "▸": { "codepoints": [9656], "characters": "\u25B8" }, + "␣": { "codepoints": [9251], "characters": "\u2423" }, + "▒": { "codepoints": [9618], "characters": "\u2592" }, + "░": { "codepoints": [9617], "characters": "\u2591" }, + "▓": { "codepoints": [9619], "characters": "\u2593" }, + "█": { "codepoints": [9608], "characters": "\u2588" }, + "=⃥": { "codepoints": [61, 8421], "characters": "\u003D\u20E5" }, + "≡⃥": { "codepoints": [8801, 8421], "characters": "\u2261\u20E5" }, + "⌐": { "codepoints": [8976], "characters": "\u2310" }, + "𝕓": { "codepoints": [120147], "characters": "\uD835\uDD53" }, + "⊥": { "codepoints": [8869], "characters": "\u22A5" }, + "⊥": { "codepoints": [8869], "characters": "\u22A5" }, + "⋈": { "codepoints": [8904], "characters": "\u22C8" }, + "╗": { "codepoints": [9559], "characters": "\u2557" }, + "╔": { "codepoints": [9556], "characters": "\u2554" }, + "╖": { "codepoints": [9558], "characters": "\u2556" }, + "╓": { "codepoints": [9555], "characters": "\u2553" }, + "═": { "codepoints": [9552], "characters": "\u2550" }, + "╦": { "codepoints": [9574], "characters": "\u2566" }, + "╩": { "codepoints": [9577], "characters": "\u2569" }, + "╤": { "codepoints": [9572], "characters": "\u2564" }, + "╧": { "codepoints": [9575], "characters": "\u2567" }, + "╝": { "codepoints": [9565], "characters": "\u255D" }, + "╚": { "codepoints": [9562], "characters": "\u255A" }, + "╜": { "codepoints": [9564], "characters": "\u255C" }, + "╙": { "codepoints": [9561], "characters": "\u2559" }, + "║": { "codepoints": [9553], "characters": "\u2551" }, + "╬": { "codepoints": [9580], "characters": "\u256C" }, + "╣": { "codepoints": [9571], "characters": "\u2563" }, + "╠": { "codepoints": [9568], "characters": "\u2560" }, + "╫": { "codepoints": [9579], "characters": "\u256B" }, + "╢": { "codepoints": [9570], "characters": "\u2562" }, + "╟": { "codepoints": [9567], "characters": "\u255F" }, + "⧉": { "codepoints": [10697], "characters": "\u29C9" }, + "╕": { "codepoints": [9557], "characters": "\u2555" }, + "╒": { "codepoints": [9554], "characters": "\u2552" }, + "┐": { "codepoints": [9488], "characters": "\u2510" }, + "┌": { "codepoints": [9484], "characters": "\u250C" }, + "─": { "codepoints": [9472], "characters": "\u2500" }, + "╥": { "codepoints": [9573], "characters": "\u2565" }, + "╨": { "codepoints": [9576], "characters": "\u2568" }, + "┬": { "codepoints": [9516], "characters": "\u252C" }, + "┴": { "codepoints": [9524], "characters": "\u2534" }, + "⊟": { "codepoints": [8863], "characters": "\u229F" }, + "⊞": { "codepoints": [8862], "characters": "\u229E" }, + "⊠": { "codepoints": [8864], "characters": "\u22A0" }, + "╛": { "codepoints": [9563], "characters": "\u255B" }, + "╘": { "codepoints": [9560], "characters": "\u2558" }, + "┘": { "codepoints": [9496], "characters": "\u2518" }, + "└": { "codepoints": [9492], "characters": "\u2514" }, + "│": { "codepoints": [9474], "characters": "\u2502" }, + "╪": { "codepoints": [9578], "characters": "\u256A" }, + "╡": { "codepoints": [9569], "characters": "\u2561" }, + "╞": { "codepoints": [9566], "characters": "\u255E" }, + "┼": { "codepoints": [9532], "characters": "\u253C" }, + "┤": { "codepoints": [9508], "characters": "\u2524" }, + "├": { "codepoints": [9500], "characters": "\u251C" }, + "‵": { "codepoints": [8245], "characters": "\u2035" }, + "˘": { "codepoints": [728], "characters": "\u02D8" }, + "¦": { "codepoints": [166], "characters": "\u00A6" }, + "¦": { "codepoints": [166], "characters": "\u00A6" }, + "𝒷": { "codepoints": [119991], "characters": "\uD835\uDCB7" }, + "⁏": { "codepoints": [8271], "characters": "\u204F" }, + "∽": { "codepoints": [8765], "characters": "\u223D" }, + "⋍": { "codepoints": [8909], "characters": "\u22CD" }, + "\": { "codepoints": [92], "characters": "\u005C" }, + "⧅": { "codepoints": [10693], "characters": "\u29C5" }, + "⟈": { "codepoints": [10184], "characters": "\u27C8" }, + "•": { "codepoints": [8226], "characters": "\u2022" }, + "•": { "codepoints": [8226], "characters": "\u2022" }, + "≎": { "codepoints": [8782], "characters": "\u224E" }, + "⪮": { "codepoints": [10926], "characters": "\u2AAE" }, + "≏": { "codepoints": [8783], "characters": "\u224F" }, + "≏": { "codepoints": [8783], "characters": "\u224F" }, + "ć": { "codepoints": [263], "characters": "\u0107" }, + "∩": { "codepoints": [8745], "characters": "\u2229" }, + "⩄": { "codepoints": [10820], "characters": "\u2A44" }, + "⩉": { "codepoints": [10825], "characters": "\u2A49" }, + "⩋": { "codepoints": [10827], "characters": "\u2A4B" }, + "⩇": { "codepoints": [10823], "characters": "\u2A47" }, + "⩀": { "codepoints": [10816], "characters": "\u2A40" }, + "∩︀": { "codepoints": [8745, 65024], "characters": "\u2229\uFE00" }, + "⁁": { "codepoints": [8257], "characters": "\u2041" }, + "ˇ": { "codepoints": [711], "characters": "\u02C7" }, + "⩍": { "codepoints": [10829], "characters": "\u2A4D" }, + "č": { "codepoints": [269], "characters": "\u010D" }, + "ç": { "codepoints": [231], "characters": "\u00E7" }, + "ç": { "codepoints": [231], "characters": "\u00E7" }, + "ĉ": { "codepoints": [265], "characters": "\u0109" }, + "⩌": { "codepoints": [10828], "characters": "\u2A4C" }, + "⩐": { "codepoints": [10832], "characters": "\u2A50" }, + "ċ": { "codepoints": [267], "characters": "\u010B" }, + "¸": { "codepoints": [184], "characters": "\u00B8" }, + "¸": { "codepoints": [184], "characters": "\u00B8" }, + "⦲": { "codepoints": [10674], "characters": "\u29B2" }, + "¢": { "codepoints": [162], "characters": "\u00A2" }, + "¢": { "codepoints": [162], "characters": "\u00A2" }, + "·": { "codepoints": [183], "characters": "\u00B7" }, + "𝔠": { "codepoints": [120096], "characters": "\uD835\uDD20" }, + "ч": { "codepoints": [1095], "characters": "\u0447" }, + "✓": { "codepoints": [10003], "characters": "\u2713" }, + "✓": { "codepoints": [10003], "characters": "\u2713" }, + "χ": { "codepoints": [967], "characters": "\u03C7" }, + "○": { "codepoints": [9675], "characters": "\u25CB" }, + "⧃": { "codepoints": [10691], "characters": "\u29C3" }, + "ˆ": { "codepoints": [710], "characters": "\u02C6" }, + "≗": { "codepoints": [8791], "characters": "\u2257" }, + "↺": { "codepoints": [8634], "characters": "\u21BA" }, + "↻": { "codepoints": [8635], "characters": "\u21BB" }, + "®": { "codepoints": [174], "characters": "\u00AE" }, + "Ⓢ": { "codepoints": [9416], "characters": "\u24C8" }, + "⊛": { "codepoints": [8859], "characters": "\u229B" }, + "⊚": { "codepoints": [8858], "characters": "\u229A" }, + "⊝": { "codepoints": [8861], "characters": "\u229D" }, + "≗": { "codepoints": [8791], "characters": "\u2257" }, + "⨐": { "codepoints": [10768], "characters": "\u2A10" }, + "⫯": { "codepoints": [10991], "characters": "\u2AEF" }, + "⧂": { "codepoints": [10690], "characters": "\u29C2" }, + "♣": { "codepoints": [9827], "characters": "\u2663" }, + "♣": { "codepoints": [9827], "characters": "\u2663" }, + ":": { "codepoints": [58], "characters": "\u003A" }, + "≔": { "codepoints": [8788], "characters": "\u2254" }, + "≔": { "codepoints": [8788], "characters": "\u2254" }, + ",": { "codepoints": [44], "characters": "\u002C" }, + "@": { "codepoints": [64], "characters": "\u0040" }, + "∁": { "codepoints": [8705], "characters": "\u2201" }, + "∘": { "codepoints": [8728], "characters": "\u2218" }, + "∁": { "codepoints": [8705], "characters": "\u2201" }, + "ℂ": { "codepoints": [8450], "characters": "\u2102" }, + "≅": { "codepoints": [8773], "characters": "\u2245" }, + "⩭": { "codepoints": [10861], "characters": "\u2A6D" }, + "∮": { "codepoints": [8750], "characters": "\u222E" }, + "𝕔": { "codepoints": [120148], "characters": "\uD835\uDD54" }, + "∐": { "codepoints": [8720], "characters": "\u2210" }, + "©": { "codepoints": [169], "characters": "\u00A9" }, + "©": { "codepoints": [169], "characters": "\u00A9" }, + "℗": { "codepoints": [8471], "characters": "\u2117" }, + "↵": { "codepoints": [8629], "characters": "\u21B5" }, + "✗": { "codepoints": [10007], "characters": "\u2717" }, + "𝒸": { "codepoints": [119992], "characters": "\uD835\uDCB8" }, + "⫏": { "codepoints": [10959], "characters": "\u2ACF" }, + "⫑": { "codepoints": [10961], "characters": "\u2AD1" }, + "⫐": { "codepoints": [10960], "characters": "\u2AD0" }, + "⫒": { "codepoints": [10962], "characters": "\u2AD2" }, + "⋯": { "codepoints": [8943], "characters": "\u22EF" }, + "⤸": { "codepoints": [10552], "characters": "\u2938" }, + "⤵": { "codepoints": [10549], "characters": "\u2935" }, + "⋞": { "codepoints": [8926], "characters": "\u22DE" }, + "⋟": { "codepoints": [8927], "characters": "\u22DF" }, + "↶": { "codepoints": [8630], "characters": "\u21B6" }, + "⤽": { "codepoints": [10557], "characters": "\u293D" }, + "∪": { "codepoints": [8746], "characters": "\u222A" }, + "⩈": { "codepoints": [10824], "characters": "\u2A48" }, + "⩆": { "codepoints": [10822], "characters": "\u2A46" }, + "⩊": { "codepoints": [10826], "characters": "\u2A4A" }, + "⊍": { "codepoints": [8845], "characters": "\u228D" }, + "⩅": { "codepoints": [10821], "characters": "\u2A45" }, + "∪︀": { "codepoints": [8746, 65024], "characters": "\u222A\uFE00" }, + "↷": { "codepoints": [8631], "characters": "\u21B7" }, + "⤼": { "codepoints": [10556], "characters": "\u293C" }, + "⋞": { "codepoints": [8926], "characters": "\u22DE" }, + "⋟": { "codepoints": [8927], "characters": "\u22DF" }, + "⋎": { "codepoints": [8910], "characters": "\u22CE" }, + "⋏": { "codepoints": [8911], "characters": "\u22CF" }, + "¤": { "codepoints": [164], "characters": "\u00A4" }, + "¤": { "codepoints": [164], "characters": "\u00A4" }, + "↶": { "codepoints": [8630], "characters": "\u21B6" }, + "↷": { "codepoints": [8631], "characters": "\u21B7" }, + "⋎": { "codepoints": [8910], "characters": "\u22CE" }, + "⋏": { "codepoints": [8911], "characters": "\u22CF" }, + "∲": { "codepoints": [8754], "characters": "\u2232" }, + "∱": { "codepoints": [8753], "characters": "\u2231" }, + "⌭": { "codepoints": [9005], "characters": "\u232D" }, + "⇓": { "codepoints": [8659], "characters": "\u21D3" }, + "⥥": { "codepoints": [10597], "characters": "\u2965" }, + "†": { "codepoints": [8224], "characters": "\u2020" }, + "ℸ": { "codepoints": [8504], "characters": "\u2138" }, + "↓": { "codepoints": [8595], "characters": "\u2193" }, + "‐": { "codepoints": [8208], "characters": "\u2010" }, + "⊣": { "codepoints": [8867], "characters": "\u22A3" }, + "⤏": { "codepoints": [10511], "characters": "\u290F" }, + "˝": { "codepoints": [733], "characters": "\u02DD" }, + "ď": { "codepoints": [271], "characters": "\u010F" }, + "д": { "codepoints": [1076], "characters": "\u0434" }, + "ⅆ": { "codepoints": [8518], "characters": "\u2146" }, + "‡": { "codepoints": [8225], "characters": "\u2021" }, + "⇊": { "codepoints": [8650], "characters": "\u21CA" }, + "⩷": { "codepoints": [10871], "characters": "\u2A77" }, + "°": { "codepoints": [176], "characters": "\u00B0" }, + "°": { "codepoints": [176], "characters": "\u00B0" }, + "δ": { "codepoints": [948], "characters": "\u03B4" }, + "⦱": { "codepoints": [10673], "characters": "\u29B1" }, + "⥿": { "codepoints": [10623], "characters": "\u297F" }, + "𝔡": { "codepoints": [120097], "characters": "\uD835\uDD21" }, + "⇃": { "codepoints": [8643], "characters": "\u21C3" }, + "⇂": { "codepoints": [8642], "characters": "\u21C2" }, + "⋄": { "codepoints": [8900], "characters": "\u22C4" }, + "⋄": { "codepoints": [8900], "characters": "\u22C4" }, + "♦": { "codepoints": [9830], "characters": "\u2666" }, + "♦": { "codepoints": [9830], "characters": "\u2666" }, + "¨": { "codepoints": [168], "characters": "\u00A8" }, + "ϝ": { "codepoints": [989], "characters": "\u03DD" }, + "⋲": { "codepoints": [8946], "characters": "\u22F2" }, + "÷": { "codepoints": [247], "characters": "\u00F7" }, + "÷": { "codepoints": [247], "characters": "\u00F7" }, + "÷": { "codepoints": [247], "characters": "\u00F7" }, + "⋇": { "codepoints": [8903], "characters": "\u22C7" }, + "⋇": { "codepoints": [8903], "characters": "\u22C7" }, + "ђ": { "codepoints": [1106], "characters": "\u0452" }, + "⌞": { "codepoints": [8990], "characters": "\u231E" }, + "⌍": { "codepoints": [8973], "characters": "\u230D" }, + "$": { "codepoints": [36], "characters": "\u0024" }, + "𝕕": { "codepoints": [120149], "characters": "\uD835\uDD55" }, + "˙": { "codepoints": [729], "characters": "\u02D9" }, + "≐": { "codepoints": [8784], "characters": "\u2250" }, + "≑": { "codepoints": [8785], "characters": "\u2251" }, + "∸": { "codepoints": [8760], "characters": "\u2238" }, + "∔": { "codepoints": [8724], "characters": "\u2214" }, + "⊡": { "codepoints": [8865], "characters": "\u22A1" }, + "⌆": { "codepoints": [8966], "characters": "\u2306" }, + "↓": { "codepoints": [8595], "characters": "\u2193" }, + "⇊": { "codepoints": [8650], "characters": "\u21CA" }, + "⇃": { "codepoints": [8643], "characters": "\u21C3" }, + "⇂": { "codepoints": [8642], "characters": "\u21C2" }, + "⤐": { "codepoints": [10512], "characters": "\u2910" }, + "⌟": { "codepoints": [8991], "characters": "\u231F" }, + "⌌": { "codepoints": [8972], "characters": "\u230C" }, + "𝒹": { "codepoints": [119993], "characters": "\uD835\uDCB9" }, + "ѕ": { "codepoints": [1109], "characters": "\u0455" }, + "⧶": { "codepoints": [10742], "characters": "\u29F6" }, + "đ": { "codepoints": [273], "characters": "\u0111" }, + "⋱": { "codepoints": [8945], "characters": "\u22F1" }, + "▿": { "codepoints": [9663], "characters": "\u25BF" }, + "▾": { "codepoints": [9662], "characters": "\u25BE" }, + "⇵": { "codepoints": [8693], "characters": "\u21F5" }, + "⥯": { "codepoints": [10607], "characters": "\u296F" }, + "⦦": { "codepoints": [10662], "characters": "\u29A6" }, + "џ": { "codepoints": [1119], "characters": "\u045F" }, + "⟿": { "codepoints": [10239], "characters": "\u27FF" }, + "⩷": { "codepoints": [10871], "characters": "\u2A77" }, + "≑": { "codepoints": [8785], "characters": "\u2251" }, + "é": { "codepoints": [233], "characters": "\u00E9" }, + "é": { "codepoints": [233], "characters": "\u00E9" }, + "⩮": { "codepoints": [10862], "characters": "\u2A6E" }, + "ě": { "codepoints": [283], "characters": "\u011B" }, + "≖": { "codepoints": [8790], "characters": "\u2256" }, + "ê": { "codepoints": [234], "characters": "\u00EA" }, + "ê": { "codepoints": [234], "characters": "\u00EA" }, + "≕": { "codepoints": [8789], "characters": "\u2255" }, + "э": { "codepoints": [1101], "characters": "\u044D" }, + "ė": { "codepoints": [279], "characters": "\u0117" }, + "ⅇ": { "codepoints": [8519], "characters": "\u2147" }, + "≒": { "codepoints": [8786], "characters": "\u2252" }, + "𝔢": { "codepoints": [120098], "characters": "\uD835\uDD22" }, + "⪚": { "codepoints": [10906], "characters": "\u2A9A" }, + "è": { "codepoints": [232], "characters": "\u00E8" }, + "è": { "codepoints": [232], "characters": "\u00E8" }, + "⪖": { "codepoints": [10902], "characters": "\u2A96" }, + "⪘": { "codepoints": [10904], "characters": "\u2A98" }, + "⪙": { "codepoints": [10905], "characters": "\u2A99" }, + "⏧": { "codepoints": [9191], "characters": "\u23E7" }, + "ℓ": { "codepoints": [8467], "characters": "\u2113" }, + "⪕": { "codepoints": [10901], "characters": "\u2A95" }, + "⪗": { "codepoints": [10903], "characters": "\u2A97" }, + "ē": { "codepoints": [275], "characters": "\u0113" }, + "∅": { "codepoints": [8709], "characters": "\u2205" }, + "∅": { "codepoints": [8709], "characters": "\u2205" }, + "∅": { "codepoints": [8709], "characters": "\u2205" }, + " ": { "codepoints": [8196], "characters": "\u2004" }, + " ": { "codepoints": [8197], "characters": "\u2005" }, + " ": { "codepoints": [8195], "characters": "\u2003" }, + "ŋ": { "codepoints": [331], "characters": "\u014B" }, + " ": { "codepoints": [8194], "characters": "\u2002" }, + "ę": { "codepoints": [281], "characters": "\u0119" }, + "𝕖": { "codepoints": [120150], "characters": "\uD835\uDD56" }, + "⋕": { "codepoints": [8917], "characters": "\u22D5" }, + "⧣": { "codepoints": [10723], "characters": "\u29E3" }, + "⩱": { "codepoints": [10865], "characters": "\u2A71" }, + "ε": { "codepoints": [949], "characters": "\u03B5" }, + "ε": { "codepoints": [949], "characters": "\u03B5" }, + "ϵ": { "codepoints": [1013], "characters": "\u03F5" }, + "≖": { "codepoints": [8790], "characters": "\u2256" }, + "≕": { "codepoints": [8789], "characters": "\u2255" }, + "≂": { "codepoints": [8770], "characters": "\u2242" }, + "⪖": { "codepoints": [10902], "characters": "\u2A96" }, + "⪕": { "codepoints": [10901], "characters": "\u2A95" }, + "=": { "codepoints": [61], "characters": "\u003D" }, + "≟": { "codepoints": [8799], "characters": "\u225F" }, + "≡": { "codepoints": [8801], "characters": "\u2261" }, + "⩸": { "codepoints": [10872], "characters": "\u2A78" }, + "⧥": { "codepoints": [10725], "characters": "\u29E5" }, + "≓": { "codepoints": [8787], "characters": "\u2253" }, + "⥱": { "codepoints": [10609], "characters": "\u2971" }, + "ℯ": { "codepoints": [8495], "characters": "\u212F" }, + "≐": { "codepoints": [8784], "characters": "\u2250" }, + "≂": { "codepoints": [8770], "characters": "\u2242" }, + "η": { "codepoints": [951], "characters": "\u03B7" }, + "ð": { "codepoints": [240], "characters": "\u00F0" }, + "ð": { "codepoints": [240], "characters": "\u00F0" }, + "ë": { "codepoints": [235], "characters": "\u00EB" }, + "ë": { "codepoints": [235], "characters": "\u00EB" }, + "€": { "codepoints": [8364], "characters": "\u20AC" }, + "!": { "codepoints": [33], "characters": "\u0021" }, + "∃": { "codepoints": [8707], "characters": "\u2203" }, + "ℰ": { "codepoints": [8496], "characters": "\u2130" }, + "ⅇ": { "codepoints": [8519], "characters": "\u2147" }, + "≒": { "codepoints": [8786], "characters": "\u2252" }, + "ф": { "codepoints": [1092], "characters": "\u0444" }, + "♀": { "codepoints": [9792], "characters": "\u2640" }, + "ffi": { "codepoints": [64259], "characters": "\uFB03" }, + "ff": { "codepoints": [64256], "characters": "\uFB00" }, + "ffl": { "codepoints": [64260], "characters": "\uFB04" }, + "𝔣": { "codepoints": [120099], "characters": "\uD835\uDD23" }, + "fi": { "codepoints": [64257], "characters": "\uFB01" }, + "fj": { "codepoints": [102, 106], "characters": "\u0066\u006A" }, + "♭": { "codepoints": [9837], "characters": "\u266D" }, + "fl": { "codepoints": [64258], "characters": "\uFB02" }, + "▱": { "codepoints": [9649], "characters": "\u25B1" }, + "ƒ": { "codepoints": [402], "characters": "\u0192" }, + "𝕗": { "codepoints": [120151], "characters": "\uD835\uDD57" }, + "∀": { "codepoints": [8704], "characters": "\u2200" }, + "⋔": { "codepoints": [8916], "characters": "\u22D4" }, + "⫙": { "codepoints": [10969], "characters": "\u2AD9" }, + "⨍": { "codepoints": [10765], "characters": "\u2A0D" }, + "½": { "codepoints": [189], "characters": "\u00BD" }, + "½": { "codepoints": [189], "characters": "\u00BD" }, + "⅓": { "codepoints": [8531], "characters": "\u2153" }, + "¼": { "codepoints": [188], "characters": "\u00BC" }, + "¼": { "codepoints": [188], "characters": "\u00BC" }, + "⅕": { "codepoints": [8533], "characters": "\u2155" }, + "⅙": { "codepoints": [8537], "characters": "\u2159" }, + "⅛": { "codepoints": [8539], "characters": "\u215B" }, + "⅔": { "codepoints": [8532], "characters": "\u2154" }, + "⅖": { "codepoints": [8534], "characters": "\u2156" }, + "¾": { "codepoints": [190], "characters": "\u00BE" }, + "¾": { "codepoints": [190], "characters": "\u00BE" }, + "⅗": { "codepoints": [8535], "characters": "\u2157" }, + "⅜": { "codepoints": [8540], "characters": "\u215C" }, + "⅘": { "codepoints": [8536], "characters": "\u2158" }, + "⅚": { "codepoints": [8538], "characters": "\u215A" }, + "⅝": { "codepoints": [8541], "characters": "\u215D" }, + "⅞": { "codepoints": [8542], "characters": "\u215E" }, + "⁄": { "codepoints": [8260], "characters": "\u2044" }, + "⌢": { "codepoints": [8994], "characters": "\u2322" }, + "𝒻": { "codepoints": [119995], "characters": "\uD835\uDCBB" }, + "≧": { "codepoints": [8807], "characters": "\u2267" }, + "⪌": { "codepoints": [10892], "characters": "\u2A8C" }, + "ǵ": { "codepoints": [501], "characters": "\u01F5" }, + "γ": { "codepoints": [947], "characters": "\u03B3" }, + "ϝ": { "codepoints": [989], "characters": "\u03DD" }, + "⪆": { "codepoints": [10886], "characters": "\u2A86" }, + "ğ": { "codepoints": [287], "characters": "\u011F" }, + "ĝ": { "codepoints": [285], "characters": "\u011D" }, + "г": { "codepoints": [1075], "characters": "\u0433" }, + "ġ": { "codepoints": [289], "characters": "\u0121" }, + "≥": { "codepoints": [8805], "characters": "\u2265" }, + "⋛": { "codepoints": [8923], "characters": "\u22DB" }, + "≥": { "codepoints": [8805], "characters": "\u2265" }, + "≧": { "codepoints": [8807], "characters": "\u2267" }, + "⩾": { "codepoints": [10878], "characters": "\u2A7E" }, + "⩾": { "codepoints": [10878], "characters": "\u2A7E" }, + "⪩": { "codepoints": [10921], "characters": "\u2AA9" }, + "⪀": { "codepoints": [10880], "characters": "\u2A80" }, + "⪂": { "codepoints": [10882], "characters": "\u2A82" }, + "⪄": { "codepoints": [10884], "characters": "\u2A84" }, + "⋛︀": { "codepoints": [8923, 65024], "characters": "\u22DB\uFE00" }, + "⪔": { "codepoints": [10900], "characters": "\u2A94" }, + "𝔤": { "codepoints": [120100], "characters": "\uD835\uDD24" }, + "≫": { "codepoints": [8811], "characters": "\u226B" }, + "⋙": { "codepoints": [8921], "characters": "\u22D9" }, + "ℷ": { "codepoints": [8503], "characters": "\u2137" }, + "ѓ": { "codepoints": [1107], "characters": "\u0453" }, + "≷": { "codepoints": [8823], "characters": "\u2277" }, + "⪒": { "codepoints": [10898], "characters": "\u2A92" }, + "⪥": { "codepoints": [10917], "characters": "\u2AA5" }, + "⪤": { "codepoints": [10916], "characters": "\u2AA4" }, + "≩": { "codepoints": [8809], "characters": "\u2269" }, + "⪊": { "codepoints": [10890], "characters": "\u2A8A" }, + "⪊": { "codepoints": [10890], "characters": "\u2A8A" }, + "⪈": { "codepoints": [10888], "characters": "\u2A88" }, + "⪈": { "codepoints": [10888], "characters": "\u2A88" }, + "≩": { "codepoints": [8809], "characters": "\u2269" }, + "⋧": { "codepoints": [8935], "characters": "\u22E7" }, + "𝕘": { "codepoints": [120152], "characters": "\uD835\uDD58" }, + "`": { "codepoints": [96], "characters": "\u0060" }, + "ℊ": { "codepoints": [8458], "characters": "\u210A" }, + "≳": { "codepoints": [8819], "characters": "\u2273" }, + "⪎": { "codepoints": [10894], "characters": "\u2A8E" }, + "⪐": { "codepoints": [10896], "characters": "\u2A90" }, + ">": { "codepoints": [62], "characters": "\u003E" }, + ">": { "codepoints": [62], "characters": "\u003E" }, + "⪧": { "codepoints": [10919], "characters": "\u2AA7" }, + "⩺": { "codepoints": [10874], "characters": "\u2A7A" }, + "⋗": { "codepoints": [8919], "characters": "\u22D7" }, + "⦕": { "codepoints": [10645], "characters": "\u2995" }, + "⩼": { "codepoints": [10876], "characters": "\u2A7C" }, + "⪆": { "codepoints": [10886], "characters": "\u2A86" }, + "⥸": { "codepoints": [10616], "characters": "\u2978" }, + "⋗": { "codepoints": [8919], "characters": "\u22D7" }, + "⋛": { "codepoints": [8923], "characters": "\u22DB" }, + "⪌": { "codepoints": [10892], "characters": "\u2A8C" }, + "≷": { "codepoints": [8823], "characters": "\u2277" }, + "≳": { "codepoints": [8819], "characters": "\u2273" }, + "≩︀": { "codepoints": [8809, 65024], "characters": "\u2269\uFE00" }, + "≩︀": { "codepoints": [8809, 65024], "characters": "\u2269\uFE00" }, + "⇔": { "codepoints": [8660], "characters": "\u21D4" }, + " ": { "codepoints": [8202], "characters": "\u200A" }, + "½": { "codepoints": [189], "characters": "\u00BD" }, + "ℋ": { "codepoints": [8459], "characters": "\u210B" }, + "ъ": { "codepoints": [1098], "characters": "\u044A" }, + "↔": { "codepoints": [8596], "characters": "\u2194" }, + "⥈": { "codepoints": [10568], "characters": "\u2948" }, + "↭": { "codepoints": [8621], "characters": "\u21AD" }, + "ℏ": { "codepoints": [8463], "characters": "\u210F" }, + "ĥ": { "codepoints": [293], "characters": "\u0125" }, + "♥": { "codepoints": [9829], "characters": "\u2665" }, + "♥": { "codepoints": [9829], "characters": "\u2665" }, + "…": { "codepoints": [8230], "characters": "\u2026" }, + "⊹": { "codepoints": [8889], "characters": "\u22B9" }, + "𝔥": { "codepoints": [120101], "characters": "\uD835\uDD25" }, + "⤥": { "codepoints": [10533], "characters": "\u2925" }, + "⤦": { "codepoints": [10534], "characters": "\u2926" }, + "⇿": { "codepoints": [8703], "characters": "\u21FF" }, + "∻": { "codepoints": [8763], "characters": "\u223B" }, + "↩": { "codepoints": [8617], "characters": "\u21A9" }, + "↪": { "codepoints": [8618], "characters": "\u21AA" }, + "𝕙": { "codepoints": [120153], "characters": "\uD835\uDD59" }, + "―": { "codepoints": [8213], "characters": "\u2015" }, + "𝒽": { "codepoints": [119997], "characters": "\uD835\uDCBD" }, + "ℏ": { "codepoints": [8463], "characters": "\u210F" }, + "ħ": { "codepoints": [295], "characters": "\u0127" }, + "⁃": { "codepoints": [8259], "characters": "\u2043" }, + "‐": { "codepoints": [8208], "characters": "\u2010" }, + "í": { "codepoints": [237], "characters": "\u00ED" }, + "í": { "codepoints": [237], "characters": "\u00ED" }, + "⁣": { "codepoints": [8291], "characters": "\u2063" }, + "î": { "codepoints": [238], "characters": "\u00EE" }, + "î": { "codepoints": [238], "characters": "\u00EE" }, + "и": { "codepoints": [1080], "characters": "\u0438" }, + "е": { "codepoints": [1077], "characters": "\u0435" }, + "¡": { "codepoints": [161], "characters": "\u00A1" }, + "¡": { "codepoints": [161], "characters": "\u00A1" }, + "⇔": { "codepoints": [8660], "characters": "\u21D4" }, + "𝔦": { "codepoints": [120102], "characters": "\uD835\uDD26" }, + "ì": { "codepoints": [236], "characters": "\u00EC" }, + "ì": { "codepoints": [236], "characters": "\u00EC" }, + "ⅈ": { "codepoints": [8520], "characters": "\u2148" }, + "⨌": { "codepoints": [10764], "characters": "\u2A0C" }, + "∭": { "codepoints": [8749], "characters": "\u222D" }, + "⧜": { "codepoints": [10716], "characters": "\u29DC" }, + "℩": { "codepoints": [8489], "characters": "\u2129" }, + "ij": { "codepoints": [307], "characters": "\u0133" }, + "ī": { "codepoints": [299], "characters": "\u012B" }, + "ℑ": { "codepoints": [8465], "characters": "\u2111" }, + "ℐ": { "codepoints": [8464], "characters": "\u2110" }, + "ℑ": { "codepoints": [8465], "characters": "\u2111" }, + "ı": { "codepoints": [305], "characters": "\u0131" }, + "⊷": { "codepoints": [8887], "characters": "\u22B7" }, + "Ƶ": { "codepoints": [437], "characters": "\u01B5" }, + "∈": { "codepoints": [8712], "characters": "\u2208" }, + "℅": { "codepoints": [8453], "characters": "\u2105" }, + "∞": { "codepoints": [8734], "characters": "\u221E" }, + "⧝": { "codepoints": [10717], "characters": "\u29DD" }, + "ı": { "codepoints": [305], "characters": "\u0131" }, + "∫": { "codepoints": [8747], "characters": "\u222B" }, + "⊺": { "codepoints": [8890], "characters": "\u22BA" }, + "ℤ": { "codepoints": [8484], "characters": "\u2124" }, + "⊺": { "codepoints": [8890], "characters": "\u22BA" }, + "⨗": { "codepoints": [10775], "characters": "\u2A17" }, + "⨼": { "codepoints": [10812], "characters": "\u2A3C" }, + "ё": { "codepoints": [1105], "characters": "\u0451" }, + "į": { "codepoints": [303], "characters": "\u012F" }, + "𝕚": { "codepoints": [120154], "characters": "\uD835\uDD5A" }, + "ι": { "codepoints": [953], "characters": "\u03B9" }, + "⨼": { "codepoints": [10812], "characters": "\u2A3C" }, + "¿": { "codepoints": [191], "characters": "\u00BF" }, + "¿": { "codepoints": [191], "characters": "\u00BF" }, + "𝒾": { "codepoints": [119998], "characters": "\uD835\uDCBE" }, + "∈": { "codepoints": [8712], "characters": "\u2208" }, + "⋹": { "codepoints": [8953], "characters": "\u22F9" }, + "⋵": { "codepoints": [8949], "characters": "\u22F5" }, + "⋴": { "codepoints": [8948], "characters": "\u22F4" }, + "⋳": { "codepoints": [8947], "characters": "\u22F3" }, + "∈": { "codepoints": [8712], "characters": "\u2208" }, + "⁢": { "codepoints": [8290], "characters": "\u2062" }, + "ĩ": { "codepoints": [297], "characters": "\u0129" }, + "і": { "codepoints": [1110], "characters": "\u0456" }, + "ï": { "codepoints": [239], "characters": "\u00EF" }, + "ï": { "codepoints": [239], "characters": "\u00EF" }, + "ĵ": { "codepoints": [309], "characters": "\u0135" }, + "й": { "codepoints": [1081], "characters": "\u0439" }, + "𝔧": { "codepoints": [120103], "characters": "\uD835\uDD27" }, + "ȷ": { "codepoints": [567], "characters": "\u0237" }, + "𝕛": { "codepoints": [120155], "characters": "\uD835\uDD5B" }, + "𝒿": { "codepoints": [119999], "characters": "\uD835\uDCBF" }, + "ј": { "codepoints": [1112], "characters": "\u0458" }, + "є": { "codepoints": [1108], "characters": "\u0454" }, + "κ": { "codepoints": [954], "characters": "\u03BA" }, + "ϰ": { "codepoints": [1008], "characters": "\u03F0" }, + "ķ": { "codepoints": [311], "characters": "\u0137" }, + "к": { "codepoints": [1082], "characters": "\u043A" }, + "𝔨": { "codepoints": [120104], "characters": "\uD835\uDD28" }, + "ĸ": { "codepoints": [312], "characters": "\u0138" }, + "х": { "codepoints": [1093], "characters": "\u0445" }, + "ќ": { "codepoints": [1116], "characters": "\u045C" }, + "𝕜": { "codepoints": [120156], "characters": "\uD835\uDD5C" }, + "𝓀": { "codepoints": [120000], "characters": "\uD835\uDCC0" }, + "⇚": { "codepoints": [8666], "characters": "\u21DA" }, + "⇐": { "codepoints": [8656], "characters": "\u21D0" }, + "⤛": { "codepoints": [10523], "characters": "\u291B" }, + "⤎": { "codepoints": [10510], "characters": "\u290E" }, + "≦": { "codepoints": [8806], "characters": "\u2266" }, + "⪋": { "codepoints": [10891], "characters": "\u2A8B" }, + "⥢": { "codepoints": [10594], "characters": "\u2962" }, + "ĺ": { "codepoints": [314], "characters": "\u013A" }, + "⦴": { "codepoints": [10676], "characters": "\u29B4" }, + "ℒ": { "codepoints": [8466], "characters": "\u2112" }, + "λ": { "codepoints": [955], "characters": "\u03BB" }, + "⟨": { "codepoints": [10216], "characters": "\u27E8" }, + "⦑": { "codepoints": [10641], "characters": "\u2991" }, + "⟨": { "codepoints": [10216], "characters": "\u27E8" }, + "⪅": { "codepoints": [10885], "characters": "\u2A85" }, + "«": { "codepoints": [171], "characters": "\u00AB" }, + "«": { "codepoints": [171], "characters": "\u00AB" }, + "←": { "codepoints": [8592], "characters": "\u2190" }, + "⇤": { "codepoints": [8676], "characters": "\u21E4" }, + "⤟": { "codepoints": [10527], "characters": "\u291F" }, + "⤝": { "codepoints": [10525], "characters": "\u291D" }, + "↩": { "codepoints": [8617], "characters": "\u21A9" }, + "↫": { "codepoints": [8619], "characters": "\u21AB" }, + "⤹": { "codepoints": [10553], "characters": "\u2939" }, + "⥳": { "codepoints": [10611], "characters": "\u2973" }, + "↢": { "codepoints": [8610], "characters": "\u21A2" }, + "⪫": { "codepoints": [10923], "characters": "\u2AAB" }, + "⤙": { "codepoints": [10521], "characters": "\u2919" }, + "⪭": { "codepoints": [10925], "characters": "\u2AAD" }, + "⪭︀": { "codepoints": [10925, 65024], "characters": "\u2AAD\uFE00" }, + "⤌": { "codepoints": [10508], "characters": "\u290C" }, + "❲": { "codepoints": [10098], "characters": "\u2772" }, + "{": { "codepoints": [123], "characters": "\u007B" }, + "[": { "codepoints": [91], "characters": "\u005B" }, + "⦋": { "codepoints": [10635], "characters": "\u298B" }, + "⦏": { "codepoints": [10639], "characters": "\u298F" }, + "⦍": { "codepoints": [10637], "characters": "\u298D" }, + "ľ": { "codepoints": [318], "characters": "\u013E" }, + "ļ": { "codepoints": [316], "characters": "\u013C" }, + "⌈": { "codepoints": [8968], "characters": "\u2308" }, + "{": { "codepoints": [123], "characters": "\u007B" }, + "л": { "codepoints": [1083], "characters": "\u043B" }, + "⤶": { "codepoints": [10550], "characters": "\u2936" }, + "“": { "codepoints": [8220], "characters": "\u201C" }, + "„": { "codepoints": [8222], "characters": "\u201E" }, + "⥧": { "codepoints": [10599], "characters": "\u2967" }, + "⥋": { "codepoints": [10571], "characters": "\u294B" }, + "↲": { "codepoints": [8626], "characters": "\u21B2" }, + "≤": { "codepoints": [8804], "characters": "\u2264" }, + "←": { "codepoints": [8592], "characters": "\u2190" }, + "↢": { "codepoints": [8610], "characters": "\u21A2" }, + "↽": { "codepoints": [8637], "characters": "\u21BD" }, + "↼": { "codepoints": [8636], "characters": "\u21BC" }, + "⇇": { "codepoints": [8647], "characters": "\u21C7" }, + "↔": { "codepoints": [8596], "characters": "\u2194" }, + "⇆": { "codepoints": [8646], "characters": "\u21C6" }, + "⇋": { "codepoints": [8651], "characters": "\u21CB" }, + "↭": { "codepoints": [8621], "characters": "\u21AD" }, + "⋋": { "codepoints": [8907], "characters": "\u22CB" }, + "⋚": { "codepoints": [8922], "characters": "\u22DA" }, + "≤": { "codepoints": [8804], "characters": "\u2264" }, + "≦": { "codepoints": [8806], "characters": "\u2266" }, + "⩽": { "codepoints": [10877], "characters": "\u2A7D" }, + "⩽": { "codepoints": [10877], "characters": "\u2A7D" }, + "⪨": { "codepoints": [10920], "characters": "\u2AA8" }, + "⩿": { "codepoints": [10879], "characters": "\u2A7F" }, + "⪁": { "codepoints": [10881], "characters": "\u2A81" }, + "⪃": { "codepoints": [10883], "characters": "\u2A83" }, + "⋚︀": { "codepoints": [8922, 65024], "characters": "\u22DA\uFE00" }, + "⪓": { "codepoints": [10899], "characters": "\u2A93" }, + "⪅": { "codepoints": [10885], "characters": "\u2A85" }, + "⋖": { "codepoints": [8918], "characters": "\u22D6" }, + "⋚": { "codepoints": [8922], "characters": "\u22DA" }, + "⪋": { "codepoints": [10891], "characters": "\u2A8B" }, + "≶": { "codepoints": [8822], "characters": "\u2276" }, + "≲": { "codepoints": [8818], "characters": "\u2272" }, + "⥼": { "codepoints": [10620], "characters": "\u297C" }, + "⌊": { "codepoints": [8970], "characters": "\u230A" }, + "𝔩": { "codepoints": [120105], "characters": "\uD835\uDD29" }, + "≶": { "codepoints": [8822], "characters": "\u2276" }, + "⪑": { "codepoints": [10897], "characters": "\u2A91" }, + "↽": { "codepoints": [8637], "characters": "\u21BD" }, + "↼": { "codepoints": [8636], "characters": "\u21BC" }, + "⥪": { "codepoints": [10602], "characters": "\u296A" }, + "▄": { "codepoints": [9604], "characters": "\u2584" }, + "љ": { "codepoints": [1113], "characters": "\u0459" }, + "≪": { "codepoints": [8810], "characters": "\u226A" }, + "⇇": { "codepoints": [8647], "characters": "\u21C7" }, + "⌞": { "codepoints": [8990], "characters": "\u231E" }, + "⥫": { "codepoints": [10603], "characters": "\u296B" }, + "◺": { "codepoints": [9722], "characters": "\u25FA" }, + "ŀ": { "codepoints": [320], "characters": "\u0140" }, + "⎰": { "codepoints": [9136], "characters": "\u23B0" }, + "⎰": { "codepoints": [9136], "characters": "\u23B0" }, + "≨": { "codepoints": [8808], "characters": "\u2268" }, + "⪉": { "codepoints": [10889], "characters": "\u2A89" }, + "⪉": { "codepoints": [10889], "characters": "\u2A89" }, + "⪇": { "codepoints": [10887], "characters": "\u2A87" }, + "⪇": { "codepoints": [10887], "characters": "\u2A87" }, + "≨": { "codepoints": [8808], "characters": "\u2268" }, + "⋦": { "codepoints": [8934], "characters": "\u22E6" }, + "⟬": { "codepoints": [10220], "characters": "\u27EC" }, + "⇽": { "codepoints": [8701], "characters": "\u21FD" }, + "⟦": { "codepoints": [10214], "characters": "\u27E6" }, + "⟵": { "codepoints": [10229], "characters": "\u27F5" }, + "⟷": { "codepoints": [10231], "characters": "\u27F7" }, + "⟼": { "codepoints": [10236], "characters": "\u27FC" }, + "⟶": { "codepoints": [10230], "characters": "\u27F6" }, + "↫": { "codepoints": [8619], "characters": "\u21AB" }, + "↬": { "codepoints": [8620], "characters": "\u21AC" }, + "⦅": { "codepoints": [10629], "characters": "\u2985" }, + "𝕝": { "codepoints": [120157], "characters": "\uD835\uDD5D" }, + "⨭": { "codepoints": [10797], "characters": "\u2A2D" }, + "⨴": { "codepoints": [10804], "characters": "\u2A34" }, + "∗": { "codepoints": [8727], "characters": "\u2217" }, + "_": { "codepoints": [95], "characters": "\u005F" }, + "◊": { "codepoints": [9674], "characters": "\u25CA" }, + "◊": { "codepoints": [9674], "characters": "\u25CA" }, + "⧫": { "codepoints": [10731], "characters": "\u29EB" }, + "(": { "codepoints": [40], "characters": "\u0028" }, + "⦓": { "codepoints": [10643], "characters": "\u2993" }, + "⇆": { "codepoints": [8646], "characters": "\u21C6" }, + "⌟": { "codepoints": [8991], "characters": "\u231F" }, + "⇋": { "codepoints": [8651], "characters": "\u21CB" }, + "⥭": { "codepoints": [10605], "characters": "\u296D" }, + "‎": { "codepoints": [8206], "characters": "\u200E" }, + "⊿": { "codepoints": [8895], "characters": "\u22BF" }, + "‹": { "codepoints": [8249], "characters": "\u2039" }, + "𝓁": { "codepoints": [120001], "characters": "\uD835\uDCC1" }, + "↰": { "codepoints": [8624], "characters": "\u21B0" }, + "≲": { "codepoints": [8818], "characters": "\u2272" }, + "⪍": { "codepoints": [10893], "characters": "\u2A8D" }, + "⪏": { "codepoints": [10895], "characters": "\u2A8F" }, + "[": { "codepoints": [91], "characters": "\u005B" }, + "‘": { "codepoints": [8216], "characters": "\u2018" }, + "‚": { "codepoints": [8218], "characters": "\u201A" }, + "ł": { "codepoints": [322], "characters": "\u0142" }, + "<": { "codepoints": [60], "characters": "\u003C" }, + "<": { "codepoints": [60], "characters": "\u003C" }, + "⪦": { "codepoints": [10918], "characters": "\u2AA6" }, + "⩹": { "codepoints": [10873], "characters": "\u2A79" }, + "⋖": { "codepoints": [8918], "characters": "\u22D6" }, + "⋋": { "codepoints": [8907], "characters": "\u22CB" }, + "⋉": { "codepoints": [8905], "characters": "\u22C9" }, + "⥶": { "codepoints": [10614], "characters": "\u2976" }, + "⩻": { "codepoints": [10875], "characters": "\u2A7B" }, + "⦖": { "codepoints": [10646], "characters": "\u2996" }, + "◃": { "codepoints": [9667], "characters": "\u25C3" }, + "⊴": { "codepoints": [8884], "characters": "\u22B4" }, + "◂": { "codepoints": [9666], "characters": "\u25C2" }, + "⥊": { "codepoints": [10570], "characters": "\u294A" }, + "⥦": { "codepoints": [10598], "characters": "\u2966" }, + "≨︀": { "codepoints": [8808, 65024], "characters": "\u2268\uFE00" }, + "≨︀": { "codepoints": [8808, 65024], "characters": "\u2268\uFE00" }, + "∺": { "codepoints": [8762], "characters": "\u223A" }, + "¯": { "codepoints": [175], "characters": "\u00AF" }, + "¯": { "codepoints": [175], "characters": "\u00AF" }, + "♂": { "codepoints": [9794], "characters": "\u2642" }, + "✠": { "codepoints": [10016], "characters": "\u2720" }, + "✠": { "codepoints": [10016], "characters": "\u2720" }, + "↦": { "codepoints": [8614], "characters": "\u21A6" }, + "↦": { "codepoints": [8614], "characters": "\u21A6" }, + "↧": { "codepoints": [8615], "characters": "\u21A7" }, + "↤": { "codepoints": [8612], "characters": "\u21A4" }, + "↥": { "codepoints": [8613], "characters": "\u21A5" }, + "▮": { "codepoints": [9646], "characters": "\u25AE" }, + "⨩": { "codepoints": [10793], "characters": "\u2A29" }, + "м": { "codepoints": [1084], "characters": "\u043C" }, + "—": { "codepoints": [8212], "characters": "\u2014" }, + "∡": { "codepoints": [8737], "characters": "\u2221" }, + "𝔪": { "codepoints": [120106], "characters": "\uD835\uDD2A" }, + "℧": { "codepoints": [8487], "characters": "\u2127" }, + "µ": { "codepoints": [181], "characters": "\u00B5" }, + "µ": { "codepoints": [181], "characters": "\u00B5" }, + "∣": { "codepoints": [8739], "characters": "\u2223" }, + "*": { "codepoints": [42], "characters": "\u002A" }, + "⫰": { "codepoints": [10992], "characters": "\u2AF0" }, + "·": { "codepoints": [183], "characters": "\u00B7" }, + "·": { "codepoints": [183], "characters": "\u00B7" }, + "−": { "codepoints": [8722], "characters": "\u2212" }, + "⊟": { "codepoints": [8863], "characters": "\u229F" }, + "∸": { "codepoints": [8760], "characters": "\u2238" }, + "⨪": { "codepoints": [10794], "characters": "\u2A2A" }, + "⫛": { "codepoints": [10971], "characters": "\u2ADB" }, + "…": { "codepoints": [8230], "characters": "\u2026" }, + "∓": { "codepoints": [8723], "characters": "\u2213" }, + "⊧": { "codepoints": [8871], "characters": "\u22A7" }, + "𝕞": { "codepoints": [120158], "characters": "\uD835\uDD5E" }, + "∓": { "codepoints": [8723], "characters": "\u2213" }, + "𝓂": { "codepoints": [120002], "characters": "\uD835\uDCC2" }, + "∾": { "codepoints": [8766], "characters": "\u223E" }, + "μ": { "codepoints": [956], "characters": "\u03BC" }, + "⊸": { "codepoints": [8888], "characters": "\u22B8" }, + "⊸": { "codepoints": [8888], "characters": "\u22B8" }, + "⋙̸": { "codepoints": [8921, 824], "characters": "\u22D9\u0338" }, + "≫⃒": { "codepoints": [8811, 8402], "characters": "\u226B\u20D2" }, + "≫̸": { "codepoints": [8811, 824], "characters": "\u226B\u0338" }, + "⇍": { "codepoints": [8653], "characters": "\u21CD" }, + "⇎": { "codepoints": [8654], "characters": "\u21CE" }, + "⋘̸": { "codepoints": [8920, 824], "characters": "\u22D8\u0338" }, + "≪⃒": { "codepoints": [8810, 8402], "characters": "\u226A\u20D2" }, + "≪̸": { "codepoints": [8810, 824], "characters": "\u226A\u0338" }, + "⇏": { "codepoints": [8655], "characters": "\u21CF" }, + "⊯": { "codepoints": [8879], "characters": "\u22AF" }, + "⊮": { "codepoints": [8878], "characters": "\u22AE" }, + "∇": { "codepoints": [8711], "characters": "\u2207" }, + "ń": { "codepoints": [324], "characters": "\u0144" }, + "∠⃒": { "codepoints": [8736, 8402], "characters": "\u2220\u20D2" }, + "≉": { "codepoints": [8777], "characters": "\u2249" }, + "⩰̸": { "codepoints": [10864, 824], "characters": "\u2A70\u0338" }, + "≋̸": { "codepoints": [8779, 824], "characters": "\u224B\u0338" }, + "ʼn": { "codepoints": [329], "characters": "\u0149" }, + "≉": { "codepoints": [8777], "characters": "\u2249" }, + "♮": { "codepoints": [9838], "characters": "\u266E" }, + "♮": { "codepoints": [9838], "characters": "\u266E" }, + "ℕ": { "codepoints": [8469], "characters": "\u2115" }, + " ": { "codepoints": [160], "characters": "\u00A0" }, + " ": { "codepoints": [160], "characters": "\u00A0" }, + "≎̸": { "codepoints": [8782, 824], "characters": "\u224E\u0338" }, + "≏̸": { "codepoints": [8783, 824], "characters": "\u224F\u0338" }, + "⩃": { "codepoints": [10819], "characters": "\u2A43" }, + "ň": { "codepoints": [328], "characters": "\u0148" }, + "ņ": { "codepoints": [326], "characters": "\u0146" }, + "≇": { "codepoints": [8775], "characters": "\u2247" }, + "⩭̸": { "codepoints": [10861, 824], "characters": "\u2A6D\u0338" }, + "⩂": { "codepoints": [10818], "characters": "\u2A42" }, + "н": { "codepoints": [1085], "characters": "\u043D" }, + "–": { "codepoints": [8211], "characters": "\u2013" }, + "≠": { "codepoints": [8800], "characters": "\u2260" }, + "⇗": { "codepoints": [8663], "characters": "\u21D7" }, + "⤤": { "codepoints": [10532], "characters": "\u2924" }, + "↗": { "codepoints": [8599], "characters": "\u2197" }, + "↗": { "codepoints": [8599], "characters": "\u2197" }, + "≐̸": { "codepoints": [8784, 824], "characters": "\u2250\u0338" }, + "≢": { "codepoints": [8802], "characters": "\u2262" }, + "⤨": { "codepoints": [10536], "characters": "\u2928" }, + "≂̸": { "codepoints": [8770, 824], "characters": "\u2242\u0338" }, + "∄": { "codepoints": [8708], "characters": "\u2204" }, + "∄": { "codepoints": [8708], "characters": "\u2204" }, + "𝔫": { "codepoints": [120107], "characters": "\uD835\uDD2B" }, + "≧̸": { "codepoints": [8807, 824], "characters": "\u2267\u0338" }, + "≱": { "codepoints": [8817], "characters": "\u2271" }, + "≱": { "codepoints": [8817], "characters": "\u2271" }, + "≧̸": { "codepoints": [8807, 824], "characters": "\u2267\u0338" }, + "⩾̸": { "codepoints": [10878, 824], "characters": "\u2A7E\u0338" }, + "⩾̸": { "codepoints": [10878, 824], "characters": "\u2A7E\u0338" }, + "≵": { "codepoints": [8821], "characters": "\u2275" }, + "≯": { "codepoints": [8815], "characters": "\u226F" }, + "≯": { "codepoints": [8815], "characters": "\u226F" }, + "⇎": { "codepoints": [8654], "characters": "\u21CE" }, + "↮": { "codepoints": [8622], "characters": "\u21AE" }, + "⫲": { "codepoints": [10994], "characters": "\u2AF2" }, + "∋": { "codepoints": [8715], "characters": "\u220B" }, + "⋼": { "codepoints": [8956], "characters": "\u22FC" }, + "⋺": { "codepoints": [8954], "characters": "\u22FA" }, + "∋": { "codepoints": [8715], "characters": "\u220B" }, + "њ": { "codepoints": [1114], "characters": "\u045A" }, + "⇍": { "codepoints": [8653], "characters": "\u21CD" }, + "≦̸": { "codepoints": [8806, 824], "characters": "\u2266\u0338" }, + "↚": { "codepoints": [8602], "characters": "\u219A" }, + "‥": { "codepoints": [8229], "characters": "\u2025" }, + "≰": { "codepoints": [8816], "characters": "\u2270" }, + "↚": { "codepoints": [8602], "characters": "\u219A" }, + "↮": { "codepoints": [8622], "characters": "\u21AE" }, + "≰": { "codepoints": [8816], "characters": "\u2270" }, + "≦̸": { "codepoints": [8806, 824], "characters": "\u2266\u0338" }, + "⩽̸": { "codepoints": [10877, 824], "characters": "\u2A7D\u0338" }, + "⩽̸": { "codepoints": [10877, 824], "characters": "\u2A7D\u0338" }, + "≮": { "codepoints": [8814], "characters": "\u226E" }, + "≴": { "codepoints": [8820], "characters": "\u2274" }, + "≮": { "codepoints": [8814], "characters": "\u226E" }, + "⋪": { "codepoints": [8938], "characters": "\u22EA" }, + "⋬": { "codepoints": [8940], "characters": "\u22EC" }, + "∤": { "codepoints": [8740], "characters": "\u2224" }, + "𝕟": { "codepoints": [120159], "characters": "\uD835\uDD5F" }, + "¬": { "codepoints": [172], "characters": "\u00AC" }, + "¬": { "codepoints": [172], "characters": "\u00AC" }, + "∉": { "codepoints": [8713], "characters": "\u2209" }, + "⋹̸": { "codepoints": [8953, 824], "characters": "\u22F9\u0338" }, + "⋵̸": { "codepoints": [8949, 824], "characters": "\u22F5\u0338" }, + "∉": { "codepoints": [8713], "characters": "\u2209" }, + "⋷": { "codepoints": [8951], "characters": "\u22F7" }, + "⋶": { "codepoints": [8950], "characters": "\u22F6" }, + "∌": { "codepoints": [8716], "characters": "\u220C" }, + "∌": { "codepoints": [8716], "characters": "\u220C" }, + "⋾": { "codepoints": [8958], "characters": "\u22FE" }, + "⋽": { "codepoints": [8957], "characters": "\u22FD" }, + "∦": { "codepoints": [8742], "characters": "\u2226" }, + "∦": { "codepoints": [8742], "characters": "\u2226" }, + "⫽⃥": { "codepoints": [11005, 8421], "characters": "\u2AFD\u20E5" }, + "∂̸": { "codepoints": [8706, 824], "characters": "\u2202\u0338" }, + "⨔": { "codepoints": [10772], "characters": "\u2A14" }, + "⊀": { "codepoints": [8832], "characters": "\u2280" }, + "⋠": { "codepoints": [8928], "characters": "\u22E0" }, + "⪯̸": { "codepoints": [10927, 824], "characters": "\u2AAF\u0338" }, + "⊀": { "codepoints": [8832], "characters": "\u2280" }, + "⪯̸": { "codepoints": [10927, 824], "characters": "\u2AAF\u0338" }, + "⇏": { "codepoints": [8655], "characters": "\u21CF" }, + "↛": { "codepoints": [8603], "characters": "\u219B" }, + "⤳̸": { "codepoints": [10547, 824], "characters": "\u2933\u0338" }, + "↝̸": { "codepoints": [8605, 824], "characters": "\u219D\u0338" }, + "↛": { "codepoints": [8603], "characters": "\u219B" }, + "⋫": { "codepoints": [8939], "characters": "\u22EB" }, + "⋭": { "codepoints": [8941], "characters": "\u22ED" }, + "⊁": { "codepoints": [8833], "characters": "\u2281" }, + "⋡": { "codepoints": [8929], "characters": "\u22E1" }, + "⪰̸": { "codepoints": [10928, 824], "characters": "\u2AB0\u0338" }, + "𝓃": { "codepoints": [120003], "characters": "\uD835\uDCC3" }, + "∤": { "codepoints": [8740], "characters": "\u2224" }, + "∦": { "codepoints": [8742], "characters": "\u2226" }, + "≁": { "codepoints": [8769], "characters": "\u2241" }, + "≄": { "codepoints": [8772], "characters": "\u2244" }, + "≄": { "codepoints": [8772], "characters": "\u2244" }, + "∤": { "codepoints": [8740], "characters": "\u2224" }, + "∦": { "codepoints": [8742], "characters": "\u2226" }, + "⋢": { "codepoints": [8930], "characters": "\u22E2" }, + "⋣": { "codepoints": [8931], "characters": "\u22E3" }, + "⊄": { "codepoints": [8836], "characters": "\u2284" }, + "⫅̸": { "codepoints": [10949, 824], "characters": "\u2AC5\u0338" }, + "⊈": { "codepoints": [8840], "characters": "\u2288" }, + "⊂⃒": { "codepoints": [8834, 8402], "characters": "\u2282\u20D2" }, + "⊈": { "codepoints": [8840], "characters": "\u2288" }, + "⫅̸": { "codepoints": [10949, 824], "characters": "\u2AC5\u0338" }, + "⊁": { "codepoints": [8833], "characters": "\u2281" }, + "⪰̸": { "codepoints": [10928, 824], "characters": "\u2AB0\u0338" }, + "⊅": { "codepoints": [8837], "characters": "\u2285" }, + "⫆̸": { "codepoints": [10950, 824], "characters": "\u2AC6\u0338" }, + "⊉": { "codepoints": [8841], "characters": "\u2289" }, + "⊃⃒": { "codepoints": [8835, 8402], "characters": "\u2283\u20D2" }, + "⊉": { "codepoints": [8841], "characters": "\u2289" }, + "⫆̸": { "codepoints": [10950, 824], "characters": "\u2AC6\u0338" }, + "≹": { "codepoints": [8825], "characters": "\u2279" }, + "ñ": { "codepoints": [241], "characters": "\u00F1" }, + "ñ": { "codepoints": [241], "characters": "\u00F1" }, + "≸": { "codepoints": [8824], "characters": "\u2278" }, + "⋪": { "codepoints": [8938], "characters": "\u22EA" }, + "⋬": { "codepoints": [8940], "characters": "\u22EC" }, + "⋫": { "codepoints": [8939], "characters": "\u22EB" }, + "⋭": { "codepoints": [8941], "characters": "\u22ED" }, + "ν": { "codepoints": [957], "characters": "\u03BD" }, + "#": { "codepoints": [35], "characters": "\u0023" }, + "№": { "codepoints": [8470], "characters": "\u2116" }, + " ": { "codepoints": [8199], "characters": "\u2007" }, + "⊭": { "codepoints": [8877], "characters": "\u22AD" }, + "⤄": { "codepoints": [10500], "characters": "\u2904" }, + "≍⃒": { "codepoints": [8781, 8402], "characters": "\u224D\u20D2" }, + "⊬": { "codepoints": [8876], "characters": "\u22AC" }, + "≥⃒": { "codepoints": [8805, 8402], "characters": "\u2265\u20D2" }, + ">⃒": { "codepoints": [62, 8402], "characters": "\u003E\u20D2" }, + "⧞": { "codepoints": [10718], "characters": "\u29DE" }, + "⤂": { "codepoints": [10498], "characters": "\u2902" }, + "≤⃒": { "codepoints": [8804, 8402], "characters": "\u2264\u20D2" }, + "<⃒": { "codepoints": [60, 8402], "characters": "\u003C\u20D2" }, + "⊴⃒": { "codepoints": [8884, 8402], "characters": "\u22B4\u20D2" }, + "⤃": { "codepoints": [10499], "characters": "\u2903" }, + "⊵⃒": { "codepoints": [8885, 8402], "characters": "\u22B5\u20D2" }, + "∼⃒": { "codepoints": [8764, 8402], "characters": "\u223C\u20D2" }, + "⇖": { "codepoints": [8662], "characters": "\u21D6" }, + "⤣": { "codepoints": [10531], "characters": "\u2923" }, + "↖": { "codepoints": [8598], "characters": "\u2196" }, + "↖": { "codepoints": [8598], "characters": "\u2196" }, + "⤧": { "codepoints": [10535], "characters": "\u2927" }, + "Ⓢ": { "codepoints": [9416], "characters": "\u24C8" }, + "ó": { "codepoints": [243], "characters": "\u00F3" }, + "ó": { "codepoints": [243], "characters": "\u00F3" }, + "⊛": { "codepoints": [8859], "characters": "\u229B" }, + "⊚": { "codepoints": [8858], "characters": "\u229A" }, + "ô": { "codepoints": [244], "characters": "\u00F4" }, + "ô": { "codepoints": [244], "characters": "\u00F4" }, + "о": { "codepoints": [1086], "characters": "\u043E" }, + "⊝": { "codepoints": [8861], "characters": "\u229D" }, + "ő": { "codepoints": [337], "characters": "\u0151" }, + "⨸": { "codepoints": [10808], "characters": "\u2A38" }, + "⊙": { "codepoints": [8857], "characters": "\u2299" }, + "⦼": { "codepoints": [10684], "characters": "\u29BC" }, + "œ": { "codepoints": [339], "characters": "\u0153" }, + "⦿": { "codepoints": [10687], "characters": "\u29BF" }, + "𝔬": { "codepoints": [120108], "characters": "\uD835\uDD2C" }, + "˛": { "codepoints": [731], "characters": "\u02DB" }, + "ò": { "codepoints": [242], "characters": "\u00F2" }, + "ò": { "codepoints": [242], "characters": "\u00F2" }, + "⧁": { "codepoints": [10689], "characters": "\u29C1" }, + "⦵": { "codepoints": [10677], "characters": "\u29B5" }, + "Ω": { "codepoints": [937], "characters": "\u03A9" }, + "∮": { "codepoints": [8750], "characters": "\u222E" }, + "↺": { "codepoints": [8634], "characters": "\u21BA" }, + "⦾": { "codepoints": [10686], "characters": "\u29BE" }, + "⦻": { "codepoints": [10683], "characters": "\u29BB" }, + "‾": { "codepoints": [8254], "characters": "\u203E" }, + "⧀": { "codepoints": [10688], "characters": "\u29C0" }, + "ō": { "codepoints": [333], "characters": "\u014D" }, + "ω": { "codepoints": [969], "characters": "\u03C9" }, + "ο": { "codepoints": [959], "characters": "\u03BF" }, + "⦶": { "codepoints": [10678], "characters": "\u29B6" }, + "⊖": { "codepoints": [8854], "characters": "\u2296" }, + "𝕠": { "codepoints": [120160], "characters": "\uD835\uDD60" }, + "⦷": { "codepoints": [10679], "characters": "\u29B7" }, + "⦹": { "codepoints": [10681], "characters": "\u29B9" }, + "⊕": { "codepoints": [8853], "characters": "\u2295" }, + "∨": { "codepoints": [8744], "characters": "\u2228" }, + "↻": { "codepoints": [8635], "characters": "\u21BB" }, + "⩝": { "codepoints": [10845], "characters": "\u2A5D" }, + "ℴ": { "codepoints": [8500], "characters": "\u2134" }, + "ℴ": { "codepoints": [8500], "characters": "\u2134" }, + "ª": { "codepoints": [170], "characters": "\u00AA" }, + "ª": { "codepoints": [170], "characters": "\u00AA" }, + "º": { "codepoints": [186], "characters": "\u00BA" }, + "º": { "codepoints": [186], "characters": "\u00BA" }, + "⊶": { "codepoints": [8886], "characters": "\u22B6" }, + "⩖": { "codepoints": [10838], "characters": "\u2A56" }, + "⩗": { "codepoints": [10839], "characters": "\u2A57" }, + "⩛": { "codepoints": [10843], "characters": "\u2A5B" }, + "ℴ": { "codepoints": [8500], "characters": "\u2134" }, + "ø": { "codepoints": [248], "characters": "\u00F8" }, + "ø": { "codepoints": [248], "characters": "\u00F8" }, + "⊘": { "codepoints": [8856], "characters": "\u2298" }, + "õ": { "codepoints": [245], "characters": "\u00F5" }, + "õ": { "codepoints": [245], "characters": "\u00F5" }, + "⊗": { "codepoints": [8855], "characters": "\u2297" }, + "⨶": { "codepoints": [10806], "characters": "\u2A36" }, + "ö": { "codepoints": [246], "characters": "\u00F6" }, + "ö": { "codepoints": [246], "characters": "\u00F6" }, + "⌽": { "codepoints": [9021], "characters": "\u233D" }, + "∥": { "codepoints": [8741], "characters": "\u2225" }, + "¶": { "codepoints": [182], "characters": "\u00B6" }, + "¶": { "codepoints": [182], "characters": "\u00B6" }, + "∥": { "codepoints": [8741], "characters": "\u2225" }, + "⫳": { "codepoints": [10995], "characters": "\u2AF3" }, + "⫽": { "codepoints": [11005], "characters": "\u2AFD" }, + "∂": { "codepoints": [8706], "characters": "\u2202" }, + "п": { "codepoints": [1087], "characters": "\u043F" }, + "%": { "codepoints": [37], "characters": "\u0025" }, + ".": { "codepoints": [46], "characters": "\u002E" }, + "‰": { "codepoints": [8240], "characters": "\u2030" }, + "⊥": { "codepoints": [8869], "characters": "\u22A5" }, + "‱": { "codepoints": [8241], "characters": "\u2031" }, + "𝔭": { "codepoints": [120109], "characters": "\uD835\uDD2D" }, + "φ": { "codepoints": [966], "characters": "\u03C6" }, + "ϕ": { "codepoints": [981], "characters": "\u03D5" }, + "ℳ": { "codepoints": [8499], "characters": "\u2133" }, + "☎": { "codepoints": [9742], "characters": "\u260E" }, + "π": { "codepoints": [960], "characters": "\u03C0" }, + "⋔": { "codepoints": [8916], "characters": "\u22D4" }, + "ϖ": { "codepoints": [982], "characters": "\u03D6" }, + "ℏ": { "codepoints": [8463], "characters": "\u210F" }, + "ℎ": { "codepoints": [8462], "characters": "\u210E" }, + "ℏ": { "codepoints": [8463], "characters": "\u210F" }, + "+": { "codepoints": [43], "characters": "\u002B" }, + "⨣": { "codepoints": [10787], "characters": "\u2A23" }, + "⊞": { "codepoints": [8862], "characters": "\u229E" }, + "⨢": { "codepoints": [10786], "characters": "\u2A22" }, + "∔": { "codepoints": [8724], "characters": "\u2214" }, + "⨥": { "codepoints": [10789], "characters": "\u2A25" }, + "⩲": { "codepoints": [10866], "characters": "\u2A72" }, + "±": { "codepoints": [177], "characters": "\u00B1" }, + "±": { "codepoints": [177], "characters": "\u00B1" }, + "⨦": { "codepoints": [10790], "characters": "\u2A26" }, + "⨧": { "codepoints": [10791], "characters": "\u2A27" }, + "±": { "codepoints": [177], "characters": "\u00B1" }, + "⨕": { "codepoints": [10773], "characters": "\u2A15" }, + "𝕡": { "codepoints": [120161], "characters": "\uD835\uDD61" }, + "£": { "codepoints": [163], "characters": "\u00A3" }, + "£": { "codepoints": [163], "characters": "\u00A3" }, + "≺": { "codepoints": [8826], "characters": "\u227A" }, + "⪳": { "codepoints": [10931], "characters": "\u2AB3" }, + "⪷": { "codepoints": [10935], "characters": "\u2AB7" }, + "≼": { "codepoints": [8828], "characters": "\u227C" }, + "⪯": { "codepoints": [10927], "characters": "\u2AAF" }, + "≺": { "codepoints": [8826], "characters": "\u227A" }, + "⪷": { "codepoints": [10935], "characters": "\u2AB7" }, + "≼": { "codepoints": [8828], "characters": "\u227C" }, + "⪯": { "codepoints": [10927], "characters": "\u2AAF" }, + "⪹": { "codepoints": [10937], "characters": "\u2AB9" }, + "⪵": { "codepoints": [10933], "characters": "\u2AB5" }, + "⋨": { "codepoints": [8936], "characters": "\u22E8" }, + "≾": { "codepoints": [8830], "characters": "\u227E" }, + "′": { "codepoints": [8242], "characters": "\u2032" }, + "ℙ": { "codepoints": [8473], "characters": "\u2119" }, + "⪵": { "codepoints": [10933], "characters": "\u2AB5" }, + "⪹": { "codepoints": [10937], "characters": "\u2AB9" }, + "⋨": { "codepoints": [8936], "characters": "\u22E8" }, + "∏": { "codepoints": [8719], "characters": "\u220F" }, + "⌮": { "codepoints": [9006], "characters": "\u232E" }, + "⌒": { "codepoints": [8978], "characters": "\u2312" }, + "⌓": { "codepoints": [8979], "characters": "\u2313" }, + "∝": { "codepoints": [8733], "characters": "\u221D" }, + "∝": { "codepoints": [8733], "characters": "\u221D" }, + "≾": { "codepoints": [8830], "characters": "\u227E" }, + "⊰": { "codepoints": [8880], "characters": "\u22B0" }, + "𝓅": { "codepoints": [120005], "characters": "\uD835\uDCC5" }, + "ψ": { "codepoints": [968], "characters": "\u03C8" }, + " ": { "codepoints": [8200], "characters": "\u2008" }, + "𝔮": { "codepoints": [120110], "characters": "\uD835\uDD2E" }, + "⨌": { "codepoints": [10764], "characters": "\u2A0C" }, + "𝕢": { "codepoints": [120162], "characters": "\uD835\uDD62" }, + "⁗": { "codepoints": [8279], "characters": "\u2057" }, + "𝓆": { "codepoints": [120006], "characters": "\uD835\uDCC6" }, + "ℍ": { "codepoints": [8461], "characters": "\u210D" }, + "⨖": { "codepoints": [10774], "characters": "\u2A16" }, + "?": { "codepoints": [63], "characters": "\u003F" }, + "≟": { "codepoints": [8799], "characters": "\u225F" }, + """: { "codepoints": [34], "characters": "\u0022" }, + """: { "codepoints": [34], "characters": "\u0022" }, + "⇛": { "codepoints": [8667], "characters": "\u21DB" }, + "⇒": { "codepoints": [8658], "characters": "\u21D2" }, + "⤜": { "codepoints": [10524], "characters": "\u291C" }, + "⤏": { "codepoints": [10511], "characters": "\u290F" }, + "⥤": { "codepoints": [10596], "characters": "\u2964" }, + "∽̱": { "codepoints": [8765, 817], "characters": "\u223D\u0331" }, + "ŕ": { "codepoints": [341], "characters": "\u0155" }, + "√": { "codepoints": [8730], "characters": "\u221A" }, + "⦳": { "codepoints": [10675], "characters": "\u29B3" }, + "⟩": { "codepoints": [10217], "characters": "\u27E9" }, + "⦒": { "codepoints": [10642], "characters": "\u2992" }, + "⦥": { "codepoints": [10661], "characters": "\u29A5" }, + "⟩": { "codepoints": [10217], "characters": "\u27E9" }, + "»": { "codepoints": [187], "characters": "\u00BB" }, + "»": { "codepoints": [187], "characters": "\u00BB" }, + "→": { "codepoints": [8594], "characters": "\u2192" }, + "⥵": { "codepoints": [10613], "characters": "\u2975" }, + "⇥": { "codepoints": [8677], "characters": "\u21E5" }, + "⤠": { "codepoints": [10528], "characters": "\u2920" }, + "⤳": { "codepoints": [10547], "characters": "\u2933" }, + "⤞": { "codepoints": [10526], "characters": "\u291E" }, + "↪": { "codepoints": [8618], "characters": "\u21AA" }, + "↬": { "codepoints": [8620], "characters": "\u21AC" }, + "⥅": { "codepoints": [10565], "characters": "\u2945" }, + "⥴": { "codepoints": [10612], "characters": "\u2974" }, + "↣": { "codepoints": [8611], "characters": "\u21A3" }, + "↝": { "codepoints": [8605], "characters": "\u219D" }, + "⤚": { "codepoints": [10522], "characters": "\u291A" }, + "∶": { "codepoints": [8758], "characters": "\u2236" }, + "ℚ": { "codepoints": [8474], "characters": "\u211A" }, + "⤍": { "codepoints": [10509], "characters": "\u290D" }, + "❳": { "codepoints": [10099], "characters": "\u2773" }, + "}": { "codepoints": [125], "characters": "\u007D" }, + "]": { "codepoints": [93], "characters": "\u005D" }, + "⦌": { "codepoints": [10636], "characters": "\u298C" }, + "⦎": { "codepoints": [10638], "characters": "\u298E" }, + "⦐": { "codepoints": [10640], "characters": "\u2990" }, + "ř": { "codepoints": [345], "characters": "\u0159" }, + "ŗ": { "codepoints": [343], "characters": "\u0157" }, + "⌉": { "codepoints": [8969], "characters": "\u2309" }, + "}": { "codepoints": [125], "characters": "\u007D" }, + "р": { "codepoints": [1088], "characters": "\u0440" }, + "⤷": { "codepoints": [10551], "characters": "\u2937" }, + "⥩": { "codepoints": [10601], "characters": "\u2969" }, + "”": { "codepoints": [8221], "characters": "\u201D" }, + "”": { "codepoints": [8221], "characters": "\u201D" }, + "↳": { "codepoints": [8627], "characters": "\u21B3" }, + "ℜ": { "codepoints": [8476], "characters": "\u211C" }, + "ℛ": { "codepoints": [8475], "characters": "\u211B" }, + "ℜ": { "codepoints": [8476], "characters": "\u211C" }, + "ℝ": { "codepoints": [8477], "characters": "\u211D" }, + "▭": { "codepoints": [9645], "characters": "\u25AD" }, + "®": { "codepoints": [174], "characters": "\u00AE" }, + "®": { "codepoints": [174], "characters": "\u00AE" }, + "⥽": { "codepoints": [10621], "characters": "\u297D" }, + "⌋": { "codepoints": [8971], "characters": "\u230B" }, + "𝔯": { "codepoints": [120111], "characters": "\uD835\uDD2F" }, + "⇁": { "codepoints": [8641], "characters": "\u21C1" }, + "⇀": { "codepoints": [8640], "characters": "\u21C0" }, + "⥬": { "codepoints": [10604], "characters": "\u296C" }, + "ρ": { "codepoints": [961], "characters": "\u03C1" }, + "ϱ": { "codepoints": [1009], "characters": "\u03F1" }, + "→": { "codepoints": [8594], "characters": "\u2192" }, + "↣": { "codepoints": [8611], "characters": "\u21A3" }, + "⇁": { "codepoints": [8641], "characters": "\u21C1" }, + "⇀": { "codepoints": [8640], "characters": "\u21C0" }, + "⇄": { "codepoints": [8644], "characters": "\u21C4" }, + "⇌": { "codepoints": [8652], "characters": "\u21CC" }, + "⇉": { "codepoints": [8649], "characters": "\u21C9" }, + "↝": { "codepoints": [8605], "characters": "\u219D" }, + "⋌": { "codepoints": [8908], "characters": "\u22CC" }, + "˚": { "codepoints": [730], "characters": "\u02DA" }, + "≓": { "codepoints": [8787], "characters": "\u2253" }, + "⇄": { "codepoints": [8644], "characters": "\u21C4" }, + "⇌": { "codepoints": [8652], "characters": "\u21CC" }, + "‏": { "codepoints": [8207], "characters": "\u200F" }, + "⎱": { "codepoints": [9137], "characters": "\u23B1" }, + "⎱": { "codepoints": [9137], "characters": "\u23B1" }, + "⫮": { "codepoints": [10990], "characters": "\u2AEE" }, + "⟭": { "codepoints": [10221], "characters": "\u27ED" }, + "⇾": { "codepoints": [8702], "characters": "\u21FE" }, + "⟧": { "codepoints": [10215], "characters": "\u27E7" }, + "⦆": { "codepoints": [10630], "characters": "\u2986" }, + "𝕣": { "codepoints": [120163], "characters": "\uD835\uDD63" }, + "⨮": { "codepoints": [10798], "characters": "\u2A2E" }, + "⨵": { "codepoints": [10805], "characters": "\u2A35" }, + ")": { "codepoints": [41], "characters": "\u0029" }, + "⦔": { "codepoints": [10644], "characters": "\u2994" }, + "⨒": { "codepoints": [10770], "characters": "\u2A12" }, + "⇉": { "codepoints": [8649], "characters": "\u21C9" }, + "›": { "codepoints": [8250], "characters": "\u203A" }, + "𝓇": { "codepoints": [120007], "characters": "\uD835\uDCC7" }, + "↱": { "codepoints": [8625], "characters": "\u21B1" }, + "]": { "codepoints": [93], "characters": "\u005D" }, + "’": { "codepoints": [8217], "characters": "\u2019" }, + "’": { "codepoints": [8217], "characters": "\u2019" }, + "⋌": { "codepoints": [8908], "characters": "\u22CC" }, + "⋊": { "codepoints": [8906], "characters": "\u22CA" }, + "▹": { "codepoints": [9657], "characters": "\u25B9" }, + "⊵": { "codepoints": [8885], "characters": "\u22B5" }, + "▸": { "codepoints": [9656], "characters": "\u25B8" }, + "⧎": { "codepoints": [10702], "characters": "\u29CE" }, + "⥨": { "codepoints": [10600], "characters": "\u2968" }, + "℞": { "codepoints": [8478], "characters": "\u211E" }, + "ś": { "codepoints": [347], "characters": "\u015B" }, + "‚": { "codepoints": [8218], "characters": "\u201A" }, + "≻": { "codepoints": [8827], "characters": "\u227B" }, + "⪴": { "codepoints": [10932], "characters": "\u2AB4" }, + "⪸": { "codepoints": [10936], "characters": "\u2AB8" }, + "š": { "codepoints": [353], "characters": "\u0161" }, + "≽": { "codepoints": [8829], "characters": "\u227D" }, + "⪰": { "codepoints": [10928], "characters": "\u2AB0" }, + "ş": { "codepoints": [351], "characters": "\u015F" }, + "ŝ": { "codepoints": [349], "characters": "\u015D" }, + "⪶": { "codepoints": [10934], "characters": "\u2AB6" }, + "⪺": { "codepoints": [10938], "characters": "\u2ABA" }, + "⋩": { "codepoints": [8937], "characters": "\u22E9" }, + "⨓": { "codepoints": [10771], "characters": "\u2A13" }, + "≿": { "codepoints": [8831], "characters": "\u227F" }, + "с": { "codepoints": [1089], "characters": "\u0441" }, + "⋅": { "codepoints": [8901], "characters": "\u22C5" }, + "⊡": { "codepoints": [8865], "characters": "\u22A1" }, + "⩦": { "codepoints": [10854], "characters": "\u2A66" }, + "⇘": { "codepoints": [8664], "characters": "\u21D8" }, + "⤥": { "codepoints": [10533], "characters": "\u2925" }, + "↘": { "codepoints": [8600], "characters": "\u2198" }, + "↘": { "codepoints": [8600], "characters": "\u2198" }, + "§": { "codepoints": [167], "characters": "\u00A7" }, + "§": { "codepoints": [167], "characters": "\u00A7" }, + ";": { "codepoints": [59], "characters": "\u003B" }, + "⤩": { "codepoints": [10537], "characters": "\u2929" }, + "∖": { "codepoints": [8726], "characters": "\u2216" }, + "∖": { "codepoints": [8726], "characters": "\u2216" }, + "✶": { "codepoints": [10038], "characters": "\u2736" }, + "𝔰": { "codepoints": [120112], "characters": "\uD835\uDD30" }, + "⌢": { "codepoints": [8994], "characters": "\u2322" }, + "♯": { "codepoints": [9839], "characters": "\u266F" }, + "щ": { "codepoints": [1097], "characters": "\u0449" }, + "ш": { "codepoints": [1096], "characters": "\u0448" }, + "∣": { "codepoints": [8739], "characters": "\u2223" }, + "∥": { "codepoints": [8741], "characters": "\u2225" }, + "­": { "codepoints": [173], "characters": "\u00AD" }, + "­": { "codepoints": [173], "characters": "\u00AD" }, + "σ": { "codepoints": [963], "characters": "\u03C3" }, + "ς": { "codepoints": [962], "characters": "\u03C2" }, + "ς": { "codepoints": [962], "characters": "\u03C2" }, + "∼": { "codepoints": [8764], "characters": "\u223C" }, + "⩪": { "codepoints": [10858], "characters": "\u2A6A" }, + "≃": { "codepoints": [8771], "characters": "\u2243" }, + "≃": { "codepoints": [8771], "characters": "\u2243" }, + "⪞": { "codepoints": [10910], "characters": "\u2A9E" }, + "⪠": { "codepoints": [10912], "characters": "\u2AA0" }, + "⪝": { "codepoints": [10909], "characters": "\u2A9D" }, + "⪟": { "codepoints": [10911], "characters": "\u2A9F" }, + "≆": { "codepoints": [8774], "characters": "\u2246" }, + "⨤": { "codepoints": [10788], "characters": "\u2A24" }, + "⥲": { "codepoints": [10610], "characters": "\u2972" }, + "←": { "codepoints": [8592], "characters": "\u2190" }, + "∖": { "codepoints": [8726], "characters": "\u2216" }, + "⨳": { "codepoints": [10803], "characters": "\u2A33" }, + "⧤": { "codepoints": [10724], "characters": "\u29E4" }, + "∣": { "codepoints": [8739], "characters": "\u2223" }, + "⌣": { "codepoints": [8995], "characters": "\u2323" }, + "⪪": { "codepoints": [10922], "characters": "\u2AAA" }, + "⪬": { "codepoints": [10924], "characters": "\u2AAC" }, + "⪬︀": { "codepoints": [10924, 65024], "characters": "\u2AAC\uFE00" }, + "ь": { "codepoints": [1100], "characters": "\u044C" }, + "/": { "codepoints": [47], "characters": "\u002F" }, + "⧄": { "codepoints": [10692], "characters": "\u29C4" }, + "⌿": { "codepoints": [9023], "characters": "\u233F" }, + "𝕤": { "codepoints": [120164], "characters": "\uD835\uDD64" }, + "♠": { "codepoints": [9824], "characters": "\u2660" }, + "♠": { "codepoints": [9824], "characters": "\u2660" }, + "∥": { "codepoints": [8741], "characters": "\u2225" }, + "⊓": { "codepoints": [8851], "characters": "\u2293" }, + "⊓︀": { "codepoints": [8851, 65024], "characters": "\u2293\uFE00" }, + "⊔": { "codepoints": [8852], "characters": "\u2294" }, + "⊔︀": { "codepoints": [8852, 65024], "characters": "\u2294\uFE00" }, + "⊏": { "codepoints": [8847], "characters": "\u228F" }, + "⊑": { "codepoints": [8849], "characters": "\u2291" }, + "⊏": { "codepoints": [8847], "characters": "\u228F" }, + "⊑": { "codepoints": [8849], "characters": "\u2291" }, + "⊐": { "codepoints": [8848], "characters": "\u2290" }, + "⊒": { "codepoints": [8850], "characters": "\u2292" }, + "⊐": { "codepoints": [8848], "characters": "\u2290" }, + "⊒": { "codepoints": [8850], "characters": "\u2292" }, + "□": { "codepoints": [9633], "characters": "\u25A1" }, + "□": { "codepoints": [9633], "characters": "\u25A1" }, + "▪": { "codepoints": [9642], "characters": "\u25AA" }, + "▪": { "codepoints": [9642], "characters": "\u25AA" }, + "→": { "codepoints": [8594], "characters": "\u2192" }, + "𝓈": { "codepoints": [120008], "characters": "\uD835\uDCC8" }, + "∖": { "codepoints": [8726], "characters": "\u2216" }, + "⌣": { "codepoints": [8995], "characters": "\u2323" }, + "⋆": { "codepoints": [8902], "characters": "\u22C6" }, + "☆": { "codepoints": [9734], "characters": "\u2606" }, + "★": { "codepoints": [9733], "characters": "\u2605" }, + "ϵ": { "codepoints": [1013], "characters": "\u03F5" }, + "ϕ": { "codepoints": [981], "characters": "\u03D5" }, + "¯": { "codepoints": [175], "characters": "\u00AF" }, + "⊂": { "codepoints": [8834], "characters": "\u2282" }, + "⫅": { "codepoints": [10949], "characters": "\u2AC5" }, + "⪽": { "codepoints": [10941], "characters": "\u2ABD" }, + "⊆": { "codepoints": [8838], "characters": "\u2286" }, + "⫃": { "codepoints": [10947], "characters": "\u2AC3" }, + "⫁": { "codepoints": [10945], "characters": "\u2AC1" }, + "⫋": { "codepoints": [10955], "characters": "\u2ACB" }, + "⊊": { "codepoints": [8842], "characters": "\u228A" }, + "⪿": { "codepoints": [10943], "characters": "\u2ABF" }, + "⥹": { "codepoints": [10617], "characters": "\u2979" }, + "⊂": { "codepoints": [8834], "characters": "\u2282" }, + "⊆": { "codepoints": [8838], "characters": "\u2286" }, + "⫅": { "codepoints": [10949], "characters": "\u2AC5" }, + "⊊": { "codepoints": [8842], "characters": "\u228A" }, + "⫋": { "codepoints": [10955], "characters": "\u2ACB" }, + "⫇": { "codepoints": [10951], "characters": "\u2AC7" }, + "⫕": { "codepoints": [10965], "characters": "\u2AD5" }, + "⫓": { "codepoints": [10963], "characters": "\u2AD3" }, + "≻": { "codepoints": [8827], "characters": "\u227B" }, + "⪸": { "codepoints": [10936], "characters": "\u2AB8" }, + "≽": { "codepoints": [8829], "characters": "\u227D" }, + "⪰": { "codepoints": [10928], "characters": "\u2AB0" }, + "⪺": { "codepoints": [10938], "characters": "\u2ABA" }, + "⪶": { "codepoints": [10934], "characters": "\u2AB6" }, + "⋩": { "codepoints": [8937], "characters": "\u22E9" }, + "≿": { "codepoints": [8831], "characters": "\u227F" }, + "∑": { "codepoints": [8721], "characters": "\u2211" }, + "♪": { "codepoints": [9834], "characters": "\u266A" }, + "¹": { "codepoints": [185], "characters": "\u00B9" }, + "¹": { "codepoints": [185], "characters": "\u00B9" }, + "²": { "codepoints": [178], "characters": "\u00B2" }, + "²": { "codepoints": [178], "characters": "\u00B2" }, + "³": { "codepoints": [179], "characters": "\u00B3" }, + "³": { "codepoints": [179], "characters": "\u00B3" }, + "⊃": { "codepoints": [8835], "characters": "\u2283" }, + "⫆": { "codepoints": [10950], "characters": "\u2AC6" }, + "⪾": { "codepoints": [10942], "characters": "\u2ABE" }, + "⫘": { "codepoints": [10968], "characters": "\u2AD8" }, + "⊇": { "codepoints": [8839], "characters": "\u2287" }, + "⫄": { "codepoints": [10948], "characters": "\u2AC4" }, + "⟉": { "codepoints": [10185], "characters": "\u27C9" }, + "⫗": { "codepoints": [10967], "characters": "\u2AD7" }, + "⥻": { "codepoints": [10619], "characters": "\u297B" }, + "⫂": { "codepoints": [10946], "characters": "\u2AC2" }, + "⫌": { "codepoints": [10956], "characters": "\u2ACC" }, + "⊋": { "codepoints": [8843], "characters": "\u228B" }, + "⫀": { "codepoints": [10944], "characters": "\u2AC0" }, + "⊃": { "codepoints": [8835], "characters": "\u2283" }, + "⊇": { "codepoints": [8839], "characters": "\u2287" }, + "⫆": { "codepoints": [10950], "characters": "\u2AC6" }, + "⊋": { "codepoints": [8843], "characters": "\u228B" }, + "⫌": { "codepoints": [10956], "characters": "\u2ACC" }, + "⫈": { "codepoints": [10952], "characters": "\u2AC8" }, + "⫔": { "codepoints": [10964], "characters": "\u2AD4" }, + "⫖": { "codepoints": [10966], "characters": "\u2AD6" }, + "⇙": { "codepoints": [8665], "characters": "\u21D9" }, + "⤦": { "codepoints": [10534], "characters": "\u2926" }, + "↙": { "codepoints": [8601], "characters": "\u2199" }, + "↙": { "codepoints": [8601], "characters": "\u2199" }, + "⤪": { "codepoints": [10538], "characters": "\u292A" }, + "ß": { "codepoints": [223], "characters": "\u00DF" }, + "ß": { "codepoints": [223], "characters": "\u00DF" }, + "⌖": { "codepoints": [8982], "characters": "\u2316" }, + "τ": { "codepoints": [964], "characters": "\u03C4" }, + "⎴": { "codepoints": [9140], "characters": "\u23B4" }, + "ť": { "codepoints": [357], "characters": "\u0165" }, + "ţ": { "codepoints": [355], "characters": "\u0163" }, + "т": { "codepoints": [1090], "characters": "\u0442" }, + "⃛": { "codepoints": [8411], "characters": "\u20DB" }, + "⌕": { "codepoints": [8981], "characters": "\u2315" }, + "𝔱": { "codepoints": [120113], "characters": "\uD835\uDD31" }, + "∴": { "codepoints": [8756], "characters": "\u2234" }, + "∴": { "codepoints": [8756], "characters": "\u2234" }, + "θ": { "codepoints": [952], "characters": "\u03B8" }, + "ϑ": { "codepoints": [977], "characters": "\u03D1" }, + "ϑ": { "codepoints": [977], "characters": "\u03D1" }, + "≈": { "codepoints": [8776], "characters": "\u2248" }, + "∼": { "codepoints": [8764], "characters": "\u223C" }, + " ": { "codepoints": [8201], "characters": "\u2009" }, + "≈": { "codepoints": [8776], "characters": "\u2248" }, + "∼": { "codepoints": [8764], "characters": "\u223C" }, + "þ": { "codepoints": [254], "characters": "\u00FE" }, + "þ": { "codepoints": [254], "characters": "\u00FE" }, + "˜": { "codepoints": [732], "characters": "\u02DC" }, + "×": { "codepoints": [215], "characters": "\u00D7" }, + "×": { "codepoints": [215], "characters": "\u00D7" }, + "⊠": { "codepoints": [8864], "characters": "\u22A0" }, + "⨱": { "codepoints": [10801], "characters": "\u2A31" }, + "⨰": { "codepoints": [10800], "characters": "\u2A30" }, + "∭": { "codepoints": [8749], "characters": "\u222D" }, + "⤨": { "codepoints": [10536], "characters": "\u2928" }, + "⊤": { "codepoints": [8868], "characters": "\u22A4" }, + "⌶": { "codepoints": [9014], "characters": "\u2336" }, + "⫱": { "codepoints": [10993], "characters": "\u2AF1" }, + "𝕥": { "codepoints": [120165], "characters": "\uD835\uDD65" }, + "⫚": { "codepoints": [10970], "characters": "\u2ADA" }, + "⤩": { "codepoints": [10537], "characters": "\u2929" }, + "‴": { "codepoints": [8244], "characters": "\u2034" }, + "™": { "codepoints": [8482], "characters": "\u2122" }, + "▵": { "codepoints": [9653], "characters": "\u25B5" }, + "▿": { "codepoints": [9663], "characters": "\u25BF" }, + "◃": { "codepoints": [9667], "characters": "\u25C3" }, + "⊴": { "codepoints": [8884], "characters": "\u22B4" }, + "≜": { "codepoints": [8796], "characters": "\u225C" }, + "▹": { "codepoints": [9657], "characters": "\u25B9" }, + "⊵": { "codepoints": [8885], "characters": "\u22B5" }, + "◬": { "codepoints": [9708], "characters": "\u25EC" }, + "≜": { "codepoints": [8796], "characters": "\u225C" }, + "⨺": { "codepoints": [10810], "characters": "\u2A3A" }, + "⨹": { "codepoints": [10809], "characters": "\u2A39" }, + "⧍": { "codepoints": [10701], "characters": "\u29CD" }, + "⨻": { "codepoints": [10811], "characters": "\u2A3B" }, + "⏢": { "codepoints": [9186], "characters": "\u23E2" }, + "𝓉": { "codepoints": [120009], "characters": "\uD835\uDCC9" }, + "ц": { "codepoints": [1094], "characters": "\u0446" }, + "ћ": { "codepoints": [1115], "characters": "\u045B" }, + "ŧ": { "codepoints": [359], "characters": "\u0167" }, + "≬": { "codepoints": [8812], "characters": "\u226C" }, + "↞": { "codepoints": [8606], "characters": "\u219E" }, + "↠": { "codepoints": [8608], "characters": "\u21A0" }, + "⇑": { "codepoints": [8657], "characters": "\u21D1" }, + "⥣": { "codepoints": [10595], "characters": "\u2963" }, + "ú": { "codepoints": [250], "characters": "\u00FA" }, + "ú": { "codepoints": [250], "characters": "\u00FA" }, + "↑": { "codepoints": [8593], "characters": "\u2191" }, + "ў": { "codepoints": [1118], "characters": "\u045E" }, + "ŭ": { "codepoints": [365], "characters": "\u016D" }, + "û": { "codepoints": [251], "characters": "\u00FB" }, + "û": { "codepoints": [251], "characters": "\u00FB" }, + "у": { "codepoints": [1091], "characters": "\u0443" }, + "⇅": { "codepoints": [8645], "characters": "\u21C5" }, + "ű": { "codepoints": [369], "characters": "\u0171" }, + "⥮": { "codepoints": [10606], "characters": "\u296E" }, + "⥾": { "codepoints": [10622], "characters": "\u297E" }, + "𝔲": { "codepoints": [120114], "characters": "\uD835\uDD32" }, + "ù": { "codepoints": [249], "characters": "\u00F9" }, + "ù": { "codepoints": [249], "characters": "\u00F9" }, + "↿": { "codepoints": [8639], "characters": "\u21BF" }, + "↾": { "codepoints": [8638], "characters": "\u21BE" }, + "▀": { "codepoints": [9600], "characters": "\u2580" }, + "⌜": { "codepoints": [8988], "characters": "\u231C" }, + "⌜": { "codepoints": [8988], "characters": "\u231C" }, + "⌏": { "codepoints": [8975], "characters": "\u230F" }, + "◸": { "codepoints": [9720], "characters": "\u25F8" }, + "ū": { "codepoints": [363], "characters": "\u016B" }, + "¨": { "codepoints": [168], "characters": "\u00A8" }, + "¨": { "codepoints": [168], "characters": "\u00A8" }, + "ų": { "codepoints": [371], "characters": "\u0173" }, + "𝕦": { "codepoints": [120166], "characters": "\uD835\uDD66" }, + "↑": { "codepoints": [8593], "characters": "\u2191" }, + "↕": { "codepoints": [8597], "characters": "\u2195" }, + "↿": { "codepoints": [8639], "characters": "\u21BF" }, + "↾": { "codepoints": [8638], "characters": "\u21BE" }, + "⊎": { "codepoints": [8846], "characters": "\u228E" }, + "υ": { "codepoints": [965], "characters": "\u03C5" }, + "ϒ": { "codepoints": [978], "characters": "\u03D2" }, + "υ": { "codepoints": [965], "characters": "\u03C5" }, + "⇈": { "codepoints": [8648], "characters": "\u21C8" }, + "⌝": { "codepoints": [8989], "characters": "\u231D" }, + "⌝": { "codepoints": [8989], "characters": "\u231D" }, + "⌎": { "codepoints": [8974], "characters": "\u230E" }, + "ů": { "codepoints": [367], "characters": "\u016F" }, + "◹": { "codepoints": [9721], "characters": "\u25F9" }, + "𝓊": { "codepoints": [120010], "characters": "\uD835\uDCCA" }, + "⋰": { "codepoints": [8944], "characters": "\u22F0" }, + "ũ": { "codepoints": [361], "characters": "\u0169" }, + "▵": { "codepoints": [9653], "characters": "\u25B5" }, + "▴": { "codepoints": [9652], "characters": "\u25B4" }, + "⇈": { "codepoints": [8648], "characters": "\u21C8" }, + "ü": { "codepoints": [252], "characters": "\u00FC" }, + "ü": { "codepoints": [252], "characters": "\u00FC" }, + "⦧": { "codepoints": [10663], "characters": "\u29A7" }, + "⇕": { "codepoints": [8661], "characters": "\u21D5" }, + "⫨": { "codepoints": [10984], "characters": "\u2AE8" }, + "⫩": { "codepoints": [10985], "characters": "\u2AE9" }, + "⊨": { "codepoints": [8872], "characters": "\u22A8" }, + "⦜": { "codepoints": [10652], "characters": "\u299C" }, + "ϵ": { "codepoints": [1013], "characters": "\u03F5" }, + "ϰ": { "codepoints": [1008], "characters": "\u03F0" }, + "∅": { "codepoints": [8709], "characters": "\u2205" }, + "ϕ": { "codepoints": [981], "characters": "\u03D5" }, + "ϖ": { "codepoints": [982], "characters": "\u03D6" }, + "∝": { "codepoints": [8733], "characters": "\u221D" }, + "↕": { "codepoints": [8597], "characters": "\u2195" }, + "ϱ": { "codepoints": [1009], "characters": "\u03F1" }, + "ς": { "codepoints": [962], "characters": "\u03C2" }, + "⊊︀": { "codepoints": [8842, 65024], "characters": "\u228A\uFE00" }, + "⫋︀": { "codepoints": [10955, 65024], "characters": "\u2ACB\uFE00" }, + "⊋︀": { "codepoints": [8843, 65024], "characters": "\u228B\uFE00" }, + "⫌︀": { "codepoints": [10956, 65024], "characters": "\u2ACC\uFE00" }, + "ϑ": { "codepoints": [977], "characters": "\u03D1" }, + "⊲": { "codepoints": [8882], "characters": "\u22B2" }, + "⊳": { "codepoints": [8883], "characters": "\u22B3" }, + "в": { "codepoints": [1074], "characters": "\u0432" }, + "⊢": { "codepoints": [8866], "characters": "\u22A2" }, + "∨": { "codepoints": [8744], "characters": "\u2228" }, + "⊻": { "codepoints": [8891], "characters": "\u22BB" }, + "≚": { "codepoints": [8794], "characters": "\u225A" }, + "⋮": { "codepoints": [8942], "characters": "\u22EE" }, + "|": { "codepoints": [124], "characters": "\u007C" }, + "|": { "codepoints": [124], "characters": "\u007C" }, + "𝔳": { "codepoints": [120115], "characters": "\uD835\uDD33" }, + "⊲": { "codepoints": [8882], "characters": "\u22B2" }, + "⊂⃒": { "codepoints": [8834, 8402], "characters": "\u2282\u20D2" }, + "⊃⃒": { "codepoints": [8835, 8402], "characters": "\u2283\u20D2" }, + "𝕧": { "codepoints": [120167], "characters": "\uD835\uDD67" }, + "∝": { "codepoints": [8733], "characters": "\u221D" }, + "⊳": { "codepoints": [8883], "characters": "\u22B3" }, + "𝓋": { "codepoints": [120011], "characters": "\uD835\uDCCB" }, + "⫋︀": { "codepoints": [10955, 65024], "characters": "\u2ACB\uFE00" }, + "⊊︀": { "codepoints": [8842, 65024], "characters": "\u228A\uFE00" }, + "⫌︀": { "codepoints": [10956, 65024], "characters": "\u2ACC\uFE00" }, + "⊋︀": { "codepoints": [8843, 65024], "characters": "\u228B\uFE00" }, + "⦚": { "codepoints": [10650], "characters": "\u299A" }, + "ŵ": { "codepoints": [373], "characters": "\u0175" }, + "⩟": { "codepoints": [10847], "characters": "\u2A5F" }, + "∧": { "codepoints": [8743], "characters": "\u2227" }, + "≙": { "codepoints": [8793], "characters": "\u2259" }, + "℘": { "codepoints": [8472], "characters": "\u2118" }, + "𝔴": { "codepoints": [120116], "characters": "\uD835\uDD34" }, + "𝕨": { "codepoints": [120168], "characters": "\uD835\uDD68" }, + "℘": { "codepoints": [8472], "characters": "\u2118" }, + "≀": { "codepoints": [8768], "characters": "\u2240" }, + "≀": { "codepoints": [8768], "characters": "\u2240" }, + "𝓌": { "codepoints": [120012], "characters": "\uD835\uDCCC" }, + "⋂": { "codepoints": [8898], "characters": "\u22C2" }, + "◯": { "codepoints": [9711], "characters": "\u25EF" }, + "⋃": { "codepoints": [8899], "characters": "\u22C3" }, + "▽": { "codepoints": [9661], "characters": "\u25BD" }, + "𝔵": { "codepoints": [120117], "characters": "\uD835\uDD35" }, + "⟺": { "codepoints": [10234], "characters": "\u27FA" }, + "⟷": { "codepoints": [10231], "characters": "\u27F7" }, + "ξ": { "codepoints": [958], "characters": "\u03BE" }, + "⟸": { "codepoints": [10232], "characters": "\u27F8" }, + "⟵": { "codepoints": [10229], "characters": "\u27F5" }, + "⟼": { "codepoints": [10236], "characters": "\u27FC" }, + "⋻": { "codepoints": [8955], "characters": "\u22FB" }, + "⨀": { "codepoints": [10752], "characters": "\u2A00" }, + "𝕩": { "codepoints": [120169], "characters": "\uD835\uDD69" }, + "⨁": { "codepoints": [10753], "characters": "\u2A01" }, + "⨂": { "codepoints": [10754], "characters": "\u2A02" }, + "⟹": { "codepoints": [10233], "characters": "\u27F9" }, + "⟶": { "codepoints": [10230], "characters": "\u27F6" }, + "𝓍": { "codepoints": [120013], "characters": "\uD835\uDCCD" }, + "⨆": { "codepoints": [10758], "characters": "\u2A06" }, + "⨄": { "codepoints": [10756], "characters": "\u2A04" }, + "△": { "codepoints": [9651], "characters": "\u25B3" }, + "⋁": { "codepoints": [8897], "characters": "\u22C1" }, + "⋀": { "codepoints": [8896], "characters": "\u22C0" }, + "ý": { "codepoints": [253], "characters": "\u00FD" }, + "ý": { "codepoints": [253], "characters": "\u00FD" }, + "я": { "codepoints": [1103], "characters": "\u044F" }, + "ŷ": { "codepoints": [375], "characters": "\u0177" }, + "ы": { "codepoints": [1099], "characters": "\u044B" }, + "¥": { "codepoints": [165], "characters": "\u00A5" }, + "¥": { "codepoints": [165], "characters": "\u00A5" }, + "𝔶": { "codepoints": [120118], "characters": "\uD835\uDD36" }, + "ї": { "codepoints": [1111], "characters": "\u0457" }, + "𝕪": { "codepoints": [120170], "characters": "\uD835\uDD6A" }, + "𝓎": { "codepoints": [120014], "characters": "\uD835\uDCCE" }, + "ю": { "codepoints": [1102], "characters": "\u044E" }, + "ÿ": { "codepoints": [255], "characters": "\u00FF" }, + "ÿ": { "codepoints": [255], "characters": "\u00FF" }, + "ź": { "codepoints": [378], "characters": "\u017A" }, + "ž": { "codepoints": [382], "characters": "\u017E" }, + "з": { "codepoints": [1079], "characters": "\u0437" }, + "ż": { "codepoints": [380], "characters": "\u017C" }, + "ℨ": { "codepoints": [8488], "characters": "\u2128" }, + "ζ": { "codepoints": [950], "characters": "\u03B6" }, + "𝔷": { "codepoints": [120119], "characters": "\uD835\uDD37" }, + "ж": { "codepoints": [1078], "characters": "\u0436" }, + "⇝": { "codepoints": [8669], "characters": "\u21DD" }, + "𝕫": { "codepoints": [120171], "characters": "\uD835\uDD6B" }, + "𝓏": { "codepoints": [120015], "characters": "\uD835\uDCCF" }, + "‍": { "codepoints": [8205], "characters": "\u200D" }, + "‌": { "codepoints": [8204], "characters": "\u200C" } +} + diff --git a/vendor/tree-sitter-markdown/package-lock.json b/vendor/tree-sitter-markdown/package-lock.json new file mode 100644 index 0000000000..4bd0de9ee7 --- /dev/null +++ b/vendor/tree-sitter-markdown/package-lock.json @@ -0,0 +1,1779 @@ +{ + "name": "tree-sitter-markdown", + "version": "0.1.1", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "tree-sitter-markdown", + "version": "0.1.1", + "license": "MIT", + "dependencies": { + "@mapbox/node-pre-gyp": "^1.0.9", + "nan": "^2.14.0", + "node-pre-gyp": "^0.17.0" + }, + "devDependencies": { + "tree-sitter-cli": "^0.20.0" + } + }, + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.9.tgz", + "integrity": "sha512-aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw==", + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/minipass": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", + "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/agent-base/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/agent-base/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/are-we-there-yet": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/fs-minipass": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", + "dependencies": { + "minipass": "^2.6.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==", + "dependencies": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/https-proxy-agent/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore-walk": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz", + "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", + "dependencies": { + "minimatch": "^3.0.4" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lru-cache/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + }, + "node_modules/minipass": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", + "dependencies": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + }, + "node_modules/minizlib": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", + "dependencies": { + "minipass": "^2.9.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==" + }, + "node_modules/needle": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", + "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-pre-gyp": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.17.0.tgz", + "integrity": "sha512-abzZt1hmOjkZez29ppg+5gGqdPLUuJeAEwVPtHYEJgx0qzttCbcKFpxrCQn2HYbwCv2c+7JwH4BgEzFkUGpn4A==", + "deprecated": "Please upgrade to @mapbox/node-pre-gyp: the non-scoped node-pre-gyp package is deprecated and only the @mapbox scoped package will recieve updates in the future", + "dependencies": { + "detect-libc": "^1.0.3", + "mkdirp": "^0.5.5", + "needle": "^2.5.2", + "nopt": "^4.0.3", + "npm-packlist": "^1.4.8", + "npmlog": "^4.1.2", + "rc": "^1.2.8", + "rimraf": "^2.7.1", + "semver": "^5.7.1", + "tar": "^4.4.13" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/nopt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", + "dependencies": { + "abbrev": "1", + "osenv": "^0.1.4" + }, + "bin": { + "nopt": "bin/nopt.js" + } + }, + "node_modules/npm-bundled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "dependencies": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + }, + "node_modules/npm-packlist": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz", + "integrity": "sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==", + "dependencies": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "dependencies": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tar": { + "version": "4.4.19", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", + "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", + "dependencies": { + "chownr": "^1.1.4", + "fs-minipass": "^1.2.7", + "minipass": "^2.9.0", + "minizlib": "^1.3.3", + "mkdirp": "^0.5.5", + "safe-buffer": "^5.2.1", + "yallist": "^3.1.1" + }, + "engines": { + "node": ">=4.5" + } + }, + "node_modules/tar/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/tree-sitter-cli": { + "version": "0.20.6", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz", + "integrity": "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "dependencies": { + "@mapbox/node-pre-gyp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.9.tgz", + "integrity": "sha512-aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw==", + "requires": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + }, + "detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "requires": { + "minipass": "^3.0.0" + } + }, + "gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "minipass": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", + "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "requires": { + "yallist": "^4.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "requires": { + "abbrev": "1" + } + }, + "npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "requires": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "requires": { + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "are-we-there-yet": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==" + }, + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==" + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "fs-minipass": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", + "requires": { + "minipass": "^2.6.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==", + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "requires": { + "agent-base": "6", + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ignore-walk": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz", + "integrity": "sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==", + "requires": { + "minimatch": "^3.0.4" + } + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + }, + "minipass": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + }, + "minizlib": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", + "requires": { + "minipass": "^2.9.0" + } + }, + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "requires": { + "minimist": "^1.2.6" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==" + }, + "needle": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", + "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + } + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "node-pre-gyp": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.17.0.tgz", + "integrity": "sha512-abzZt1hmOjkZez29ppg+5gGqdPLUuJeAEwVPtHYEJgx0qzttCbcKFpxrCQn2HYbwCv2c+7JwH4BgEzFkUGpn4A==", + "requires": { + "detect-libc": "^1.0.3", + "mkdirp": "^0.5.5", + "needle": "^2.5.2", + "nopt": "^4.0.3", + "npm-packlist": "^1.4.8", + "npmlog": "^4.1.2", + "rc": "^1.2.8", + "rimraf": "^2.7.1", + "semver": "^5.7.1", + "tar": "^4.4.13" + } + }, + "nopt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "npm-bundled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + }, + "npm-packlist": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz", + "integrity": "sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==", + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==" + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + }, + "osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" + }, + "tar": { + "version": "4.4.19", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", + "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", + "requires": { + "chownr": "^1.1.4", + "fs-minipass": "^1.2.7", + "minipass": "^2.9.0", + "minizlib": "^1.3.3", + "mkdirp": "^0.5.5", + "safe-buffer": "^5.2.1", + "yallist": "^3.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + } + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "tree-sitter-cli": { + "version": "0.20.6", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz", + "integrity": "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + } +} diff --git a/vendor/tree-sitter-markdown/package.json b/vendor/tree-sitter-markdown/package.json new file mode 100644 index 0000000000..0abeea09bf --- /dev/null +++ b/vendor/tree-sitter-markdown/package.json @@ -0,0 +1,37 @@ +{ + "name": "tree-sitter-markdown", + "version": "0.1.1", + "description": "Markdown grammar for tree-sitter", + "main": "bindings/node", + "keywords": [ + "parser", + "markdown" + ], + "repository": { + "type": "git", + "url": "https://github.com/MDeiml/tree-sitter-markdown.git" + }, + "author": "MDeiml (https://github.com/MDeiml)", + "license": "MIT", + "dependencies": { + "@mapbox/node-pre-gyp": "^1.0.9", + "nan": "^2.14.0", + "node-pre-gyp": "^0.17.0" + }, + "devDependencies": { + "tree-sitter-cli": "^0.20.0" + }, + "scripts": { + "test": "(cd tree-sitter-markdown && tree-sitter test) && (cd tree-sitter-markdown-inline && tree-sitter test)", + "build": "(cd tree-sitter-markdown && tree-sitter generate --no-bindings) && (cd tree-sitter-markdown-inline && tree-sitter generate --no-bindings) && node-gyp build" + }, + "tree-sitter": [ + { + "scope": "source.md", + "injection-regex": "markdown|md", + "file-types": [ + "md" + ] + } + ] +} diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus-failing/spec.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus-failing/spec.txt new file mode 100644 index 0000000000..0185f08b09 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus-failing/spec.txt @@ -0,0 +1,242 @@ +================================================================================ +Example 355 - https://github.github.com/gfm/#example-355 +================================================================================ +`` + +-------------------------------------------------------------------------------- + +(inline + (code_span)) + +================================================================================ +Example 363 - https://github.github.com/gfm/#example-363 +================================================================================ +*  a * + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 389 - https://github.github.com/gfm/#example-389 +================================================================================ +a**"foo"** + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 394 - https://github.github.com/gfm/#example-394 +================================================================================ +a__"foo"__ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 395 - https://github.github.com/gfm/#example-395 +================================================================================ +foo__bar__ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 397 - https://github.github.com/gfm/#example-397 +================================================================================ +пристаням__стремятся__ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 400 - https://github.github.com/gfm/#example-400 +================================================================================ +**foo bar ** + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 401 - https://github.github.com/gfm/#example-401 +================================================================================ +**(**foo) + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 406 - https://github.github.com/gfm/#example-406 +================================================================================ +__foo bar __ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 411 - https://github.github.com/gfm/#example-411 +================================================================================ +__foo__bar__baz__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis)) + +================================================================================ +Example 420 - https://github.github.com/gfm/#example-420 +================================================================================ +*foo**bar**baz* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (strong_emphasis))) + +================================================================================ +Example 421 - https://github.github.com/gfm/#example-421 +================================================================================ +*foo**bar* + +-------------------------------------------------------------------------------- + +(inline + (emphasis)) + +================================================================================ +Example 424 - https://github.github.com/gfm/#example-424 +================================================================================ +*foo**bar*** + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (strong_emphasis))) + +================================================================================ +Example 438 - https://github.github.com/gfm/#example-438 +================================================================================ +**foo*bar*baz** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis)))) + +================================================================================ +Example 487 - https://github.github.com/gfm/#example-487 +================================================================================ +*a `*`* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (code_span + (code_span_delimiter) + (code_span_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 488 - https://github.github.com/gfm/#example-488 +================================================================================ +_a `_`_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (code_span + (code_span_delimiter) + (code_span_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 524 - https://github.github.com/gfm/#example-524 +================================================================================ +[link *foo **bar** `#`*](/uri) + +-------------------------------------------------------------------------------- + +(inline + (link_text + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (code_span + (code_span_delimiter) + (code_span_delimiter)) + (emphasis_delimiter))) + (link_destination)) + +================================================================================ +Example 538 - https://github.github.com/gfm/#example-538 +================================================================================ +[link *foo **bar** `#`*][ref] + +[ref]: /uri + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text + (emphasis + (strong_emphasis) + (code_span))) + (link_label))) +(link_reference_definition + (link_label) + (link_destination)) + +================================================================================ +Example 560 - https://github.github.com/gfm/#example-560 +================================================================================ +[ + ] + +[ + ]: /uri + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 588 - https://github.github.com/gfm/#example-588 +================================================================================ +![foo]() + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description) + (link_destination))) + +================================================================================ +Example 635 - https://github.github.com/gfm/#example-635 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus/extension_strikethrough.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus/extension_strikethrough.txt new file mode 100644 index 0000000000..7101821d88 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus/extension_strikethrough.txt @@ -0,0 +1,32 @@ +================================================================================ +Example 491 - https://github.github.com/gfm/#example-491 +================================================================================ +~~Hi~~ Hello, world! + +-------------------------------------------------------------------------------- + +(inline + (strikethrough + (emphasis_delimiter) + (strikethrough + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 492 - https://github.github.com/gfm/#example-492 +================================================================================ +This ~~has a + +new paragraph~~. +(This test does not work here because it relies on block structure) + +-------------------------------------------------------------------------------- + +(inline + (strikethrough + (emphasis_delimiter) + (strikethrough + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus/issues.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus/issues.txt new file mode 100644 index 0000000000..70a12e3a39 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus/issues.txt @@ -0,0 +1,15 @@ +================================================================================ +#18 - Error on markdown images +================================================================================ +![img1](link1) +![img2](link2) + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description) + (link_destination)) + (image + (image_description) + (link_destination))) diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus/spec.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus/spec.txt new file mode 100644 index 0000000000..2f763a1833 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/corpus/spec.txt @@ -0,0 +1,4028 @@ +================================================================================ +Example 307 - https://github.github.com/gfm/#example-307 +================================================================================ +`hi`lo` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 308 - https://github.github.com/gfm/#example-308 +================================================================================ +\!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~ + +-------------------------------------------------------------------------------- + +(inline + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape)) + +================================================================================ +Example 309 - https://github.github.com/gfm/#example-309 +================================================================================ +\ \A\a\ \3\φ\« + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 310 - https://github.github.com/gfm/#example-310 +================================================================================ +\*not emphasized* +\
not a tag +\[not a link](/foo) +\`not code` +1\. not a list +\* not a list +\# not a heading +\[foo]: /url "not a reference" +\ö not a character entity + +-------------------------------------------------------------------------------- + +(inline + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape) + (backslash_escape)) + +================================================================================ +Example 311 - https://github.github.com/gfm/#example-311 +================================================================================ +\\*emphasis* + +-------------------------------------------------------------------------------- + +(inline + (backslash_escape) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 312 - https://github.github.com/gfm/#example-312 +================================================================================ +foo\ +bar + +-------------------------------------------------------------------------------- + +(inline + (hard_line_break)) + +================================================================================ +Example 313 - https://github.github.com/gfm/#example-313 +================================================================================ +`` \[\` `` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 316 - https://github.github.com/gfm/#example-316 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 317 - https://github.github.com/gfm/#example-317 +================================================================================ +
+ +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 318 - https://github.github.com/gfm/#example-318 +================================================================================ +[foo](/bar\* "ti\*tle") + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination + (backslash_escape)) + (link_title + (backslash_escape)))) + +================================================================================ +Example 321 - https://github.github.com/gfm/#example-321 +================================================================================ +  & © Æ Ď +¾ ℋ ⅆ +∲ ≧̸ + +-------------------------------------------------------------------------------- + +(inline + (entity_reference) + (entity_reference) + (entity_reference) + (entity_reference) + (entity_reference) + (entity_reference) + (entity_reference) + (entity_reference) + (entity_reference) + (entity_reference)) + +================================================================================ +Example 322 - https://github.github.com/gfm/#example-322 +================================================================================ +# Ӓ Ϡ � + +-------------------------------------------------------------------------------- + +(inline + (numeric_character_reference) + (numeric_character_reference) + (numeric_character_reference) + (numeric_character_reference)) + +================================================================================ +Example 323 - https://github.github.com/gfm/#example-323 +================================================================================ +" ആ ಫ + +-------------------------------------------------------------------------------- + +(inline + (numeric_character_reference) + (numeric_character_reference) + (numeric_character_reference)) + +================================================================================ +Example 324 - https://github.github.com/gfm/#example-324 +================================================================================ +  &x; &#; &#x; +� +&#abcdef0; +&ThisIsNotDefined; &hi?; + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 325 - https://github.github.com/gfm/#example-325 +================================================================================ +© + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 326 - https://github.github.com/gfm/#example-326 +================================================================================ +&MadeUpEntity; + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 327 - https://github.github.com/gfm/#example-327 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 328 - https://github.github.com/gfm/#example-328 +================================================================================ +[foo](/föö "föö") + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination + (entity_reference) + (entity_reference)) + (link_title + (entity_reference) + (entity_reference)))) + +================================================================================ +Example 331 - https://github.github.com/gfm/#example-331 +================================================================================ +`föö` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 333 - https://github.github.com/gfm/#example-333 +================================================================================ +*foo* +*foo* + +-------------------------------------------------------------------------------- + +(inline + (numeric_character_reference) + (numeric_character_reference) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 335 - https://github.github.com/gfm/#example-335 +================================================================================ +foo bar + +-------------------------------------------------------------------------------- + +(inline + (numeric_character_reference) + (numeric_character_reference)) + +================================================================================ +Example 336 - https://github.github.com/gfm/#example-336 +================================================================================ + foo + +-------------------------------------------------------------------------------- + +(inline + (numeric_character_reference)) + +================================================================================ +Example 337 - https://github.github.com/gfm/#example-337 +================================================================================ +[a](url "tit") + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text)) + (entity_reference) + (entity_reference)) + +================================================================================ +Example 338 - https://github.github.com/gfm/#example-338 +================================================================================ +`foo` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 339 - https://github.github.com/gfm/#example-339 +================================================================================ +`` foo ` bar `` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 340 - https://github.github.com/gfm/#example-340 +================================================================================ +` `` ` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 341 - https://github.github.com/gfm/#example-341 +================================================================================ +` `` ` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 342 - https://github.github.com/gfm/#example-342 +================================================================================ +` a` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 343 - https://github.github.com/gfm/#example-343 +================================================================================ +` b ` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 344 - https://github.github.com/gfm/#example-344 +================================================================================ +` ` +` ` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter)) + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 345 - https://github.github.com/gfm/#example-345 +================================================================================ +`` +foo +bar +baz +`` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 346 - https://github.github.com/gfm/#example-346 +================================================================================ +`` +foo +`` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 347 - https://github.github.com/gfm/#example-347 +================================================================================ +`foo bar +baz` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 348 - https://github.github.com/gfm/#example-348 +================================================================================ +`foo\`bar` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 349 - https://github.github.com/gfm/#example-349 +================================================================================ +``foo`bar`` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 350 - https://github.github.com/gfm/#example-350 +================================================================================ +` foo `` bar ` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 351 - https://github.github.com/gfm/#example-351 +================================================================================ +*foo`*` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 352 - https://github.github.com/gfm/#example-352 +================================================================================ +[not a `link](/foo`) + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 353 - https://github.github.com/gfm/#example-353 +================================================================================ +`` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 354 - https://github.github.com/gfm/#example-354 +================================================================================ +` + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + + +================================================================================ +Example 356 - https://github.github.com/gfm/#example-356 +================================================================================ +` + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 357 - https://github.github.com/gfm/#example-357 +================================================================================ +```foo`` + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 358 - https://github.github.com/gfm/#example-358 +================================================================================ +`foo + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 359 - https://github.github.com/gfm/#example-359 +================================================================================ +`foo``bar`` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 360 - https://github.github.com/gfm/#example-360 +================================================================================ +*foo bar* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 361 - https://github.github.com/gfm/#example-361 +================================================================================ +a * foo bar* + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 362 - https://github.github.com/gfm/#example-362 +================================================================================ +a*"foo"* + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 364 - https://github.github.com/gfm/#example-364 +================================================================================ +foo*bar* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 365 - https://github.github.com/gfm/#example-365 +================================================================================ +5*6*78 + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 366 - https://github.github.com/gfm/#example-366 +================================================================================ +_foo bar_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 367 - https://github.github.com/gfm/#example-367 +================================================================================ +_ foo bar_ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 368 - https://github.github.com/gfm/#example-368 +================================================================================ +a_"foo"_ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 369 - https://github.github.com/gfm/#example-369 +================================================================================ +foo_bar_ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 370 - https://github.github.com/gfm/#example-370 +================================================================================ +5_6_78 + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 371 - https://github.github.com/gfm/#example-371 +================================================================================ +пристаням_стремятся_ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 372 - https://github.github.com/gfm/#example-372 +================================================================================ +aa_"bb"_cc + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 373 - https://github.github.com/gfm/#example-373 +================================================================================ +foo-_(bar)_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 374 - https://github.github.com/gfm/#example-374 +================================================================================ +_foo* + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 375 - https://github.github.com/gfm/#example-375 +================================================================================ +*foo bar * + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 376 - https://github.github.com/gfm/#example-376 +================================================================================ +*foo bar +* + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 377 - https://github.github.com/gfm/#example-377 +================================================================================ +*(*foo) + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 378 - https://github.github.com/gfm/#example-378 +================================================================================ +*(*foo*)* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 379 - https://github.github.com/gfm/#example-379 +================================================================================ +*foo*bar + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 380 - https://github.github.com/gfm/#example-380 +================================================================================ +_foo bar _ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 381 - https://github.github.com/gfm/#example-381 +================================================================================ +_(_foo) + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 382 - https://github.github.com/gfm/#example-382 +================================================================================ +_(_foo_)_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 383 - https://github.github.com/gfm/#example-383 +================================================================================ +_foo_bar + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 384 - https://github.github.com/gfm/#example-384 +================================================================================ +_пристаням_стремятся + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 385 - https://github.github.com/gfm/#example-385 +================================================================================ +_foo_bar_baz_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 386 - https://github.github.com/gfm/#example-386 +================================================================================ +_(bar)_. + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 387 - https://github.github.com/gfm/#example-387 +================================================================================ +**foo bar** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 388 - https://github.github.com/gfm/#example-388 +================================================================================ +** foo bar** + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 390 - https://github.github.com/gfm/#example-390 +================================================================================ +foo**bar** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 391 - https://github.github.com/gfm/#example-391 +================================================================================ +__foo bar__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 392 - https://github.github.com/gfm/#example-392 +================================================================================ +__ foo bar__ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 393 - https://github.github.com/gfm/#example-393 +================================================================================ +__ +foo bar__ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 396 - https://github.github.com/gfm/#example-396 +================================================================================ +5__6__78 + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 398 - https://github.github.com/gfm/#example-398 +================================================================================ +__foo, __bar__, baz__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 399 - https://github.github.com/gfm/#example-399 +================================================================================ +foo-__(bar)__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 402 - https://github.github.com/gfm/#example-402 +================================================================================ +*(**foo**)* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 403 - https://github.github.com/gfm/#example-403 +================================================================================ +**Gomphocarpus (*Gomphocarpus physocarpus*, syn. +*Asclepias physocarpa*)** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 404 - https://github.github.com/gfm/#example-404 +================================================================================ +**foo "*bar*" foo** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 405 - https://github.github.com/gfm/#example-405 +================================================================================ +**foo**bar + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 407 - https://github.github.com/gfm/#example-407 +================================================================================ +__(__foo) + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 408 - https://github.github.com/gfm/#example-408 +================================================================================ +_(__foo__)_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 409 - https://github.github.com/gfm/#example-409 +================================================================================ +__foo__bar + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 410 - https://github.github.com/gfm/#example-410 +================================================================================ +__пристаням__стремятся + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 412 - https://github.github.com/gfm/#example-412 +================================================================================ +__(bar)__. + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 413 - https://github.github.com/gfm/#example-413 +================================================================================ +*foo [bar](/url)* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (inline_link + (link_text) + (link_destination)) + (emphasis_delimiter))) + +================================================================================ +Example 414 - https://github.github.com/gfm/#example-414 +================================================================================ +*foo +bar* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 415 - https://github.github.com/gfm/#example-415 +================================================================================ +_foo __bar__ baz_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 416 - https://github.github.com/gfm/#example-416 +================================================================================ +_foo _bar_ baz_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 417 - https://github.github.com/gfm/#example-417 +================================================================================ +__foo_ bar_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 418 - https://github.github.com/gfm/#example-418 +================================================================================ +*foo *bar** + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 419 - https://github.github.com/gfm/#example-419 +================================================================================ +*foo **bar** baz* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 422 - https://github.github.com/gfm/#example-422 +================================================================================ +***foo** bar* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 423 - https://github.github.com/gfm/#example-423 +================================================================================ +*foo **bar*** + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 425 - https://github.github.com/gfm/#example-425 +================================================================================ +foo***bar***baz + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 426 - https://github.github.com/gfm/#example-426 +================================================================================ +foo******bar*********baz + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 427 - https://github.github.com/gfm/#example-427 +================================================================================ +*foo **bar *baz* bim** bop* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 428 - https://github.github.com/gfm/#example-428 +================================================================================ +*foo [*bar*](/url)* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (inline_link + (link_text + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + (link_destination)) + (emphasis_delimiter))) + +================================================================================ +Example 429 - https://github.github.com/gfm/#example-429 +================================================================================ +** is not an empty emphasis + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 430 - https://github.github.com/gfm/#example-430 +================================================================================ +**** is not an empty strong emphasis + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 431 - https://github.github.com/gfm/#example-431 +================================================================================ +**foo [bar](/url)** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (inline_link + (link_text) + (link_destination)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 432 - https://github.github.com/gfm/#example-432 +================================================================================ +**foo +bar** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 433 - https://github.github.com/gfm/#example-433 +================================================================================ +__foo _bar_ baz__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 434 - https://github.github.com/gfm/#example-434 +================================================================================ +__foo __bar__ baz__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 435 - https://github.github.com/gfm/#example-435 +================================================================================ +____foo__ bar__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 436 - https://github.github.com/gfm/#example-436 +================================================================================ +**foo **bar**** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 437 - https://github.github.com/gfm/#example-437 +================================================================================ +**foo *bar* baz** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 439 - https://github.github.com/gfm/#example-439 +================================================================================ +***foo* bar** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 440 - https://github.github.com/gfm/#example-440 +================================================================================ +**foo *bar*** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 441 - https://github.github.com/gfm/#example-441 +================================================================================ +**foo *bar **baz** +bim* bop** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 442 - https://github.github.com/gfm/#example-442 +================================================================================ +**foo [*bar*](/url)** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (inline_link + (link_text + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + (link_destination)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 443 - https://github.github.com/gfm/#example-443 +================================================================================ +__ is not an empty emphasis + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 444 - https://github.github.com/gfm/#example-444 +================================================================================ +____ is not an empty strong emphasis + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 445 - https://github.github.com/gfm/#example-445 +================================================================================ +foo *** + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 446 - https://github.github.com/gfm/#example-446 +================================================================================ +foo *\** + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (backslash_escape) + (emphasis_delimiter))) + +================================================================================ +Example 447 - https://github.github.com/gfm/#example-447 +================================================================================ +foo *_* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 448 - https://github.github.com/gfm/#example-448 +================================================================================ +foo ***** + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 449 - https://github.github.com/gfm/#example-449 +================================================================================ +foo **\*** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (backslash_escape) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 450 - https://github.github.com/gfm/#example-450 +================================================================================ +foo **_** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 451 - https://github.github.com/gfm/#example-451 +================================================================================ +**foo* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 452 - https://github.github.com/gfm/#example-452 +================================================================================ +*foo** + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 453 - https://github.github.com/gfm/#example-453 +================================================================================ +***foo** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 454 - https://github.github.com/gfm/#example-454 +================================================================================ +****foo* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 455 - https://github.github.com/gfm/#example-455 +================================================================================ +**foo*** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 456 - https://github.github.com/gfm/#example-456 +================================================================================ +*foo**** + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 457 - https://github.github.com/gfm/#example-457 +================================================================================ +foo ___ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 458 - https://github.github.com/gfm/#example-458 +================================================================================ +foo _\__ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (backslash_escape) + (emphasis_delimiter))) + +================================================================================ +Example 459 - https://github.github.com/gfm/#example-459 +================================================================================ +foo _*_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 460 - https://github.github.com/gfm/#example-460 +================================================================================ +foo _____ + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 461 - https://github.github.com/gfm/#example-461 +================================================================================ +foo __\___ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (backslash_escape) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 462 - https://github.github.com/gfm/#example-462 +================================================================================ +foo __*__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 463 - https://github.github.com/gfm/#example-463 +================================================================================ +__foo_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 464 - https://github.github.com/gfm/#example-464 +================================================================================ +_foo__ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 465 - https://github.github.com/gfm/#example-465 +================================================================================ +___foo__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 466 - https://github.github.com/gfm/#example-466 +================================================================================ +____foo_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 467 - https://github.github.com/gfm/#example-467 +================================================================================ +__foo___ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 468 - https://github.github.com/gfm/#example-468 +================================================================================ +_foo____ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 469 - https://github.github.com/gfm/#example-469 +================================================================================ +**foo** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 470 - https://github.github.com/gfm/#example-470 +================================================================================ +*_foo_* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 471 - https://github.github.com/gfm/#example-471 +================================================================================ +__foo__ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 472 - https://github.github.com/gfm/#example-472 +================================================================================ +_*foo*_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 473 - https://github.github.com/gfm/#example-473 +================================================================================ +****foo**** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 474 - https://github.github.com/gfm/#example-474 +================================================================================ +____foo____ + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 475 - https://github.github.com/gfm/#example-475 +================================================================================ +******foo****** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 476 - https://github.github.com/gfm/#example-476 +================================================================================ +***foo*** + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 477 - https://github.github.com/gfm/#example-477 +================================================================================ +_____foo_____ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 478 - https://github.github.com/gfm/#example-478 +================================================================================ +*foo _bar* baz_ + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 479 - https://github.github.com/gfm/#example-479 +================================================================================ +*foo __bar *baz bim__ bam* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter)) + (emphasis_delimiter))) + +================================================================================ +Example 480 - https://github.github.com/gfm/#example-480 +================================================================================ +**foo **bar baz** + +-------------------------------------------------------------------------------- + +(inline + (strong_emphasis + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 481 - https://github.github.com/gfm/#example-481 +================================================================================ +*foo *bar baz* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + +================================================================================ +Example 482 - https://github.github.com/gfm/#example-482 +================================================================================ +*[bar*](/url) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 483 - https://github.github.com/gfm/#example-483 +================================================================================ +_foo [bar_](/url) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 484 - https://github.github.com/gfm/#example-484 +================================================================================ +* + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 485 - https://github.github.com/gfm/#example-485 +================================================================================ +** + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 486 - https://github.github.com/gfm/#example-486 +================================================================================ +__ + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 489 - https://github.github.com/gfm/#example-489 +================================================================================ +**a + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 490 - https://github.github.com/gfm/#example-490 +================================================================================ +__a + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 493 - https://github.github.com/gfm/#example-493 +================================================================================ +[link](/uri "title") + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination) + (link_title))) + +================================================================================ +Example 494 - https://github.github.com/gfm/#example-494 +================================================================================ +[link](/uri) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 495 - https://github.github.com/gfm/#example-495 +================================================================================ +[link]() + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text))) + +================================================================================ +Example 496 - https://github.github.com/gfm/#example-496 +================================================================================ +[link](<>) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 497 - https://github.github.com/gfm/#example-497 +================================================================================ +[link](/my uri) + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 498 - https://github.github.com/gfm/#example-498 +================================================================================ +[link]() + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 499 - https://github.github.com/gfm/#example-499 +================================================================================ +[link](foo +bar) + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 500 - https://github.github.com/gfm/#example-500 +================================================================================ +[link]() + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 501 - https://github.github.com/gfm/#example-501 +================================================================================ +[a]() + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 502 - https://github.github.com/gfm/#example-502 +================================================================================ +[link]() + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text)) + (backslash_escape)) + +================================================================================ +Example 503 - https://github.github.com/gfm/#example-503 +================================================================================ +[a]( +[a](c) + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text)) + (shortcut_link + (link_text)) + (shortcut_link + (link_text)) + (html_tag)) + +================================================================================ +Example 504 - https://github.github.com/gfm/#example-504 +================================================================================ +[link](\(foo\)) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination + (backslash_escape) + (backslash_escape)))) + +================================================================================ +Example 505 - https://github.github.com/gfm/#example-505 +================================================================================ +[link](foo(and(bar))) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 506 - https://github.github.com/gfm/#example-506 +================================================================================ +[link](foo\(and\(bar\)) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination + (backslash_escape) + (backslash_escape) + (backslash_escape)))) + +================================================================================ +Example 507 - https://github.github.com/gfm/#example-507 +================================================================================ +[link]() + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 508 - https://github.github.com/gfm/#example-508 +================================================================================ +[link](foo\)\:) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination + (backslash_escape) + (backslash_escape)))) + +================================================================================ +Example 509 - https://github.github.com/gfm/#example-509 +================================================================================ +[link](#fragment) +[link](http://example.com#fragment) +[link](http://example.com?foo=3#frag) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination)) + (inline_link + (link_text) + (link_destination)) + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 510 - https://github.github.com/gfm/#example-510 +================================================================================ +[link](foo\bar) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 511 - https://github.github.com/gfm/#example-511 +================================================================================ +[link](foo%20bä) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination + (entity_reference)))) + +================================================================================ +Example 512 - https://github.github.com/gfm/#example-512 +================================================================================ +[link]("title") + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 513 - https://github.github.com/gfm/#example-513 +================================================================================ +[link](/url "title") +[link](/url 'title') +[link](/url (title)) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination) + (link_title)) + (inline_link + (link_text) + (link_destination) + (link_title)) + (inline_link + (link_text) + (link_destination) + (link_title))) + +================================================================================ +Example 514 - https://github.github.com/gfm/#example-514 +================================================================================ +[link](/url "title \""") + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination) + (link_title + (backslash_escape) + (entity_reference)))) + +================================================================================ +Example 515 - https://github.github.com/gfm/#example-515 +================================================================================ +[link](/url "title") + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 516 - https://github.github.com/gfm/#example-516 +================================================================================ +[link](/url "title "and" title") + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 517 - https://github.github.com/gfm/#example-517 +================================================================================ +[link](/url 'title "and" title') + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination) + (link_title))) + +================================================================================ +Example 518 - https://github.github.com/gfm/#example-518 +================================================================================ +[link]( /uri + "title" ) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination) + (link_title))) + +================================================================================ +Example 519 - https://github.github.com/gfm/#example-519 +================================================================================ +[link] (/uri) + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 520 - https://github.github.com/gfm/#example-520 +================================================================================ +[link [foo [bar]]](/uri) + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 521 - https://github.github.com/gfm/#example-521 +================================================================================ +[link] bar](/uri) + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 522 - https://github.github.com/gfm/#example-522 +================================================================================ +[link [bar](/uri) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 523 - https://github.github.com/gfm/#example-523 +================================================================================ +[link \[bar](/uri) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text + (backslash_escape)) + (link_destination))) + +================================================================================ +Example 525 - https://github.github.com/gfm/#example-525 +================================================================================ +[![moon](moon.jpg)](/uri) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text + (image + (image_description) + (link_destination))) + (link_destination))) + +================================================================================ +Example 526 - https://github.github.com/gfm/#example-526 +================================================================================ +[foo [bar](/uri)](/uri) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 527 - https://github.github.com/gfm/#example-527 +================================================================================ +[foo *[bar [baz](/uri)](/uri)*](/uri) + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (inline_link + (link_text) + (link_destination)) + (emphasis_delimiter))) + +================================================================================ +Example 528 - https://github.github.com/gfm/#example-528 +================================================================================ +![[[foo](uri1)](uri2)](uri3) + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description + (inline_link + (link_text) + (link_destination))) + (link_destination))) + +================================================================================ +Example 529 - https://github.github.com/gfm/#example-529 +================================================================================ +*[foo*](/uri) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 530 - https://github.github.com/gfm/#example-530 +================================================================================ +[foo *bar](baz*) + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination))) + +================================================================================ +Example 531 - https://github.github.com/gfm/#example-531 +================================================================================ +*foo [bar* baz] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 532 - https://github.github.com/gfm/#example-532 +================================================================================ +[foo + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 533 - https://github.github.com/gfm/#example-533 +================================================================================ +[foo`](/uri)` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 534 - https://github.github.com/gfm/#example-534 +================================================================================ +[foo + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 535 - https://github.github.com/gfm/#example-535 +================================================================================ +[foo][bar] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label))) + +================================================================================ +Example 536 - https://github.github.com/gfm/#example-536 +================================================================================ +[link [foo [bar]]][ref] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text)) + (shortcut_link + (link_text))) +================================================================================ +Example 537 - https://github.github.com/gfm/#example-537 +================================================================================ +[link \[bar][ref] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text + (backslash_escape)) + (link_label))) + +================================================================================ +Example 539 - https://github.github.com/gfm/#example-539 +================================================================================ +[![moon](moon.jpg)][ref] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text + (image + (image_description) + (link_destination))) + (link_label))) + +================================================================================ +Example 540 - https://github.github.com/gfm/#example-540 +================================================================================ +[foo [bar](/uri)][ref] + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text) + (link_destination)) + (shortcut_link + (link_text))) + +================================================================================ +Example 541 - https://github.github.com/gfm/#example-541 +================================================================================ +[foo *bar [baz][ref]*][ref] + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (full_reference_link + (link_text) + (link_label)) + (emphasis_delimiter)) + (shortcut_link + (link_text))) + +================================================================================ +Example 542 - https://github.github.com/gfm/#example-542 +================================================================================ +*[foo*][ref] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label))) + +================================================================================ +Example 543 - https://github.github.com/gfm/#example-543 +================================================================================ +[foo *bar][ref]* + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label))) + +================================================================================ +Example 544 - https://github.github.com/gfm/#example-544 +================================================================================ +[foo + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 545 - https://github.github.com/gfm/#example-545 +================================================================================ +[foo`][ref]` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 546 - https://github.github.com/gfm/#example-546 +================================================================================ +[foo + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 547 - https://github.github.com/gfm/#example-547 +================================================================================ +[foo][BaR] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label))) + +================================================================================ +Example 548 - https://github.github.com/gfm/#example-548 +================================================================================ +[ẞ] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 549 - https://github.github.com/gfm/#example-549 +================================================================================ + +[Baz][Foo bar] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label))) + +================================================================================ +Example 550 - https://github.github.com/gfm/#example-550 +================================================================================ +[foo] [bar] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text)) + (shortcut_link + (link_text))) + +================================================================================ +Example 551 - https://github.github.com/gfm/#example-551 +================================================================================ +[foo] +[bar] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text)) + (shortcut_link + (link_text))) + +================================================================================ +Example 552 - https://github.github.com/gfm/#example-552 +================================================================================ +[bar][foo] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label))) + +================================================================================ +Example 553 - https://github.github.com/gfm/#example-553 +================================================================================ +[bar][foo\!] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label + (backslash_escape)))) + +================================================================================ +Example 554 - https://github.github.com/gfm/#example-554 +================================================================================ +[foo][ref[] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 555 - https://github.github.com/gfm/#example-555 +================================================================================ +[foo][ref[bar]] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text)) + (shortcut_link + (link_text))) + +================================================================================ +Example 556 - https://github.github.com/gfm/#example-556 +================================================================================ +[[[foo]]] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 557 - https://github.github.com/gfm/#example-557 +================================================================================ +[foo][ref\[] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label + (backslash_escape)))) + +================================================================================ +Example 558 - https://github.github.com/gfm/#example-558 +================================================================================ +[bar\\] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text + (backslash_escape)))) + +================================================================================ +Example 559 - https://github.github.com/gfm/#example-559 +================================================================================ +[] + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 561 - https://github.github.com/gfm/#example-561 +================================================================================ +[foo][] + +-------------------------------------------------------------------------------- + +(inline + (collapsed_reference_link + (link_text))) + +================================================================================ +Example 562 - https://github.github.com/gfm/#example-562 +================================================================================ +[*foo* bar][] + +-------------------------------------------------------------------------------- + +(inline + (collapsed_reference_link + (link_text + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))))) + +================================================================================ +Example 563 - https://github.github.com/gfm/#example-563 +================================================================================ +[Foo][] + +-------------------------------------------------------------------------------- + +(inline + (collapsed_reference_link + (link_text))) + +================================================================================ +Example 564 - https://github.github.com/gfm/#example-564 +================================================================================ +[foo] +[] + + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 565 - https://github.github.com/gfm/#example-565 +================================================================================ +[foo] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 566 - https://github.github.com/gfm/#example-566 +================================================================================ +[*foo* bar] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))))) + +================================================================================ +Example 567 - https://github.github.com/gfm/#example-567 +================================================================================ +[[*foo* bar]] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))))) + +================================================================================ +Example 568 - https://github.github.com/gfm/#example-568 +================================================================================ +[[bar [foo] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 569 - https://github.github.com/gfm/#example-569 +================================================================================ +[Foo] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 570 - https://github.github.com/gfm/#example-570 +================================================================================ +[foo] bar + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 571 - https://github.github.com/gfm/#example-571 +================================================================================ +\[foo] + +-------------------------------------------------------------------------------- + +(inline + (backslash_escape)) + +================================================================================ +Example 572 - https://github.github.com/gfm/#example-572 +================================================================================ +*[foo*] + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 573 - https://github.github.com/gfm/#example-573 +================================================================================ +[foo][bar] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label))) + +================================================================================ +Example 574 - https://github.github.com/gfm/#example-574 +================================================================================ +[foo][] + +-------------------------------------------------------------------------------- + +(inline + (collapsed_reference_link + (link_text))) + +================================================================================ +Example 575 - https://github.github.com/gfm/#example-575 +================================================================================ +[foo]() + +-------------------------------------------------------------------------------- + +(inline + (inline_link + (link_text))) + +================================================================================ +Example 576 - https://github.github.com/gfm/#example-576 +================================================================================ +[foo](not a link) + +-------------------------------------------------------------------------------- + +(inline + (shortcut_link + (link_text))) + +================================================================================ +Example 577 - https://github.github.com/gfm/#example-577 +================================================================================ +[foo][bar][baz] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label)) + (shortcut_link + (link_text))) + +================================================================================ +Example 578 - https://github.github.com/gfm/#example-578 +================================================================================ +[foo][bar][baz] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label)) + (shortcut_link + (link_text))) + +================================================================================ +Example 579 - https://github.github.com/gfm/#example-579 +================================================================================ +[foo][bar][baz] + +-------------------------------------------------------------------------------- + +(inline + (full_reference_link + (link_text) + (link_label)) + (shortcut_link + (link_text))) + +================================================================================ +Example 580 - https://github.github.com/gfm/#example-580 +================================================================================ +![foo](/url "title") + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description) + (link_destination) + (link_title))) + +================================================================================ +Example 581 - https://github.github.com/gfm/#example-581 +================================================================================ +![foo *bar*] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))))) + +================================================================================ +Example 582 - https://github.github.com/gfm/#example-582 +================================================================================ +![foo ![bar](/url)](/url2) + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description + (image + (image_description) + (link_destination))) + (link_destination))) + +================================================================================ +Example 583 - https://github.github.com/gfm/#example-583 +================================================================================ +![foo [bar](/url)](/url2) + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description + (inline_link + (link_text) + (link_destination))) + (link_destination))) + +================================================================================ +Example 584 - https://github.github.com/gfm/#example-584 +================================================================================ +![foo *bar*][] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))))) + +================================================================================ +Example 585 - https://github.github.com/gfm/#example-585 +================================================================================ +![foo *bar*][foobar] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))) + (link_label))) + +================================================================================ +Example 586 - https://github.github.com/gfm/#example-586 +================================================================================ +![foo](train.jpg) + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description) + (link_destination))) + +================================================================================ +Example 587 - https://github.github.com/gfm/#example-587 +================================================================================ +My ![foo bar](/path/to/train.jpg "title" ) + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description) + (link_destination) + (link_title))) + +================================================================================ +Example 589 - https://github.github.com/gfm/#example-589 +================================================================================ +![](/url) + +-------------------------------------------------------------------------------- + +(inline + (image + (link_destination))) + +================================================================================ +Example 590 - https://github.github.com/gfm/#example-590 +================================================================================ +![foo][bar] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description) + (link_label))) + +================================================================================ +Example 591 - https://github.github.com/gfm/#example-591 +================================================================================ +![foo][bar] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description) + (link_label))) + +================================================================================ +Example 592 - https://github.github.com/gfm/#example-592 +================================================================================ +![foo][] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description))) + +================================================================================ +Example 593 - https://github.github.com/gfm/#example-593 +================================================================================ +![*foo* bar][] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))))) + +================================================================================ +Example 594 - https://github.github.com/gfm/#example-594 +================================================================================ +![Foo][] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description))) + +================================================================================ +Example 595 - https://github.github.com/gfm/#example-595 +================================================================================ +![foo] +[] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description))) + +================================================================================ +Example 596 - https://github.github.com/gfm/#example-596 +================================================================================ +![foo] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description))) + +================================================================================ +Example 597 - https://github.github.com/gfm/#example-597 +================================================================================ +![*foo* bar] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description + (emphasis + (emphasis_delimiter) + (emphasis_delimiter))))) + +================================================================================ +Example 598 - https://github.github.com/gfm/#example-598 +================================================================================ +![[foo]] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description + (shortcut_link + (link_text))))) + +================================================================================ +Example 599 - https://github.github.com/gfm/#example-599 +================================================================================ +![Foo] + +-------------------------------------------------------------------------------- + +(inline + (image + (image_description))) + +================================================================================ +Example 600 - https://github.github.com/gfm/#example-600 +================================================================================ +!\[foo] + +-------------------------------------------------------------------------------- + +(inline + (backslash_escape)) + +================================================================================ +Example 601 - https://github.github.com/gfm/#example-601 +================================================================================ +\![foo] + +-------------------------------------------------------------------------------- + +(inline + (backslash_escape) + (shortcut_link + (link_text))) + +================================================================================ +Example 602 - https://github.github.com/gfm/#example-602 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 603 - https://github.github.com/gfm/#example-603 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 604 - https://github.github.com/gfm/#example-604 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 605 - https://github.github.com/gfm/#example-605 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 606 - https://github.github.com/gfm/#example-606 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 607 - https://github.github.com/gfm/#example-607 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 608 - https://github.github.com/gfm/#example-608 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 609 - https://github.github.com/gfm/#example-609 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 610 - https://github.github.com/gfm/#example-610 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 611 - https://github.github.com/gfm/#example-611 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (uri_autolink)) + +================================================================================ +Example 612 - https://github.github.com/gfm/#example-612 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (email_autolink)) + +================================================================================ +Example 613 - https://github.github.com/gfm/#example-613 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (email_autolink)) + +================================================================================ +Example 614 - https://github.github.com/gfm/#example-614 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (backslash_escape)) + +================================================================================ +Example 615 - https://github.github.com/gfm/#example-615 +================================================================================ +<> + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 616 - https://github.github.com/gfm/#example-616 +================================================================================ +< http://foo.bar > + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 617 - https://github.github.com/gfm/#example-617 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 618 - https://github.github.com/gfm/#example-618 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 619 - https://github.github.com/gfm/#example-619 +================================================================================ +http://example.com + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 620 - https://github.github.com/gfm/#example-620 +================================================================================ +foo@bar.example.com + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 632 - https://github.github.com/gfm/#example-632 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (html_tag) + (html_tag) + (html_tag)) + +================================================================================ +Example 633 - https://github.github.com/gfm/#example-633 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (html_tag) + (html_tag)) + +================================================================================ +Example 634 - https://github.github.com/gfm/#example-634 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (html_tag) + (html_tag)) + +================================================================================ +Example 636 - https://github.github.com/gfm/#example-636 +================================================================================ +Foo + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 637 - https://github.github.com/gfm/#example-637 +================================================================================ +<33> <__> + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 638 - https://github.github.com/gfm/#example-638 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 639 - https://github.github.com/gfm/#example-639 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 644 - https://github.github.com/gfm/#example-644 +================================================================================ +foo + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 645 - https://github.github.com/gfm/#example-645 +================================================================================ +foo + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 646 - https://github.github.com/gfm/#example-646 +================================================================================ +foo foo --> +foo + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 647 - https://github.github.com/gfm/#example-647 +================================================================================ +foo + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 648 - https://github.github.com/gfm/#example-648 +================================================================================ +foo + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 649 - https://github.github.com/gfm/#example-649 +================================================================================ +foo &<]]> + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 650 - https://github.github.com/gfm/#example-650 +================================================================================ +foo + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 651 - https://github.github.com/gfm/#example-651 +================================================================================ +foo + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 652 - https://github.github.com/gfm/#example-652 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (backslash_escape)) + +================================================================================ +Example 654 - https://github.github.com/gfm/#example-654 +================================================================================ +foo +baz + +-------------------------------------------------------------------------------- + +(inline + (hard_line_break)) + +================================================================================ +Example 655 - https://github.github.com/gfm/#example-655 +================================================================================ +foo\ +baz + +-------------------------------------------------------------------------------- + +(inline + (hard_line_break)) + +================================================================================ +Example 656 - https://github.github.com/gfm/#example-656 +================================================================================ +foo +baz + +-------------------------------------------------------------------------------- + +(inline + (hard_line_break)) + +================================================================================ +Example 657 - https://github.github.com/gfm/#example-657 +================================================================================ +foo + bar + +-------------------------------------------------------------------------------- + +(inline + (hard_line_break)) + +================================================================================ +Example 658 - https://github.github.com/gfm/#example-658 +================================================================================ +foo\ + bar + +-------------------------------------------------------------------------------- + +(inline + (hard_line_break)) + +================================================================================ +Example 659 - https://github.github.com/gfm/#example-659 +================================================================================ +*foo +bar* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (hard_line_break) + (emphasis_delimiter))) + +================================================================================ +Example 660 - https://github.github.com/gfm/#example-660 +================================================================================ +*foo\ +bar* + +-------------------------------------------------------------------------------- + +(inline + (emphasis + (emphasis_delimiter) + (hard_line_break) + (emphasis_delimiter))) + +================================================================================ +Example 661 - https://github.github.com/gfm/#example-661 +================================================================================ +`code +span` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 662 - https://github.github.com/gfm/#example-662 +================================================================================ +`code\ +span` + +-------------------------------------------------------------------------------- + +(inline + (code_span + (code_span_delimiter) + (code_span_delimiter))) + +================================================================================ +Example 663 - https://github.github.com/gfm/#example-663 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 664 - https://github.github.com/gfm/#example-664 +================================================================================ + + +-------------------------------------------------------------------------------- + +(inline + (html_tag)) + +================================================================================ +Example 665 - https://github.github.com/gfm/#example-665 +================================================================================ +foo\ +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 666 - https://github.github.com/gfm/#example-666 +================================================================================ +foo +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 669 - https://github.github.com/gfm/#example-669 +================================================================================ +foo +baz + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 670 - https://github.github.com/gfm/#example-670 +================================================================================ +foo + baz + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 671 - https://github.github.com/gfm/#example-671 +================================================================================ +hello $.;'there + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 672 - https://github.github.com/gfm/#example-672 +================================================================================ +Foo χρῆν + +-------------------------------------------------------------------------------- + +(inline) + +================================================================================ +Example 673 - https://github.github.com/gfm/#example-673 +================================================================================ +Multiple spaces + +-------------------------------------------------------------------------------- + +(inline) + diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/grammar.js b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/grammar.js new file mode 100644 index 0000000000..4a5cc47c93 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/grammar.js @@ -0,0 +1,431 @@ +// This grammar only concerns the inline structure according to the CommonMark Spec +// (https://spec.commonmark.org/0.30/https://spec.commonmark.org/0.30/#inlines) +// For more information see README.md +const common = require('../common/grammar.js'); + +// Levels used for dynmic precedence. Ideally +// n * PRECEDENCE_LEVEL_EMPHASIS > PRECEDENCE_LEVEL_LINK for any n, so maybe the +// maginuted of these values should be increased in the future +const PRECEDENCE_LEVEL_EMPHASIS = 1; +const PRECEDENCE_LEVEL_LINK = 10; +const PRECEDENCE_LEVEL_HTML = 100; +const PRECEDENCE_LEVEL_CODE_SPAN = 100; + +// Punctuation characters as specified in +// https://github.github.com/gfm/#ascii-punctuation-character +const PUNCTUATION_CHARACTERS_REGEX = '!-/:-@\\[-`\\{-~'; +const PUNCTUATION_CHARACTERS_ARRAY = [ + '!', '"', '#', '$', '%', '&', "'", '(', ')', '*', '+', ',', '-', '.', '/', ':', ';', '<', + '=', '>', '?', '@', '[', '\\', ']', '^', '_', '`', '{', '|', '}', '~' +]; + +// (https://github.github.com/gfm/#html-blocks) +// tag names for html blocks of type 1 +const HTML_TAG_NAMES_RULE_1 = ['pre', 'script', 'style']; +// tag names for html blocks of type 6 +const HTML_TAG_NAMES_RULE_7 = [ + 'address', 'article', 'aside', 'base', 'basefont', 'blockquote', 'body', 'caption', 'center', + 'col', 'colgroup', 'dd', 'details', 'dialog', 'dir', 'div', 'dl', 'dt', 'fieldset', 'figcaption', + 'figure', 'footer', 'form', 'frame', 'frameset', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', + 'header', 'hr', 'html', 'iframe', 'legend', 'li', 'link', 'main', 'menu', 'menuitem', 'nav', + 'noframes', 'ol', 'optgroup', 'option', 'p', 'param', 'section', 'source', 'summary', 'table', + 'tbody', 'td', 'tfoot', 'th', 'thead', 'title', 'tr', 'track', 'ul' +]; + +// !!! +// Notice the call to `add_inline_rules` which generates some additional rules related to parsing +// inline contents in different contexts. +// !!! +module.exports = grammar(add_inline_rules({ + name: 'markdown_inline', + + externals: $ => [ + // An `$._error` token is never valid and gets emmited to kill invalid parse branches. Concretely + // this is used to decide wether a newline closes a paragraph and together and it gets emitted + // when trying to parse the `$._trigger_error` token in `$.link_title`. + $._error, + $._trigger_error, + + // Opening and closing delimiters for code spans. These are sequences of one or more backticks. + // An opening token does not mean the text after has to be a code span if there is no closing token + $._code_span_start, + $._code_span_close, + + // Opening and closing delimiters for emphasis. + $._emphasis_open_star, + $._emphasis_open_underscore, + $._emphasis_close_star, + $._emphasis_close_underscore, + + // For emphasis we need to tell the parser if the last character was a whitespace (or the + // beginning of a line) or a punctuation. These tokens never actually get emitted. + $._last_token_whitespace, + $._last_token_punctuation, + + $._strikethrough_open, + $._strikethrough_close, + ], + precedences: $ => [ + // [$._strong_emphasis_star, $._inline_element_no_star], + [$._strong_emphasis_star_no_link, $._inline_element_no_star_no_link], + // [$._strong_emphasis_underscore, $._inline_element_no_underscore], + [$._strong_emphasis_underscore_no_link, $._inline_element_no_underscore_no_link], + [$.hard_line_break, $._whitespace], + [$.hard_line_break, $._text_base], + ], + // More conflicts are defined in `add_inline_rules` + conflicts: $ => [ + [$.code_span, $._text_base], + + [$._closing_tag, $._text_base], + [$._open_tag, $._text_base], + [$._html_comment, $._text_base], + [$._processing_instruction, $._text_base], + [$._declaration, $._text_base], + [$._cdata_section, $._text_base], + + [$._link_text_non_empty, $._inline_element], + [$._link_text_non_empty, $._inline_element_no_star], + [$._link_text_non_empty, $._inline_element_no_underscore], + [$._link_text_non_empty, $._inline_element_no_tilde], + [$._link_text, $._inline_element], + [$._link_text, $._inline_element_no_star], + [$._link_text, $._inline_element_no_underscore], + [$._link_text, $._inline_element_no_tilde], + + [$._image_description, $._image_description_non_empty, $._text_base], + // [$._image_description, $._image_description_non_empty, $._text_inline], + // [$._image_description, $._image_description_non_empty, $._text_inline_no_star], + // [$._image_description, $._image_description_non_empty, $._text_inline_no_underscore], + + [$._image_shortcut_link, $._image_description], + [$.shortcut_link, $._link_text], + [$.link_destination, $.link_title], + [$._link_destination_parenthesis, $.link_title], + ], + extras: $ => [], + + rules: { + inline: $ => seq(optional($._last_token_whitespace), $._inline), + + ...common.rules, + + + // A lot of inlines are defined in `add_inline_rules`, including: + // + // * collections of inlines + // * code spans + // * emphasis + // * textual content + // + // This is done to reduce code duplication, as some inlines need to be parsed differently + // depending on the context. For example inlines in ATX headings may not contain newlines. + + code_span: $ => prec.dynamic(PRECEDENCE_LEVEL_CODE_SPAN, seq(alias($._code_span_start, $.code_span_delimiter), repeat(choice($._text, $._soft_line_break)), alias($._code_span_close, $.code_span_delimiter))), + + // Different kinds of links: + // * inline links (https://github.github.com/gfm/#inline-link) + // * full reference links (https://github.github.com/gfm/#full-reference-link) + // * collapsed reference links (https://github.github.com/gfm/#collapsed-reference-link) + // * shortcut links (https://github.github.com/gfm/#shortcut-reference-link) + // + // Dynamic precedence is distributed as granular as possible to help the parser decide + // while parsing which branch is the most important. + // + // https://github.github.com/gfm/#links + _link_text: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, choice( + $._link_text_non_empty, + seq('[', ']') + )), + _link_text_non_empty: $ => seq('[', alias($._inline_no_link, $.link_text), ']'), + shortcut_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, $._link_text_non_empty), + full_reference_link: $ => prec.dynamic(2 * PRECEDENCE_LEVEL_LINK, seq( + $._link_text, + $.link_label + )), + collapsed_reference_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq( + $._link_text, + '[', + ']' + )), + inline_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq( + $._link_text, + '(', + repeat(choice($._whitespace, $._soft_line_break)), + optional(seq( + choice( + seq( + $.link_destination, + optional(seq( + repeat1(choice($._whitespace, $._soft_line_break)), + $.link_title + )) + ), + $.link_title, + ), + repeat(choice($._whitespace, $._soft_line_break)), + )), + ')' + )), + + // Images work exactly like links with a '!' added in front. + // + // https://github.github.com/gfm/#images + image: $ => choice( + $._image_inline_link, + $._image_shortcut_link, + $._image_full_reference_link, + $._image_collapsed_reference_link + ), + _image_inline_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq( + $._image_description, + '(', + repeat(choice($._whitespace, $._soft_line_break)), + optional(seq( + choice( + seq( + $.link_destination, + optional(seq( + repeat1(choice($._whitespace, $._soft_line_break)), + $.link_title + )) + ), + $.link_title, + ), + repeat(choice($._whitespace, $._soft_line_break)), + )), + ')' + )), + _image_shortcut_link: $ => prec.dynamic(3 * PRECEDENCE_LEVEL_LINK, $._image_description_non_empty), + _image_full_reference_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq($._image_description, $.link_label)), + _image_collapsed_reference_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq($._image_description, '[', ']')), + _image_description: $ => prec.dynamic(3 * PRECEDENCE_LEVEL_LINK, choice($._image_description_non_empty, seq('!', '[', prec(1, ']')))), + _image_description_non_empty: $ => seq('!', '[', alias($._inline, $.image_description), prec(1, ']')), + + // Autolinks. Uri autolinks actually accept protocolls of arbitrary length which does not + // align with the spec. This is because the binary for the grammar gets to large if done + // otherwise as tree-sitters code generation is not very concise for this type of regex. + // + // Email autolinks do not match every valid email (emails normally should not be parsed + // using regexes), but this is how they are defined in the spec. + // + // https://github.github.com/gfm/#autolinks + uri_autolink: $ => /<[a-zA-Z][a-zA-Z0-9+\.\-][a-zA-Z0-9+\.\-]*:[^ \t\r\n<>]*>/, + email_autolink: $ => + /<[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*>/, + + // Raw html. As with html blocks we do not emit additional information as this is best done + // by a proper html tree-sitter grammar. + // + // https://github.github.com/gfm/#raw-html + html_tag: $ => choice($._open_tag, $._closing_tag, $._html_comment, $._processing_instruction, $._declaration, $._cdata_section), + _open_tag: $ => prec.dynamic(PRECEDENCE_LEVEL_HTML, seq('<', $._tag_name, repeat($._attribute), repeat(choice($._whitespace, $._soft_line_break)), optional('/'), '>')), + _closing_tag: $ => prec.dynamic(PRECEDENCE_LEVEL_HTML, seq('<', '/', $._tag_name, repeat(choice($._whitespace, $._soft_line_break)), '>')), + _tag_name: $ => seq($._word_no_digit, repeat(choice($._word_no_digit, $._digits, '-'))), + _attribute: $ => seq(repeat1(choice($._whitespace, $._soft_line_break)), $._attribute_name, repeat(choice($._whitespace, $._soft_line_break)), '=', repeat(choice($._whitespace, $._soft_line_break)), $._attribute_value), + _attribute_name: $ => /[a-zA-Z_:][a-zA-Z0-9_\.:\-]*/, + _attribute_value: $ => choice( + /[^ \t\r\n"'=<>`]+/, + seq("'", repeat(choice($._word, $._whitespace, $._soft_line_break, common.punctuation_without($, ["'"]))), "'"), + seq('"', repeat(choice($._word, $._whitespace, $._soft_line_break, common.punctuation_without($, ['"']))), '"'), + ), + _html_comment: $ => prec.dynamic(PRECEDENCE_LEVEL_HTML, seq( + '' + )), + _processing_instruction: $ => prec.dynamic(PRECEDENCE_LEVEL_HTML, seq( + '' + )), + _declaration: $ => prec.dynamic(PRECEDENCE_LEVEL_HTML, seq( + /']), + ))), + '>' + )), + _cdata_section: $ => prec.dynamic(PRECEDENCE_LEVEL_HTML, seq( + '' + )), + + // A hard line break. + // + // https://github.github.com/gfm/#hard-line-breaks + hard_line_break: $ => seq(choice('\\', $._whitespace_ge_2), $._soft_line_break), + _text: $ => choice($._word, common.punctuation_without($, []), $._whitespace), + + // Whitespace is divided into single whitespaces and multiple whitespaces as wee need this + // information for hard line breaks. + _whitespace_ge_2: $ => /\t| [ \t]+/, + _whitespace: $ => seq(choice($._whitespace_ge_2, / /), optional($._last_token_whitespace)), + + // Other than whitespace we tokenize into strings of digits, punctuation characters + // (handled by `common.punctuation_without`) and strings of any other characters. This way the + // lexer does not have to many different states, which makes it a lot easier to make + // conflicts work. + _word: $ => choice($._word_no_digit, $._digits), + _word_no_digit: $ => new RegExp('[^' + PUNCTUATION_CHARACTERS_REGEX + ' \\t\\n\\r0-9]+'), + _digits: $ => /[0-9]+/, + _soft_line_break: $ => seq($._newline_token, optional($._last_token_whitespace)), + + _inline_base: $ => prec.right(repeat1(choice( + $.image, + $._soft_line_break, + $.backslash_escape, + $.hard_line_break, + $.uri_autolink, + $.email_autolink, + $.entity_reference, + $.numeric_character_reference, + $.code_span, + $.html_tag, + $._text_base, + ))), + _text_base: $ => choice( + $._word, + common.punctuation_without($, ['[', ']']), + $._whitespace, + $._code_span_start, + '" + } + ] + } + }, + "_processing_instruction": { + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SEQ", + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + }, + { + "type": "STRING", + "value": "?>" + } + ] + } + }, + "_declaration": { + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "" + } + ] + } + }, + "_cdata_section": { + "type": "PREC_DYNAMIC", + "value": 100, + "content": { + "type": "SEQ", + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + }, + { + "type": "STRING", + "value": "]]>" + } + ] + } + }, + "hard_line_break": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "SYMBOL", + "name": "_whitespace_ge_2" + } + ] + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + } + ] + }, + "_text": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": "<" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_whitespace" + } + ] + }, + "_whitespace_ge_2": { + "type": "PATTERN", + "value": "\\t| [ \\t]+" + }, + "_whitespace": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace_ge_2" + }, + { + "type": "PATTERN", + "value": " " + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_whitespace" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_word": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word_no_digit" + }, + { + "type": "SYMBOL", + "name": "_digits" + } + ] + }, + "_word_no_digit": { + "type": "PATTERN", + "value": "[^!-/:-@\\[-`\\{-~ \\t\\n\\r0-9]+" + }, + "_digits": { + "type": "PATTERN", + "value": "[0-9]+" + }, + "_soft_line_break": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_newline_token" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_whitespace" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_inline_base": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "image" + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "hard_line_break" + }, + { + "type": "SYMBOL", + "name": "uri_autolink" + }, + { + "type": "SYMBOL", + "name": "email_autolink" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + }, + { + "type": "SYMBOL", + "name": "code_span" + }, + { + "type": "SYMBOL", + "name": "html_tag" + }, + { + "type": "SYMBOL", + "name": "_text_base" + } + ] + } + } + }, + "_text_base": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": "<" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "_code_span_start" + }, + { + "type": "STRING", + "value": "", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "", + [anon_sym_LT_QMARK] = "<\?", + [anon_sym_QMARK_GT] = "\?>", + [aux_sym__declaration_token1] = "_declaration_token1", + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = "", + [sym__whitespace_ge_2] = "_whitespace_ge_2", + [aux_sym__whitespace_token1] = "_whitespace_token1", + [sym__word_no_digit] = "_word_no_digit", + [sym__digits] = "_digits", + [sym__error] = "_error", + [sym__trigger_error] = "_trigger_error", + [sym__code_span_start] = "_code_span_start", + [sym__code_span_close] = "code_span_delimiter", + [sym__emphasis_open_star] = "_emphasis_open_star", + [sym__emphasis_open_underscore] = "_emphasis_open_underscore", + [sym__emphasis_close_star] = "emphasis_delimiter", + [sym__emphasis_close_underscore] = "emphasis_delimiter", + [sym__last_token_whitespace] = "_last_token_whitespace", + [sym__last_token_punctuation] = "_last_token_punctuation", + [sym__strikethrough_open] = "_strikethrough_open", + [sym__strikethrough_close] = "emphasis_delimiter", + [sym_inline] = "inline", + [sym_backslash_escape] = "backslash_escape", + [sym_link_label] = "link_label", + [sym_link_destination] = "link_destination", + [sym__link_destination_parenthesis] = "_link_destination_parenthesis", + [sym__text_no_angle] = "_text_no_angle", + [sym_link_title] = "link_title", + [sym_code_span] = "code_span", + [sym__link_text] = "_link_text", + [sym__link_text_non_empty] = "_link_text_non_empty", + [sym_shortcut_link] = "shortcut_link", + [sym_full_reference_link] = "full_reference_link", + [sym_collapsed_reference_link] = "collapsed_reference_link", + [sym_inline_link] = "inline_link", + [sym_image] = "image", + [sym__image_inline_link] = "_image_inline_link", + [sym__image_shortcut_link] = "_image_shortcut_link", + [sym__image_full_reference_link] = "_image_full_reference_link", + [sym__image_collapsed_reference_link] = "_image_collapsed_reference_link", + [sym__image_description] = "_image_description", + [sym__image_description_non_empty] = "_image_description_non_empty", + [sym_html_tag] = "html_tag", + [sym__open_tag] = "_open_tag", + [sym__closing_tag] = "_closing_tag", + [sym__tag_name] = "_tag_name", + [sym__attribute] = "_attribute", + [sym__attribute_value] = "_attribute_value", + [sym__html_comment] = "_html_comment", + [sym__processing_instruction] = "_processing_instruction", + [sym__declaration] = "_declaration", + [sym__cdata_section] = "_cdata_section", + [sym_hard_line_break] = "hard_line_break", + [sym__text] = "_text", + [sym__whitespace] = "_whitespace", + [sym__word] = "_word", + [sym__soft_line_break] = "_soft_line_break", + [sym__inline_base] = "_inline_base", + [sym__text_base] = "_text_base", + [sym__text_inline_no_link] = "_text_inline_no_link", + [sym__inline_element] = "_inline_element", + [aux_sym__inline] = "_inline", + [sym__inline_element_no_star] = "_inline_element_no_star", + [aux_sym__inline_no_star] = "_inline_no_star", + [sym__inline_element_no_underscore] = "_inline_element_no_underscore", + [aux_sym__inline_no_underscore] = "_inline_no_underscore", + [sym__inline_element_no_tilde] = "_inline_element_no_tilde", + [aux_sym__inline_no_tilde] = "_inline_no_tilde", + [sym__strikethrough] = "strikethrough", + [sym__emphasis_star] = "_emphasis_star", + [sym__strong_emphasis_star] = "strong_emphasis", + [sym__emphasis_underscore] = "_emphasis_underscore", + [sym__strong_emphasis_underscore] = "strong_emphasis", + [sym__inline_element_no_link] = "_inline_element_no_link", + [aux_sym__inline_no_link] = "_inline_no_link", + [sym__inline_element_no_star_no_link] = "_inline_element_no_star_no_link", + [aux_sym__inline_no_star_no_link] = "_inline_no_star_no_link", + [sym__inline_element_no_underscore_no_link] = "_inline_element_no_underscore_no_link", + [aux_sym__inline_no_underscore_no_link] = "_inline_no_underscore_no_link", + [sym__inline_element_no_tilde_no_link] = "_inline_element_no_tilde_no_link", + [aux_sym__inline_no_tilde_no_link] = "_inline_no_tilde_no_link", + [sym__strikethrough_no_link] = "strikethrough", + [sym__emphasis_star_no_link] = "_emphasis_star_no_link", + [sym__strong_emphasis_star_no_link] = "strong_emphasis", + [sym__emphasis_underscore_no_link] = "_emphasis_underscore_no_link", + [sym__strong_emphasis_underscore_no_link] = "strong_emphasis", + [aux_sym_link_label_repeat1] = "link_label_repeat1", + [aux_sym_link_destination_repeat1] = "link_destination_repeat1", + [aux_sym_link_destination_repeat2] = "link_destination_repeat2", + [aux_sym_link_title_repeat1] = "link_title_repeat1", + [aux_sym_link_title_repeat2] = "link_title_repeat2", + [aux_sym_link_title_repeat3] = "link_title_repeat3", + [aux_sym_code_span_repeat1] = "code_span_repeat1", + [aux_sym_inline_link_repeat1] = "inline_link_repeat1", + [aux_sym__open_tag_repeat1] = "_open_tag_repeat1", + [aux_sym__tag_name_repeat1] = "_tag_name_repeat1", + [aux_sym__attribute_value_repeat1] = "_attribute_value_repeat1", + [aux_sym__attribute_value_repeat2] = "_attribute_value_repeat2", + [aux_sym__html_comment_repeat1] = "_html_comment_repeat1", + [aux_sym__processing_instruction_repeat1] = "_processing_instruction_repeat1", + [aux_sym__declaration_repeat1] = "_declaration_repeat1", + [aux_sym__inline_base_repeat1] = "_inline_base_repeat1", + [alias_sym_emphasis] = "emphasis", + [alias_sym_image_description] = "image_description", + [alias_sym_link_text] = "link_text", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym__backslash_escape] = sym__backslash_escape, + [sym_entity_reference] = sym_entity_reference, + [sym_numeric_character_reference] = sym_numeric_character_reference, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_POUND] = anon_sym_POUND, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_BSLASH] = anon_sym_BSLASH, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym__] = anon_sym__, + [anon_sym_BQUOTE] = anon_sym_BQUOTE, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [sym__newline_token] = sym__newline_token, + [sym_uri_autolink] = sym_uri_autolink, + [sym_email_autolink] = sym_email_autolink, + [sym__attribute_name] = sym__attribute_name, + [aux_sym__attribute_value_token1] = aux_sym__attribute_value_token1, + [anon_sym_LT_BANG_DASH_DASH] = anon_sym_LT_BANG_DASH_DASH, + [anon_sym_DASH_DASH_GT] = anon_sym_DASH_DASH_GT, + [anon_sym_LT_QMARK] = anon_sym_LT_QMARK, + [anon_sym_QMARK_GT] = anon_sym_QMARK_GT, + [aux_sym__declaration_token1] = aux_sym__declaration_token1, + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [anon_sym_RBRACK_RBRACK_GT] = anon_sym_RBRACK_RBRACK_GT, + [sym__whitespace_ge_2] = sym__whitespace_ge_2, + [aux_sym__whitespace_token1] = aux_sym__whitespace_token1, + [sym__word_no_digit] = sym__word_no_digit, + [sym__digits] = sym__digits, + [sym__error] = sym__error, + [sym__trigger_error] = sym__trigger_error, + [sym__code_span_start] = sym__code_span_start, + [sym__code_span_close] = sym__code_span_close, + [sym__emphasis_open_star] = sym__emphasis_open_star, + [sym__emphasis_open_underscore] = sym__emphasis_open_underscore, + [sym__emphasis_close_star] = sym__emphasis_close_star, + [sym__emphasis_close_underscore] = sym__emphasis_close_star, + [sym__last_token_whitespace] = sym__last_token_whitespace, + [sym__last_token_punctuation] = sym__last_token_punctuation, + [sym__strikethrough_open] = sym__strikethrough_open, + [sym__strikethrough_close] = sym__emphasis_close_star, + [sym_inline] = sym_inline, + [sym_backslash_escape] = sym_backslash_escape, + [sym_link_label] = sym_link_label, + [sym_link_destination] = sym_link_destination, + [sym__link_destination_parenthesis] = sym__link_destination_parenthesis, + [sym__text_no_angle] = sym__text_no_angle, + [sym_link_title] = sym_link_title, + [sym_code_span] = sym_code_span, + [sym__link_text] = sym__link_text, + [sym__link_text_non_empty] = sym__link_text_non_empty, + [sym_shortcut_link] = sym_shortcut_link, + [sym_full_reference_link] = sym_full_reference_link, + [sym_collapsed_reference_link] = sym_collapsed_reference_link, + [sym_inline_link] = sym_inline_link, + [sym_image] = sym_image, + [sym__image_inline_link] = sym__image_inline_link, + [sym__image_shortcut_link] = sym__image_shortcut_link, + [sym__image_full_reference_link] = sym__image_full_reference_link, + [sym__image_collapsed_reference_link] = sym__image_collapsed_reference_link, + [sym__image_description] = sym__image_description, + [sym__image_description_non_empty] = sym__image_description_non_empty, + [sym_html_tag] = sym_html_tag, + [sym__open_tag] = sym__open_tag, + [sym__closing_tag] = sym__closing_tag, + [sym__tag_name] = sym__tag_name, + [sym__attribute] = sym__attribute, + [sym__attribute_value] = sym__attribute_value, + [sym__html_comment] = sym__html_comment, + [sym__processing_instruction] = sym__processing_instruction, + [sym__declaration] = sym__declaration, + [sym__cdata_section] = sym__cdata_section, + [sym_hard_line_break] = sym_hard_line_break, + [sym__text] = sym__text, + [sym__whitespace] = sym__whitespace, + [sym__word] = sym__word, + [sym__soft_line_break] = sym__soft_line_break, + [sym__inline_base] = sym__inline_base, + [sym__text_base] = sym__text_base, + [sym__text_inline_no_link] = sym__text_inline_no_link, + [sym__inline_element] = sym__inline_element, + [aux_sym__inline] = aux_sym__inline, + [sym__inline_element_no_star] = sym__inline_element_no_star, + [aux_sym__inline_no_star] = aux_sym__inline_no_star, + [sym__inline_element_no_underscore] = sym__inline_element_no_underscore, + [aux_sym__inline_no_underscore] = aux_sym__inline_no_underscore, + [sym__inline_element_no_tilde] = sym__inline_element_no_tilde, + [aux_sym__inline_no_tilde] = aux_sym__inline_no_tilde, + [sym__strikethrough] = sym__strikethrough, + [sym__emphasis_star] = sym__emphasis_star, + [sym__strong_emphasis_star] = sym__strong_emphasis_star, + [sym__emphasis_underscore] = sym__emphasis_underscore, + [sym__strong_emphasis_underscore] = sym__strong_emphasis_star, + [sym__inline_element_no_link] = sym__inline_element_no_link, + [aux_sym__inline_no_link] = aux_sym__inline_no_link, + [sym__inline_element_no_star_no_link] = sym__inline_element_no_star_no_link, + [aux_sym__inline_no_star_no_link] = aux_sym__inline_no_star_no_link, + [sym__inline_element_no_underscore_no_link] = sym__inline_element_no_underscore_no_link, + [aux_sym__inline_no_underscore_no_link] = aux_sym__inline_no_underscore_no_link, + [sym__inline_element_no_tilde_no_link] = sym__inline_element_no_tilde_no_link, + [aux_sym__inline_no_tilde_no_link] = aux_sym__inline_no_tilde_no_link, + [sym__strikethrough_no_link] = sym__strikethrough, + [sym__emphasis_star_no_link] = sym__emphasis_star_no_link, + [sym__strong_emphasis_star_no_link] = sym__strong_emphasis_star, + [sym__emphasis_underscore_no_link] = sym__emphasis_underscore_no_link, + [sym__strong_emphasis_underscore_no_link] = sym__strong_emphasis_star, + [aux_sym_link_label_repeat1] = aux_sym_link_label_repeat1, + [aux_sym_link_destination_repeat1] = aux_sym_link_destination_repeat1, + [aux_sym_link_destination_repeat2] = aux_sym_link_destination_repeat2, + [aux_sym_link_title_repeat1] = aux_sym_link_title_repeat1, + [aux_sym_link_title_repeat2] = aux_sym_link_title_repeat2, + [aux_sym_link_title_repeat3] = aux_sym_link_title_repeat3, + [aux_sym_code_span_repeat1] = aux_sym_code_span_repeat1, + [aux_sym_inline_link_repeat1] = aux_sym_inline_link_repeat1, + [aux_sym__open_tag_repeat1] = aux_sym__open_tag_repeat1, + [aux_sym__tag_name_repeat1] = aux_sym__tag_name_repeat1, + [aux_sym__attribute_value_repeat1] = aux_sym__attribute_value_repeat1, + [aux_sym__attribute_value_repeat2] = aux_sym__attribute_value_repeat2, + [aux_sym__html_comment_repeat1] = aux_sym__html_comment_repeat1, + [aux_sym__processing_instruction_repeat1] = aux_sym__processing_instruction_repeat1, + [aux_sym__declaration_repeat1] = aux_sym__declaration_repeat1, + [aux_sym__inline_base_repeat1] = aux_sym__inline_base_repeat1, + [alias_sym_emphasis] = alias_sym_emphasis, + [alias_sym_image_description] = alias_sym_image_description, + [alias_sym_link_text] = alias_sym_link_text, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym__backslash_escape] = { + .visible = false, + .named = true, + }, + [sym_entity_reference] = { + .visible = true, + .named = true, + }, + [sym_numeric_character_reference] = { + .visible = true, + .named = true, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym__] = { + .visible = true, + .named = false, + }, + [anon_sym_BQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [sym__newline_token] = { + .visible = false, + .named = true, + }, + [sym_uri_autolink] = { + .visible = true, + .named = true, + }, + [sym_email_autolink] = { + .visible = true, + .named = true, + }, + [sym__attribute_name] = { + .visible = false, + .named = true, + }, + [aux_sym__attribute_value_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_LT_BANG_DASH_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_GT] = { + .visible = true, + .named = false, + }, + [aux_sym__declaration_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK_RBRACK_GT] = { + .visible = true, + .named = false, + }, + [sym__whitespace_ge_2] = { + .visible = false, + .named = true, + }, + [aux_sym__whitespace_token1] = { + .visible = false, + .named = false, + }, + [sym__word_no_digit] = { + .visible = false, + .named = true, + }, + [sym__digits] = { + .visible = false, + .named = true, + }, + [sym__error] = { + .visible = false, + .named = true, + }, + [sym__trigger_error] = { + .visible = false, + .named = true, + }, + [sym__code_span_start] = { + .visible = false, + .named = true, + }, + [sym__code_span_close] = { + .visible = true, + .named = true, + }, + [sym__emphasis_open_star] = { + .visible = false, + .named = true, + }, + [sym__emphasis_open_underscore] = { + .visible = false, + .named = true, + }, + [sym__emphasis_close_star] = { + .visible = true, + .named = true, + }, + [sym__emphasis_close_underscore] = { + .visible = true, + .named = true, + }, + [sym__last_token_whitespace] = { + .visible = false, + .named = true, + }, + [sym__last_token_punctuation] = { + .visible = false, + .named = true, + }, + [sym__strikethrough_open] = { + .visible = false, + .named = true, + }, + [sym__strikethrough_close] = { + .visible = true, + .named = true, + }, + [sym_inline] = { + .visible = true, + .named = true, + }, + [sym_backslash_escape] = { + .visible = true, + .named = true, + }, + [sym_link_label] = { + .visible = true, + .named = true, + }, + [sym_link_destination] = { + .visible = true, + .named = true, + }, + [sym__link_destination_parenthesis] = { + .visible = false, + .named = true, + }, + [sym__text_no_angle] = { + .visible = false, + .named = true, + }, + [sym_link_title] = { + .visible = true, + .named = true, + }, + [sym_code_span] = { + .visible = true, + .named = true, + }, + [sym__link_text] = { + .visible = false, + .named = true, + }, + [sym__link_text_non_empty] = { + .visible = false, + .named = true, + }, + [sym_shortcut_link] = { + .visible = true, + .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_image] = { + .visible = true, + .named = true, + }, + [sym__image_inline_link] = { + .visible = false, + .named = true, + }, + [sym__image_shortcut_link] = { + .visible = false, + .named = true, + }, + [sym__image_full_reference_link] = { + .visible = false, + .named = true, + }, + [sym__image_collapsed_reference_link] = { + .visible = false, + .named = true, + }, + [sym__image_description] = { + .visible = false, + .named = true, + }, + [sym__image_description_non_empty] = { + .visible = false, + .named = true, + }, + [sym_html_tag] = { + .visible = true, + .named = true, + }, + [sym__open_tag] = { + .visible = false, + .named = true, + }, + [sym__closing_tag] = { + .visible = false, + .named = true, + }, + [sym__tag_name] = { + .visible = false, + .named = true, + }, + [sym__attribute] = { + .visible = false, + .named = true, + }, + [sym__attribute_value] = { + .visible = false, + .named = true, + }, + [sym__html_comment] = { + .visible = false, + .named = true, + }, + [sym__processing_instruction] = { + .visible = false, + .named = true, + }, + [sym__declaration] = { + .visible = false, + .named = true, + }, + [sym__cdata_section] = { + .visible = false, + .named = true, + }, + [sym_hard_line_break] = { + .visible = true, + .named = true, + }, + [sym__text] = { + .visible = false, + .named = true, + }, + [sym__whitespace] = { + .visible = false, + .named = true, + }, + [sym__word] = { + .visible = false, + .named = true, + }, + [sym__soft_line_break] = { + .visible = false, + .named = true, + }, + [sym__inline_base] = { + .visible = false, + .named = true, + }, + [sym__text_base] = { + .visible = false, + .named = true, + }, + [sym__text_inline_no_link] = { + .visible = false, + .named = true, + }, + [sym__inline_element] = { + .visible = false, + .named = true, + }, + [aux_sym__inline] = { + .visible = false, + .named = false, + }, + [sym__inline_element_no_star] = { + .visible = false, + .named = true, + }, + [aux_sym__inline_no_star] = { + .visible = false, + .named = false, + }, + [sym__inline_element_no_underscore] = { + .visible = false, + .named = true, + }, + [aux_sym__inline_no_underscore] = { + .visible = false, + .named = false, + }, + [sym__inline_element_no_tilde] = { + .visible = false, + .named = true, + }, + [aux_sym__inline_no_tilde] = { + .visible = false, + .named = false, + }, + [sym__strikethrough] = { + .visible = true, + .named = true, + }, + [sym__emphasis_star] = { + .visible = false, + .named = true, + }, + [sym__strong_emphasis_star] = { + .visible = true, + .named = true, + }, + [sym__emphasis_underscore] = { + .visible = false, + .named = true, + }, + [sym__strong_emphasis_underscore] = { + .visible = true, + .named = true, + }, + [sym__inline_element_no_link] = { + .visible = false, + .named = true, + }, + [aux_sym__inline_no_link] = { + .visible = false, + .named = false, + }, + [sym__inline_element_no_star_no_link] = { + .visible = false, + .named = true, + }, + [aux_sym__inline_no_star_no_link] = { + .visible = false, + .named = false, + }, + [sym__inline_element_no_underscore_no_link] = { + .visible = false, + .named = true, + }, + [aux_sym__inline_no_underscore_no_link] = { + .visible = false, + .named = false, + }, + [sym__inline_element_no_tilde_no_link] = { + .visible = false, + .named = true, + }, + [aux_sym__inline_no_tilde_no_link] = { + .visible = false, + .named = false, + }, + [sym__strikethrough_no_link] = { + .visible = true, + .named = true, + }, + [sym__emphasis_star_no_link] = { + .visible = false, + .named = true, + }, + [sym__strong_emphasis_star_no_link] = { + .visible = true, + .named = true, + }, + [sym__emphasis_underscore_no_link] = { + .visible = false, + .named = true, + }, + [sym__strong_emphasis_underscore_no_link] = { + .visible = true, + .named = true, + }, + [aux_sym_link_label_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_link_destination_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_link_destination_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_link_title_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_link_title_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_link_title_repeat3] = { + .visible = false, + .named = false, + }, + [aux_sym_code_span_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_inline_link_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__open_tag_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__tag_name_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__attribute_value_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__attribute_value_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym__html_comment_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__processing_instruction_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__inline_base_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_emphasis] = { + .visible = true, + .named = true, + }, + [alias_sym_image_description] = { + .visible = true, + .named = true, + }, + [alias_sym_link_text] = { + .visible = true, + .named = true, + }, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = alias_sym_emphasis, + }, + [2] = { + [0] = sym__code_span_close, + }, + [3] = { + [0] = sym__emphasis_close_star, + }, + [4] = { + [1] = alias_sym_link_text, + }, + [5] = { + [2] = alias_sym_image_description, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + aux_sym__inline, 2, + aux_sym__inline, + alias_sym_image_description, + sym__emphasis_star, 2, + sym__emphasis_star, + alias_sym_emphasis, + sym__emphasis_underscore, 2, + sym__emphasis_underscore, + alias_sym_emphasis, + aux_sym__inline_no_link, 2, + aux_sym__inline_no_link, + alias_sym_link_text, + sym__emphasis_star_no_link, 2, + sym__emphasis_star_no_link, + alias_sym_emphasis, + sym__emphasis_underscore_no_link, 2, + sym__emphasis_underscore_no_link, + alias_sym_emphasis, + 0, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(2174); + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2191); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2197); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2182); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2204); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2207); + if (lookahead == ']') ADVANCE(2180); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 1: + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2191); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2183); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2203); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '\\') ADVANCE(2207); + if (lookahead == ']') ADVANCE(2179); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0 && + lookahead != '[') ADVANCE(2236); + END_STATE(); + case 2: + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2191); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2181); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2203); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2207); + if (lookahead == ']') ADVANCE(2179); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 3: + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2190); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2197); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2181); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2203); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2206); + if (lookahead == ']') ADVANCE(2179); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 4: + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2190); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2181); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2204); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2206); + if (lookahead == ']') ADVANCE(2179); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 5: + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2190); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2181); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2203); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2206); + if (lookahead == ']') ADVANCE(2180); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 6: + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2190); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2181); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2203); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2206); + if (lookahead == ']') ADVANCE(2179); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 7: + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead != 0 && + (lookahead < '<' || '>' < lookahead) && + lookahead != '`') ADVANCE(2222); + END_STATE(); + case 8: + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == ':' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2221); + END_STATE(); + case 9: + if (lookahead == '-') ADVANCE(10); + if (lookahead == '@') ADVANCE(2168); + if (lookahead == '[') ADVANCE(420); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2229); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '\'') || + lookahead == '*' || + lookahead == '+' || + ('.' <= lookahead && lookahead <= '9') || + lookahead == '=' || + lookahead == '?' || + ('^' <= lookahead && lookahead <= '~')) ADVANCE(379); + END_STATE(); + case 10: + if (lookahead == '-') ADVANCE(2224); + if (lookahead == '@') ADVANCE(2168); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '\'') || + lookahead == '*' || + lookahead == '+' || + ('.' <= lookahead && lookahead <= '9') || + lookahead == '=' || + ('?' <= lookahead && lookahead <= 'Z') || + ('^' <= lookahead && lookahead <= '~')) ADVANCE(379); + END_STATE(); + case 11: + if (lookahead == '-') ADVANCE(133); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); + END_STATE(); + case 12: + if (lookahead == '-') ADVANCE(13); + if (lookahead == '[') ADVANCE(420); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2230); + END_STATE(); + case 13: + if (lookahead == '-') ADVANCE(2223); + END_STATE(); + case 14: + if (lookahead == '-') ADVANCE(2169); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + END_STATE(); + case 15: + if (lookahead == '-') ADVANCE(2169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); + END_STATE(); + case 16: + if (lookahead == '-') ADVANCE(19); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); + END_STATE(); + case 17: + if (lookahead == '-') ADVANCE(19); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); + END_STATE(); + case 18: + if (lookahead == '-') ADVANCE(15); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(14); + END_STATE(); + case 19: + if (lookahead == '-') ADVANCE(15); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(14); + END_STATE(); + case 20: + if (lookahead == '-') ADVANCE(23); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(22); + END_STATE(); + case 21: + if (lookahead == '-') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(22); + END_STATE(); + case 22: + if (lookahead == '-') ADVANCE(17); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(16); + END_STATE(); + case 23: + if (lookahead == '-') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(16); + END_STATE(); + case 24: + if (lookahead == '-') ADVANCE(27); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(26); + END_STATE(); + case 25: + if (lookahead == '-') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(26); + END_STATE(); + case 26: + if (lookahead == '-') ADVANCE(21); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(20); + END_STATE(); + case 27: + if (lookahead == '-') ADVANCE(21); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(20); + END_STATE(); + case 28: + if (lookahead == '-') ADVANCE(31); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(30); + END_STATE(); + case 29: + if (lookahead == '-') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(30); + END_STATE(); + case 30: + if (lookahead == '-') ADVANCE(25); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); + END_STATE(); + case 31: + if (lookahead == '-') ADVANCE(25); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); + END_STATE(); + case 32: + if (lookahead == '-') ADVANCE(35); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); + END_STATE(); + case 33: + if (lookahead == '-') ADVANCE(35); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); + END_STATE(); + case 34: + if (lookahead == '-') ADVANCE(29); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(28); + END_STATE(); + case 35: + if (lookahead == '-') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(28); + END_STATE(); + case 36: + if (lookahead == '-') ADVANCE(39); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); + END_STATE(); + case 37: + if (lookahead == '-') ADVANCE(39); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); + END_STATE(); + case 38: + if (lookahead == '-') ADVANCE(33); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(32); + END_STATE(); + case 39: + if (lookahead == '-') ADVANCE(33); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(32); + END_STATE(); + case 40: + if (lookahead == '-') ADVANCE(43); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + END_STATE(); + case 41: + if (lookahead == '-') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + END_STATE(); + case 42: + if (lookahead == '-') ADVANCE(37); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(36); + END_STATE(); + case 43: + if (lookahead == '-') ADVANCE(37); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(36); + END_STATE(); + case 44: + if (lookahead == '-') ADVANCE(47); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); + END_STATE(); + case 45: + if (lookahead == '-') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); + END_STATE(); + case 46: + if (lookahead == '-') ADVANCE(41); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(40); + END_STATE(); + case 47: + if (lookahead == '-') ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(40); + END_STATE(); + case 48: + if (lookahead == '-') ADVANCE(51); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + END_STATE(); + case 49: + if (lookahead == '-') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + END_STATE(); + case 50: + if (lookahead == '-') ADVANCE(45); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + END_STATE(); + case 51: + if (lookahead == '-') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + END_STATE(); + case 52: + if (lookahead == '-') ADVANCE(55); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); + END_STATE(); + case 53: + if (lookahead == '-') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); + END_STATE(); + case 54: + if (lookahead == '-') ADVANCE(49); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + END_STATE(); + case 55: + if (lookahead == '-') ADVANCE(49); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + END_STATE(); + case 56: + if (lookahead == '-') ADVANCE(59); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + END_STATE(); + case 57: + if (lookahead == '-') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + END_STATE(); + case 58: + if (lookahead == '-') ADVANCE(53); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); + END_STATE(); + case 59: + if (lookahead == '-') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); + END_STATE(); + case 60: + if (lookahead == '-') ADVANCE(63); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + END_STATE(); + case 61: + if (lookahead == '-') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + END_STATE(); + case 62: + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); + END_STATE(); + case 63: + if (lookahead == '-') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); + END_STATE(); + case 64: + if (lookahead == '-') ADVANCE(67); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + END_STATE(); + case 65: + if (lookahead == '-') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + END_STATE(); + case 66: + if (lookahead == '-') ADVANCE(61); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); + END_STATE(); + case 67: + if (lookahead == '-') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); + END_STATE(); + case 68: + if (lookahead == '-') ADVANCE(71); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); + END_STATE(); + case 69: + if (lookahead == '-') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); + END_STATE(); + case 70: + if (lookahead == '-') ADVANCE(65); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); + END_STATE(); + case 71: + if (lookahead == '-') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); + END_STATE(); + case 72: + if (lookahead == '-') ADVANCE(75); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); + END_STATE(); + case 73: + if (lookahead == '-') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); + END_STATE(); + case 74: + if (lookahead == '-') ADVANCE(69); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); + END_STATE(); + case 75: + if (lookahead == '-') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); + END_STATE(); + case 76: + if (lookahead == '-') ADVANCE(79); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); + END_STATE(); + case 77: + if (lookahead == '-') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); + END_STATE(); + case 78: + if (lookahead == '-') ADVANCE(73); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); + END_STATE(); + case 79: + if (lookahead == '-') ADVANCE(73); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); + END_STATE(); + case 80: + if (lookahead == '-') ADVANCE(83); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); + END_STATE(); + case 81: + if (lookahead == '-') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); + END_STATE(); + case 82: + if (lookahead == '-') ADVANCE(77); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); + END_STATE(); + case 83: + if (lookahead == '-') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); + END_STATE(); + case 84: + if (lookahead == '-') ADVANCE(87); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); + END_STATE(); + case 85: + if (lookahead == '-') ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); + END_STATE(); + case 86: + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); + END_STATE(); + case 87: + if (lookahead == '-') ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); + END_STATE(); + case 88: + if (lookahead == '-') ADVANCE(91); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(90); + END_STATE(); + case 89: + if (lookahead == '-') ADVANCE(91); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(90); + END_STATE(); + case 90: + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + END_STATE(); + case 91: + if (lookahead == '-') ADVANCE(85); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + END_STATE(); + case 92: + if (lookahead == '-') ADVANCE(95); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); + END_STATE(); + case 93: + if (lookahead == '-') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(94); + END_STATE(); + case 94: + if (lookahead == '-') ADVANCE(89); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + END_STATE(); + case 95: + if (lookahead == '-') ADVANCE(89); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + END_STATE(); + case 96: + if (lookahead == '-') ADVANCE(99); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(98); + END_STATE(); + case 97: + if (lookahead == '-') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(98); + END_STATE(); + case 98: + if (lookahead == '-') ADVANCE(93); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); + END_STATE(); + case 99: + if (lookahead == '-') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(92); + END_STATE(); + case 100: + if (lookahead == '-') ADVANCE(103); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(102); + END_STATE(); + case 101: + if (lookahead == '-') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(102); + END_STATE(); + case 102: + if (lookahead == '-') ADVANCE(97); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); + END_STATE(); + case 103: + if (lookahead == '-') ADVANCE(97); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(96); + END_STATE(); + case 104: + if (lookahead == '-') ADVANCE(107); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(106); + END_STATE(); + case 105: + if (lookahead == '-') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(106); + END_STATE(); + case 106: + if (lookahead == '-') ADVANCE(101); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(100); + END_STATE(); + case 107: + if (lookahead == '-') ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(100); + END_STATE(); + case 108: + if (lookahead == '-') ADVANCE(111); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + END_STATE(); + case 109: + if (lookahead == '-') ADVANCE(111); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + END_STATE(); + case 110: + if (lookahead == '-') ADVANCE(105); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(104); + END_STATE(); + case 111: + if (lookahead == '-') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(104); + END_STATE(); + case 112: + if (lookahead == '-') ADVANCE(115); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 113: + if (lookahead == '-') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); + END_STATE(); + case 114: + if (lookahead == '-') ADVANCE(109); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); + END_STATE(); + case 115: + if (lookahead == '-') ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(108); + END_STATE(); + case 116: + if (lookahead == '-') ADVANCE(119); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(118); + END_STATE(); + case 117: + if (lookahead == '-') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(118); + END_STATE(); + case 118: + if (lookahead == '-') ADVANCE(113); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); + END_STATE(); + case 119: + if (lookahead == '-') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); + END_STATE(); + case 120: + if (lookahead == '-') ADVANCE(123); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); + END_STATE(); + case 121: + if (lookahead == '-') ADVANCE(123); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); + END_STATE(); + case 122: + if (lookahead == '-') ADVANCE(117); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(116); + END_STATE(); + case 123: + if (lookahead == '-') ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(116); + END_STATE(); + case 124: + if (lookahead == '-') ADVANCE(127); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(126); + END_STATE(); + case 125: + if (lookahead == '-') ADVANCE(127); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(126); + END_STATE(); + case 126: + if (lookahead == '-') ADVANCE(121); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(120); + END_STATE(); + case 127: + if (lookahead == '-') ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(120); + END_STATE(); + case 128: + if (lookahead == '-') ADVANCE(131); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(130); + END_STATE(); + case 129: + if (lookahead == '-') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(130); + END_STATE(); + case 130: + if (lookahead == '-') ADVANCE(125); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(124); + END_STATE(); + case 131: + if (lookahead == '-') ADVANCE(125); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(124); + END_STATE(); + case 132: + if (lookahead == '-') ADVANCE(129); + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); + END_STATE(); + case 133: + if (lookahead == '-') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); + END_STATE(); + case 134: + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + END_STATE(); + case 135: + if (lookahead == '.') ADVANCE(2168); + if (lookahead == '>') ADVANCE(2220); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); + END_STATE(); + case 136: + if (lookahead == '1') ADVANCE(2143); + if (lookahead == '3') ADVANCE(139); + END_STATE(); + case 137: + if (lookahead == '1') ADVANCE(2158); + if (lookahead == ';') ADVANCE(2176); + END_STATE(); + case 138: + if (lookahead == '1') ADVANCE(2165); + if (lookahead == '2') ADVANCE(2144); + if (lookahead == '3') ADVANCE(2161); + if (lookahead == '4') ADVANCE(141); + if (lookahead == '5') ADVANCE(2145); + if (lookahead == '7') ADVANCE(142); + END_STATE(); + case 139: + if (lookahead == '4') ADVANCE(144); + END_STATE(); + case 140: + if (lookahead == '4') ADVANCE(144); + if (lookahead == 'f') ADVANCE(1655); + END_STATE(); + case 141: + if (lookahead == '5') ADVANCE(144); + END_STATE(); + case 142: + if (lookahead == '8') ADVANCE(144); + END_STATE(); + case 143: + if (lookahead == ':') ADVANCE(377); + if (lookahead == '@') ADVANCE(2168); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '\'') || + lookahead == '*' || + lookahead == '/' || + lookahead == '=' || + lookahead == '?' || + ('^' <= lookahead && lookahead <= '`') || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(379); + if (lookahead == '+' || + ('-' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(143); + END_STATE(); + case 144: + if (lookahead == ';') ADVANCE(2176); + END_STATE(); + case 145: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'A') ADVANCE(581); + if (lookahead == 'B') ADVANCE(571); + if (lookahead == 'E') ADVANCE(267); + if (lookahead == 'H') ADVANCE(534); + if (lookahead == 'a') ADVANCE(806); + if (lookahead == 'b') ADVANCE(572); + if (lookahead == 'c') ADVANCE(598); + if (lookahead == 'd') ADVANCE(790); + if (lookahead == 'e') ADVANCE(264); + if (lookahead == 'f') ADVANCE(1248); + if (lookahead == 'g') ADVANCE(159); + if (lookahead == 'h') ADVANCE(616); + if (lookahead == 'j') ADVANCE(741); + if (lookahead == 'l') ADVANCE(193); + if (lookahead == 'm') ADVANCE(1231); + if (lookahead == 'n') ADVANCE(453); + if (lookahead == 'o') ADVANCE(542); + if (lookahead == 'p') ADVANCE(620); + if (lookahead == 'r') ADVANCE(575); + if (lookahead == 's') ADVANCE(522); + if (lookahead == 't') ADVANCE(219); + if (lookahead == 'u') ADVANCE(1765); + if (lookahead == 'v') ADVANCE(1058); + END_STATE(); + case 146: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'a') ADVANCE(1749); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'q') ADVANCE(2066); + if (lookahead == 's') ADVANCE(963); + if (lookahead == 'x') ADVANCE(1290); + END_STATE(); + case 147: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'A') ADVANCE(1868); + END_STATE(); + case 148: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'A') ADVANCE(1868); + if (lookahead == 'V') ADVANCE(1059); + END_STATE(); + case 149: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'B') ADVANCE(534); + END_STATE(); + case 150: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'B') ADVANCE(534); + if (lookahead == 'D') ADVANCE(1639); + END_STATE(); + case 151: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'B') ADVANCE(534); + if (lookahead == 'E') ADVANCE(1727); + END_STATE(); + case 152: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'B') ADVANCE(534); + if (lookahead == 'L') ADVANCE(1061); + END_STATE(); + case 153: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'B') ADVANCE(534); + if (lookahead == 'R') ADVANCE(1312); + END_STATE(); + case 154: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'B') ADVANCE(534); + if (lookahead == 'U') ADVANCE(1683); + END_STATE(); + case 155: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'C') ADVANCE(1650); + if (lookahead == 'D') ADVANCE(1624); + if (lookahead == 'E') ADVANCE(1359); + if (lookahead == 'G') ADVANCE(1884); + if (lookahead == 'H') ADVANCE(2077); + if (lookahead == 'L') ADVANCE(1033); + if (lookahead == 'N') ADVANCE(1000); + if (lookahead == 'P') ADVANCE(1845); + if (lookahead == 'R') ADVANCE(1034); + if (lookahead == 'S') ADVANCE(1728); + if (lookahead == 'T') ADVANCE(1237); + if (lookahead == 'V') ADVANCE(1073); + END_STATE(); + case 156: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'C') ADVANCE(560); + END_STATE(); + case 157: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'D') ADVANCE(1585); + if (lookahead == 'E') ADVANCE(1727); + END_STATE(); + case 158: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'D') ADVANCE(434); + END_STATE(); + case 159: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(144); + END_STATE(); + case 160: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'a') ADVANCE(1664); + if (lookahead == 'c') ADVANCE(2055); + if (lookahead == 'e') ADVANCE(218); + if (lookahead == 'i') ADVANCE(1486); + if (lookahead == 'n') ADVANCE(452); + if (lookahead == 'o') ADVANCE(869); + if (lookahead == 's') ADVANCE(1242); + if (lookahead == 'u') ADVANCE(1796); + END_STATE(); + case 161: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(229); + if (lookahead == 'm') ADVANCE(2062); + if (lookahead == 'n') ADVANCE(2146); + if (lookahead == 'p') ADVANCE(1435); + if (lookahead == 'r') ADVANCE(571); + if (lookahead == 's') ADVANCE(1013); + END_STATE(); + case 162: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'v') ADVANCE(2162); + END_STATE(); + case 163: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'e') ADVANCE(309); + END_STATE(); + case 164: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'i') ADVANCE(868); + if (lookahead == 'o') ADVANCE(1890); + if (lookahead == 'p') ADVANCE(1816); + END_STATE(); + case 165: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(283); + if (lookahead == 'a') ADVANCE(808); + if (lookahead == 'b') ADVANCE(1736); + if (lookahead == 'c') ADVANCE(1278); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(284); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(267); + if (lookahead == 'i') ADVANCE(1471); + if (lookahead == 'j') ADVANCE(741); + if (lookahead == 'l') ADVANCE(359); + if (lookahead == 'n') ADVANCE(453); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'r') ADVANCE(525); + if (lookahead == 's') ADVANCE(776); + if (lookahead == 't') ADVANCE(220); + if (lookahead == 'v') ADVANCE(1058); + END_STATE(); + case 166: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(1727); + END_STATE(); + case 167: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(1727); + if (lookahead == 'F') ADVANCE(2084); + if (lookahead == 'G') ADVANCE(1877); + if (lookahead == 'L') ADVANCE(959); + if (lookahead == 'S') ADVANCE(1445); + if (lookahead == 'T') ADVANCE(1305); + END_STATE(); + case 168: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(1727); + if (lookahead == 'F') ADVANCE(2084); + if (lookahead == 'T') ADVANCE(1305); + END_STATE(); + case 169: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(1727); + if (lookahead == 'G') ADVANCE(1877); + if (lookahead == 'L') ADVANCE(959); + if (lookahead == 'S') ADVANCE(1445); + if (lookahead == 'T') ADVANCE(1305); + END_STATE(); + case 170: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(1727); + if (lookahead == 'S') ADVANCE(1445); + END_STATE(); + case 171: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E') ADVANCE(1727); + if (lookahead == 'S') ADVANCE(1445); + if (lookahead == 'T') ADVANCE(1305); + END_STATE(); + case 172: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'G') ADVANCE(144); + END_STATE(); + case 173: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'H') ADVANCE(144); + END_STATE(); + case 174: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'I') ADVANCE(1567); + if (lookahead == 'S') ADVANCE(2048); + if (lookahead == 'U') ADVANCE(1548); + END_STATE(); + case 175: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'J') ADVANCE(741); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(144); + if (lookahead == 'a') ADVANCE(807); + if (lookahead == 'c') ADVANCE(600); + if (lookahead == 'e') ADVANCE(1090); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'l') ADVANCE(244); + if (lookahead == 'm') ADVANCE(1230); + if (lookahead == 'o') ADVANCE(1515); + if (lookahead == 's') ADVANCE(773); + END_STATE(); + case 176: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'J') ADVANCE(741); + if (lookahead == 'T' || + lookahead == 'g' || + lookahead == 't') ADVANCE(144); + if (lookahead == 'a') ADVANCE(1487); + if (lookahead == 'b') ADVANCE(1736); + if (lookahead == 'c') ADVANCE(967); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'r') ADVANCE(985); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 177: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'L') ADVANCE(959); + END_STATE(); + case 178: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'N') ADVANCE(144); + END_STATE(); + case 179: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'P') ADVANCE(144); + END_STATE(); + case 180: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'P') ADVANCE(1435); + END_STATE(); + case 181: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'T') ADVANCE(144); + END_STATE(); + case 182: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'T') ADVANCE(1305); + END_STATE(); + case 183: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'Y') ADVANCE(144); + END_STATE(); + case 184: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(771); + if (lookahead == 'p') ADVANCE(1401); + END_STATE(); + case 185: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1122); + if (lookahead == 'o') ADVANCE(2000); + END_STATE(); + case 186: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(2166); + END_STATE(); + case 187: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(765); + if (lookahead == 'l') ADVANCE(144); + END_STATE(); + case 188: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1737); + END_STATE(); + case 189: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(779); + if (lookahead == 'p') ADVANCE(144); + END_STATE(); + case 190: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(289); + if (lookahead == 's') ADVANCE(1243); + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 191: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1664); + if (lookahead == 'b') ADVANCE(263); + if (lookahead == 'c' || + lookahead == 'w') ADVANCE(144); + if (lookahead == 'f') ADVANCE(1890); + if (lookahead == 'h') ADVANCE(1326); + if (lookahead == 'l') ADVANCE(1664); + if (lookahead == 'p') ADVANCE(1345); + if (lookahead == 's') ADVANCE(1242); + if (lookahead == 't') ADVANCE(1345); + END_STATE(); + case 192: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(837); + if (lookahead == 'b' || + lookahead == 'e') ADVANCE(144); + if (lookahead == 'c') ADVANCE(1220); + if (lookahead == 'd') ADVANCE(2156); + if (lookahead == 'm') ADVANCE(293); + if (lookahead == 's') ADVANCE(1242); + if (lookahead == 't') ADVANCE(2108); + END_STATE(); + case 193: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'c') ADVANCE(1636); + if (lookahead == 'h') ADVANCE(635); + if (lookahead == 't') ADVANCE(1772); + END_STATE(); + case 194: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'd') ADVANCE(259); + if (lookahead == 'i') ADVANCE(1124); + if (lookahead == 'o') ADVANCE(1737); + if (lookahead == 's') ADVANCE(1400); + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 195: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1890); + END_STATE(); + case 196: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1901); + if (lookahead == 'c') ADVANCE(1220); + if (lookahead == 'd') ADVANCE(1592); + END_STATE(); + case 197: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1345); + END_STATE(); + case 198: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1790); + if (lookahead == 'e') ADVANCE(908); + if (lookahead == 'i') ADVANCE(1804); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 199: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1350); + if (lookahead == 'c') ADVANCE(1945); + if (lookahead == 'g') ADVANCE(144); + END_STATE(); + case 200: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1490); + if (lookahead == 'b') ADVANCE(1859); + if (lookahead == 'c') ADVANCE(564); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 's') ADVANCE(144); + END_STATE(); + case 201: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1490); + if (lookahead == 'd' || + lookahead == 'v') ADVANCE(144); + if (lookahead == 's') ADVANCE(1400); + END_STATE(); + case 202: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(830); + END_STATE(); + case 203: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1785); + if (lookahead == 'c') ADVANCE(1177); + if (lookahead == 'o') ADVANCE(1824); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 204: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1369); + END_STATE(); + case 205: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1753); + if (lookahead == 'f') ADVANCE(144); + END_STATE(); + case 206: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1699); + if (lookahead == 'c') ADVANCE(2075); + if (lookahead == 'e') ADVANCE(1719); + if (lookahead == 'n') ADVANCE(657); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 207: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1250); + if (lookahead == 'e') ADVANCE(318); + END_STATE(); + case 208: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a') ADVANCE(1444); + if (lookahead == 's') ADVANCE(1345); + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 209: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'b') ADVANCE(1585); + if (lookahead == 'c') ADVANCE(1220); + if (lookahead == 'f') ADVANCE(302); + END_STATE(); + case 210: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'b') ADVANCE(144); + if (lookahead == 'd') ADVANCE(339); + END_STATE(); + case 211: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'b') ADVANCE(144); + if (lookahead == 'h') ADVANCE(1937); + END_STATE(); + case 212: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'b') ADVANCE(188); + END_STATE(); + case 213: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'b') ADVANCE(188); + if (lookahead == 'd') ADVANCE(144); + END_STATE(); + case 214: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'b') ADVANCE(263); + if (lookahead == 'f') ADVANCE(1890); + if (lookahead == 'h') ADVANCE(1326); + if (lookahead == 'l') ADVANCE(1664); + if (lookahead == 'p') ADVANCE(1345); + if (lookahead == 's') ADVANCE(1242); + if (lookahead == 't') ADVANCE(1345); + END_STATE(); + case 215: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'b') ADVANCE(534); + if (lookahead == 'e') ADVANCE(1719); + END_STATE(); + case 216: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'b') ADVANCE(1812); + if (lookahead == 'c') ADVANCE(564); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'o') ADVANCE(1737); + if (lookahead == 's') ADVANCE(144); + END_STATE(); + case 217: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(144); + END_STATE(); + case 218: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(206); + END_STATE(); + case 219: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(750); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'h') ADVANCE(1786); + if (lookahead == 'i') ADVANCE(1484); + if (lookahead == 'l') ADVANCE(571); + if (lookahead == 'q') ADVANCE(2067); + if (lookahead == 'r') ADVANCE(494); + END_STATE(); + case 220: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(750); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'q') ADVANCE(2067); + if (lookahead == 'r') ADVANCE(559); + END_STATE(); + case 221: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(246); + END_STATE(); + case 222: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(749); + if (lookahead == 'd') ADVANCE(1629); + if (lookahead == 'l') ADVANCE(254); + END_STATE(); + case 223: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(749); + if (lookahead == 'd') ADVANCE(1630); + if (lookahead == 'g') ADVANCE(254); + if (lookahead == 's') ADVANCE(656); + END_STATE(); + case 224: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(587); + if (lookahead == 'e') ADVANCE(1155); + if (lookahead == 'l') ADVANCE(642); + if (lookahead == 'p') ADVANCE(1797); + END_STATE(); + case 225: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(1220); + if (lookahead == 'w') ADVANCE(144); + END_STATE(); + case 226: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(2055); + if (lookahead == 'e') ADVANCE(221); + END_STATE(); + case 227: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(2055); + if (lookahead == 'e' || + lookahead == 'r') ADVANCE(144); + END_STATE(); + case 228: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == 'f') ADVANCE(1265); + if (lookahead == 'o') ADVANCE(863); + if (lookahead == 't') ADVANCE(224); + END_STATE(); + case 229: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd') ADVANCE(1585); + END_STATE(); + case 230: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(309); + if (lookahead == 'g') ADVANCE(159); + if (lookahead == 'l') ADVANCE(159); + if (lookahead == 'n') ADVANCE(913); + if (lookahead == 'p') ADVANCE(1435); + if (lookahead == 'r') ADVANCE(571); + END_STATE(); + case 231: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd') ADVANCE(144); + END_STATE(); + case 232: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd') ADVANCE(144); + if (lookahead == 'l') ADVANCE(913); + END_STATE(); + case 233: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd') ADVANCE(1578); + if (lookahead == 'l') ADVANCE(973); + if (lookahead == 'r') ADVANCE(1273); + END_STATE(); + case 234: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd') ADVANCE(1578); + if (lookahead == 'l') ADVANCE(973); + if (lookahead == 'u') ADVANCE(1664); + END_STATE(); + case 235: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd') ADVANCE(1578); + if (lookahead == 'l') ADVANCE(1066); + if (lookahead == 'q') ADVANCE(144); + if (lookahead == 'r') ADVANCE(1316); + END_STATE(); + case 236: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd') ADVANCE(1250); + END_STATE(); + case 237: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(144); + END_STATE(); + case 238: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'l') ADVANCE(913); + if (lookahead == 'm') ADVANCE(1920); + if (lookahead == 'r') ADVANCE(1974); + if (lookahead == 's') ADVANCE(1687); + if (lookahead == 'z') ADVANCE(571); + END_STATE(); + case 239: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 's') ADVANCE(1001); + END_STATE(); + case 240: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1737); + END_STATE(); + case 241: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1720); + if (lookahead == 'm') ADVANCE(1302); + if (lookahead == 'p') ADVANCE(1435); + if (lookahead == 's') ADVANCE(1734); + END_STATE(); + case 242: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1945); + END_STATE(); + case 243: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1148); + END_STATE(); + case 244: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1093); + END_STATE(); + case 245: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(309); + END_STATE(); + case 246: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1719); + END_STATE(); + case 247: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1719); + if (lookahead == 'l') ADVANCE(933); + END_STATE(); + case 248: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(318); + END_STATE(); + case 249: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'i') ADVANCE(1474); + if (lookahead == 'o') ADVANCE(892); + END_STATE(); + case 250: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(305); + END_STATE(); + case 251: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1724); + END_STATE(); + case 252: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1724); + if (lookahead == 'n') ADVANCE(978); + END_STATE(); + case 253: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(586); + END_STATE(); + case 254: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1890); + END_STATE(); + case 255: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1921); + END_STATE(); + case 256: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1545); + if (lookahead == 'f') ADVANCE(144); + END_STATE(); + case 257: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1822); + if (lookahead == 's') ADVANCE(948); + END_STATE(); + case 258: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1778); + if (lookahead == 's') ADVANCE(1664); + END_STATE(); + case 259: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1788); + if (lookahead == 'f' || + lookahead == 'm') ADVANCE(144); + END_STATE(); + case 260: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e') ADVANCE(1777); + END_STATE(); + case 261: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'f') ADVANCE(144); + END_STATE(); + case 262: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'f') ADVANCE(144); + if (lookahead == 'r') ADVANCE(1574); + if (lookahead == 'y') ADVANCE(319); + END_STATE(); + case 263: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'f') ADVANCE(1890); + END_STATE(); + case 264: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'f') ADVANCE(1950); + if (lookahead == 'g') ADVANCE(144); + if (lookahead == 'q') ADVANCE(310); + if (lookahead == 's') ADVANCE(223); + END_STATE(); + case 265: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'f') ADVANCE(1491); + if (lookahead == 'l') ADVANCE(934); + END_STATE(); + case 266: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'f') ADVANCE(1975); + if (lookahead == 'q') ADVANCE(310); + if (lookahead == 's') ADVANCE(318); + END_STATE(); + case 267: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'g') ADVANCE(144); + END_STATE(); + case 268: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'g') ADVANCE(144); + if (lookahead == 'l') ADVANCE(1966); + if (lookahead == 'm') ADVANCE(1698); + END_STATE(); + case 269: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'g') ADVANCE(1945); + END_STATE(); + case 270: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'g') ADVANCE(913); + END_STATE(); + case 271: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'h') ADVANCE(144); + END_STATE(); + case 272: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'h') ADVANCE(144); + if (lookahead == 'l') ADVANCE(1616); + END_STATE(); + case 273: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'h') ADVANCE(1575); + END_STATE(); + case 274: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'i') ADVANCE(1223); + if (lookahead == 'n') ADVANCE(1105); + if (lookahead == 'o') ADVANCE(1966); + END_STATE(); + case 275: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'i') ADVANCE(887); + if (lookahead == 'o') ADVANCE(1507); + END_STATE(); + case 276: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'i') ADVANCE(1767); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 277: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'i') ADVANCE(1525); + if (lookahead == 'p') ADVANCE(639); + if (lookahead == 's') ADVANCE(144); + END_STATE(); + case 278: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'i') ADVANCE(2004); + END_STATE(); + case 279: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'i') ADVANCE(852); + END_STATE(); + case 280: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'i') ADVANCE(1499); + if (lookahead == 'n') ADVANCE(1233); + END_STATE(); + case 281: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'i') ADVANCE(1427); + END_STATE(); + case 282: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'i') ADVANCE(1564); + if (lookahead == 'l') ADVANCE(144); + if (lookahead == 's') ADVANCE(229); + END_STATE(); + case 283: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'l') ADVANCE(144); + END_STATE(); + case 284: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'l') ADVANCE(144); + if (lookahead == 'q') ADVANCE(310); + if (lookahead == 's') ADVANCE(222); + END_STATE(); + case 285: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'l') ADVANCE(1945); + END_STATE(); + case 286: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'l') ADVANCE(1616); + END_STATE(); + case 287: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'l') ADVANCE(1616); + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 288: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'l') ADVANCE(2007); + if (lookahead == 'm') ADVANCE(560); + END_STATE(); + case 289: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'l') ADVANCE(1386); + END_STATE(); + case 290: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'm') ADVANCE(144); + END_STATE(); + case 291: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'm') ADVANCE(258); + END_STATE(); + case 292: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'm') ADVANCE(593); + END_STATE(); + case 293: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'n') ADVANCE(144); + END_STATE(); + case 294: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'n') ADVANCE(612); + END_STATE(); + case 295: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(144); + END_STATE(); + case 296: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(314); + END_STATE(); + case 297: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(283); + END_STATE(); + case 298: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(1083); + END_STATE(); + case 299: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(2113); + END_STATE(); + case 300: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(2103); + END_STATE(); + case 301: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(837); + END_STATE(); + case 302: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(1791); + END_STATE(); + case 303: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(2020); + END_STATE(); + case 304: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(1530); + if (lookahead == 's') ADVANCE(144); + END_STATE(); + case 305: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'o') ADVANCE(1555); + END_STATE(); + case 306: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'p') ADVANCE(144); + END_STATE(); + case 307: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 't') ADVANCE(280); + END_STATE(); + case 308: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'p') ADVANCE(1816); + END_STATE(); + case 309: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'q') ADVANCE(144); + END_STATE(); + case 310: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'q') ADVANCE(144); + if (lookahead == 's') ADVANCE(1430); + END_STATE(); + case 311: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'q') ADVANCE(310); + if (lookahead == 's') ADVANCE(144); + END_STATE(); + case 312: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'q') ADVANCE(309); + END_STATE(); + case 313: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'q') ADVANCE(2066); + END_STATE(); + case 314: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 315: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(229); + END_STATE(); + case 316: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'r') ADVANCE(1258); + END_STATE(); + case 317: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'r') ADVANCE(1236); + END_STATE(); + case 318: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(144); + END_STATE(); + case 319: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(1737); + END_STATE(); + case 320: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(231); + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 321: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(213); + END_STATE(); + case 322: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(2135); + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 323: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(1450); + END_STATE(); + case 324: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(1345); + END_STATE(); + case 325: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(2008); + END_STATE(); + case 326: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(948); + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 327: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(1003); + END_STATE(); + case 328: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 's') ADVANCE(2070); + END_STATE(); + case 329: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 330: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(520); + END_STATE(); + case 331: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(1575); + END_STATE(); + case 332: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(260); + END_STATE(); + case 333: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(721); + END_STATE(); + case 334: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(1345); + END_STATE(); + case 335: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(819); + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 336: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(666); + END_STATE(); + case 337: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(1599); + END_STATE(); + case 338: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 't') ADVANCE(1258); + END_STATE(); + case 339: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'u') ADVANCE(144); + END_STATE(); + case 340: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'u') ADVANCE(1228); + END_STATE(); + case 341: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 342: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'v') ADVANCE(2162); + END_STATE(); + case 343: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'v') ADVANCE(710); + END_STATE(); + case 344: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'v') ADVANCE(1015); + END_STATE(); + case 345: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(144); + if (lookahead == 'a') ADVANCE(837); + if (lookahead == 'i') ADVANCE(868); + if (lookahead == 'o') ADVANCE(1890); + if (lookahead == 'p') ADVANCE(1810); + END_STATE(); + case 346: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(144); + if (lookahead == 'c') ADVANCE(247); + if (lookahead == 'f') ADVANCE(1553); + if (lookahead == 'm') ADVANCE(1209); + if (lookahead == 's') ADVANCE(837); + END_STATE(); + case 347: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(144); + if (lookahead == 's') ADVANCE(1016); + END_STATE(); + case 348: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E' || + lookahead == 'v') ADVANCE(144); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 's') ADVANCE(341); + END_STATE(); + case 349: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E' || + lookahead == 'y') ADVANCE(144); + if (lookahead == 'a') ADVANCE(1665); + if (lookahead == 'c') ADVANCE(2055); + if (lookahead == 'e') ADVANCE(236); + if (lookahead == 'i') ADVANCE(1804); + if (lookahead == 'n') ADVANCE(452); + if (lookahead == 'p') ADVANCE(1660); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 350: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'a' || + lookahead == 'h') ADVANCE(144); + END_STATE(); + case 351: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'b' || + lookahead == 'e') ADVANCE(144); + END_STATE(); + case 352: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'c' || + lookahead == 'w') ADVANCE(144); + END_STATE(); + case 353: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e' || + lookahead == 'g') ADVANCE(144); + END_STATE(); + case 354: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e' || + lookahead == 'l') ADVANCE(144); + END_STATE(); + case 355: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'f' || + lookahead == 'v') ADVANCE(144); + END_STATE(); + case 356: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd' || + lookahead == 'e') ADVANCE(144); + if (lookahead == 'l') ADVANCE(913); + END_STATE(); + case 357: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(144); + END_STATE(); + case 358: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(144); + if (lookahead == 'l') ADVANCE(2003); + END_STATE(); + case 359: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E' || + lookahead == 'a' || + lookahead == 'j') ADVANCE(144); + END_STATE(); + case 360: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'E' || + lookahead == 'd' || + lookahead == 'y') ADVANCE(144); + if (lookahead == 'i') ADVANCE(1767); + if (lookahead == 'u') ADVANCE(1981); + END_STATE(); + case 361: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'D' || + lookahead == 'U' || + lookahead == 'd' || + lookahead == 'u') ADVANCE(144); + END_STATE(); + case 362: + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'H' || + lookahead == 'L' || + lookahead == 'R' || + lookahead == 'h' || + lookahead == 'l' || + lookahead == 'r') ADVANCE(144); + END_STATE(); + case 363: + if (lookahead == ';') ADVANCE(2177); + END_STATE(); + case 364: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(365); + END_STATE(); + case 365: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(363); + END_STATE(); + case 366: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(364); + END_STATE(); + case 367: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(366); + END_STATE(); + case 368: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(367); + END_STATE(); + case 369: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(368); + END_STATE(); + case 370: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(363); + END_STATE(); + case 371: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(370); + END_STATE(); + case 372: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(371); + END_STATE(); + case 373: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(372); + END_STATE(); + case 374: + if (lookahead == ';') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(373); + END_STATE(); + case 375: + if (lookahead == '>') ADVANCE(2225); + END_STATE(); + case 376: + if (lookahead == '>') ADVANCE(2232); + END_STATE(); + case 377: + if (lookahead == '>') ADVANCE(2219); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '<') ADVANCE(377); + END_STATE(); + case 378: + if (lookahead == '@') ADVANCE(2168); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '\'') || + lookahead == '*' || + lookahead == '/' || + lookahead == '=' || + lookahead == '?' || + ('^' <= lookahead && lookahead <= '`') || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(379); + if (lookahead == '+' || + ('-' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(143); + END_STATE(); + case 379: + if (lookahead == '@') ADVANCE(2168); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '\'') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '9') || + lookahead == '=' || + ('?' <= lookahead && lookahead <= 'Z') || + ('^' <= lookahead && lookahead <= '~')) ADVANCE(379); + END_STATE(); + case 380: + if (lookahead == 'A') ADVANCE(498); + if (lookahead == 'a') ADVANCE(812); + if (lookahead == 'c') ADVANCE(1276); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(1364); + if (lookahead == 'o') ADVANCE(1670); + if (lookahead == 's') ADVANCE(786); + if (lookahead == 'u') ADVANCE(1463); + END_STATE(); + case 381: + if (lookahead == 'A') ADVANCE(581); + if (lookahead == 'B') ADVANCE(571); + if (lookahead == 'H') ADVANCE(534); + if (lookahead == 'a') ADVANCE(759); + if (lookahead == 'b') ADVANCE(572); + if (lookahead == 'c') ADVANCE(598); + if (lookahead == 'd') ADVANCE(789); + if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'f') ADVANCE(1248); + if (lookahead == 'h') ADVANCE(617); + if (lookahead == 'i') ADVANCE(1138); + if (lookahead == 'l') ADVANCE(577); + if (lookahead == 'm') ADVANCE(1648); + if (lookahead == 'n') ADVANCE(1464); + if (lookahead == 'o') ADVANCE(543); + if (lookahead == 'p') ADVANCE(624); + if (lookahead == 'r') ADVANCE(571); + if (lookahead == 's') ADVANCE(523); + if (lookahead == 't') ADVANCE(1204); + if (lookahead == 'u') ADVANCE(1390); + if (lookahead == 'x') ADVANCE(144); + END_STATE(); + case 382: + if (lookahead == 'A') ADVANCE(516); + END_STATE(); + case 383: + if (lookahead == 'A') ADVANCE(741); + if (lookahead == 'I') ADVANCE(741); + if (lookahead == 'U') ADVANCE(741); + if (lookahead == 'a') ADVANCE(799); + if (lookahead == 'c') ADVANCE(1278); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 'u') ADVANCE(1472); + END_STATE(); + case 384: + if (lookahead == 'A') ADVANCE(437); + END_STATE(); + case 385: + if (lookahead == 'A') ADVANCE(1562); + if (lookahead == 'C') ADVANCE(1075); + if (lookahead == 'D') ADVANCE(1580); + if (lookahead == 'F') ADVANCE(1389); + if (lookahead == 'R') ADVANCE(1311); + if (lookahead == 'T') ADVANCE(1020); + if (lookahead == 'U') ADVANCE(1678); + if (lookahead == 'V') ADVANCE(1054); + if (lookahead == 'a') ADVANCE(1868); + if (lookahead == 'r') ADVANCE(1304); + END_STATE(); + case 386: + if (lookahead == 'A') ADVANCE(507); + END_STATE(); + case 387: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'B') ADVANCE(627); + if (lookahead == 'D') ADVANCE(567); + if (lookahead == 'a') ADVANCE(1522); + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'd') ADVANCE(567); + if (lookahead == 'e') ADVANCE(926); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'l') ADVANCE(2003); + if (lookahead == 'n') ADVANCE(1919); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'p') ADVANCE(1806); + if (lookahead == 'r') ADVANCE(2003); + if (lookahead == 's') ADVANCE(788); + if (lookahead == 'z') ADVANCE(1251); + END_STATE(); + case 388: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'd') ADVANCE(1737); + if (lookahead == 'e') ADVANCE(266); + if (lookahead == 's') ADVANCE(1242); + if (lookahead == 't') ADVANCE(317); + END_STATE(); + case 389: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'H') ADVANCE(534); + if (lookahead == 'a') ADVANCE(1121); + if (lookahead == 'b') ADVANCE(1342); + if (lookahead == 'c') ADVANCE(603); + if (lookahead == 'd') ADVANCE(185); + if (lookahead == 'e') ADVANCE(268); + if (lookahead == 'f') ADVANCE(1249); + if (lookahead == 'h') ADVANCE(610); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'j') ADVANCE(741); + if (lookahead == 'l') ADVANCE(755); + if (lookahead == 'o') ADVANCE(1393); + if (lookahead == 'r') ADVANCE(717); + if (lookahead == 's') ADVANCE(757); + if (lookahead == 't') ADVANCE(867); + if (lookahead == 'u') ADVANCE(576); + if (lookahead == 'w') ADVANCE(585); + if (lookahead == 'z') ADVANCE(746); + END_STATE(); + case 390: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'H') ADVANCE(534); + if (lookahead == 'a') ADVANCE(800); + if (lookahead == 'b') ADVANCE(1759); + if (lookahead == 'c') ADVANCE(1257); + if (lookahead == 'd') ADVANCE(573); + if (lookahead == 'f') ADVANCE(1249); + if (lookahead == 'g') ADVANCE(1798); + if (lookahead == 'h') ADVANCE(611); + if (lookahead == 'l') ADVANCE(848); + if (lookahead == 'm') ADVANCE(187); + if (lookahead == 'o') ADVANCE(1125); + if (lookahead == 'p') ADVANCE(682); + if (lookahead == 'r') ADVANCE(847); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 't') ADVANCE(864); + if (lookahead == 'u') ADVANCE(578); + if (lookahead == 'w') ADVANCE(585); + END_STATE(); + case 391: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'a') ADVANCE(1264); + if (lookahead == 'b') ADVANCE(534); + if (lookahead == 'c') ADVANCE(1276); + if (lookahead == 'e') ADVANCE(664); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'k') ADVANCE(1891); + if (lookahead == 'o') ADVANCE(579); + if (lookahead == 's') ADVANCE(778); + if (lookahead == 'y') ADVANCE(719); + END_STATE(); + case 392: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'a') ADVANCE(1756); + END_STATE(); + case 393: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'p') ADVANCE(534); + END_STATE(); + case 394: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'a') ADVANCE(1749); + if (lookahead == 'c') ADVANCE(329); + if (lookahead == 'm') ADVANCE(1210); + if (lookahead == 's') ADVANCE(2109); + if (lookahead == 't') ADVANCE(1458); + if (lookahead == 'x') ADVANCE(1945); + END_STATE(); + case 395: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'a') ADVANCE(1749); + if (lookahead == 'n') ADVANCE(2109); + END_STATE(); + case 396: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'a') ADVANCE(1749); + if (lookahead == 'n') ADVANCE(962); + END_STATE(); + case 397: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'a') ADVANCE(1848); + if (lookahead == 'i') ADVANCE(1141); + if (lookahead == 't') ADVANCE(1831); + END_STATE(); + case 398: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 't') ADVANCE(316); + END_STATE(); + case 399: + if (lookahead == 'A') ADVANCE(1756); + if (lookahead == 't') ADVANCE(1826); + END_STATE(); + case 400: + if (lookahead == 'A') ADVANCE(1871); + if (lookahead == 'D') ADVANCE(1639); + if (lookahead == 'E') ADVANCE(1730); + if (lookahead == 'T') ADVANCE(1005); + if (lookahead == 'a') ADVANCE(1868); + if (lookahead == 'd') ADVANCE(1646); + if (lookahead == 'p') ADVANCE(1014); + if (lookahead == 's') ADVANCE(1227); + END_STATE(); + case 401: + if (lookahead == 'A') ADVANCE(805); + END_STATE(); + case 402: + if (lookahead == 'A') ADVANCE(805); + if (lookahead == 'D') ADVANCE(1583); + if (lookahead == 'G') ADVANCE(1789); + if (lookahead == 'T') ADVANCE(1305); + END_STATE(); + case 403: + if (lookahead == 'A') ADVANCE(1387); + END_STATE(); + case 404: + if (lookahead == 'A') ADVANCE(1563); + if (lookahead == 'C') ADVANCE(1075); + if (lookahead == 'D') ADVANCE(1580); + if (lookahead == 'F') ADVANCE(1389); + if (lookahead == 'T') ADVANCE(1020); + if (lookahead == 'U') ADVANCE(1678); + if (lookahead == 'V') ADVANCE(1054); + if (lookahead == 'a') ADVANCE(1868); + END_STATE(); + case 405: + if (lookahead == 'A') ADVANCE(1868); + END_STATE(); + case 406: + if (lookahead == 'A') ADVANCE(1868); + if (lookahead == 'D') ADVANCE(1639); + END_STATE(); + case 407: + if (lookahead == 'A') ADVANCE(1868); + if (lookahead == 'R') ADVANCE(1312); + END_STATE(); + case 408: + if (lookahead == 'A') ADVANCE(1868); + if (lookahead == 'R') ADVANCE(1312); + if (lookahead == 'T') ADVANCE(990); + END_STATE(); + case 409: + if (lookahead == 'A') ADVANCE(1868); + if (lookahead == 'T') ADVANCE(990); + END_STATE(); + case 410: + if (lookahead == 'A') ADVANCE(1868); + if (lookahead == 'V') ADVANCE(1059); + END_STATE(); + case 411: + if (lookahead == 'A') ADVANCE(1872); + if (lookahead == 'B') ADVANCE(1736); + if (lookahead == 'L') ADVANCE(1052); + if (lookahead == 'R') ADVANCE(1310); + if (lookahead == 'T') ADVANCE(1005); + if (lookahead == 'a') ADVANCE(1868); + END_STATE(); + case 412: + if (lookahead == 'B') ADVANCE(537); + if (lookahead == 'P') ADVANCE(685); + END_STATE(); + case 413: + if (lookahead == 'B') ADVANCE(571); + if (lookahead == 'E') ADVANCE(172); + if (lookahead == 'a') ADVANCE(809); + if (lookahead == 'c') ADVANCE(600); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(1575); + if (lookahead == 'i') ADVANCE(1119); + if (lookahead == 'o') ADVANCE(1673); + if (lookahead == 'r') ADVANCE(1304); + if (lookahead == 's') ADVANCE(772); + if (lookahead == 'u') ADVANCE(1380); + END_STATE(); + case 414: + if (lookahead == 'B') ADVANCE(534); + END_STATE(); + case 415: + if (lookahead == 'B') ADVANCE(534); + if (lookahead == 'L') ADVANCE(1259); + if (lookahead == 'S') ADVANCE(1047); + if (lookahead == 'T') ADVANCE(1305); + END_STATE(); + case 416: + if (lookahead == 'B') ADVANCE(1869); + END_STATE(); + case 417: + if (lookahead == 'B') ADVANCE(1861); + if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 't') ADVANCE(155); + END_STATE(); + case 418: + if (lookahead == 'B') ADVANCE(1866); + END_STATE(); + case 419: + if (lookahead == 'C') ADVANCE(471); + if (lookahead == 'c') ADVANCE(2125); + END_STATE(); + case 420: + if (lookahead == 'C') ADVANCE(440); + END_STATE(); + case 421: + if (lookahead == 'C') ADVANCE(560); + END_STATE(); + case 422: + if (lookahead == 'C') ADVANCE(1640); + if (lookahead == 'T') ADVANCE(1291); + END_STATE(); + case 423: + if (lookahead == 'C') ADVANCE(1317); + END_STATE(); + case 424: + if (lookahead == 'C') ADVANCE(1412); + END_STATE(); + case 425: + if (lookahead == 'C') ADVANCE(2074); + END_STATE(); + case 426: + if (lookahead == 'C') ADVANCE(1656); + END_STATE(); + case 427: + if (lookahead == 'C') ADVANCE(1656); + if (lookahead == 'D') ADVANCE(1582); + if (lookahead == 'L') ADVANCE(1064); + if (lookahead == 'R') ADVANCE(1314); + if (lookahead == 'U') ADVANCE(1679); + if (lookahead == 'V') ADVANCE(1073); + END_STATE(); + case 428: + if (lookahead == 'D') ADVANCE(1585); + END_STATE(); + case 429: + if (lookahead == 'D') ADVANCE(1585); + if (lookahead == 'M') ADVANCE(1302); + if (lookahead == 'P') ADVANCE(1435); + if (lookahead == 'T') ADVANCE(1291); + END_STATE(); + case 430: + if (lookahead == 'D') ADVANCE(1585); + if (lookahead == 'a') ADVANCE(1756); + END_STATE(); + case 431: + if (lookahead == 'D') ADVANCE(1585); + if (lookahead == 'o') ADVANCE(1945); + END_STATE(); + case 432: + if (lookahead == 'D') ADVANCE(1585); + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 433: + if (lookahead == 'D') ADVANCE(303); + if (lookahead == 'J') ADVANCE(741); + if (lookahead == 'S') ADVANCE(741); + if (lookahead == 'Z') ADVANCE(741); + if (lookahead == 'a') ADVANCE(1123); + if (lookahead == 'c') ADVANCE(603); + if (lookahead == 'e') ADVANCE(1346); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(546); + if (lookahead == 'o') ADVANCE(1671); + if (lookahead == 's') ADVANCE(786); + END_STATE(); + case 434: + if (lookahead == 'D') ADVANCE(144); + END_STATE(); + case 435: + if (lookahead == 'D') ADVANCE(431); + if (lookahead == 'a') ADVANCE(803); + if (lookahead == 'c') ADVANCE(601); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'f') ADVANCE(432); + if (lookahead == 'g') ADVANCE(315); + if (lookahead == 'l') ADVANCE(282); + if (lookahead == 'm') ADVANCE(533); + if (lookahead == 'n') ADVANCE(1108); + if (lookahead == 'o') ADVANCE(1125); + if (lookahead == 'p') ADVANCE(614); + if (lookahead == 'q') ADVANCE(796); + if (lookahead == 'r') ADVANCE(430); + if (lookahead == 's') ADVANCE(766); + if (lookahead == 't') ADVANCE(350); + if (lookahead == 'u') ADVANCE(1452); + if (lookahead == 'x') ADVANCE(824); + END_STATE(); + case 436: + if (lookahead == 'D') ADVANCE(428); + if (lookahead == 'a') ADVANCE(751); + if (lookahead == 'c') ADVANCE(1641); + if (lookahead == 'd') ADVANCE(567); + if (lookahead == 'e') ADVANCE(649); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(1575); + if (lookahead == 'i') ADVANCE(840); + if (lookahead == 'l') ADVANCE(804); + if (lookahead == 'n') ADVANCE(1695); + if (lookahead == 'o') ADVANCE(904); + if (lookahead == 'p') ADVANCE(144); + if (lookahead == 's') ADVANCE(785); + if (lookahead == 'u') ADVANCE(288); + END_STATE(); + case 437: + if (lookahead == 'D') ADVANCE(451); + END_STATE(); + case 438: + if (lookahead == 'D') ADVANCE(2163); + if (lookahead == 'H') ADVANCE(361); + if (lookahead == 'U') ADVANCE(2163); + if (lookahead == 'V') ADVANCE(362); + if (lookahead == 'b') ADVANCE(1590); + if (lookahead == 'd') ADVANCE(2163); + if (lookahead == 'h') ADVANCE(361); + if (lookahead == 'm') ADVANCE(1302); + if (lookahead == 'p') ADVANCE(1435); + if (lookahead == 't') ADVANCE(1291); + if (lookahead == 'u') ADVANCE(2163); + if (lookahead == 'v') ADVANCE(362); + END_STATE(); + case 439: + if (lookahead == 'D') ADVANCE(741); + END_STATE(); + case 440: + if (lookahead == 'D') ADVANCE(386); + END_STATE(); + case 441: + if (lookahead == 'D') ADVANCE(567); + if (lookahead == 'H') ADVANCE(571); + if (lookahead == 'a') ADVANCE(1664); + if (lookahead == 'd') ADVANCE(567); + if (lookahead == 'g') ADVANCE(2153); + if (lookahead == 'i') ADVANCE(1509); + if (lookahead == 'l') ADVANCE(398); + if (lookahead == 'r') ADVANCE(399); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 442: + if (lookahead == 'D') ADVANCE(567); + if (lookahead == 'b') ADVANCE(534); + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'd') ADVANCE(570); + if (lookahead == 'e') ADVANCE(916); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 'v') ADVANCE(884); + END_STATE(); + case 443: + if (lookahead == 'D') ADVANCE(567); + if (lookahead == 'd') ADVANCE(567); + END_STATE(); + case 444: + if (lookahead == 'D') ADVANCE(1639); + if (lookahead == 'L') ADVANCE(1061); + if (lookahead == 'R') ADVANCE(1312); + if (lookahead == 'U') ADVANCE(1683); + END_STATE(); + case 445: + if (lookahead == 'D') ADVANCE(1241); + END_STATE(); + case 446: + if (lookahead == 'D') ADVANCE(1007); + END_STATE(); + case 447: + if (lookahead == 'D') ADVANCE(1647); + if (lookahead == 'E') ADVANCE(1727); + END_STATE(); + case 448: + if (lookahead == 'D') ADVANCE(1651); + if (lookahead == 'T') ADVANCE(1026); + if (lookahead == 'V') ADVANCE(1054); + END_STATE(); + case 449: + if (lookahead == 'D') ADVANCE(1661); + if (lookahead == 'Q') ADVANCE(2085); + END_STATE(); + case 450: + if (lookahead == 'E') ADVANCE(1385); + if (lookahead == 'M') ADVANCE(179); + if (lookahead == 'a') ADVANCE(799); + if (lookahead == 'b') ADVANCE(1736); + if (lookahead == 'c') ADVANCE(1257); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(1798); + if (lookahead == 'l') ADVANCE(1666); + if (lookahead == 'm') ADVANCE(529); + if (lookahead == 'n') ADVANCE(868); + if (lookahead == 'o') ADVANCE(1125); + if (lookahead == 'p') ADVANCE(1691); + if (lookahead == 'r') ADVANCE(1232); + if (lookahead == 's') ADVANCE(783); + if (lookahead == 't') ADVANCE(1279); + if (lookahead == 'u') ADVANCE(1451); + END_STATE(); + case 451: + if (lookahead == 'E') ADVANCE(144); + END_STATE(); + case 452: + if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'a') ADVANCE(1664); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 453: + if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'a') ADVANCE(1682); + if (lookahead == 'e') ADVANCE(312); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 454: + if (lookahead == 'E') ADVANCE(144); + if (lookahead == 'e') ADVANCE(311); + if (lookahead == 's') ADVANCE(1242); + if (lookahead == 't') ADVANCE(314); + END_STATE(); + case 455: + if (lookahead == 'E') ADVANCE(1358); + if (lookahead == 'U') ADVANCE(1714); + END_STATE(); + case 456: + if (lookahead == 'E') ADVANCE(741); + if (lookahead == 'J') ADVANCE(1391); + if (lookahead == 'O') ADVANCE(741); + if (lookahead == 'a') ADVANCE(799); + if (lookahead == 'c') ADVANCE(1257); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(1798); + if (lookahead == 'm') ADVANCE(184); + if (lookahead == 'n') ADVANCE(1973); + if (lookahead == 'o') ADVANCE(1126); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 't') ADVANCE(1305); + if (lookahead == 'u') ADVANCE(1334); + END_STATE(); + case 457: + if (lookahead == 'E') ADVANCE(1357); + END_STATE(); + case 458: + if (lookahead == 'E') ADVANCE(1391); + if (lookahead == 'a') ADVANCE(799); + if (lookahead == 'c') ADVANCE(1257); + if (lookahead == 'd') ADVANCE(739); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(1798); + if (lookahead == 'm') ADVANCE(531); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'p') ADVANCE(977); + if (lookahead == 'r') ADVANCE(144); + if (lookahead == 's') ADVANCE(780); + if (lookahead == 't') ADVANCE(1226); + if (lookahead == 'u') ADVANCE(1451); + if (lookahead == 'v') ADVANCE(992); + END_STATE(); + case 459: + if (lookahead == 'E') ADVANCE(1730); + END_STATE(); + case 460: + if (lookahead == 'E') ADVANCE(1727); + END_STATE(); + case 461: + if (lookahead == 'E') ADVANCE(1732); + if (lookahead == 'F') ADVANCE(2084); + if (lookahead == 'G') ADVANCE(1877); + if (lookahead == 'L') ADVANCE(959); + if (lookahead == 'S') ADVANCE(1445); + if (lookahead == 'T') ADVANCE(1305); + END_STATE(); + case 462: + if (lookahead == 'E') ADVANCE(1733); + if (lookahead == 'F') ADVANCE(2084); + if (lookahead == 'G') ADVANCE(1877); + if (lookahead == 'L') ADVANCE(959); + if (lookahead == 'S') ADVANCE(1445); + if (lookahead == 'T') ADVANCE(1305); + END_STATE(); + case 463: + if (lookahead == 'F') ADVANCE(506); + END_STATE(); + case 464: + if (lookahead == 'F') ADVANCE(2078); + END_STATE(); + case 465: + if (lookahead == 'G') ADVANCE(144); + END_STATE(); + case 466: + if (lookahead == 'G') ADVANCE(1109); + if (lookahead == 'L') ADVANCE(1040); + if (lookahead == 'R') ADVANCE(1304); + if (lookahead == 'V') ADVANCE(443); + if (lookahead == 'a') ADVANCE(723); + if (lookahead == 'b') ADVANCE(1892); + if (lookahead == 'c') ADVANCE(554); + if (lookahead == 'd') ADVANCE(567); + if (lookahead == 'e') ADVANCE(146); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(454); + if (lookahead == 'h') ADVANCE(393); + if (lookahead == 'i') ADVANCE(320); + if (lookahead == 'j') ADVANCE(741); + if (lookahead == 'l') ADVANCE(388); + if (lookahead == 'm') ADVANCE(1209); + if (lookahead == 'o') ADVANCE(307); + if (lookahead == 'p') ADVANCE(622); + if (lookahead == 'r') ADVANCE(397); + if (lookahead == 's') ADVANCE(758); + if (lookahead == 't') ADVANCE(1129); + if (lookahead == 'u') ADVANCE(291); + if (lookahead == 'v') ADVANCE(441); + if (lookahead == 'w') ADVANCE(396); + END_STATE(); + case 467: + if (lookahead == 'G') ADVANCE(1877); + END_STATE(); + case 468: + if (lookahead == 'G') ADVANCE(1886); + if (lookahead == 'L') ADVANCE(1042); + END_STATE(); + case 469: + if (lookahead == 'H') ADVANCE(419); + if (lookahead == 'O') ADVANCE(463); + if (lookahead == 'a') ADVANCE(805); + if (lookahead == 'c') ADVANCE(198); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(1642); + if (lookahead == 'i') ADVANCE(1127); + if (lookahead == 'm') ADVANCE(647); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'q') ADVANCE(1763); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 't') ADVANCE(534); + if (lookahead == 'u') ADVANCE(707); + END_STATE(); + case 470: + if (lookahead == 'H') ADVANCE(491); + if (lookahead == 'R') ADVANCE(384); + if (lookahead == 'S') ADVANCE(475); + if (lookahead == 'a') ADVANCE(2150); + if (lookahead == 'c') ADVANCE(600); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(947); + if (lookahead == 'i') ADVANCE(1373); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'r') ADVANCE(1284); + if (lookahead == 's') ADVANCE(786); + END_STATE(); + case 471: + if (lookahead == 'H') ADVANCE(741); + END_STATE(); + case 472: + if (lookahead == 'H') ADVANCE(741); + if (lookahead == 'J') ADVANCE(741); + if (lookahead == 'a') ADVANCE(1688); + if (lookahead == 'c') ADVANCE(968); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 473: + if (lookahead == 'H') ADVANCE(741); + if (lookahead == 'O') ADVANCE(492); + if (lookahead == 'a') ADVANCE(811); + if (lookahead == 'c') ADVANCE(599); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(901); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(1210); + if (lookahead == 'i') ADVANCE(1784); + if (lookahead == 'l') ADVANCE(1589); + if (lookahead == 'o') ADVANCE(1429); + if (lookahead == 'r') ADVANCE(1591); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 'u') ADVANCE(1674); + END_STATE(); + case 474: + if (lookahead == 'H') ADVANCE(741); + if (lookahead == 'a') ADVANCE(805); + if (lookahead == 'c') ADVANCE(603); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(1794); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 475: + if (lookahead == 'H') ADVANCE(741); + if (lookahead == 'c') ADVANCE(2125); + END_STATE(); + case 476: + if (lookahead == 'H') ADVANCE(2086); + END_STATE(); + case 477: + if (lookahead == 'I') ADVANCE(144); + END_STATE(); + case 478: + if (lookahead == 'I') ADVANCE(1485); + END_STATE(); + case 479: + if (lookahead == 'I') ADVANCE(1552); + END_STATE(); + case 480: + if (lookahead == 'J') ADVANCE(741); + if (lookahead == 'a') ADVANCE(805); + if (lookahead == 'c') ADVANCE(600); + if (lookahead == 'e') ADVANCE(1130); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(417); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 't') ADVANCE(1279); + if (lookahead == 'u') ADVANCE(144); + END_STATE(); + case 481: + if (lookahead == 'L') ADVANCE(959); + END_STATE(); + case 482: + if (lookahead == 'L') ADVANCE(1259); + END_STATE(); + case 483: + if (lookahead == 'L') ADVANCE(1057); + if (lookahead == 'R') ADVANCE(1312); + END_STATE(); + case 484: + if (lookahead == 'L') ADVANCE(1057); + if (lookahead == 'R') ADVANCE(1312); + if (lookahead == 'l') ADVANCE(1039); + if (lookahead == 'r') ADVANCE(1304); + END_STATE(); + case 485: + if (lookahead == 'L') ADVANCE(1061); + if (lookahead == 'R') ADVANCE(1312); + END_STATE(); + case 486: + if (lookahead == 'M') ADVANCE(1043); + if (lookahead == 'T') ADVANCE(1192); + if (lookahead == 'V') ADVANCE(1031); + END_STATE(); + case 487: + if (lookahead == 'M') ADVANCE(1302); + END_STATE(); + case 488: + if (lookahead == 'N') ADVANCE(1585); + if (lookahead == 'a') ADVANCE(795); + if (lookahead == 'b') ADVANCE(1780); + if (lookahead == 'c') ADVANCE(1606); + if (lookahead == 'd') ADVANCE(1726); + if (lookahead == 'e') ADVANCE(860); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(1110); + if (lookahead == 'k') ADVANCE(665); + if (lookahead == 'l') ADVANCE(547); + if (lookahead == 'n') ADVANCE(925); + if (lookahead == 'o') ADVANCE(1672); + if (lookahead == 'p') ADVANCE(1807); + if (lookahead == 'r') ADVANCE(923); + if (lookahead == 's') ADVANCE(767); + if (lookahead == 'u') ADVANCE(1392); + END_STATE(); + case 489: + if (lookahead == 'N') ADVANCE(465); + if (lookahead == 'T') ADVANCE(173); + if (lookahead == 'a') ADVANCE(799); + if (lookahead == 'c') ADVANCE(602); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(1798); + if (lookahead == 'l') ADVANCE(1044); + if (lookahead == 'm') ADVANCE(532); + if (lookahead == 'o') ADVANCE(1125); + if (lookahead == 'p') ADVANCE(1941); + if (lookahead == 'q') ADVANCE(2038); + if (lookahead == 's') ADVANCE(775); + if (lookahead == 't') ADVANCE(520); + if (lookahead == 'u') ADVANCE(1451); + if (lookahead == 'x') ADVANCE(1235); + END_STATE(); + case 490: + if (lookahead == 'O') ADVANCE(181); + END_STATE(); + case 491: + if (lookahead == 'O') ADVANCE(497); + END_STATE(); + case 492: + if (lookahead == 'P') ADVANCE(183); + END_STATE(); + case 493: + if (lookahead == 'P') ADVANCE(534); + END_STATE(); + case 494: + if (lookahead == 'P') ADVANCE(534); + if (lookahead == 'i') ADVANCE(357); + END_STATE(); + case 495: + if (lookahead == 'P') ADVANCE(1435); + END_STATE(); + case 496: + if (lookahead == 'Q') ADVANCE(2085); + END_STATE(); + case 497: + if (lookahead == 'R') ADVANCE(178); + END_STATE(); + case 498: + if (lookahead == 'R') ADVANCE(439); + END_STATE(); + case 499: + if (lookahead == 'R') ADVANCE(1315); + if (lookahead == 'T') ADVANCE(1026); + if (lookahead == 'V') ADVANCE(1054); + END_STATE(); + case 500: + if (lookahead == 'S') ADVANCE(144); + if (lookahead == 'a') ADVANCE(802); + if (lookahead == 'c') ADVANCE(1257); + if (lookahead == 'd') ADVANCE(568); + if (lookahead == 'e') ADVANCE(1391); + if (lookahead == 'f') ADVANCE(838); + if (lookahead == 'g') ADVANCE(1617); + if (lookahead == 'h') ADVANCE(714); + if (lookahead == 'i') ADVANCE(1503); + if (lookahead == 'l') ADVANCE(574); + if (lookahead == 'm') ADVANCE(530); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'p') ADVANCE(535); + if (lookahead == 'r') ADVANCE(194); + if (lookahead == 's') ADVANCE(781); + if (lookahead == 't') ADVANCE(1274); + if (lookahead == 'u') ADVANCE(1451); + if (lookahead == 'v') ADVANCE(712); + END_STATE(); + case 501: + if (lookahead == 'S') ADVANCE(1489); + END_STATE(); + case 502: + if (lookahead == 'S') ADVANCE(1489); + if (lookahead == 'V') ADVANCE(1029); + END_STATE(); + case 503: + if (lookahead == 'S') ADVANCE(1707); + END_STATE(); + case 504: + if (lookahead == 'S') ADVANCE(2048); + END_STATE(); + case 505: + if (lookahead == 'S') ADVANCE(1734); + END_STATE(); + case 506: + if (lookahead == 'T') ADVANCE(741); + END_STATE(); + case 507: + if (lookahead == 'T') ADVANCE(382); + END_STATE(); + case 508: + if (lookahead == 'T') ADVANCE(1206); + END_STATE(); + case 509: + if (lookahead == 'T') ADVANCE(1187); + END_STATE(); + case 510: + if (lookahead == 'T') ADVANCE(1026); + if (lookahead == 'V') ADVANCE(1054); + END_STATE(); + case 511: + if (lookahead == 'T') ADVANCE(1888); + END_STATE(); + case 512: + if (lookahead == 'U') ADVANCE(490); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 513: + if (lookahead == 'V') ADVANCE(1073); + END_STATE(); + case 514: + if (lookahead == 'V') ADVANCE(1059); + END_STATE(); + case 515: + if (lookahead == 'W') ADVANCE(1261); + END_STATE(); + case 516: + if (lookahead == '[') ADVANCE(2231); + END_STATE(); + case 517: + if (lookahead == 'a') ADVANCE(799); + if (lookahead == 'b') ADVANCE(1736); + if (lookahead == 'c') ADVANCE(360); + if (lookahead == 'e') ADVANCE(1385); + if (lookahead == 'f') ADVANCE(314); + if (lookahead == 'g') ADVANCE(1798); + if (lookahead == 'l') ADVANCE(924); + if (lookahead == 'm') ADVANCE(189); + if (lookahead == 'n') ADVANCE(872); + if (lookahead == 'o') ADVANCE(1125); + if (lookahead == 'p') ADVANCE(345); + if (lookahead == 'r') ADVANCE(1232); + if (lookahead == 's') ADVANCE(784); + if (lookahead == 't') ADVANCE(1279); + if (lookahead == 'u') ADVANCE(1451); + if (lookahead == 'w') ADVANCE(820); + END_STATE(); + case 518: + if (lookahead == 'a') ADVANCE(799); + if (lookahead == 'c') ADVANCE(276); + if (lookahead == 'e') ADVANCE(748); + if (lookahead == 'f') ADVANCE(2154); + if (lookahead == 'g') ADVANCE(1798); + if (lookahead == 'i') ADVANCE(274); + if (lookahead == 'j') ADVANCE(1391); + if (lookahead == 'm') ADVANCE(526); + if (lookahead == 'n') ADVANCE(228); + if (lookahead == 'o') ADVANCE(745); + if (lookahead == 'p') ADVANCE(1797); + if (lookahead == 'q') ADVANCE(2053); + if (lookahead == 's') ADVANCE(777); + if (lookahead == 't') ADVANCE(281); + if (lookahead == 'u') ADVANCE(1334); + END_STATE(); + case 519: + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'e') ADVANCE(826); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'r') ADVANCE(922); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 'u') ADVANCE(1462); + END_STATE(); + case 520: + if (lookahead == 'a') ADVANCE(144); + END_STATE(); + case 521: + if (lookahead == 'a') ADVANCE(314); + END_STATE(); + case 522: + if (lookahead == 'a') ADVANCE(1726); + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(144); + if (lookahead == 'i') ADVANCE(1456); + if (lookahead == 'q') ADVANCE(706); + if (lookahead == 't') ADVANCE(1808); + END_STATE(); + case 523: + if (lookahead == 'a') ADVANCE(1726); + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(144); + if (lookahead == 'q') ADVANCE(706); + END_STATE(); + case 524: + if (lookahead == 'a') ADVANCE(810); + if (lookahead == 'c') ADVANCE(549); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(894); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(743); + if (lookahead == 'i') ADVANCE(1741); + if (lookahead == 'l') ADVANCE(2043); + if (lookahead == 'o') ADVANCE(1439); + if (lookahead == 'r') ADVANCE(580); + if (lookahead == 's') ADVANCE(787); + if (lookahead == 't') ADVANCE(863); + if (lookahead == 'u') ADVANCE(911); + if (lookahead == 'w') ADVANCE(820); + if (lookahead == 'y') ADVANCE(1382); + END_STATE(); + case 525: + if (lookahead == 'a') ADVANCE(2100); + END_STATE(); + case 526: + if (lookahead == 'a') ADVANCE(770); + if (lookahead == 'o') ADVANCE(1083); + if (lookahead == 'p') ADVANCE(912); + END_STATE(); + case 527: + if (lookahead == 'a') ADVANCE(1399); + if (lookahead == 'e') ADVANCE(1712); + if (lookahead == 'i') ADVANCE(870); + if (lookahead == 't') ADVANCE(248); + END_STATE(); + case 528: + if (lookahead == 'a') ADVANCE(355); + END_STATE(); + case 529: + if (lookahead == 'a') ADVANCE(765); + END_STATE(); + case 530: + if (lookahead == 'a') ADVANCE(765); + if (lookahead == 'e') ADVANCE(1118); + if (lookahead == 'i') ADVANCE(832); + END_STATE(); + case 531: + if (lookahead == 'a') ADVANCE(765); + if (lookahead == 'e') ADVANCE(1118); + if (lookahead == 'i') ADVANCE(831); + END_STATE(); + case 532: + if (lookahead == 'a') ADVANCE(765); + if (lookahead == 'p') ADVANCE(1972); + END_STATE(); + case 533: + if (lookahead == 'a') ADVANCE(765); + if (lookahead == 'p') ADVANCE(1980); + if (lookahead == 's') ADVANCE(1677); + END_STATE(); + case 534: + if (lookahead == 'a') ADVANCE(1737); + END_STATE(); + case 535: + if (lookahead == 'a') ADVANCE(1737); + if (lookahead == 'e') ADVANCE(1785); + if (lookahead == 'l') ADVANCE(2052); + END_STATE(); + case 536: + if (lookahead == 'a') ADVANCE(1737); + if (lookahead == 'f') ADVANCE(144); + if (lookahead == 'l') ADVANCE(2052); + END_STATE(); + case 537: + if (lookahead == 'a') ADVANCE(1737); + if (lookahead == 'r') ADVANCE(615); + END_STATE(); + case 538: + if (lookahead == 'a') ADVANCE(801); + if (lookahead == 'b') ADVANCE(1759); + if (lookahead == 'c') ADVANCE(1257); + if (lookahead == 'd') ADVANCE(739); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(1798); + if (lookahead == 'm') ADVANCE(529); + if (lookahead == 'n') ADVANCE(882); + if (lookahead == 'o') ADVANCE(1125); + if (lookahead == 'p') ADVANCE(400); + if (lookahead == 'r') ADVANCE(1247); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 't') ADVANCE(1305); + if (lookahead == 'u') ADVANCE(1451); + END_STATE(); + case 539: + if (lookahead == 'a') ADVANCE(1503); + END_STATE(); + case 540: + if (lookahead == 'a') ADVANCE(341); + END_STATE(); + case 541: + if (lookahead == 'a') ADVANCE(1862); + if (lookahead == 'b') ADVANCE(1791); + if (lookahead == 'c') ADVANCE(600); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(1440); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(954); + if (lookahead == 'i') ADVANCE(1428); + if (lookahead == 'o') ADVANCE(945); + if (lookahead == 'p') ADVANCE(1807); + if (lookahead == 'r') ADVANCE(652); + if (lookahead == 's') ADVANCE(756); + if (lookahead == 'w') ADVANCE(1214); + END_STATE(); + case 542: + if (lookahead == 'a') ADVANCE(1513); + if (lookahead == 'b') ADVANCE(1791); + if (lookahead == 'n') ADVANCE(1116); + if (lookahead == 'o') ADVANCE(1713); + if (lookahead == 'p') ADVANCE(536); + if (lookahead == 't') ADVANCE(1291); + if (lookahead == 'w') ADVANCE(584); + if (lookahead == 'z') ADVANCE(256); + END_STATE(); + case 543: + if (lookahead == 'a') ADVANCE(1513); + if (lookahead == 'b') ADVANCE(1791); + if (lookahead == 'p') ADVANCE(536); + if (lookahead == 't') ADVANCE(1291); + END_STATE(); + case 544: + if (lookahead == 'a') ADVANCE(1945); + END_STATE(); + case 545: + if (lookahead == 'a') ADVANCE(1945); + if (lookahead == 'l') ADVANCE(1239); + if (lookahead == 't') ADVANCE(1519); + END_STATE(); + case 546: + if (lookahead == 'a') ADVANCE(854); + if (lookahead == 'f') ADVANCE(1094); + END_STATE(); + case 547: + if (lookahead == 'a') ADVANCE(821); + if (lookahead == 'k') ADVANCE(136); + if (lookahead == 'o') ADVANCE(814); + END_STATE(); + case 548: + if (lookahead == 'a') ADVANCE(231); + END_STATE(); + case 549: + if (lookahead == 'a') ADVANCE(1689); + if (lookahead == 'e') ADVANCE(893); + if (lookahead == 'i') ADVANCE(1804); + if (lookahead == 'u') ADVANCE(1697); + END_STATE(); + case 550: + if (lookahead == 'a') ADVANCE(905); + END_STATE(); + case 551: + if (lookahead == 'a') ADVANCE(322); + END_STATE(); + case 552: + if (lookahead == 'a') ADVANCE(2098); + END_STATE(); + case 553: + if (lookahead == 'a') ADVANCE(761); + if (lookahead == 'o') ADVANCE(2113); + END_STATE(); + case 554: + if (lookahead == 'a') ADVANCE(1665); + if (lookahead == 'e') ADVANCE(908); + if (lookahead == 'o') ADVANCE(1526); + if (lookahead == 'u') ADVANCE(1664); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 555: + if (lookahead == 'a') ADVANCE(329); + END_STATE(); + case 556: + if (lookahead == 'a') ADVANCE(760); + if (lookahead == 'c') ADVANCE(1278); + if (lookahead == 'e') ADVANCE(293); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(741); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 'u') ADVANCE(747); + END_STATE(); + case 557: + if (lookahead == 'a') ADVANCE(1787); + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(1210); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'l') ADVANCE(2047); + if (lookahead == 'o') ADVANCE(1275); + if (lookahead == 'r') ADVANCE(249); + if (lookahead == 's') ADVANCE(774); + END_STATE(); + case 558: + if (lookahead == 'a') ADVANCE(1688); + END_STATE(); + case 559: + if (lookahead == 'a') ADVANCE(1700); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(1721); + if (lookahead == 'l') ADVANCE(959); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 560: + if (lookahead == 'a') ADVANCE(1664); + END_STATE(); + case 561: + if (lookahead == 'a') ADVANCE(1664); + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'e') ADVANCE(889); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(1543); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 'u') ADVANCE(144); + END_STATE(); + case 562: + if (lookahead == 'a') ADVANCE(1664); + if (lookahead == 'i') ADVANCE(1804); + if (lookahead == 'u') ADVANCE(1664); + END_STATE(); + case 563: + if (lookahead == 'a') ADVANCE(1664); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 564: + if (lookahead == 'a') ADVANCE(1664); + if (lookahead == 'u') ADVANCE(1664); + END_STATE(); + case 565: + if (lookahead == 'a') ADVANCE(1107); + END_STATE(); + case 566: + if (lookahead == 'a') ADVANCE(1447); + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'e') ADVANCE(1477); + if (lookahead == 'f') ADVANCE(1272); + if (lookahead == 'i') ADVANCE(1391); + if (lookahead == 'j') ADVANCE(1391); + if (lookahead == 'l') ADVANCE(545); + if (lookahead == 'n') ADVANCE(1577); + if (lookahead == 'o') ADVANCE(1668); + if (lookahead == 'p') ADVANCE(655); + if (lookahead == 'r') ADVANCE(553); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 567: + if (lookahead == 'a') ADVANCE(1911); + END_STATE(); + case 568: + if (lookahead == 'a') ADVANCE(1911); + if (lookahead == 'b') ADVANCE(1425); + if (lookahead == 'i') ADVANCE(2095); + if (lookahead == 'o') ADVANCE(1945); + if (lookahead == 's') ADVANCE(1627); + END_STATE(); + case 569: + if (lookahead == 'a') ADVANCE(1326); + END_STATE(); + case 570: + if (lookahead == 'a') ADVANCE(1914); + END_STATE(); + case 571: + if (lookahead == 'a') ADVANCE(1756); + END_STATE(); + case 572: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'b') ADVANCE(1791); + if (lookahead == 'r') ADVANCE(605); + END_STATE(); + case 573: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'b') ADVANCE(1425); + if (lookahead == 'h') ADVANCE(534); + END_STATE(); + case 574: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'c') ADVANCE(1221); + if (lookahead == 'i') ADVANCE(1525); + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 575: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'c') ADVANCE(1636); + if (lookahead == 'h') ADVANCE(636); + if (lookahead == 'm') ADVANCE(144); + if (lookahead == 't') ADVANCE(1772); + END_STATE(); + case 576: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'h') ADVANCE(534); + END_STATE(); + case 577: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'h') ADVANCE(534); + if (lookahead == 'm') ADVANCE(144); + END_STATE(); + case 578: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'm') ADVANCE(283); + END_STATE(); + case 579: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'm') ADVANCE(1987); + if (lookahead == 'o') ADVANCE(1329); + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 'r') ADVANCE(712); + END_STATE(); + case 580: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'o') ADVANCE(1916); + END_STATE(); + case 581: + if (lookahead == 'a') ADVANCE(1756); + if (lookahead == 'r') ADVANCE(1737); + if (lookahead == 't') ADVANCE(666); + END_STATE(); + case 582: + if (lookahead == 'a') ADVANCE(1454); + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'g') ADVANCE(648); + if (lookahead == 's') ADVANCE(1254); + if (lookahead == 'v') ADVANCE(275); + END_STATE(); + case 583: + if (lookahead == 'a') ADVANCE(2136); + END_STATE(); + case 584: + if (lookahead == 'a') ADVANCE(1901); + if (lookahead == 'b') ADVANCE(534); + END_STATE(); + case 585: + if (lookahead == 'a') ADVANCE(1524); + END_STATE(); + case 586: + if (lookahead == 'a') ADVANCE(1984); + END_STATE(); + case 587: + if (lookahead == 'a') ADVANCE(1345); + END_STATE(); + case 588: + if (lookahead == 'a') ADVANCE(1743); + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'e') ADVANCE(1744); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(1224); + if (lookahead == 'i') ADVANCE(335); + if (lookahead == 'l') ADVANCE(604); + if (lookahead == 'm') ADVANCE(144); + if (lookahead == 'o') ADVANCE(1285); + if (lookahead == 'r') ADVANCE(160); + if (lookahead == 's') ADVANCE(774); + if (lookahead == 'u') ADVANCE(1523); + END_STATE(); + case 589: + if (lookahead == 'a') ADVANCE(1978); + if (lookahead == 'e') ADVANCE(1925); + if (lookahead == 'o') ADVANCE(329); + END_STATE(); + case 590: + if (lookahead == 'a') ADVANCE(1169); + END_STATE(); + case 591: + if (lookahead == 'a') ADVANCE(1343); + END_STATE(); + case 592: + if (lookahead == 'a') ADVANCE(1368); + if (lookahead == 'l') ADVANCE(1259); + if (lookahead == 's') ADVANCE(2072); + END_STATE(); + case 593: + if (lookahead == 'a') ADVANCE(1791); + END_STATE(); + case 594: + if (lookahead == 'a') ADVANCE(1904); + END_STATE(); + case 595: + if (lookahead == 'a') ADVANCE(1491); + END_STATE(); + case 596: + if (lookahead == 'a') ADVANCE(749); + END_STATE(); + case 597: + if (lookahead == 'a') ADVANCE(1525); + END_STATE(); + case 598: + if (lookahead == 'a') ADVANCE(1790); + if (lookahead == 'e') ADVANCE(909); + if (lookahead == 'u') ADVANCE(705); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 599: + if (lookahead == 'a') ADVANCE(1790); + if (lookahead == 'e') ADVANCE(893); + if (lookahead == 'i') ADVANCE(1804); + if (lookahead == 'o') ADVANCE(1553); + END_STATE(); + case 600: + if (lookahead == 'a') ADVANCE(1790); + if (lookahead == 'e') ADVANCE(908); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 601: + if (lookahead == 'a') ADVANCE(1790); + if (lookahead == 'i') ADVANCE(1767); + if (lookahead == 'o') ADVANCE(1375); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 602: + if (lookahead == 'a') ADVANCE(1790); + if (lookahead == 'i') ADVANCE(1767); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 603: + if (lookahead == 'a') ADVANCE(1790); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 604: + if (lookahead == 'a') ADVANCE(1497); + if (lookahead == 'u') ADVANCE(1895); + END_STATE(); + case 605: + if (lookahead == 'a') ADVANCE(763); + if (lookahead == 'k') ADVANCE(917); + END_STATE(); + case 606: + if (lookahead == 'a') ADVANCE(1686); + if (lookahead == 'u') ADVANCE(1686); + END_STATE(); + case 607: + if (lookahead == 'a') ADVANCE(874); + END_STATE(); + case 608: + if (lookahead == 'a') ADVANCE(1362); + END_STATE(); + case 609: + if (lookahead == 'a') ADVANCE(1362); + if (lookahead == 'i') ADVANCE(1407); + END_STATE(); + case 610: + if (lookahead == 'a') ADVANCE(1746); + END_STATE(); + case 611: + if (lookahead == 'a') ADVANCE(1746); + if (lookahead == 'b') ADVANCE(1376); + END_STATE(); + case 612: + if (lookahead == 'a') ADVANCE(1381); + END_STATE(); + case 613: + if (lookahead == 'a') ADVANCE(1381); + if (lookahead == 'e') ADVANCE(1901); + if (lookahead == 'i') ADVANCE(2097); + END_STATE(); + case 614: + if (lookahead == 'a') ADVANCE(1781); + if (lookahead == 'l') ADVANCE(2052); + if (lookahead == 's') ADVANCE(1217); + END_STATE(); + case 615: + if (lookahead == 'a') ADVANCE(764); + END_STATE(); + case 616: + if (lookahead == 'a') ADVANCE(1776); + if (lookahead == 'b') ADVANCE(1376); + END_STATE(); + case 617: + if (lookahead == 'a') ADVANCE(1776); + if (lookahead == 'o') ADVANCE(341); + END_STATE(); + case 618: + if (lookahead == 'a') ADVANCE(1708); + END_STATE(); + case 619: + if (lookahead == 'a') ADVANCE(849); + END_STATE(); + case 620: + if (lookahead == 'a') ADVANCE(1774); + END_STATE(); + case 621: + if (lookahead == 'a') ADVANCE(1374); + END_STATE(); + case 622: + if (lookahead == 'a') ADVANCE(1766); + if (lookahead == 'o') ADVANCE(1441); + if (lookahead == 'r') ADVANCE(226); + END_STATE(); + case 623: + if (lookahead == 'a') ADVANCE(1372); + END_STATE(); + case 624: + if (lookahead == 'a') ADVANCE(1761); + if (lookahead == 'p') ADVANCE(1660); + END_STATE(); + case 625: + if (lookahead == 'a') ADVANCE(1747); + if (lookahead == 'r') ADVANCE(696); + END_STATE(); + case 626: + if (lookahead == 'a') ADVANCE(1352); + END_STATE(); + case 627: + if (lookahead == 'a') ADVANCE(1760); + END_STATE(); + case 628: + if (lookahead == 'a') ADVANCE(1360); + END_STATE(); + case 629: + if (lookahead == 'a') ADVANCE(1347); + END_STATE(); + case 630: + if (lookahead == 'a') ADVANCE(1353); + END_STATE(); + case 631: + if (lookahead == 'a') ADVANCE(1348); + END_STATE(); + case 632: + if (lookahead == 'a') ADVANCE(1814); + END_STATE(); + case 633: + if (lookahead == 'a') ADVANCE(1366); + END_STATE(); + case 634: + if (lookahead == 'a') ADVANCE(1354); + END_STATE(); + case 635: + if (lookahead == 'a') ADVANCE(1735); + END_STATE(); + case 636: + if (lookahead == 'a') ADVANCE(1764); + END_STATE(); + case 637: + if (lookahead == 'a') ADVANCE(1740); + END_STATE(); + case 638: + if (lookahead == 'a') ADVANCE(1818); + END_STATE(); + case 639: + if (lookahead == 'a') ADVANCE(1762); + END_STATE(); + case 640: + if (lookahead == 'a') ADVANCE(2002); + END_STATE(); + case 641: + if (lookahead == 'a') ADVANCE(1829); + END_STATE(); + case 642: + if (lookahead == 'a') ADVANCE(1802); + END_STATE(); + case 643: + if (lookahead == 'a') ADVANCE(1793); + END_STATE(); + case 644: + if (lookahead == 'a') ADVANCE(1799); + END_STATE(); + case 645: + if (lookahead == 'a') ADVANCE(805); + if (lookahead == 'b') ADVANCE(1726); + if (lookahead == 'c') ADVANCE(349); + if (lookahead == 'd') ADVANCE(1614); + if (lookahead == 'e') ADVANCE(394); + if (lookahead == 'f') ADVANCE(1757); + if (lookahead == 'h') ADVANCE(203); + if (lookahead == 'i') ADVANCE(1146); + if (lookahead == 'l') ADVANCE(571); + if (lookahead == 'm') ADVANCE(527); + if (lookahead == 'o') ADVANCE(1091); + if (lookahead == 'p') ADVANCE(550); + if (lookahead == 'q') ADVANCE(793); + if (lookahead == 'r') ADVANCE(571); + if (lookahead == 's') ADVANCE(768); + if (lookahead == 't') ADVANCE(625); + if (lookahead == 'u') ADVANCE(708); + if (lookahead == 'w') ADVANCE(395); + if (lookahead == 'z') ADVANCE(1385); + END_STATE(); + case 646: + if (lookahead == 'a') ADVANCE(805); + if (lookahead == 'c') ADVANCE(603); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(1050); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(741); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 'w') ADVANCE(1325); + END_STATE(); + case 647: + if (lookahead == 'a') ADVANCE(1397); + END_STATE(); + case 648: + if (lookahead == 'a') ADVANCE(1466); + END_STATE(); + case 649: + if (lookahead == 'a') ADVANCE(1923); + END_STATE(); + case 650: + if (lookahead == 'a') ADVANCE(1692); + if (lookahead == 'c') ADVANCE(968); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(1801); + if (lookahead == 'h') ADVANCE(741); + if (lookahead == 'j') ADVANCE(741); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 651: + if (lookahead == 'a') ADVANCE(843); + END_STATE(); + case 652: + if (lookahead == 'a') ADVANCE(890); + if (lookahead == 'i') ADVANCE(697); + if (lookahead == 'p') ADVANCE(952); + END_STATE(); + case 653: + if (lookahead == 'a') ADVANCE(1850); + END_STATE(); + case 654: + if (lookahead == 'a') ADVANCE(1999); + END_STATE(); + case 655: + if (lookahead == 'a') ADVANCE(1817); + END_STATE(); + case 656: + if (lookahead == 'a') ADVANCE(1699); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(1722); + if (lookahead == 'g') ADVANCE(1965); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 657: + if (lookahead == 'a') ADVANCE(1699); + if (lookahead == 'e') ADVANCE(1725); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 658: + if (lookahead == 'a') ADVANCE(1699); + if (lookahead == 's') ADVANCE(1242); + END_STATE(); + case 659: + if (lookahead == 'a') ADVANCE(829); + END_STATE(); + case 660: + if (lookahead == 'a') ADVANCE(1851); + if (lookahead == 'l') ADVANCE(2127); + if (lookahead == 'r') ADVANCE(921); + if (lookahead == 'v') ADVANCE(1070); + END_STATE(); + case 661: + if (lookahead == 'a') ADVANCE(1536); + END_STATE(); + case 662: + if (lookahead == 'a') ADVANCE(1387); + if (lookahead == 'k') ADVANCE(341); + END_STATE(); + case 663: + if (lookahead == 'a') ADVANCE(2009); + END_STATE(); + case 664: + if (lookahead == 'a') ADVANCE(1863); + if (lookahead == 'l') ADVANCE(1402); + if (lookahead == 'r') ADVANCE(813); + END_STATE(); + case 665: + if (lookahead == 'a') ADVANCE(1813); + END_STATE(); + case 666: + if (lookahead == 'a') ADVANCE(1250); + END_STATE(); + case 667: + if (lookahead == 'a') ADVANCE(1250); + if (lookahead == 'i') ADVANCE(1587); + END_STATE(); + case 668: + if (lookahead == 'a') ADVANCE(2063); + END_STATE(); + case 669: + if (lookahead == 'a') ADVANCE(1409); + END_STATE(); + case 670: + if (lookahead == 'a') ADVANCE(1854); + END_STATE(); + case 671: + if (lookahead == 'a') ADVANCE(2065); + END_STATE(); + case 672: + if (lookahead == 'a') ADVANCE(2017); + END_STATE(); + case 673: + if (lookahead == 'a') ADVANCE(1537); + END_STATE(); + case 674: + if (lookahead == 'a') ADVANCE(1856); + END_STATE(); + case 675: + if (lookahead == 'a') ADVANCE(1394); + END_STATE(); + case 676: + if (lookahead == 'a') ADVANCE(1846); + END_STATE(); + case 677: + if (lookahead == 'a') ADVANCE(1805); + END_STATE(); + case 678: + if (lookahead == 'a') ADVANCE(1852); + END_STATE(); + case 679: + if (lookahead == 'a') ADVANCE(1853); + END_STATE(); + case 680: + if (lookahead == 'a') ADVANCE(1444); + END_STATE(); + case 681: + if (lookahead == 'a') ADVANCE(1868); + END_STATE(); + case 682: + if (lookahead == 'a') ADVANCE(1868); + if (lookahead == 'd') ADVANCE(1646); + if (lookahead == 'h') ADVANCE(638); + if (lookahead == 'l') ADVANCE(2052); + if (lookahead == 's') ADVANCE(1219); + if (lookahead == 'u') ADVANCE(1718); + END_STATE(); + case 683: + if (lookahead == 'a') ADVANCE(1868); + if (lookahead == 'd') ADVANCE(1662); + if (lookahead == 'h') ADVANCE(638); + END_STATE(); + case 684: + if (lookahead == 'a') ADVANCE(1868); + if (lookahead == 'r') ADVANCE(1304); + END_STATE(); + case 685: + if (lookahead == 'a') ADVANCE(1879); + END_STATE(); + case 686: + if (lookahead == 'a') ADVANCE(2025); + END_STATE(); + case 687: + if (lookahead == 'a') ADVANCE(1873); + if (lookahead == 'h') ADVANCE(698); + if (lookahead == 'l') ADVANCE(1062); + if (lookahead == 'r') ADVANCE(1319); + if (lookahead == 's') ADVANCE(1729); + if (lookahead == 't') ADVANCE(1207); + END_STATE(); + case 688: + if (lookahead == 'a') ADVANCE(1873); + if (lookahead == 'h') ADVANCE(698); + if (lookahead == 'l') ADVANCE(1082); + if (lookahead == 'r') ADVANCE(1313); + if (lookahead == 't') ADVANCE(1207); + END_STATE(); + case 689: + if (lookahead == 'a') ADVANCE(2027); + END_STATE(); + case 690: + if (lookahead == 'a') ADVANCE(1874); + END_STATE(); + case 691: + if (lookahead == 'a') ADVANCE(1874); + if (lookahead == 'd') ADVANCE(2159); + END_STATE(); + case 692: + if (lookahead == 'a') ADVANCE(1875); + END_STATE(); + case 693: + if (lookahead == 'a') ADVANCE(1875); + if (lookahead == 'h') ADVANCE(700); + END_STATE(); + case 694: + if (lookahead == 'a') ADVANCE(2029); + END_STATE(); + case 695: + if (lookahead == 'a') ADVANCE(1876); + if (lookahead == 'h') ADVANCE(700); + if (lookahead == 's') ADVANCE(1729); + END_STATE(); + case 696: + if (lookahead == 'a') ADVANCE(1309); + if (lookahead == 'n') ADVANCE(1890); + END_STATE(); + case 697: + if (lookahead == 'a') ADVANCE(1558); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'm') ADVANCE(1302); + if (lookahead == 'p') ADVANCE(1435); + if (lookahead == 's') ADVANCE(705); + if (lookahead == 't') ADVANCE(1287); + END_STATE(); + case 698: + if (lookahead == 'a') ADVANCE(1881); + END_STATE(); + case 699: + if (lookahead == 'a') ADVANCE(1565); + END_STATE(); + case 700: + if (lookahead == 'a') ADVANCE(1883); + END_STATE(); + case 701: + if (lookahead == 'a') ADVANCE(1566); + END_STATE(); + case 702: + if (lookahead == 'a') ADVANCE(1568); + END_STATE(); + case 703: + if (lookahead == 'a') ADVANCE(1569); + END_STATE(); + case 704: + if (lookahead == 'a') ADVANCE(1570); + END_STATE(); + case 705: + if (lookahead == 'b') ADVANCE(144); + END_STATE(); + case 706: + if (lookahead == 'b') ADVANCE(144); + if (lookahead == 'u') ADVANCE(1576); + END_STATE(); + case 707: + if (lookahead == 'b') ADVANCE(327); + if (lookahead == 'c') ADVANCE(851); + if (lookahead == 'm') ADVANCE(144); + if (lookahead == 'p') ADVANCE(257); + END_STATE(); + case 708: + if (lookahead == 'b') ADVANCE(161); + if (lookahead == 'c') ADVANCE(762); + if (lookahead == 'm') ADVANCE(144); + if (lookahead == 'n') ADVANCE(1107); + if (lookahead == 'p') ADVANCE(2164); + END_STATE(); + case 709: + if (lookahead == 'b') ADVANCE(347); + if (lookahead == 'c') ADVANCE(818); + if (lookahead == 'p') ADVANCE(347); + END_STATE(); + case 710: + if (lookahead == 'b') ADVANCE(231); + END_STATE(); + case 711: + if (lookahead == 'b') ADVANCE(239); + if (lookahead == 'p') ADVANCE(239); + END_STATE(); + case 712: + if (lookahead == 'b') ADVANCE(534); + END_STATE(); + case 713: + if (lookahead == 'b') ADVANCE(534); + if (lookahead == 'g') ADVANCE(956); + END_STATE(); + case 714: + if (lookahead == 'b') ADVANCE(534); + if (lookahead == 'm') ADVANCE(144); + END_STATE(); + case 715: + if (lookahead == 'b') ADVANCE(534); + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 716: + if (lookahead == 'b') ADVANCE(534); + if (lookahead == 't') ADVANCE(279); + if (lookahead == 'y') ADVANCE(508); + END_STATE(); + case 717: + if (lookahead == 'b') ADVANCE(1341); + if (lookahead == 'c') ADVANCE(1635); + END_STATE(); + case 718: + if (lookahead == 'b') ADVANCE(237); + if (lookahead == 'p') ADVANCE(237); + END_STATE(); + case 719: + if (lookahead == 'b') ADVANCE(2081); + if (lookahead == 'p') ADVANCE(1202); + END_STATE(); + case 720: + if (lookahead == 'b') ADVANCE(878); + END_STATE(); + case 721: + if (lookahead == 'b') ADVANCE(1791); + END_STATE(); + case 722: + if (lookahead == 'b') ADVANCE(913); + if (lookahead == 'p') ADVANCE(913); + END_STATE(); + case 723: + if (lookahead == 'b') ADVANCE(1355); + if (lookahead == 'c') ADVANCE(2082); + if (lookahead == 'n') ADVANCE(1107); + if (lookahead == 'p') ADVANCE(164); + if (lookahead == 't') ADVANCE(2071); + END_STATE(); + case 724: + if (lookahead == 'b') ADVANCE(1896); + END_STATE(); + case 725: + if (lookahead == 'b') ADVANCE(521); + END_STATE(); + case 726: + if (lookahead == 'b') ADVANCE(1065); + END_STATE(); + case 727: + if (lookahead == 'b') ADVANCE(1498); + if (lookahead == 'p') ADVANCE(1498); + END_STATE(); + case 728: + if (lookahead == 'b') ADVANCE(1940); + if (lookahead == 'c') ADVANCE(850); + if (lookahead == 'p') ADVANCE(1017); + END_STATE(); + case 729: + if (lookahead == 'b') ADVANCE(1940); + if (lookahead == 'p') ADVANCE(1017); + END_STATE(); + case 730: + if (lookahead == 'b') ADVANCE(1411); + END_STATE(); + case 731: + if (lookahead == 'b') ADVANCE(1414); + END_STATE(); + case 732: + if (lookahead == 'b') ADVANCE(1857); + END_STATE(); + case 733: + if (lookahead == 'b') ADVANCE(1417); + END_STATE(); + case 734: + if (lookahead == 'b') ADVANCE(1418); + END_STATE(); + case 735: + if (lookahead == 'b') ADVANCE(1432); + END_STATE(); + case 736: + if (lookahead == 'b') ADVANCE(644); + END_STATE(); + case 737: + if (lookahead == 'b') ADVANCE(1423); + END_STATE(); + case 738: + if (lookahead == 'b') ADVANCE(1424); + END_STATE(); + case 739: + if (lookahead == 'b') ADVANCE(1425); + END_STATE(); + case 740: + if (lookahead == 'b') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1943); + END_STATE(); + case 741: + if (lookahead == 'c') ADVANCE(2125); + END_STATE(); + case 742: + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'e') ADVANCE(2100); + END_STATE(); + case 743: + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'e') ADVANCE(823); + if (lookahead == 'i') ADVANCE(144); + END_STATE(); + case 744: + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(1436); + if (lookahead == 'o') ADVANCE(1669); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 745: + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'g') ADVANCE(1616); + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 't') ADVANCE(520); + END_STATE(); + case 746: + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'i') ADVANCE(1140); + END_STATE(); + case 747: + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'm') ADVANCE(283); + END_STATE(); + case 748: + if (lookahead == 'c') ADVANCE(2125); + if (lookahead == 'x') ADVANCE(752); + END_STATE(); + case 749: + if (lookahead == 'c') ADVANCE(144); + END_STATE(); + case 750: + if (lookahead == 'c') ADVANCE(144); + if (lookahead == 'i') ADVANCE(1737); + END_STATE(); + case 751: + if (lookahead == 'c') ADVANCE(314); + if (lookahead == 'l') ADVANCE(918); + if (lookahead == 'p') ADVANCE(325); + if (lookahead == 'r') ADVANCE(1338); + END_STATE(); + case 752: + if (lookahead == 'c') ADVANCE(283); + END_STATE(); + case 753: + if (lookahead == 'c') ADVANCE(562); + if (lookahead == 'd') ADVANCE(2003); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(392); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'l') ADVANCE(392); + if (lookahead == 'm') ADVANCE(560); + if (lookahead == 'n') ADVANCE(1246); + if (lookahead == 'o') ADVANCE(865); + if (lookahead == 'r') ADVANCE(392); + if (lookahead == 's') ADVANCE(782); + if (lookahead == 'u') ADVANCE(1696); + if (lookahead == 'v') ADVANCE(990); + if (lookahead == 'w') ADVANCE(953); + END_STATE(); + case 754: + if (lookahead == 'c') ADVANCE(562); + if (lookahead == 'o') ADVANCE(866); + if (lookahead == 's') ADVANCE(1731); + if (lookahead == 't') ADVANCE(1887); + if (lookahead == 'u') ADVANCE(1695); + if (lookahead == 'v') ADVANCE(990); + if (lookahead == 'w') ADVANCE(953); + END_STATE(); + case 755: + if (lookahead == 'c') ADVANCE(1635); + END_STATE(); + case 756: + if (lookahead == 'c') ADVANCE(2157); + if (lookahead == 'h') ADVANCE(741); + if (lookahead == 't') ADVANCE(1808); + END_STATE(); + case 757: + if (lookahead == 'c') ADVANCE(2157); + if (lookahead == 'o') ADVANCE(1345); + if (lookahead == 't') ADVANCE(1808); + END_STATE(); + case 758: + if (lookahead == 'c') ADVANCE(227); + if (lookahead == 'h') ADVANCE(1653); + if (lookahead == 'i') ADVANCE(1467); + if (lookahead == 'm') ADVANCE(1209); + if (lookahead == 'p') ADVANCE(534); + if (lookahead == 'q') ADVANCE(1924); + if (lookahead == 'u') ADVANCE(709); + END_STATE(); + case 759: + if (lookahead == 'c') ADVANCE(919); + if (lookahead == 'd') ADVANCE(1256); + if (lookahead == 'e') ADVANCE(1468); + if (lookahead == 'n') ADVANCE(1117); + if (lookahead == 'q') ADVANCE(2041); + if (lookahead == 'r') ADVANCE(1750); + if (lookahead == 't') ADVANCE(667); + END_STATE(); + case 760: + if (lookahead == 'c') ADVANCE(2050); + END_STATE(); + case 761: + if (lookahead == 'c') ADVANCE(138); + if (lookahead == 's') ADVANCE(1345); + END_STATE(); + case 762: + if (lookahead == 'c') ADVANCE(206); + END_STATE(); + case 763: + if (lookahead == 'c') ADVANCE(2152); + END_STATE(); + case 764: + if (lookahead == 'c') ADVANCE(914); + END_STATE(); + case 765: + if (lookahead == 'c') ADVANCE(1737); + END_STATE(); + case 766: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'i') ADVANCE(1450); + END_STATE(); + case 767: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'e') ADVANCE(1459); + if (lookahead == 'i') ADVANCE(1460); + if (lookahead == 'o') ADVANCE(1349); + END_STATE(); + case 768: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'e') ADVANCE(1993); + if (lookahead == 'm') ADVANCE(1299); + if (lookahead == 't') ADVANCE(637); + END_STATE(); + case 769: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'e') ADVANCE(1770); + END_STATE(); + case 770: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(915); + if (lookahead == 't') ADVANCE(1170); + END_STATE(); + case 771: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'g') ADVANCE(1269); + END_STATE(); + case 772: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(144); + END_STATE(); + case 773: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(144); + if (lookahead == 't') ADVANCE(1808); + END_STATE(); + case 774: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(144); + END_STATE(); + case 775: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(1450); + END_STATE(); + case 776: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(1455); + END_STATE(); + case 777: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(1496); + END_STATE(); + case 778: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'l') ADVANCE(567); + if (lookahead == 't') ADVANCE(1808); + END_STATE(); + case 779: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'l') ADVANCE(1107); + END_STATE(); + case 780: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'l') ADVANCE(594); + END_STATE(); + case 781: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'l') ADVANCE(594); + if (lookahead == 'o') ADVANCE(1345); + END_STATE(); + case 782: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'q') ADVANCE(834); + END_STATE(); + case 783: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 's') ADVANCE(1252); + END_STATE(); + case 784: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 't') ADVANCE(144); + if (lookahead == 'y') ADVANCE(1475); + END_STATE(); + case 785: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 't') ADVANCE(1705); + END_STATE(); + case 786: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 't') ADVANCE(1808); + END_STATE(); + case 787: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'u') ADVANCE(718); + END_STATE(); + case 788: + if (lookahead == 'c') ADVANCE(1737); + if (lookahead == 'u') ADVANCE(727); + END_STATE(); + case 789: + if (lookahead == 'c') ADVANCE(520); + if (lookahead == 'l') ADVANCE(899); + if (lookahead == 'q') ADVANCE(2061); + if (lookahead == 's') ADVANCE(1170); + END_STATE(); + case 790: + if (lookahead == 'c') ADVANCE(520); + if (lookahead == 'q') ADVANCE(2061); + if (lookahead == 'r') ADVANCE(900); + if (lookahead == 's') ADVANCE(1170); + END_STATE(); + case 791: + if (lookahead == 'c') ADVANCE(1337); + if (lookahead == 'r') ADVANCE(2096); + END_STATE(); + case 792: + if (lookahead == 'c') ADVANCE(1503); + if (lookahead == 'i') ADVANCE(1574); + if (lookahead == 'm') ADVANCE(1250); + if (lookahead == 'p') ADVANCE(144); + if (lookahead == 't') ADVANCE(1006); + END_STATE(); + case 793: + if (lookahead == 'c') ADVANCE(606); + if (lookahead == 's') ADVANCE(2042); + if (lookahead == 'u') ADVANCE(205); + END_STATE(); + case 794: + if (lookahead == 'c') ADVANCE(1945); + END_STATE(); + case 795: + if (lookahead == 'c') ADVANCE(1328); + if (lookahead == 'r') ADVANCE(2099); + END_STATE(); + case 796: + if (lookahead == 'c') ADVANCE(1277); + if (lookahead == 's') ADVANCE(1244); + if (lookahead == 'u') ADVANCE(613); + if (lookahead == 'v') ADVANCE(1712); + END_STATE(); + case 797: + if (lookahead == 'c') ADVANCE(1276); + if (lookahead == 'e') ADVANCE(873); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'p') ADVANCE(144); + if (lookahead == 'r') ADVANCE(253); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 798: + if (lookahead == 'c') ADVANCE(1276); + if (lookahead == 'e') ADVANCE(902); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 799: + if (lookahead == 'c') ADVANCE(2049); + END_STATE(); + case 800: + if (lookahead == 'c') ADVANCE(2049); + if (lookahead == 'r') ADVANCE(1737); + END_STATE(); + case 801: + if (lookahead == 'c') ADVANCE(2049); + if (lookahead == 'r') ADVANCE(1773); + END_STATE(); + case 802: + if (lookahead == 'c') ADVANCE(2049); + if (lookahead == 's') ADVANCE(1945); + END_STATE(); + case 803: + if (lookahead == 'c') ADVANCE(2049); + if (lookahead == 's') ADVANCE(1999); + END_STATE(); + case 804: + if (lookahead == 'c') ADVANCE(1664); + if (lookahead == 'd') ADVANCE(1737); + END_STATE(); + case 805: + if (lookahead == 'c') ADVANCE(2082); + END_STATE(); + case 806: + if (lookahead == 'c') ADVANCE(2082); + if (lookahead == 'e') ADVANCE(1468); + if (lookahead == 'g') ADVANCE(1855); + if (lookahead == 'm') ADVANCE(720); + if (lookahead == 'n') ADVANCE(1115); + if (lookahead == 'p') ADVANCE(144); + if (lookahead == 'q') ADVANCE(2041); + if (lookahead == 'r') ADVANCE(1748); + if (lookahead == 't') ADVANCE(207); + END_STATE(); + case 807: + if (lookahead == 'c') ADVANCE(2082); + if (lookahead == 'm') ADVANCE(720); + if (lookahead == 'n') ADVANCE(1107); + if (lookahead == 'p') ADVANCE(1434); + if (lookahead == 'r') ADVANCE(1737); + END_STATE(); + case 808: + if (lookahead == 'c') ADVANCE(2082); + if (lookahead == 'm') ADVANCE(1478); + if (lookahead == 'p') ADVANCE(144); + END_STATE(); + case 809: + if (lookahead == 'c') ADVANCE(2082); + if (lookahead == 'n') ADVANCE(1107); + if (lookahead == 'r') ADVANCE(1783); + END_STATE(); + case 810: + if (lookahead == 'c') ADVANCE(2082); + if (lookahead == 'p') ADVANCE(200); + if (lookahead == 'r') ADVANCE(949); + END_STATE(); + case 811: + if (lookahead == 'c') ADVANCE(2082); + if (lookahead == 'p') ADVANCE(278); + if (lookahead == 'y') ADVANCE(1395); + END_STATE(); + case 812: + if (lookahead == 'c') ADVANCE(976); + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 813: + if (lookahead == 'c') ADVANCE(1616); + END_STATE(); + case 814: + if (lookahead == 'c') ADVANCE(1326); + END_STATE(); + case 815: + if (lookahead == 'c') ADVANCE(1335); + END_STATE(); + case 816: + if (lookahead == 'c') ADVANCE(1335); + if (lookahead == 's') ADVANCE(950); + END_STATE(); + case 817: + if (lookahead == 'c') ADVANCE(1327); + if (lookahead == 'n') ADVANCE(503); + END_STATE(); + case 818: + if (lookahead == 'c') ADVANCE(246); + END_STATE(); + case 819: + if (lookahead == 'c') ADVANCE(1203); + END_STATE(); + case 820: + if (lookahead == 'c') ADVANCE(1596); + if (lookahead == 'i') ADVANCE(1503); + END_STATE(); + case 821: + if (lookahead == 'c') ADVANCE(1330); + if (lookahead == 'n') ADVANCE(1326); + END_STATE(); + case 822: + if (lookahead == 'c') ADVANCE(560); + END_STATE(); + case 823: + if (lookahead == 'c') ADVANCE(1331); + END_STATE(); + case 824: + if (lookahead == 'c') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1901); + if (lookahead == 'p') ADVANCE(1045); + END_STATE(); + case 825: + if (lookahead == 'c') ADVANCE(1340); + if (lookahead == 'n') ADVANCE(1910); + END_STATE(); + case 826: + if (lookahead == 'c') ADVANCE(668); + if (lookahead == 'r') ADVANCE(1528); + if (lookahead == 't') ADVANCE(520); + END_STATE(); + case 827: + if (lookahead == 'c') ADVANCE(1332); + if (lookahead == 'k') ADVANCE(2095); + END_STATE(); + case 828: + if (lookahead == 'c') ADVANCE(749); + END_STATE(); + case 829: + if (lookahead == 'c') ADVANCE(913); + END_STATE(); + case 830: + if (lookahead == 'c') ADVANCE(1184); + END_STATE(); + case 831: + if (lookahead == 'c') ADVANCE(1790); + END_STATE(); + case 832: + if (lookahead == 'c') ADVANCE(1790); + if (lookahead == 'd') ADVANCE(144); + if (lookahead == 'n') ADVANCE(2052); + END_STATE(); + case 833: + if (lookahead == 'c') ADVANCE(1910); + END_STATE(); + case 834: + if (lookahead == 'c') ADVANCE(2045); + END_STATE(); + case 835: + if (lookahead == 'c') ADVANCE(1944); + END_STATE(); + case 836: + if (lookahead == 'c') ADVANCE(587); + END_STATE(); + case 837: + if (lookahead == 'c') ADVANCE(1220); + END_STATE(); + case 838: + if (lookahead == 'c') ADVANCE(1220); + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 839: + if (lookahead == 'c') ADVANCE(1053); + END_STATE(); + case 840: + if (lookahead == 'c') ADVANCE(1779); + if (lookahead == 'd') ADVANCE(196); + if (lookahead == 'n') ADVANCE(2060); + END_STATE(); + case 841: + if (lookahead == 'c') ADVANCE(2031); + END_STATE(); + case 842: + if (lookahead == 'c') ADVANCE(2018); + END_STATE(); + case 843: + if (lookahead == 'c') ADVANCE(1049); + END_STATE(); + case 844: + if (lookahead == 'c') ADVANCE(2002); + END_STATE(); + case 845: + if (lookahead == 'c') ADVANCE(1278); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'm') ADVANCE(586); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(769); + if (lookahead == 'u') ADVANCE(1333); + END_STATE(); + case 846: + if (lookahead == 'c') ADVANCE(1278); + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(769); + if (lookahead == 'u') ADVANCE(1333); + END_STATE(); + case 847: + if (lookahead == 'c') ADVANCE(1637); + if (lookahead == 'i') ADVANCE(1512); + if (lookahead == 't') ADVANCE(1772); + END_STATE(); + case 848: + if (lookahead == 'c') ADVANCE(1637); + if (lookahead == 't') ADVANCE(1772); + END_STATE(); + case 849: + if (lookahead == 'c') ADVANCE(1339); + END_STATE(); + case 850: + if (lookahead == 'c') ADVANCE(1019); + END_STATE(); + case 851: + if (lookahead == 'c') ADVANCE(1019); + if (lookahead == 'h') ADVANCE(509); + END_STATE(); + case 852: + if (lookahead == 'c') ADVANCE(626); + END_STATE(); + case 853: + if (lookahead == 'c') ADVANCE(1410); + END_STATE(); + case 854: + if (lookahead == 'c') ADVANCE(1834); + if (lookahead == 'm') ADVANCE(1622); + END_STATE(); + case 855: + if (lookahead == 'c') ADVANCE(630); + END_STATE(); + case 856: + if (lookahead == 'c') ADVANCE(2017); + END_STATE(); + case 857: + if (lookahead == 'c') ADVANCE(1605); + if (lookahead == 'e') ADVANCE(1663); + if (lookahead == 'p') ADVANCE(1807); + if (lookahead == 's') ADVANCE(1262); + END_STATE(); + case 858: + if (lookahead == 'c') ADVANCE(1394); + END_STATE(); + case 859: + if (lookahead == 'c') ADVANCE(633); + END_STATE(); + case 860: + if (lookahead == 'c') ADVANCE(671); + if (lookahead == 'm') ADVANCE(1698); + if (lookahead == 'p') ADVANCE(1905); + if (lookahead == 'r') ADVANCE(1551); + if (lookahead == 't') ADVANCE(2148); + END_STATE(); + case 861: + if (lookahead == 'c') ADVANCE(678); + END_STATE(); + case 862: + if (lookahead == 'c') ADVANCE(1077); + END_STATE(); + case 863: + if (lookahead == 'd') ADVANCE(1585); + END_STATE(); + case 864: + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'i') ADVANCE(1427); + if (lookahead == 'r') ADVANCE(1216); + END_STATE(); + case 865: + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'p') ADVANCE(1084); + if (lookahead == 't') ADVANCE(1287); + END_STATE(); + case 866: + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'p') ADVANCE(1435); + if (lookahead == 't') ADVANCE(1291); + END_STATE(); + case 867: + if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'r') ADVANCE(1216); + END_STATE(); + case 868: + if (lookahead == 'd') ADVANCE(144); + END_STATE(); + case 869: + if (lookahead == 'd') ADVANCE(144); + if (lookahead == 'f') ADVANCE(592); + if (lookahead == 'p') ADVANCE(331); + END_STATE(); + case 870: + if (lookahead == 'd') ADVANCE(144); + if (lookahead == 'l') ADVANCE(913); + END_STATE(); + case 871: + if (lookahead == 'd') ADVANCE(144); + if (lookahead == 'u') ADVANCE(283); + END_STATE(); + case 872: + if (lookahead == 'd') ADVANCE(201); + if (lookahead == 'g') ADVANCE(238); + END_STATE(); + case 873: + if (lookahead == 'd') ADVANCE(713); + if (lookahead == 'i') ADVANCE(1008); + END_STATE(); + case 874: + if (lookahead == 'd') ADVANCE(1431); + END_STATE(); + case 875: + if (lookahead == 'd') ADVANCE(502); + END_STATE(); + case 876: + if (lookahead == 'd') ADVANCE(478); + END_STATE(); + case 877: + if (lookahead == 'd') ADVANCE(468); + END_STATE(); + case 878: + if (lookahead == 'd') ADVANCE(520); + END_STATE(); + case 879: + if (lookahead == 'd') ADVANCE(741); + if (lookahead == 'r') ADVANCE(225); + END_STATE(); + case 880: + if (lookahead == 'd') ADVANCE(270); + END_STATE(); + case 881: + if (lookahead == 'd') ADVANCE(186); + END_STATE(); + case 882: + if (lookahead == 'd') ADVANCE(992); + if (lookahead == 'i') ADVANCE(1620); + END_STATE(); + case 883: + if (lookahead == 'd') ADVANCE(237); + END_STATE(); + case 884: + if (lookahead == 'd') ADVANCE(567); + END_STATE(); + case 885: + if (lookahead == 'd') ADVANCE(585); + END_STATE(); + case 886: + if (lookahead == 'd') ADVANCE(328); + END_STATE(); + case 887: + if (lookahead == 'd') ADVANCE(250); + END_STATE(); + case 888: + if (lookahead == 'd') ADVANCE(1253); + END_STATE(); + case 889: + if (lookahead == 'd') ADVANCE(1253); + if (lookahead == 'l') ADVANCE(1443); + END_STATE(); + case 890: + if (lookahead == 'd') ADVANCE(913); + END_STATE(); + case 891: + if (lookahead == 'd') ADVANCE(2057); + END_STATE(); + case 892: + if (lookahead == 'd') ADVANCE(2057); + if (lookahead == 'p') ADVANCE(1659); + END_STATE(); + case 893: + if (lookahead == 'd') ADVANCE(1211); + END_STATE(); + case 894: + if (lookahead == 'd') ADVANCE(1211); + if (lookahead == 'm') ADVANCE(1698); + if (lookahead == 'n') ADVANCE(332); + END_STATE(); + case 895: + if (lookahead == 'd') ADVANCE(1936); + if (lookahead == 'u') ADVANCE(1180); + END_STATE(); + case 896: + if (lookahead == 'd') ADVANCE(927); + END_STATE(); + case 897: + if (lookahead == 'd') ADVANCE(1899); + END_STATE(); + case 898: + if (lookahead == 'd') ADVANCE(1992); + END_STATE(); + case 899: + if (lookahead == 'd') ADVANCE(1180); + END_STATE(); + case 900: + if (lookahead == 'd') ADVANCE(1180); + if (lookahead == 'u') ADVANCE(1936); + END_STATE(); + case 901: + if (lookahead == 'd') ADVANCE(1286); + if (lookahead == 'n') ADVANCE(2021); + END_STATE(); + case 902: + if (lookahead == 'd') ADVANCE(1132); + END_STATE(); + case 903: + if (lookahead == 'd') ADVANCE(1578); + if (lookahead == 'u') ADVANCE(1664); + END_STATE(); + case 904: + if (lookahead == 'd') ADVANCE(997); + if (lookahead == 'p') ADVANCE(1083); + END_STATE(); + case 905: + if (lookahead == 'd') ADVANCE(993); + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 906: + if (lookahead == 'd') ADVANCE(1010); + END_STATE(); + case 907: + if (lookahead == 'd') ADVANCE(1601); + END_STATE(); + case 908: + if (lookahead == 'd') ADVANCE(1250); + END_STATE(); + case 909: + if (lookahead == 'd') ADVANCE(1250); + if (lookahead == 'i') ADVANCE(1345); + END_STATE(); + case 910: + if (lookahead == 'd') ADVANCE(1012); + END_STATE(); + case 911: + if (lookahead == 'd') ADVANCE(632); + if (lookahead == 'e') ADVANCE(1680); + if (lookahead == 'l') ADVANCE(653); + if (lookahead == 'p') ADVANCE(216); + if (lookahead == 'r') ADVANCE(660); + if (lookahead == 'v') ADVANCE(990); + if (lookahead == 'w') ADVANCE(912); + END_STATE(); + case 912: + if (lookahead == 'e') ADVANCE(868); + END_STATE(); + case 913: + if (lookahead == 'e') ADVANCE(144); + END_STATE(); + case 914: + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'k') ADVANCE(948); + END_STATE(); + case 915: + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'l') ADVANCE(1259); + if (lookahead == 'p') ADVANCE(639); + END_STATE(); + case 916: + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'r') ADVANCE(716); + END_STATE(); + case 917: + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 's') ADVANCE(1351); + END_STATE(); + case 918: + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 't') ADVANCE(255); + END_STATE(); + case 919: + if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'u') ADVANCE(1994); + END_STATE(); + case 920: + if (lookahead == 'e') ADVANCE(428); + END_STATE(); + case 921: + if (lookahead == 'e') ADVANCE(293); + END_STATE(); + case 922: + if (lookahead == 'e') ADVANCE(2100); + END_STATE(); + case 923: + if (lookahead == 'e') ADVANCE(2100); + if (lookahead == 'v') ADVANCE(725); + END_STATE(); + case 924: + if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 'p') ADVANCE(1173); + END_STATE(); + case 925: + if (lookahead == 'e') ADVANCE(313); + if (lookahead == 'o') ADVANCE(1945); + END_STATE(); + case 926: + if (lookahead == 'e') ADVANCE(215); + if (lookahead == 'l') ADVANCE(1402); + if (lookahead == 'r') ADVANCE(715); + END_STATE(); + case 927: + if (lookahead == 'e') ADVANCE(168); + END_STATE(); + case 928: + if (lookahead == 'e') ADVANCE(147); + END_STATE(); + case 929: + if (lookahead == 'e') ADVANCE(140); + END_STATE(); + case 930: + if (lookahead == 'e') ADVANCE(429); + END_STATE(); + case 931: + if (lookahead == 'e') ADVANCE(427); + END_STATE(); + case 932: + if (lookahead == 'e') ADVANCE(174); + END_STATE(); + case 933: + if (lookahead == 'e') ADVANCE(691); + END_STATE(); + case 934: + if (lookahead == 'e') ADVANCE(1481); + END_STATE(); + case 935: + if (lookahead == 'e') ADVANCE(148); + END_STATE(); + case 936: + if (lookahead == 'e') ADVANCE(455); + END_STATE(); + case 937: + if (lookahead == 'e') ADVANCE(486); + END_STATE(); + case 938: + if (lookahead == 'e') ADVANCE(235); + END_STATE(); + case 939: + if (lookahead == 'e') ADVANCE(422); + END_STATE(); + case 940: + if (lookahead == 'e') ADVANCE(514); + END_STATE(); + case 941: + if (lookahead == 'e') ADVANCE(151); + END_STATE(); + case 942: + if (lookahead == 'e') ADVANCE(233); + END_STATE(); + case 943: + if (lookahead == 'e') ADVANCE(496); + END_STATE(); + case 944: + if (lookahead == 'e') ADVANCE(1737); + END_STATE(); + case 945: + if (lookahead == 'e') ADVANCE(520); + if (lookahead == 'p') ADVANCE(209); + if (lookahead == 's') ADVANCE(520); + END_STATE(); + case 946: + if (lookahead == 'e') ADVANCE(1503); + END_STATE(); + case 947: + if (lookahead == 'e') ADVANCE(1823); + if (lookahead == 'i') ADVANCE(817); + END_STATE(); + case 948: + if (lookahead == 'e') ADVANCE(1945); + END_STATE(); + case 949: + if (lookahead == 'e') ADVANCE(1945); + if (lookahead == 'o') ADVANCE(1491); + END_STATE(); + case 950: + if (lookahead == 'e') ADVANCE(425); + END_STATE(); + case 951: + if (lookahead == 'e') ADVANCE(416); + END_STATE(); + case 952: + if (lookahead == 'e') ADVANCE(2141); + END_STATE(); + case 953: + if (lookahead == 'e') ADVANCE(902); + END_STATE(); + case 954: + if (lookahead == 'e') ADVANCE(1839); + if (lookahead == 'i') ADVANCE(825); + if (lookahead == 'k') ADVANCE(563); + if (lookahead == 'o') ADVANCE(1739); + END_STATE(); + case 955: + if (lookahead == 'e') ADVANCE(1093); + END_STATE(); + case 956: + if (lookahead == 'e') ADVANCE(309); + END_STATE(); + case 957: + if (lookahead == 'e') ADVANCE(457); + END_STATE(); + case 958: + if (lookahead == 'e') ADVANCE(504); + END_STATE(); + case 959: + if (lookahead == 'e') ADVANCE(1916); + END_STATE(); + case 960: + if (lookahead == 'e') ADVANCE(1719); + END_STATE(); + case 961: + if (lookahead == 'e') ADVANCE(903); + END_STATE(); + case 962: + if (lookahead == 'e') ADVANCE(534); + END_STATE(); + case 963: + if (lookahead == 'e') ADVANCE(534); + if (lookahead == 'i') ADVANCE(1450); + END_STATE(); + case 964: + if (lookahead == 'e') ADVANCE(446); + END_STATE(); + case 965: + if (lookahead == 'e') ADVANCE(1097); + END_STATE(); + case 966: + if (lookahead == 'e') ADVANCE(318); + END_STATE(); + case 967: + if (lookahead == 'e') ADVANCE(908); + if (lookahead == 'i') ADVANCE(1804); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 968: + if (lookahead == 'e') ADVANCE(908); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 969: + if (lookahead == 'e') ADVANCE(2137); + END_STATE(); + case 970: + if (lookahead == 'e') ADVANCE(401); + END_STATE(); + case 971: + if (lookahead == 'e') ADVANCE(1723); + if (lookahead == 'v') ADVANCE(990); + if (lookahead == 'w') ADVANCE(953); + END_STATE(); + case 972: + if (lookahead == 'e') ADVANCE(426); + END_STATE(); + case 973: + if (lookahead == 'e') ADVANCE(1088); + END_STATE(); + case 974: + if (lookahead == 'e') ADVANCE(321); + END_STATE(); + case 975: + if (lookahead == 'e') ADVANCE(1725); + END_STATE(); + case 976: + if (lookahead == 'e') ADVANCE(1326); + END_STATE(); + case 977: + if (lookahead == 'e') ADVANCE(1504); + END_STATE(); + case 978: + if (lookahead == 'e') ADVANCE(1724); + END_STATE(); + case 979: + if (lookahead == 'e') ADVANCE(1966); + END_STATE(); + case 980: + if (lookahead == 'e') ADVANCE(1890); + END_STATE(); + case 981: + if (lookahead == 'e') ADVANCE(1901); + END_STATE(); + case 982: + if (lookahead == 'e') ADVANCE(1984); + END_STATE(); + case 983: + if (lookahead == 'e') ADVANCE(1345); + END_STATE(); + case 984: + if (lookahead == 'e') ADVANCE(875); + END_STATE(); + case 985: + if (lookahead == 'e') ADVANCE(686); + END_STATE(); + case 986: + if (lookahead == 'e') ADVANCE(877); + END_STATE(); + case 987: + if (lookahead == 'e') ADVANCE(1491); + END_STATE(); + case 988: + if (lookahead == 'e') ADVANCE(749); + END_STATE(); + case 989: + if (lookahead == 'e') ADVANCE(880); + END_STATE(); + case 990: + if (lookahead == 'e') ADVANCE(913); + END_STATE(); + case 991: + if (lookahead == 'e') ADVANCE(897); + END_STATE(); + case 992: + if (lookahead == 'e') ADVANCE(1745); + END_STATE(); + case 993: + if (lookahead == 'e') ADVANCE(1896); + END_STATE(); + case 994: + if (lookahead == 'e') ADVANCE(1663); + if (lookahead == 'k') ADVANCE(558); + if (lookahead == 'n') ADVANCE(1631); + if (lookahead == 'p') ADVANCE(1179); + if (lookahead == 'r') ADVANCE(273); + if (lookahead == 's') ADVANCE(1225); + if (lookahead == 't') ADVANCE(1196); + END_STATE(); + case 995: + if (lookahead == 'e') ADVANCE(1663); + if (lookahead == 'p') ADVANCE(1178); + END_STATE(); + case 996: + if (lookahead == 'e') ADVANCE(1907); + END_STATE(); + case 997: + if (lookahead == 'e') ADVANCE(1381); + END_STATE(); + case 998: + if (lookahead == 'e') ADVANCE(856); + END_STATE(); + case 999: + if (lookahead == 'e') ADVANCE(1545); + END_STATE(); + case 1000: + if (lookahead == 'e') ADVANCE(1938); + END_STATE(); + case 1001: + if (lookahead == 'e') ADVANCE(1990); + END_STATE(); + case 1002: + if (lookahead == 'e') ADVANCE(1909); + END_STATE(); + case 1003: + if (lookahead == 'e') ADVANCE(1968); + END_STATE(); + case 1004: + if (lookahead == 'e') ADVANCE(569); + END_STATE(); + case 1005: + if (lookahead == 'e') ADVANCE(928); + END_STATE(); + case 1006: + if (lookahead == 'e') ADVANCE(1517); + END_STATE(); + case 1007: + if (lookahead == 'e') ADVANCE(1408); + END_STATE(); + case 1008: + if (lookahead == 'e') ADVANCE(1785); + END_STATE(); + case 1009: + if (lookahead == 'e') ADVANCE(607); + END_STATE(); + case 1010: + if (lookahead == 'e') ADVANCE(1899); + END_STATE(); + case 1011: + if (lookahead == 'e') ADVANCE(591); + END_STATE(); + case 1012: + if (lookahead == 'e') ADVANCE(1900); + END_STATE(); + case 1013: + if (lookahead == 'e') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1450); + if (lookahead == 'u') ADVANCE(2149); + END_STATE(); + case 1014: + if (lookahead == 'e') ADVANCE(1751); + END_STATE(); + case 1015: + if (lookahead == 'e') ADVANCE(1858); + END_STATE(); + case 1016: + if (lookahead == 'e') ADVANCE(1991); + END_STATE(); + case 1017: + if (lookahead == 'e') ADVANCE(1822); + END_STATE(); + case 1018: + if (lookahead == 'e') ADVANCE(1998); + END_STATE(); + case 1019: + if (lookahead == 'e') ADVANCE(991); + END_STATE(); + case 1020: + if (lookahead == 'e') ADVANCE(935); + if (lookahead == 'r') ADVANCE(1322); + END_STATE(); + case 1021: + if (lookahead == 'e') ADVANCE(1738); + END_STATE(); + case 1022: + if (lookahead == 'e') ADVANCE(1832); + if (lookahead == 'i') ADVANCE(1503); + END_STATE(); + case 1023: + if (lookahead == 'e') ADVANCE(1782); + END_STATE(); + case 1024: + if (lookahead == 'e') ADVANCE(1860); + END_STATE(); + case 1025: + if (lookahead == 'e') ADVANCE(1880); + END_STATE(); + case 1026: + if (lookahead == 'e') ADVANCE(940); + END_STATE(); + case 1027: + if (lookahead == 'e') ADVANCE(1795); + END_STATE(); + case 1028: + if (lookahead == 'e') ADVANCE(1067); + END_STATE(); + case 1029: + if (lookahead == 'e') ADVANCE(1792); + END_STATE(); + case 1030: + if (lookahead == 'e') ADVANCE(1755); + END_STATE(); + case 1031: + if (lookahead == 'e') ADVANCE(1800); + END_STATE(); + case 1032: + if (lookahead == 'e') ADVANCE(1758); + END_STATE(); + case 1033: + if (lookahead == 'e') ADVANCE(1098); + END_STATE(); + case 1034: + if (lookahead == 'e') ADVANCE(2102); + if (lookahead == 'i') ADVANCE(1145); + END_STATE(); + case 1035: + if (lookahead == 'e') ADVANCE(1415); + END_STATE(); + case 1036: + if (lookahead == 'e') ADVANCE(513); + END_STATE(); + case 1037: + if (lookahead == 'e') ADVANCE(885); + END_STATE(); + case 1038: + if (lookahead == 'e') ADVANCE(665); + if (lookahead == 'w') ADVANCE(665); + END_STATE(); + case 1039: + if (lookahead == 'e') ADVANCE(1095); + END_STATE(); + case 1040: + if (lookahead == 'e') ADVANCE(1095); + if (lookahead == 'l') ADVANCE(144); + if (lookahead == 't') ADVANCE(341); + END_STATE(); + case 1041: + if (lookahead == 'e') ADVANCE(987); + END_STATE(); + case 1042: + if (lookahead == 'e') ADVANCE(1927); + END_STATE(); + case 1043: + if (lookahead == 'e') ADVANCE(888); + END_STATE(); + case 1044: + if (lookahead == 'e') ADVANCE(1480); + END_STATE(); + case 1045: + if (lookahead == 'e') ADVANCE(841); + if (lookahead == 'o') ADVANCE(1561); + END_STATE(); + case 1046: + if (lookahead == 'e') ADVANCE(654); + END_STATE(); + case 1047: + if (lookahead == 'e') ADVANCE(1716); + END_STATE(); + case 1048: + if (lookahead == 'e') ADVANCE(1820); + END_STATE(); + case 1049: + if (lookahead == 'e') ADVANCE(2013); + END_STATE(); + case 1050: + if (lookahead == 'e') ADVANCE(2013); + if (lookahead == 't') ADVANCE(520); + END_STATE(); + case 1051: + if (lookahead == 'e') ADVANCE(736); + END_STATE(); + case 1052: + if (lookahead == 'e') ADVANCE(1099); + END_STATE(); + case 1053: + if (lookahead == 'e') ADVANCE(906); + END_STATE(); + case 1054: + if (lookahead == 'e') ADVANCE(842); + END_STATE(); + case 1055: + if (lookahead == 'e') ADVANCE(1917); + END_STATE(); + case 1056: + if (lookahead == 'e') ADVANCE(1703); + END_STATE(); + case 1057: + if (lookahead == 'e') ADVANCE(1100); + END_STATE(); + case 1058: + if (lookahead == 'e') ADVANCE(1819); + if (lookahead == 'n') ADVANCE(451); + END_STATE(); + case 1059: + if (lookahead == 'e') ADVANCE(844); + END_STATE(); + case 1060: + if (lookahead == 'e') ADVANCE(1571); + END_STATE(); + case 1061: + if (lookahead == 'e') ADVANCE(1101); + END_STATE(); + case 1062: + if (lookahead == 'e') ADVANCE(1102); + END_STATE(); + case 1063: + if (lookahead == 'e') ADVANCE(1554); + END_STATE(); + case 1064: + if (lookahead == 'e') ADVANCE(1103); + if (lookahead == 'o') ADVANCE(1531); + END_STATE(); + case 1065: + if (lookahead == 'e') ADVANCE(1838); + END_STATE(); + case 1066: + if (lookahead == 'e') ADVANCE(1096); + END_STATE(); + case 1067: + if (lookahead == 'e') ADVANCE(2032); + END_STATE(); + case 1068: + if (lookahead == 'e') ADVANCE(1885); + END_STATE(); + case 1069: + if (lookahead == 'e') ADVANCE(1539); + END_STATE(); + case 1070: + if (lookahead == 'e') ADVANCE(690); + END_STATE(); + case 1071: + if (lookahead == 'e') ADVANCE(1449); + END_STATE(); + case 1072: + if (lookahead == 'e') ADVANCE(1147); + END_STATE(); + case 1073: + if (lookahead == 'e') ADVANCE(1882); + END_STATE(); + case 1074: + if (lookahead == 'e') ADVANCE(2019); + END_STATE(); + case 1075: + if (lookahead == 'e') ADVANCE(1298); + END_STATE(); + case 1076: + if (lookahead == 'e') ADVANCE(1865); + END_STATE(); + case 1077: + if (lookahead == 'e') ADVANCE(910); + END_STATE(); + case 1078: + if (lookahead == 'e') ADVANCE(689); + END_STATE(); + case 1079: + if (lookahead == 'e') ADVANCE(1514); + END_STATE(); + case 1080: + if (lookahead == 'e') ADVANCE(694); + END_STATE(); + case 1081: + if (lookahead == 'e') ADVANCE(862); + END_STATE(); + case 1082: + if (lookahead == 'e') ADVANCE(1106); + END_STATE(); + case 1083: + if (lookahead == 'f') ADVANCE(144); + END_STATE(); + case 1084: + if (lookahead == 'f') ADVANCE(144); + if (lookahead == 'l') ADVANCE(2052); + END_STATE(); + case 1085: + if (lookahead == 'f') ADVANCE(144); + if (lookahead == 'r') ADVANCE(1611); + END_STATE(); + case 1086: + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 's') ADVANCE(765); + END_STATE(); + case 1087: + if (lookahead == 'f') ADVANCE(1737); + if (lookahead == 'i') ADVANCE(1503); + if (lookahead == 'o') ADVANCE(1667); + if (lookahead == 'p') ADVANCE(1807); + if (lookahead == 's') ADVANCE(765); + if (lookahead == 'u') ADVANCE(589); + END_STATE(); + case 1088: + if (lookahead == 'f') ADVANCE(1945); + END_STATE(); + case 1089: + if (lookahead == 'f') ADVANCE(1094); + END_STATE(); + case 1090: + if (lookahead == 'f') ADVANCE(1948); + if (lookahead == 's') ADVANCE(1893); + END_STATE(); + case 1091: + if (lookahead == 'f') ADVANCE(1971); + if (lookahead == 'l') ADVANCE(212); + if (lookahead == 'p') ADVANCE(1083); + END_STATE(); + case 1092: + if (lookahead == 'f') ADVANCE(1912); + if (lookahead == 'p') ADVANCE(1170); + END_STATE(); + case 1093: + if (lookahead == 'f') ADVANCE(2036); + END_STATE(); + case 1094: + if (lookahead == 'f') ADVANCE(1068); + END_STATE(); + case 1095: + if (lookahead == 'f') ADVANCE(1975); + END_STATE(); + case 1096: + if (lookahead == 'f') ADVANCE(1990); + END_STATE(); + case 1097: + if (lookahead == 'f') ADVANCE(1655); + END_STATE(); + case 1098: + if (lookahead == 'f') ADVANCE(1982); + if (lookahead == 's') ADVANCE(1898); + END_STATE(); + case 1099: + if (lookahead == 'f') ADVANCE(1957); + END_STATE(); + case 1100: + if (lookahead == 'f') ADVANCE(1959); + END_STATE(); + case 1101: + if (lookahead == 'f') ADVANCE(1977); + END_STATE(); + case 1102: + if (lookahead == 'f') ADVANCE(2015); + END_STATE(); + case 1103: + if (lookahead == 'f') ADVANCE(1963); + END_STATE(); + case 1104: + if (lookahead == 'f') ADVANCE(1615); + END_STATE(); + case 1105: + if (lookahead == 'f') ADVANCE(1254); + END_STATE(); + case 1106: + if (lookahead == 'f') ADVANCE(2035); + END_STATE(); + case 1107: + if (lookahead == 'g') ADVANCE(144); + END_STATE(); + case 1108: + if (lookahead == 'g') ADVANCE(144); + if (lookahead == 's') ADVANCE(1664); + END_STATE(); + case 1109: + if (lookahead == 'g') ADVANCE(144); + if (lookahead == 't') ADVANCE(341); + END_STATE(); + case 1110: + if (lookahead == 'g') ADVANCE(754); + END_STATE(); + case 1111: + if (lookahead == 'g') ADVANCE(229); + END_STATE(); + case 1112: + if (lookahead == 'g') ADVANCE(229); + if (lookahead == 'i') ADVANCE(1503); + END_STATE(); + case 1113: + if (lookahead == 'g') ADVANCE(484); + END_STATE(); + case 1114: + if (lookahead == 'g') ADVANCE(503); + END_STATE(); + case 1115: + if (lookahead == 'g') ADVANCE(232); + END_STATE(); + case 1116: + if (lookahead == 'g') ADVANCE(1448); + END_STATE(); + case 1117: + if (lookahead == 'g') ADVANCE(356); + END_STATE(); + case 1118: + if (lookahead == 'g') ADVANCE(520); + END_STATE(); + case 1119: + if (lookahead == 'g') ADVANCE(1186); + END_STATE(); + case 1120: + if (lookahead == 'g') ADVANCE(2140); + END_STATE(); + case 1121: + if (lookahead == 'g') ADVANCE(1133); + if (lookahead == 'l') ADVANCE(982); + if (lookahead == 'r') ADVANCE(1737); + if (lookahead == 's') ADVANCE(1174); + END_STATE(); + case 1122: + if (lookahead == 'g') ADVANCE(1133); + if (lookahead == 'r') ADVANCE(1737); + END_STATE(); + case 1123: + if (lookahead == 'g') ADVANCE(1133); + if (lookahead == 'r') ADVANCE(1737); + if (lookahead == 's') ADVANCE(1176); + END_STATE(); + case 1124: + if (lookahead == 'g') ADVANCE(1577); + END_STATE(); + case 1125: + if (lookahead == 'g') ADVANCE(1616); + if (lookahead == 'p') ADVANCE(1083); + END_STATE(); + case 1126: + if (lookahead == 'g') ADVANCE(1616); + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 't') ADVANCE(520); + END_STATE(); + case 1127: + if (lookahead == 'g') ADVANCE(1457); + END_STATE(); + case 1128: + if (lookahead == 'g') ADVANCE(1175); + END_STATE(); + case 1129: + if (lookahead == 'g') ADVANCE(1345); + if (lookahead == 'i') ADVANCE(1377); + if (lookahead == 'l') ADVANCE(1107); + if (lookahead == 'r') ADVANCE(1318); + END_STATE(); + case 1130: + if (lookahead == 'g') ADVANCE(663); + if (lookahead == 's') ADVANCE(2001); + if (lookahead == 'w') ADVANCE(482); + END_STATE(); + case 1131: + if (lookahead == 'g') ADVANCE(1491); + END_STATE(); + case 1132: + if (lookahead == 'g') ADVANCE(913); + END_STATE(); + case 1133: + if (lookahead == 'g') ADVANCE(944); + END_STATE(); + case 1134: + if (lookahead == 'g') ADVANCE(948); + END_STATE(); + case 1135: + if (lookahead == 'g') ADVANCE(1864); + END_STATE(); + case 1136: + if (lookahead == 'g') ADVANCE(1864); + if (lookahead == 'i') ADVANCE(1503); + if (lookahead == 't') ADVANCE(1645); + END_STATE(); + case 1137: + if (lookahead == 'g') ADVANCE(1762); + END_STATE(); + case 1138: + if (lookahead == 'g') ADVANCE(1189); + if (lookahead == 'n') ADVANCE(1107); + if (lookahead == 's') ADVANCE(1288); + END_STATE(); + case 1139: + if (lookahead == 'g') ADVANCE(907); + END_STATE(); + case 1140: + if (lookahead == 'g') ADVANCE(1771); + END_STATE(); + case 1141: + if (lookahead == 'g') ADVANCE(1185); + END_STATE(); + case 1142: + if (lookahead == 'g') ADVANCE(1965); + END_STATE(); + case 1143: + if (lookahead == 'g') ADVANCE(1965); + if (lookahead == 'l') ADVANCE(959); + END_STATE(); + case 1144: + if (lookahead == 'g') ADVANCE(1965); + if (lookahead == 'q') ADVANCE(1142); + END_STATE(); + case 1145: + if (lookahead == 'g') ADVANCE(1190); + END_STATE(); + case 1146: + if (lookahead == 'g') ADVANCE(1483); + if (lookahead == 'm') ADVANCE(230); + END_STATE(); + case 1147: + if (lookahead == 'g') ADVANCE(1815); + END_STATE(); + case 1148: + if (lookahead == 'g') ADVANCE(1815); + if (lookahead == 'r') ADVANCE(1932); + END_STATE(); + case 1149: + if (lookahead == 'g') ADVANCE(1191); + END_STATE(); + case 1150: + if (lookahead == 'g') ADVANCE(1193); + END_STATE(); + case 1151: + if (lookahead == 'g') ADVANCE(1194); + END_STATE(); + case 1152: + if (lookahead == 'g') ADVANCE(1195); + END_STATE(); + case 1153: + if (lookahead == 'g') ADVANCE(1394); + END_STATE(); + case 1154: + if (lookahead == 'g') ADVANCE(1197); + END_STATE(); + case 1155: + if (lookahead == 'g') ADVANCE(1027); + if (lookahead == 'r') ADVANCE(836); + END_STATE(); + case 1156: + if (lookahead == 'g') ADVANCE(1198); + END_STATE(); + case 1157: + if (lookahead == 'g') ADVANCE(1199); + END_STATE(); + case 1158: + if (lookahead == 'g') ADVANCE(1416); + END_STATE(); + case 1159: + if (lookahead == 'g') ADVANCE(1188); + END_STATE(); + case 1160: + if (lookahead == 'g') ADVANCE(1418); + END_STATE(); + case 1161: + if (lookahead == 'g') ADVANCE(1419); + END_STATE(); + case 1162: + if (lookahead == 'g') ADVANCE(1420); + END_STATE(); + case 1163: + if (lookahead == 'g') ADVANCE(1433); + END_STATE(); + case 1164: + if (lookahead == 'g') ADVANCE(1421); + END_STATE(); + case 1165: + if (lookahead == 'g') ADVANCE(1422); + END_STATE(); + case 1166: + if (lookahead == 'g') ADVANCE(483); + END_STATE(); + case 1167: + if (lookahead == 'g') ADVANCE(681); + END_STATE(); + case 1168: + if (lookahead == 'g') ADVANCE(1208); + END_STATE(); + case 1169: + if (lookahead == 'h') ADVANCE(868); + END_STATE(); + case 1170: + if (lookahead == 'h') ADVANCE(144); + END_STATE(); + case 1171: + if (lookahead == 'h') ADVANCE(283); + END_STATE(); + case 1172: + if (lookahead == 'h') ADVANCE(503); + END_STATE(); + case 1173: + if (lookahead == 'h') ADVANCE(520); + END_STATE(); + case 1174: + if (lookahead == 'h') ADVANCE(341); + END_STATE(); + case 1175: + if (lookahead == 'h') ADVANCE(1945); + END_STATE(); + case 1176: + if (lookahead == 'h') ADVANCE(2095); + END_STATE(); + case 1177: + if (lookahead == 'h') ADVANCE(741); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 1178: + if (lookahead == 'h') ADVANCE(1210); + END_STATE(); + case 1179: + if (lookahead == 'h') ADVANCE(1210); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'r') ADVANCE(1644); + END_STATE(); + case 1180: + if (lookahead == 'h') ADVANCE(534); + END_STATE(); + case 1181: + if (lookahead == 'h') ADVANCE(1664); + END_STATE(); + case 1182: + if (lookahead == 'h') ADVANCE(1326); + END_STATE(); + case 1183: + if (lookahead == 'h') ADVANCE(1326); + if (lookahead == 'r') ADVANCE(300); + END_STATE(); + case 1184: + if (lookahead == 'h') ADVANCE(913); + END_STATE(); + case 1185: + if (lookahead == 'h') ADVANCE(2036); + END_STATE(); + case 1186: + if (lookahead == 'h') ADVANCE(1952); + END_STATE(); + case 1187: + if (lookahead == 'h') ADVANCE(544); + END_STATE(); + case 1188: + if (lookahead == 'h') ADVANCE(1990); + END_STATE(); + case 1189: + if (lookahead == 'h') ADVANCE(1954); + END_STATE(); + case 1190: + if (lookahead == 'h') ADVANCE(1982); + END_STATE(); + case 1191: + if (lookahead == 'h') ADVANCE(1967); + END_STATE(); + case 1192: + if (lookahead == 'h') ADVANCE(1213); + END_STATE(); + case 1193: + if (lookahead == 'h') ADVANCE(1958); + END_STATE(); + case 1194: + if (lookahead == 'h') ADVANCE(1960); + END_STATE(); + case 1195: + if (lookahead == 'h') ADVANCE(1977); + END_STATE(); + case 1196: + if (lookahead == 'h') ADVANCE(979); + if (lookahead == 'r') ADVANCE(1321); + END_STATE(); + case 1197: + if (lookahead == 'h') ADVANCE(1962); + END_STATE(); + case 1198: + if (lookahead == 'h') ADVANCE(1964); + END_STATE(); + case 1199: + if (lookahead == 'h') ADVANCE(1961); + END_STATE(); + case 1200: + if (lookahead == 'h') ADVANCE(1055); + END_STATE(); + case 1201: + if (lookahead == 'h') ADVANCE(1247); + END_STATE(); + case 1202: + if (lookahead == 'h') ADVANCE(987); + END_STATE(); + case 1203: + if (lookahead == 'h') ADVANCE(1104); + END_STATE(); + case 1204: + if (lookahead == 'h') ADVANCE(1786); + if (lookahead == 'i') ADVANCE(1484); + if (lookahead == 'r') ADVANCE(1218); + END_STATE(); + case 1205: + if (lookahead == 'h') ADVANCE(1009); + END_STATE(); + case 1206: + if (lookahead == 'h') ADVANCE(1271); + END_STATE(); + case 1207: + if (lookahead == 'h') ADVANCE(1867); + END_STATE(); + case 1208: + if (lookahead == 'h') ADVANCE(2035); + END_STATE(); + case 1209: + if (lookahead == 'i') ADVANCE(868); + END_STATE(); + case 1210: + if (lookahead == 'i') ADVANCE(144); + END_STATE(); + case 1211: + if (lookahead == 'i') ADVANCE(283); + END_STATE(); + case 1212: + if (lookahead == 'i') ADVANCE(267); + END_STATE(); + case 1213: + if (lookahead == 'i') ADVANCE(817); + END_STATE(); + case 1214: + if (lookahead == 'i') ADVANCE(2123); + if (lookahead == 'o') ADVANCE(1205); + END_STATE(); + case 1215: + if (lookahead == 'i') ADVANCE(2139); + END_STATE(); + case 1216: + if (lookahead == 'i') ADVANCE(261); + END_STATE(); + case 1217: + if (lookahead == 'i') ADVANCE(287); + END_STATE(); + case 1218: + if (lookahead == 'i') ADVANCE(358); + END_STATE(); + case 1219: + if (lookahead == 'i') ADVANCE(272); + END_STATE(); + case 1220: + if (lookahead == 'i') ADVANCE(1737); + END_STATE(); + case 1221: + if (lookahead == 'i') ADVANCE(1737); + if (lookahead == 'r') ADVANCE(1591); + END_STATE(); + case 1222: + if (lookahead == 'i') ADVANCE(1503); + END_STATE(); + case 1223: + if (lookahead == 'i') ADVANCE(1503); + if (lookahead == 'n') ADVANCE(1945); + END_STATE(); + case 1224: + if (lookahead == 'i') ADVANCE(341); + if (lookahead == 'm') ADVANCE(1482); + if (lookahead == 'o') ADVANCE(1525); + END_STATE(); + case 1225: + if (lookahead == 'i') ADVANCE(1127); + if (lookahead == 'u') ADVANCE(740); + END_STATE(); + case 1226: + if (lookahead == 'i') ADVANCE(1378); + END_STATE(); + case 1227: + if (lookahead == 'i') ADVANCE(286); + END_STATE(); + case 1228: + if (lookahead == 'i') ADVANCE(1945); + END_STATE(); + case 1229: + if (lookahead == 'i') ADVANCE(2095); + END_STATE(); + case 1230: + if (lookahead == 'i') ADVANCE(863); + END_STATE(); + case 1231: + if (lookahead == 'i') ADVANCE(863); + if (lookahead == 'o') ADVANCE(2079); + END_STATE(); + case 1232: + if (lookahead == 'i') ADVANCE(1492); + END_STATE(); + case 1233: + if (lookahead == 'i') ADVANCE(342); + END_STATE(); + case 1234: + if (lookahead == 'i') ADVANCE(1939); + END_STATE(); + case 1235: + if (lookahead == 'i') ADVANCE(1939); + if (lookahead == 'p') ADVANCE(1619); + END_STATE(); + case 1236: + if (lookahead == 'i') ADVANCE(237); + END_STATE(); + case 1237: + if (lookahead == 'i') ADVANCE(1373); + END_STATE(); + case 1238: + if (lookahead == 'i') ADVANCE(1664); + END_STATE(); + case 1239: + if (lookahead == 'i') ADVANCE(1107); + END_STATE(); + case 1240: + if (lookahead == 'i') ADVANCE(1107); + if (lookahead == 'l') ADVANCE(1239); + END_STATE(); + case 1241: + if (lookahead == 'i') ADVANCE(1089); + END_STATE(); + case 1242: + if (lookahead == 'i') ADVANCE(1450); + END_STATE(); + case 1243: + if (lookahead == 'i') ADVANCE(1450); + if (lookahead == 'l') ADVANCE(144); + END_STATE(); + case 1244: + if (lookahead == 'i') ADVANCE(1450); + if (lookahead == 'l') ADVANCE(661); + END_STATE(); + case 1245: + if (lookahead == 'i') ADVANCE(1616); + END_STATE(); + case 1246: + if (lookahead == 'i') ADVANCE(1890); + END_STATE(); + case 1247: + if (lookahead == 'i') ADVANCE(1512); + END_STATE(); + case 1248: + if (lookahead == 'i') ADVANCE(1915); + if (lookahead == 'l') ADVANCE(1625); + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 1249: + if (lookahead == 'i') ADVANCE(1915); + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 1250: + if (lookahead == 'i') ADVANCE(1345); + END_STATE(); + case 1251: + if (lookahead == 'i') ADVANCE(1120); + END_STATE(); + case 1252: + if (lookahead == 'i') ADVANCE(1131); + END_STATE(); + case 1253: + if (lookahead == 'i') ADVANCE(2056); + END_STATE(); + case 1254: + if (lookahead == 'i') ADVANCE(1491); + END_STATE(); + case 1255: + if (lookahead == 'i') ADVANCE(1375); + END_STATE(); + case 1256: + if (lookahead == 'i') ADVANCE(749); + END_STATE(); + case 1257: + if (lookahead == 'i') ADVANCE(1767); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 1258: + if (lookahead == 'i') ADVANCE(913); + END_STATE(); + case 1259: + if (lookahead == 'i') ADVANCE(1525); + END_STATE(); + case 1260: + if (lookahead == 'i') ADVANCE(675); + END_STATE(); + case 1261: + if (lookahead == 'i') ADVANCE(898); + END_STATE(); + case 1262: + if (lookahead == 'i') ADVANCE(1469); + END_STATE(); + case 1263: + if (lookahead == 'i') ADVANCE(1167); + END_STATE(); + case 1264: + if (lookahead == 'i') ADVANCE(1811); + if (lookahead == 'l') ADVANCE(1083); + if (lookahead == 'm') ADVANCE(1266); + if (lookahead == 'r') ADVANCE(879); + END_STATE(); + case 1265: + if (lookahead == 'i') ADVANCE(1516); + END_STATE(); + case 1266: + if (lookahead == 'i') ADVANCE(1361); + END_STATE(); + case 1267: + if (lookahead == 'i') ADVANCE(980); + END_STATE(); + case 1268: + if (lookahead == 'i') ADVANCE(2051); + END_STATE(); + case 1269: + if (lookahead == 'i') ADVANCE(1556); + END_STATE(); + case 1270: + if (lookahead == 'i') ADVANCE(1549); + END_STATE(); + case 1271: + if (lookahead == 'i') ADVANCE(1494); + END_STATE(); + case 1272: + if (lookahead == 'i') ADVANCE(1391); + if (lookahead == 'l') ADVANCE(1240); + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 1273: + if (lookahead == 'i') ADVANCE(1128); + END_STATE(); + case 1274: + if (lookahead == 'i') ADVANCE(1379); + END_STATE(); + case 1275: + if (lookahead == 'i') ADVANCE(1527); + if (lookahead == 'p') ADVANCE(1083); + END_STATE(); + case 1276: + if (lookahead == 'i') ADVANCE(1804); + END_STATE(); + case 1277: + if (lookahead == 'i') ADVANCE(1804); + if (lookahead == 'o') ADVANCE(1375); + END_STATE(); + case 1278: + if (lookahead == 'i') ADVANCE(1804); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 1279: + if (lookahead == 'i') ADVANCE(1377); + END_STATE(); + case 1280: + if (lookahead == 'i') ADVANCE(732); + END_STATE(); + case 1281: + if (lookahead == 'i') ADVANCE(623); + END_STATE(); + case 1282: + if (lookahead == 'i') ADVANCE(1930); + END_STATE(); + case 1283: + if (lookahead == 'i') ADVANCE(2101); + END_STATE(); + case 1284: + if (lookahead == 'i') ADVANCE(1710); + END_STATE(); + case 1285: + if (lookahead == 'i') ADVANCE(1535); + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 'u') ADVANCE(1506); + END_STATE(); + case 1286: + if (lookahead == 'i') ADVANCE(1396); + END_STATE(); + case 1287: + if (lookahead == 'i') ADVANCE(1474); + END_STATE(); + case 1288: + if (lookahead == 'i') ADVANCE(1529); + END_STATE(); + case 1289: + if (lookahead == 'i') ADVANCE(1934); + END_STATE(); + case 1290: + if (lookahead == 'i') ADVANCE(1929); + END_STATE(); + case 1291: + if (lookahead == 'i') ADVANCE(1484); + END_STATE(); + case 1292: + if (lookahead == 'i') ADVANCE(1470); + END_STATE(); + case 1293: + if (lookahead == 'i') ADVANCE(2010); + END_STATE(); + case 1294: + if (lookahead == 'i') ADVANCE(1407); + END_STATE(); + case 1295: + if (lookahead == 'i') ADVANCE(1533); + END_STATE(); + case 1296: + if (lookahead == 'i') ADVANCE(1024); + END_STATE(); + case 1297: + if (lookahead == 'i') ADVANCE(631); + END_STATE(); + case 1298: + if (lookahead == 'i') ADVANCE(1426); + END_STATE(); + case 1299: + if (lookahead == 'i') ADVANCE(1394); + END_STATE(); + case 1300: + if (lookahead == 'i') ADVANCE(1633); + END_STATE(); + case 1301: + if (lookahead == 'i') ADVANCE(1612); + END_STATE(); + case 1302: + if (lookahead == 'i') ADVANCE(1550); + END_STATE(); + case 1303: + if (lookahead == 'i') ADVANCE(1550); + if (lookahead == 'n') ADVANCE(144); + END_STATE(); + case 1304: + if (lookahead == 'i') ADVANCE(1141); + END_STATE(); + case 1305: + if (lookahead == 'i') ADVANCE(1427); + END_STATE(); + case 1306: + if (lookahead == 'i') ADVANCE(855); + END_STATE(); + case 1307: + if (lookahead == 'i') ADVANCE(859); + END_STATE(); + case 1308: + if (lookahead == 'i') ADVANCE(733); + END_STATE(); + case 1309: + if (lookahead == 'i') ADVANCE(1149); + END_STATE(); + case 1310: + if (lookahead == 'i') ADVANCE(1150); + END_STATE(); + case 1311: + if (lookahead == 'i') ADVANCE(1151); + END_STATE(); + case 1312: + if (lookahead == 'i') ADVANCE(1152); + END_STATE(); + case 1313: + if (lookahead == 'i') ADVANCE(1154); + END_STATE(); + case 1314: + if (lookahead == 'i') ADVANCE(1156); + END_STATE(); + case 1315: + if (lookahead == 'i') ADVANCE(1157); + END_STATE(); + case 1316: + if (lookahead == 'i') ADVANCE(1159); + END_STATE(); + case 1317: + if (lookahead == 'i') ADVANCE(1878); + END_STATE(); + case 1318: + if (lookahead == 'i') ADVANCE(699); + END_STATE(); + case 1319: + if (lookahead == 'i') ADVANCE(1168); + END_STATE(); + case 1320: + if (lookahead == 'i') ADVANCE(701); + END_STATE(); + case 1321: + if (lookahead == 'i') ADVANCE(702); + END_STATE(); + case 1322: + if (lookahead == 'i') ADVANCE(703); + END_STATE(); + case 1323: + if (lookahead == 'i') ADVANCE(704); + END_STATE(); + case 1324: + if (lookahead == 'j') ADVANCE(144); + END_STATE(); + case 1325: + if (lookahead == 'j') ADVANCE(144); + if (lookahead == 'n') ADVANCE(1324); + END_STATE(); + case 1326: + if (lookahead == 'k') ADVANCE(144); + END_STATE(); + case 1327: + if (lookahead == 'k') ADVANCE(503); + END_STATE(); + case 1328: + if (lookahead == 'k') ADVANCE(857); + END_STATE(); + case 1329: + if (lookahead == 'k') ADVANCE(1431); + END_STATE(); + case 1330: + if (lookahead == 'k') ADVANCE(1404); + END_STATE(); + case 1331: + if (lookahead == 'k') ADVANCE(292); + END_STATE(); + case 1332: + if (lookahead == 'k') ADVANCE(271); + END_STATE(); + case 1333: + if (lookahead == 'k') ADVANCE(741); + END_STATE(); + case 1334: + if (lookahead == 'k') ADVANCE(741); + if (lookahead == 'm') ADVANCE(283); + END_STATE(); + case 1335: + if (lookahead == 'k') ADVANCE(2117); + END_STATE(); + case 1336: + if (lookahead == 'k') ADVANCE(333); + END_STATE(); + case 1337: + if (lookahead == 'k') ADVANCE(1926); + END_STATE(); + case 1338: + if (lookahead == 'k') ADVANCE(944); + END_STATE(); + case 1339: + if (lookahead == 'k') ADVANCE(948); + END_STATE(); + case 1340: + if (lookahead == 'k') ADVANCE(658); + END_STATE(); + case 1341: + if (lookahead == 'k') ADVANCE(665); + END_STATE(); + case 1342: + if (lookahead == 'k') ADVANCE(665); + if (lookahead == 'l') ADVANCE(596); + END_STATE(); + case 1343: + if (lookahead == 'k') ADVANCE(1295); + END_STATE(); + case 1344: + if (lookahead == 'l') ADVANCE(868); + END_STATE(); + case 1345: + if (lookahead == 'l') ADVANCE(144); + END_STATE(); + case 1346: + if (lookahead == 'l') ADVANCE(330); + END_STATE(); + case 1347: + if (lookahead == 'l') ADVANCE(482); + END_STATE(); + case 1348: + if (lookahead == 'l') ADVANCE(451); + END_STATE(); + case 1349: + if (lookahead == 'l') ADVANCE(211); + END_STATE(); + case 1350: + if (lookahead == 'l') ADVANCE(277); + END_STATE(); + case 1351: + if (lookahead == 'l') ADVANCE(2151); + END_STATE(); + case 1352: + if (lookahead == 'l') ADVANCE(415); + END_STATE(); + case 1353: + if (lookahead == 'l') ADVANCE(402); + END_STATE(); + case 1354: + if (lookahead == 'l') ADVANCE(177); + END_STATE(); + case 1355: + if (lookahead == 'l') ADVANCE(520); + END_STATE(); + case 1356: + if (lookahead == 'l') ADVANCE(2129); + END_STATE(); + case 1357: + if (lookahead == 'l') ADVANCE(1044); + END_STATE(); + case 1358: + if (lookahead == 'l') ADVANCE(1044); + if (lookahead == 'q') ADVANCE(2069); + END_STATE(); + case 1359: + if (lookahead == 'l') ADVANCE(1044); + if (lookahead == 'q') ADVANCE(2068); + if (lookahead == 'x') ADVANCE(1234); + END_STATE(); + case 1360: + if (lookahead == 'l') ADVANCE(467); + END_STATE(); + case 1361: + if (lookahead == 'l') ADVANCE(1945); + END_STATE(); + case 1362: + if (lookahead == 'l') ADVANCE(182); + END_STATE(); + case 1363: + if (lookahead == 'l') ADVANCE(460); + END_STATE(); + case 1364: + if (lookahead == 'l') ADVANCE(726); + END_STATE(); + case 1365: + if (lookahead == 'l') ADVANCE(423); + END_STATE(); + case 1366: + if (lookahead == 'l') ADVANCE(414); + END_STATE(); + case 1367: + if (lookahead == 'l') ADVANCE(505); + END_STATE(); + case 1368: + if (lookahead == 'l') ADVANCE(534); + END_STATE(); + case 1369: + if (lookahead == 'l') ADVANCE(318); + END_STATE(); + case 1370: + if (lookahead == 'l') ADVANCE(567); + END_STATE(); + case 1371: + if (lookahead == 'l') ADVANCE(242); + END_STATE(); + case 1372: + if (lookahead == 'l') ADVANCE(434); + END_STATE(); + case 1373: + if (lookahead == 'l') ADVANCE(896); + END_STATE(); + case 1374: + if (lookahead == 'l') ADVANCE(445); + END_STATE(); + case 1375: + if (lookahead == 'l') ADVANCE(1616); + END_STATE(); + case 1376: + if (lookahead == 'l') ADVANCE(1326); + END_STATE(); + case 1377: + if (lookahead == 'l') ADVANCE(883); + END_STATE(); + case 1378: + if (lookahead == 'l') ADVANCE(883); + if (lookahead == 'm') ADVANCE(980); + END_STATE(); + case 1379: + if (lookahead == 'l') ADVANCE(883); + if (lookahead == 'm') ADVANCE(1002); + END_STATE(); + case 1380: + if (lookahead == 'l') ADVANCE(964); + END_STATE(); + case 1381: + if (lookahead == 'l') ADVANCE(1890); + END_STATE(); + case 1382: + if (lookahead == 'l') ADVANCE(835); + END_STATE(); + case 1383: + if (lookahead == 'l') ADVANCE(1246); + END_STATE(); + case 1384: + if (lookahead == 'l') ADVANCE(2128); + END_STATE(); + case 1385: + if (lookahead == 'l') ADVANCE(1212); + END_STATE(); + case 1386: + if (lookahead == 'l') ADVANCE(983); + END_STATE(); + case 1387: + if (lookahead == 'l') ADVANCE(1345); + END_STATE(); + case 1388: + if (lookahead == 'l') ADVANCE(2138); + END_STATE(); + case 1389: + if (lookahead == 'l') ADVANCE(1625); + END_STATE(); + case 1390: + if (lookahead == 'l') ADVANCE(2076); + END_STATE(); + case 1391: + if (lookahead == 'l') ADVANCE(1239); + END_STATE(); + case 1392: + if (lookahead == 'l') ADVANCE(1371); + if (lookahead == 'm') ADVANCE(1676); + END_STATE(); + case 1393: + if (lookahead == 'l') ADVANCE(1368); + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 't') ADVANCE(241); + if (lookahead == 'u') ADVANCE(731); + if (lookahead == 'w') ADVANCE(1495); + END_STATE(); + case 1394: + if (lookahead == 'l') ADVANCE(913); + END_STATE(); + case 1395: + if (lookahead == 'l') ADVANCE(969); + END_STATE(); + case 1396: + if (lookahead == 'l') ADVANCE(1355); + END_STATE(); + case 1397: + if (lookahead == 'l') ADVANCE(1365); + END_STATE(); + case 1398: + if (lookahead == 'l') ADVANCE(984); + END_STATE(); + case 1399: + if (lookahead == 'l') ADVANCE(1446); + if (lookahead == 's') ADVANCE(1181); + END_STATE(); + case 1400: + if (lookahead == 'l') ADVANCE(1643); + END_STATE(); + case 1401: + if (lookahead == 'l') ADVANCE(1267); + END_STATE(); + case 1402: + if (lookahead == 'l') ADVANCE(1238); + END_STATE(); + case 1403: + if (lookahead == 'l') ADVANCE(1363); + END_STATE(); + case 1404: + if (lookahead == 'l') ADVANCE(1594); + if (lookahead == 's') ADVANCE(1734); + if (lookahead == 't') ADVANCE(1889); + END_STATE(); + case 1405: + if (lookahead == 'l') ADVANCE(959); + END_STATE(); + case 1406: + if (lookahead == 'l') ADVANCE(959); + if (lookahead == 'q') ADVANCE(1405); + END_STATE(); + case 1407: + if (lookahead == 'l') ADVANCE(1280); + END_STATE(); + case 1408: + if (lookahead == 'l') ADVANCE(583); + END_STATE(); + case 1409: + if (lookahead == 'l') ADVANCE(1367); + END_STATE(); + case 1410: + if (lookahead == 'l') ADVANCE(930); + END_STATE(); + case 1411: + if (lookahead == 'l') ADVANCE(931); + END_STATE(); + case 1412: + if (lookahead == 'l') ADVANCE(1628); + END_STATE(); + case 1413: + if (lookahead == 'l') ADVANCE(920); + END_STATE(); + case 1414: + if (lookahead == 'l') ADVANCE(1051); + END_STATE(); + case 1415: + if (lookahead == 'l') ADVANCE(973); + if (lookahead == 'r') ADVANCE(1273); + END_STATE(); + case 1416: + if (lookahead == 'l') ADVANCE(938); + END_STATE(); + case 1417: + if (lookahead == 'l') ADVANCE(939); + END_STATE(); + case 1418: + if (lookahead == 'l') ADVANCE(951); + END_STATE(); + case 1419: + if (lookahead == 'l') ADVANCE(1071); + END_STATE(); + case 1420: + if (lookahead == 'l') ADVANCE(961); + END_STATE(); + case 1421: + if (lookahead == 'l') ADVANCE(941); + END_STATE(); + case 1422: + if (lookahead == 'l') ADVANCE(942); + END_STATE(); + case 1423: + if (lookahead == 'l') ADVANCE(943); + END_STATE(); + case 1424: + if (lookahead == 'l') ADVANCE(970); + END_STATE(); + case 1425: + if (lookahead == 'l') ADVANCE(596); + END_STATE(); + case 1426: + if (lookahead == 'l') ADVANCE(1247); + END_STATE(); + case 1427: + if (lookahead == 'l') ADVANCE(890); + END_STATE(); + case 1428: + if (lookahead == 'l') ADVANCE(890); + if (lookahead == 'm') ADVANCE(974); + if (lookahead == 'n') ADVANCE(1945); + END_STATE(); + case 1429: + if (lookahead == 'l') ADVANCE(1618); + if (lookahead == 'n') ADVANCE(1136); + if (lookahead == 'p') ADVANCE(1085); + if (lookahead == 'u') ADVANCE(1557); + END_STATE(); + case 1430: + if (lookahead == 'l') ADVANCE(539); + END_STATE(); + case 1431: + if (lookahead == 'l') ADVANCE(955); + if (lookahead == 'r') ADVANCE(1304); + END_STATE(); + case 1432: + if (lookahead == 'l') ADVANCE(1036); + END_STATE(); + case 1433: + if (lookahead == 'l') ADVANCE(1035); + END_STATE(); + case 1434: + if (lookahead == 'l') ADVANCE(651); + END_STATE(); + case 1435: + if (lookahead == 'l') ADVANCE(2052); + END_STATE(); + case 1436: + if (lookahead == 'l') ADVANCE(1398); + END_STATE(); + case 1437: + if (lookahead == 'l') ADVANCE(597); + END_STATE(); + case 1438: + if (lookahead == 'l') ADVANCE(1288); + END_STATE(); + case 1439: + if (lookahead == 'l') ADVANCE(1623); + if (lookahead == 'm') ADVANCE(1479); + if (lookahead == 'n') ADVANCE(1112); + if (lookahead == 'p') ADVANCE(262); + END_STATE(); + case 1440: + if (lookahead == 'l') ADVANCE(1836); + END_STATE(); + case 1441: + if (lookahead == 'l') ADVANCE(1222); + END_STATE(); + case 1442: + if (lookahead == 'l') ADVANCE(1383); + END_STATE(); + case 1443: + if (lookahead == 'l') ADVANCE(1270); + END_STATE(); + case 1444: + if (lookahead == 'l') ADVANCE(1386); + END_STATE(); + case 1445: + if (lookahead == 'l') ADVANCE(673); + END_STATE(); + case 1446: + if (lookahead == 'l') ADVANCE(1942); + END_STATE(); + case 1447: + if (lookahead == 'l') ADVANCE(1438); + END_STATE(); + case 1448: + if (lookahead == 'l') ADVANCE(1039); + if (lookahead == 'm') ADVANCE(618); + if (lookahead == 'r') ADVANCE(1304); + END_STATE(); + case 1449: + if (lookahead == 'l') ADVANCE(1066); + if (lookahead == 'r') ADVANCE(1316); + END_STATE(); + case 1450: + if (lookahead == 'm') ADVANCE(144); + END_STATE(); + case 1451: + if (lookahead == 'm') ADVANCE(283); + END_STATE(); + case 1452: + if (lookahead == 'm') ADVANCE(283); + if (lookahead == 'r') ADVANCE(1575); + END_STATE(); + case 1453: + if (lookahead == 'm') ADVANCE(503); + END_STATE(); + case 1454: + if (lookahead == 'm') ADVANCE(304); + END_STATE(); + case 1455: + if (lookahead == 'm') ADVANCE(354); + END_STATE(); + case 1456: + if (lookahead == 'm') ADVANCE(353); + END_STATE(); + case 1457: + if (lookahead == 'm') ADVANCE(520); + END_STATE(); + case 1458: + if (lookahead == 'm') ADVANCE(1303); + END_STATE(); + case 1459: + if (lookahead == 'm') ADVANCE(1210); + END_STATE(); + case 1460: + if (lookahead == 'm') ADVANCE(237); + END_STATE(); + case 1461: + if (lookahead == 'm') ADVANCE(1664); + END_STATE(); + case 1462: + if (lookahead == 'm') ADVANCE(1694); + END_STATE(); + case 1463: + if (lookahead == 'm') ADVANCE(1675); + END_STATE(); + case 1464: + if (lookahead == 'm') ADVANCE(1209); + END_STATE(); + case 1465: + if (lookahead == 'm') ADVANCE(1209); + if (lookahead == 'p') ADVANCE(670); + END_STATE(); + case 1466: + if (lookahead == 'm') ADVANCE(1457); + END_STATE(); + case 1467: + if (lookahead == 'm') ADVANCE(245); + END_STATE(); + case 1468: + if (lookahead == 'm') ADVANCE(1698); + END_STATE(); + case 1469: + if (lookahead == 'm') ADVANCE(246); + END_STATE(); + case 1470: + if (lookahead == 'm') ADVANCE(560); + END_STATE(); + case 1471: + if (lookahead == 'm') ADVANCE(983); + END_STATE(); + case 1472: + if (lookahead == 'm') ADVANCE(1345); + END_STATE(); + case 1473: + if (lookahead == 'm') ADVANCE(1491); + END_STATE(); + case 1474: + if (lookahead == 'm') ADVANCE(913); + END_STATE(); + case 1475: + if (lookahead == 'm') ADVANCE(1690); + END_STATE(); + case 1476: + if (lookahead == 'm') ADVANCE(1685); + END_STATE(); + case 1477: + if (lookahead == 'm') ADVANCE(675); + END_STATE(); + case 1478: + if (lookahead == 'm') ADVANCE(548); + END_STATE(); + case 1479: + if (lookahead == 'm') ADVANCE(555); + if (lookahead == 'p') ADVANCE(265); + END_STATE(); + case 1480: + if (lookahead == 'm') ADVANCE(946); + END_STATE(); + case 1481: + if (lookahead == 'm') ADVANCE(946); + if (lookahead == 'x') ADVANCE(980); + END_STATE(); + case 1482: + if (lookahead == 'm') ADVANCE(544); + END_STATE(); + case 1483: + if (lookahead == 'm') ADVANCE(528); + END_STATE(); + case 1484: + if (lookahead == 'm') ADVANCE(980); + END_STATE(); + case 1485: + if (lookahead == 'm') ADVANCE(1706); + END_STATE(); + case 1486: + if (lookahead == 'm') ADVANCE(966); + END_STATE(); + case 1487: + if (lookahead == 'm') ADVANCE(1478); + END_STATE(); + case 1488: + if (lookahead == 'm') ADVANCE(1302); + END_STATE(); + case 1489: + if (lookahead == 'm') ADVANCE(669); + END_STATE(); + case 1490: + if (lookahead == 'n') ADVANCE(868); + END_STATE(); + case 1491: + if (lookahead == 'n') ADVANCE(144); + END_STATE(); + case 1492: + if (lookahead == 'n') ADVANCE(267); + END_STATE(); + case 1493: + if (lookahead == 'n') ADVANCE(411); + END_STATE(); + case 1494: + if (lookahead == 'n') ADVANCE(503); + END_STATE(); + case 1495: + if (lookahead == 'n') ADVANCE(683); + END_STATE(); + case 1496: + if (lookahead == 'n') ADVANCE(348); + END_STATE(); + case 1497: + if (lookahead == 'n') ADVANCE(827); + END_STATE(); + case 1498: + if (lookahead == 'n') ADVANCE(2146); + END_STATE(); + case 1499: + if (lookahead == 'n') ADVANCE(162); + END_STATE(); + case 1500: + if (lookahead == 'n') ADVANCE(510); + END_STATE(); + case 1501: + if (lookahead == 'n') ADVANCE(514); + END_STATE(); + case 1502: + if (lookahead == 'n') ADVANCE(180); + END_STATE(); + case 1503: + if (lookahead == 'n') ADVANCE(1945); + END_STATE(); + case 1504: + if (lookahead == 'n') ADVANCE(425); + END_STATE(); + case 1505: + if (lookahead == 'n') ADVANCE(476); + END_STATE(); + case 1506: + if (lookahead == 'n') ADVANCE(231); + END_STATE(); + case 1507: + if (lookahead == 'n') ADVANCE(2122); + END_STATE(); + case 1508: + if (lookahead == 'n') ADVANCE(405); + END_STATE(); + case 1509: + if (lookahead == 'n') ADVANCE(1105); + END_STATE(); + case 1510: + if (lookahead == 'n') ADVANCE(903); + END_STATE(); + case 1511: + if (lookahead == 'n') ADVANCE(237); + END_STATE(); + case 1512: + if (lookahead == 'n') ADVANCE(1107); + END_STATE(); + case 1513: + if (lookahead == 'n') ADVANCE(1107); + if (lookahead == 'r') ADVANCE(1737); + END_STATE(); + case 1514: + if (lookahead == 'n') ADVANCE(2005); + END_STATE(); + case 1515: + if (lookahead == 'n') ADVANCE(1113); + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 'w') ADVANCE(1014); + END_STATE(); + case 1516: + if (lookahead == 'n') ADVANCE(338); + END_STATE(); + case 1517: + if (lookahead == 'n') ADVANCE(1326); + END_STATE(); + case 1518: + if (lookahead == 'n') ADVANCE(245); + END_STATE(); + case 1519: + if (lookahead == 'n') ADVANCE(1890); + END_STATE(); + case 1520: + if (lookahead == 'n') ADVANCE(876); + END_STATE(); + case 1521: + if (lookahead == 'n') ADVANCE(240); + END_STATE(); + case 1522: + if (lookahead == 'n') ADVANCE(1137); + if (lookahead == 'r') ADVANCE(994); + END_STATE(); + case 1523: + if (lookahead == 'n') ADVANCE(833); + END_STATE(); + case 1524: + if (lookahead == 'n') ADVANCE(1153); + END_STATE(); + case 1525: + if (lookahead == 'n') ADVANCE(913); + END_STATE(); + case 1526: + if (lookahead == 'n') ADVANCE(1111); + END_STATE(); + case 1527: + if (lookahead == 'n') ADVANCE(861); + END_STATE(); + case 1528: + if (lookahead == 'n') ADVANCE(1621); + END_STATE(); + case 1529: + if (lookahead == 'n') ADVANCE(1139); + END_STATE(); + case 1530: + if (lookahead == 'n') ADVANCE(886); + END_STATE(); + case 1531: + if (lookahead == 'n') ADVANCE(1166); + END_STATE(); + case 1532: + if (lookahead == 'n') ADVANCE(944); + END_STATE(); + case 1533: + if (lookahead == 'n') ADVANCE(1114); + END_STATE(); + case 1534: + if (lookahead == 'n') ADVANCE(856); + END_STATE(); + case 1535: + if (lookahead == 'n') ADVANCE(2023); + END_STATE(); + case 1536: + if (lookahead == 'n') ADVANCE(1956); + END_STATE(); + case 1537: + if (lookahead == 'n') ADVANCE(1970); + END_STATE(); + case 1538: + if (lookahead == 'n') ADVANCE(1995); + END_STATE(); + case 1539: + if (lookahead == 'n') ADVANCE(1997); + END_STATE(); + case 1540: + if (lookahead == 'n') ADVANCE(975); + END_STATE(); + case 1541: + if (lookahead == 'n') ADVANCE(978); + END_STATE(); + case 1542: + if (lookahead == 'n') ADVANCE(1415); + END_STATE(); + case 1543: + if (lookahead == 'n') ADVANCE(2054); + END_STATE(); + case 1544: + if (lookahead == 'n') ADVANCE(197); + END_STATE(); + case 1545: + if (lookahead == 'n') ADVANCE(1132); + END_STATE(); + case 1546: + if (lookahead == 'n') ADVANCE(1135); + END_STATE(); + case 1547: + if (lookahead == 'n') ADVANCE(1060); + END_STATE(); + case 1548: + if (lookahead == 'n') ADVANCE(1245); + END_STATE(); + case 1549: + if (lookahead == 'n') ADVANCE(2013); + END_STATE(); + case 1550: + if (lookahead == 'n') ADVANCE(2052); + END_STATE(); + case 1551: + if (lookahead == 'n') ADVANCE(1626); + END_STATE(); + case 1552: + if (lookahead == 'n') ADVANCE(2014); + END_STATE(); + case 1553: + if (lookahead == 'n') ADVANCE(1222); + END_STATE(); + case 1554: + if (lookahead == 'n') ADVANCE(2012); + END_STATE(); + case 1555: + if (lookahead == 'n') ADVANCE(2032); + END_STATE(); + case 1556: + if (lookahead == 'n') ADVANCE(643); + END_STATE(); + case 1557: + if (lookahead == 'n') ADVANCE(2024); + END_STATE(); + case 1558: + if (lookahead == 'n') ADVANCE(1158); + END_STATE(); + case 1559: + if (lookahead == 'n') ADVANCE(2022); + END_STATE(); + case 1560: + if (lookahead == 'n') ADVANCE(1301); + END_STATE(); + case 1561: + if (lookahead == 'n') ADVANCE(1063); + END_STATE(); + case 1562: + if (lookahead == 'n') ADVANCE(1160); + if (lookahead == 'r') ADVANCE(1840); + END_STATE(); + case 1563: + if (lookahead == 'n') ADVANCE(1160); + if (lookahead == 'r') ADVANCE(1844); + END_STATE(); + case 1564: + if (lookahead == 'n') ADVANCE(2026); + END_STATE(); + case 1565: + if (lookahead == 'n') ADVANCE(1161); + END_STATE(); + case 1566: + if (lookahead == 'n') ADVANCE(1162); + END_STATE(); + case 1567: + if (lookahead == 'n') ADVANCE(2028); + END_STATE(); + case 1568: + if (lookahead == 'n') ADVANCE(1163); + END_STATE(); + case 1569: + if (lookahead == 'n') ADVANCE(1164); + END_STATE(); + case 1570: + if (lookahead == 'n') ADVANCE(1165); + END_STATE(); + case 1571: + if (lookahead == 'n') ADVANCE(2033); + END_STATE(); + case 1572: + if (lookahead == 'n') ADVANCE(692); + END_STATE(); + case 1573: + if (lookahead == 'n') ADVANCE(681); + END_STATE(); + case 1574: + if (lookahead == 'o') ADVANCE(868); + END_STATE(); + case 1575: + if (lookahead == 'o') ADVANCE(144); + END_STATE(); + case 1576: + if (lookahead == 'o') ADVANCE(314); + END_STATE(); + case 1577: + if (lookahead == 'o') ADVANCE(1083); + END_STATE(); + case 1578: + if (lookahead == 'o') ADVANCE(2113); + END_STATE(); + case 1579: + if (lookahead == 'o') ADVANCE(515); + END_STATE(); + case 1580: + if (lookahead == 'o') ADVANCE(2093); + END_STATE(); + case 1581: + if (lookahead == 'o') ADVANCE(234); + END_STATE(); + case 1582: + if (lookahead == 'o') ADVANCE(1947); + END_STATE(); + case 1583: + if (lookahead == 'o') ADVANCE(1946); + END_STATE(); + case 1584: + if (lookahead == 'o') ADVANCE(1737); + END_STATE(); + case 1585: + if (lookahead == 'o') ADVANCE(1945); + END_STATE(); + case 1586: + if (lookahead == 'o') ADVANCE(1945); + if (lookahead == 's') ADVANCE(2046); + END_STATE(); + case 1587: + if (lookahead == 'o') ADVANCE(294); + END_STATE(); + case 1588: + if (lookahead == 'o') ADVANCE(2124); + END_STATE(); + case 1589: + if (lookahead == 'o') ADVANCE(816); + END_STATE(); + case 1590: + if (lookahead == 'o') ADVANCE(2122); + END_STATE(); + case 1591: + if (lookahead == 'o') ADVANCE(1916); + END_STATE(); + case 1592: + if (lookahead == 'o') ADVANCE(329); + END_STATE(); + case 1593: + if (lookahead == 'o') ADVANCE(2103); + END_STATE(); + case 1594: + if (lookahead == 'o') ADVANCE(2142); + END_STATE(); + case 1595: + if (lookahead == 'o') ADVANCE(1664); + END_STATE(); + case 1596: + if (lookahead == 'o') ADVANCE(1553); + END_STATE(); + case 1597: + if (lookahead == 'o') ADVANCE(2104); + END_STATE(); + case 1598: + if (lookahead == 'o') ADVANCE(2105); + END_STATE(); + case 1599: + if (lookahead == 'o') ADVANCE(1450); + END_STATE(); + case 1600: + if (lookahead == 'o') ADVANCE(1326); + END_STATE(); + case 1601: + if (lookahead == 'o') ADVANCE(2000); + END_STATE(); + case 1602: + if (lookahead == 'o') ADVANCE(2106); + END_STATE(); + case 1603: + if (lookahead == 'o') ADVANCE(2118); + END_STATE(); + case 1604: + if (lookahead == 'o') ADVANCE(1890); + END_STATE(); + case 1605: + if (lookahead == 'o') ADVANCE(1512); + END_STATE(); + case 1606: + if (lookahead == 'o') ADVANCE(1512); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 1607: + if (lookahead == 'o') ADVANCE(2119); + END_STATE(); + case 1608: + if (lookahead == 'o') ADVANCE(2112); + END_STATE(); + case 1609: + if (lookahead == 'o') ADVANCE(2107); + END_STATE(); + case 1610: + if (lookahead == 'o') ADVANCE(1345); + if (lookahead == 'u') ADVANCE(705); + END_STATE(); + case 1611: + if (lookahead == 'o') ADVANCE(891); + END_STATE(); + case 1612: + if (lookahead == 'o') ADVANCE(1519); + END_STATE(); + case 1613: + if (lookahead == 'o') ADVANCE(2110); + END_STATE(); + case 1614: + if (lookahead == 'o') ADVANCE(1951); + END_STATE(); + case 1615: + if (lookahead == 'o') ADVANCE(1791); + END_STATE(); + case 1616: + if (lookahead == 'o') ADVANCE(1491); + END_STATE(); + case 1617: + if (lookahead == 'o') ADVANCE(1491); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 1618: + if (lookahead == 'o') ADVANCE(1511); + END_STATE(); + case 1619: + if (lookahead == 'o') ADVANCE(1547); + END_STATE(); + case 1620: + if (lookahead == 'o') ADVANCE(1502); + END_STATE(); + case 1621: + if (lookahead == 'o') ADVANCE(2089); + END_STATE(); + case 1622: + if (lookahead == 'o') ADVANCE(1490); + END_STATE(); + case 1623: + if (lookahead == 'o') ADVANCE(1518); + END_STATE(); + case 1624: + if (lookahead == 'o') ADVANCE(2091); + END_STATE(); + case 1625: + if (lookahead == 'o') ADVANCE(1584); + END_STATE(); + case 1626: + if (lookahead == 'o') ADVANCE(2037); + END_STATE(); + case 1627: + if (lookahead == 'o') ADVANCE(1344); + END_STATE(); + case 1628: + if (lookahead == 'o') ADVANCE(815); + END_STATE(); + case 1629: + if (lookahead == 'o') ADVANCE(1986); + END_STATE(); + case 1630: + if (lookahead == 'o') ADVANCE(1988); + END_STATE(); + case 1631: + if (lookahead == 'o') ADVANCE(2030); + END_STATE(); + case 1632: + if (lookahead == 'o') ADVANCE(1542); + END_STATE(); + case 1633: + if (lookahead == 'o') ADVANCE(1544); + END_STATE(); + case 1634: + if (lookahead == 'o') ADVANCE(1510); + END_STATE(); + case 1635: + if (lookahead == 'o') ADVANCE(1803); + if (lookahead == 'r') ADVANCE(1595); + END_STATE(); + case 1636: + if (lookahead == 'o') ADVANCE(1828); + END_STATE(); + case 1637: + if (lookahead == 'o') ADVANCE(1830); + if (lookahead == 'r') ADVANCE(1595); + END_STATE(); + case 1638: + if (lookahead == 'o') ADVANCE(1754); + END_STATE(); + case 1639: + if (lookahead == 'o') ADVANCE(2114); + END_STATE(); + case 1640: + if (lookahead == 'o') ADVANCE(1466); + END_STATE(); + case 1641: + if (lookahead == 'o') ADVANCE(1466); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 1642: + if (lookahead == 'o') ADVANCE(1809); + END_STATE(); + case 1643: + if (lookahead == 'o') ADVANCE(1693); + END_STATE(); + case 1644: + if (lookahead == 'o') ADVANCE(1704); + END_STATE(); + case 1645: + if (lookahead == 'o') ADVANCE(2073); + END_STATE(); + case 1646: + if (lookahead == 'o') ADVANCE(2120); + END_STATE(); + case 1647: + if (lookahead == 'o') ADVANCE(2115); + END_STATE(); + case 1648: + if (lookahead == 'o') ADVANCE(2079); + END_STATE(); + case 1649: + if (lookahead == 'o') ADVANCE(1994); + END_STATE(); + case 1650: + if (lookahead == 'o') ADVANCE(1546); + if (lookahead == 'u') ADVANCE(1684); + END_STATE(); + case 1651: + if (lookahead == 'o') ADVANCE(2116); + END_STATE(); + case 1652: + if (lookahead == 'o') ADVANCE(1559); + END_STATE(); + case 1653: + if (lookahead == 'o') ADVANCE(1824); + END_STATE(); + case 1654: + if (lookahead == 'o') ADVANCE(1632); + END_STATE(); + case 1655: + if (lookahead == 'o') ADVANCE(1805); + END_STATE(); + case 1656: + if (lookahead == 'o') ADVANCE(1538); + END_STATE(); + case 1657: + if (lookahead == 'o') ADVANCE(1612); + END_STATE(); + case 1658: + if (lookahead == 'o') ADVANCE(1634); + END_STATE(); + case 1659: + if (lookahead == 'o') ADVANCE(1870); + END_STATE(); + case 1660: + if (lookahead == 'o') ADVANCE(1441); + END_STATE(); + case 1661: + if (lookahead == 'o') ADVANCE(2094); + END_STATE(); + case 1662: + if (lookahead == 'o') ADVANCE(2121); + END_STATE(); + case 1663: + if (lookahead == 'p') ADVANCE(1941); + END_STATE(); + case 1664: + if (lookahead == 'p') ADVANCE(144); + END_STATE(); + case 1665: + if (lookahead == 'p') ADVANCE(144); + if (lookahead == 'r') ADVANCE(1616); + END_STATE(); + case 1666: + if (lookahead == 'p') ADVANCE(1173); + END_STATE(); + case 1667: + if (lookahead == 'p') ADVANCE(1083); + END_STATE(); + case 1668: + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 'r') ADVANCE(662); + END_STATE(); + case 1669: + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 'r') ADVANCE(403); + if (lookahead == 'u') ADVANCE(1821); + END_STATE(); + case 1670: + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 'r') ADVANCE(1215); + END_STATE(); + case 1671: + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 't') ADVANCE(157); + if (lookahead == 'u') ADVANCE(730); + if (lookahead == 'w') ADVANCE(1493); + END_STATE(); + case 1672: + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 't') ADVANCE(337); + if (lookahead == 'w') ADVANCE(2006); + if (lookahead == 'x') ADVANCE(438); + END_STATE(); + case 1673: + if (lookahead == 'p') ADVANCE(1083); + if (lookahead == 'u') ADVANCE(1520); + END_STATE(); + case 1674: + if (lookahead == 'p') ADVANCE(156); + END_STATE(); + case 1675: + if (lookahead == 'p') ADVANCE(447); + END_STATE(); + case 1676: + if (lookahead == 'p') ADVANCE(163); + END_STATE(); + case 1677: + if (lookahead == 'p') ADVANCE(137); + END_STATE(); + case 1678: + if (lookahead == 'p') ADVANCE(448); + END_STATE(); + case 1679: + if (lookahead == 'p') ADVANCE(406); + END_STATE(); + case 1680: + if (lookahead == 'p') ADVANCE(1737); + if (lookahead == 's') ADVANCE(749); + END_STATE(); + case 1681: + if (lookahead == 'p') ADVANCE(520); + END_STATE(); + case 1682: + if (lookahead == 'p') ADVANCE(308); + END_STATE(); + case 1683: + if (lookahead == 'p') ADVANCE(405); + END_STATE(); + case 1684: + if (lookahead == 'p') ADVANCE(421); + END_STATE(); + case 1685: + if (lookahead == 'p') ADVANCE(237); + END_STATE(); + case 1686: + if (lookahead == 'p') ADVANCE(318); + END_STATE(); + case 1687: + if (lookahead == 'p') ADVANCE(1170); + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 1688: + if (lookahead == 'p') ADVANCE(1681); + END_STATE(); + case 1689: + if (lookahead == 'p') ADVANCE(1890); + if (lookahead == 'r') ADVANCE(1616); + END_STATE(); + case 1690: + if (lookahead == 'p') ADVANCE(246); + END_STATE(); + case 1691: + if (lookahead == 'p') ADVANCE(1356); + END_STATE(); + case 1692: + if (lookahead == 'p') ADVANCE(1701); + END_STATE(); + case 1693: + if (lookahead == 'p') ADVANCE(913); + END_STATE(); + case 1694: + if (lookahead == 'p') ADVANCE(960); + END_STATE(); + case 1695: + if (lookahead == 'p') ADVANCE(1435); + END_STATE(); + case 1696: + if (lookahead == 'p') ADVANCE(1435); + if (lookahead == 't') ADVANCE(1772); + END_STATE(); + case 1697: + if (lookahead == 'p') ADVANCE(1913); + END_STATE(); + case 1698: + if (lookahead == 'p') ADVANCE(1985); + END_STATE(); + case 1699: + if (lookahead == 'p') ADVANCE(1711); + END_STATE(); + case 1700: + if (lookahead == 'p') ADVANCE(1711); + if (lookahead == 'r') ADVANCE(1737); + END_STATE(); + case 1701: + if (lookahead == 'p') ADVANCE(540); + END_STATE(); + case 1702: + if (lookahead == 'p') ADVANCE(1654); + END_STATE(); + case 1703: + if (lookahead == 'p') ADVANCE(1437); + END_STATE(); + case 1704: + if (lookahead == 'p') ADVANCE(1976); + END_STATE(); + case 1705: + if (lookahead == 'p') ADVANCE(1604); + END_STATE(); + case 1706: + if (lookahead == 'p') ADVANCE(1401); + END_STATE(); + case 1707: + if (lookahead == 'p') ADVANCE(659); + END_STATE(); + case 1708: + if (lookahead == 'p') ADVANCE(1931); + END_STATE(); + case 1709: + if (lookahead == 'p') ADVANCE(1836); + if (lookahead == 's') ADVANCE(2064); + END_STATE(); + case 1710: + if (lookahead == 'p') ADVANCE(1413); + END_STATE(); + case 1711: + if (lookahead == 'p') ADVANCE(1816); + END_STATE(); + case 1712: + if (lookahead == 'p') ADVANCE(641); + END_STATE(); + case 1713: + if (lookahead == 'p') ADVANCE(690); + END_STATE(); + case 1714: + if (lookahead == 'p') ADVANCE(459); + END_STATE(); + case 1715: + if (lookahead == 'p') ADVANCE(1658); + END_STATE(); + case 1716: + if (lookahead == 'p') ADVANCE(674); + END_STATE(); + case 1717: + if (lookahead == 'p') ADVANCE(1657); + END_STATE(); + case 1718: + if (lookahead == 'p') ADVANCE(692); + END_STATE(); + case 1719: + if (lookahead == 'q') ADVANCE(144); + END_STATE(); + case 1720: + if (lookahead == 'q') ADVANCE(229); + END_STATE(); + case 1721: + if (lookahead == 'q') ADVANCE(1406); + END_STATE(); + case 1722: + if (lookahead == 'q') ADVANCE(1144); + END_STATE(); + case 1723: + if (lookahead == 'q') ADVANCE(1709); + END_STATE(); + case 1724: + if (lookahead == 'q') ADVANCE(309); + END_STATE(); + case 1725: + if (lookahead == 'q') ADVANCE(1719); + END_STATE(); + case 1726: + if (lookahead == 'q') ADVANCE(2040); + END_STATE(); + case 1727: + if (lookahead == 'q') ADVANCE(2059); + END_STATE(); + case 1728: + if (lookahead == 'q') ADVANCE(2092); + if (lookahead == 'u') ADVANCE(728); + END_STATE(); + case 1729: + if (lookahead == 'q') ADVANCE(2080); + END_STATE(); + case 1730: + if (lookahead == 'q') ADVANCE(2069); + END_STATE(); + case 1731: + if (lookahead == 'q') ADVANCE(834); + if (lookahead == 't') ADVANCE(534); + END_STATE(); + case 1732: + if (lookahead == 'q') ADVANCE(2083); + END_STATE(); + case 1733: + if (lookahead == 'q') ADVANCE(2087); + END_STATE(); + case 1734: + if (lookahead == 'q') ADVANCE(2090); + END_STATE(); + case 1735: + if (lookahead == 'r') ADVANCE(868); + END_STATE(); + case 1736: + if (lookahead == 'r') ADVANCE(922); + END_STATE(); + case 1737: + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 1738: + if (lookahead == 'r') ADVANCE(428); + END_STATE(); + case 1739: + if (lookahead == 'r') ADVANCE(293); + END_STATE(); + case 1740: + if (lookahead == 'r') ADVANCE(1083); + END_STATE(); + case 1741: + if (lookahead == 'r') ADVANCE(346); + END_STATE(); + case 1742: + if (lookahead == 'r') ADVANCE(306); + END_STATE(); + case 1743: + if (lookahead == 'r') ADVANCE(190); + END_STATE(); + case 1744: + if (lookahead == 'r') ADVANCE(792); + END_STATE(); + case 1745: + if (lookahead == 'r') ADVANCE(412); + END_STATE(); + case 1746: + if (lookahead == 'r') ADVANCE(2155); + END_STATE(); + case 1747: + if (lookahead == 'r') ADVANCE(261); + END_STATE(); + case 1748: + if (lookahead == 'r') ADVANCE(214); + END_STATE(); + case 1749: + if (lookahead == 'r') ADVANCE(1183); + END_STATE(); + case 1750: + if (lookahead == 'r') ADVANCE(191); + END_STATE(); + case 1751: + if (lookahead == 'r') ADVANCE(485); + END_STATE(); + case 1752: + if (lookahead == 'r') ADVANCE(352); + END_STATE(); + case 1753: + if (lookahead == 'r') ADVANCE(2160); + END_STATE(); + case 1754: + if (lookahead == 'r') ADVANCE(149); + END_STATE(); + case 1755: + if (lookahead == 'r') ADVANCE(167); + END_STATE(); + case 1756: + if (lookahead == 'r') ADVANCE(1737); + END_STATE(); + case 1757: + if (lookahead == 'r') ADVANCE(299); + END_STATE(); + case 1758: + if (lookahead == 'r') ADVANCE(467); + END_STATE(); + case 1759: + if (lookahead == 'r') ADVANCE(742); + END_STATE(); + case 1760: + if (lookahead == 'r') ADVANCE(341); + END_STATE(); + case 1761: + if (lookahead == 'r') ADVANCE(269); + END_STATE(); + case 1762: + if (lookahead == 'r') ADVANCE(1945); + END_STATE(); + case 1763: + if (lookahead == 'r') ADVANCE(1945); + if (lookahead == 'u') ADVANCE(676); + END_STATE(); + case 1764: + if (lookahead == 'r') ADVANCE(231); + END_STATE(); + case 1765: + if (lookahead == 'r') ADVANCE(895); + END_STATE(); + case 1766: + if (lookahead == 'r') ADVANCE(208); + END_STATE(); + case 1767: + if (lookahead == 'r') ADVANCE(217); + END_STATE(); + case 1768: + if (lookahead == 'r') ADVANCE(204); + END_STATE(); + case 1769: + if (lookahead == 'r') ADVANCE(479); + END_STATE(); + case 1770: + if (lookahead == 'r') ADVANCE(741); + END_STATE(); + case 1771: + if (lookahead == 'r') ADVANCE(571); + END_STATE(); + case 1772: + if (lookahead == 'r') ADVANCE(1210); + END_STATE(); + case 1773: + if (lookahead == 'r') ADVANCE(301); + END_STATE(); + case 1774: + if (lookahead == 'r') ADVANCE(285); + END_STATE(); + case 1775: + if (lookahead == 'r') ADVANCE(290); + END_STATE(); + case 1776: + if (lookahead == 'r') ADVANCE(871); + END_STATE(); + case 1777: + if (lookahead == 'r') ADVANCE(863); + END_STATE(); + case 1778: + if (lookahead == 'r') ADVANCE(1575); + END_STATE(); + case 1779: + if (lookahead == 'r') ADVANCE(295); + END_STATE(); + case 1780: + if (lookahead == 'r') ADVANCE(1336); + END_STATE(); + case 1781: + if (lookahead == 'r') ADVANCE(324); + END_STATE(); + case 1782: + if (lookahead == 'r') ADVANCE(424); + END_STATE(); + case 1783: + if (lookahead == 'r') ADVANCE(334); + END_STATE(); + case 1784: + if (lookahead == 'r') ADVANCE(853); + END_STATE(); + case 1785: + if (lookahead == 'r') ADVANCE(1664); + END_STATE(); + case 1786: + if (lookahead == 'r') ADVANCE(990); + END_STATE(); + case 1787: + if (lookahead == 'r') ADVANCE(2005); + END_STATE(); + case 1788: + if (lookahead == 'r') ADVANCE(298); + END_STATE(); + case 1789: + if (lookahead == 'r') ADVANCE(525); + END_STATE(); + case 1790: + if (lookahead == 'r') ADVANCE(1616); + END_STATE(); + case 1791: + if (lookahead == 'r') ADVANCE(1326); + END_STATE(); + case 1792: + if (lookahead == 'r') ADVANCE(2132); + END_STATE(); + case 1793: + if (lookahead == 'r') ADVANCE(2134); + END_STATE(); + case 1794: + if (lookahead == 'r') ADVANCE(1579); + if (lookahead == 't') ADVANCE(520); + END_STATE(); + case 1795: + if (lookahead == 'r') ADVANCE(1890); + END_STATE(); + case 1796: + if (lookahead == 'r') ADVANCE(983); + END_STATE(); + case 1797: + if (lookahead == 'r') ADVANCE(1574); + END_STATE(); + case 1798: + if (lookahead == 'r') ADVANCE(552); + END_STATE(); + case 1799: + if (lookahead == 'r') ADVANCE(2111); + END_STATE(); + case 1800: + if (lookahead == 'r') ADVANCE(2133); + END_STATE(); + case 1801: + if (lookahead == 'r') ADVANCE(1041); + END_STATE(); + case 1802: + if (lookahead == 'r') ADVANCE(1182); + END_STATE(); + case 1803: + if (lookahead == 'r') ADVANCE(1491); + END_STATE(); + case 1804: + if (lookahead == 'r') ADVANCE(749); + END_STATE(); + case 1805: + if (lookahead == 'r') ADVANCE(913); + END_STATE(); + case 1806: + if (lookahead == 'r') ADVANCE(1595); + END_STATE(); + case 1807: + if (lookahead == 'r') ADVANCE(1287); + END_STATE(); + case 1808: + if (lookahead == 'r') ADVANCE(1600); + END_STATE(); + case 1809: + if (lookahead == 'r') ADVANCE(1953); + END_STATE(); + case 1810: + if (lookahead == 'r') ADVANCE(1588); + END_STATE(); + case 1811: + if (lookahead == 'r') ADVANCE(1910); + END_STATE(); + case 1812: + if (lookahead == 'r') ADVANCE(822); + END_STATE(); + case 1813: + if (lookahead == 'r') ADVANCE(1593); + END_STATE(); + case 1814: + if (lookahead == 'r') ADVANCE(1746); + END_STATE(); + case 1815: + if (lookahead == 'r') ADVANCE(587); + END_STATE(); + case 1816: + if (lookahead == 'r') ADVANCE(1590); + END_STATE(); + case 1817: + if (lookahead == 'r') ADVANCE(2023); + END_STATE(); + case 1818: + if (lookahead == 'r') ADVANCE(1702); + END_STATE(); + case 1819: + if (lookahead == 'r') ADVANCE(2016); + END_STATE(); + case 1820: + if (lookahead == 'r') ADVANCE(1932); + END_STATE(); + case 1821: + if (lookahead == 'r') ADVANCE(1296); + END_STATE(); + case 1822: + if (lookahead == 'r') ADVANCE(1940); + END_STATE(); + case 1823: + if (lookahead == 'r') ADVANCE(965); + if (lookahead == 't') ADVANCE(520); + END_STATE(); + case 1824: + if (lookahead == 'r') ADVANCE(1969); + END_STATE(); + case 1825: + if (lookahead == 'r') ADVANCE(590); + END_STATE(); + case 1826: + if (lookahead == 'r') ADVANCE(1258); + END_STATE(); + case 1827: + if (lookahead == 'r') ADVANCE(1597); + END_STATE(); + case 1828: + if (lookahead == 'r') ADVANCE(1532); + END_STATE(); + case 1829: + if (lookahead == 'r') ADVANCE(1918); + END_STATE(); + case 1830: + if (lookahead == 'r') ADVANCE(1521); + END_STATE(); + case 1831: + if (lookahead == 'r') ADVANCE(1236); + END_STATE(); + case 1832: + if (lookahead == 'r') ADVANCE(1560); + END_STATE(); + case 1833: + if (lookahead == 'r') ADVANCE(1384); + END_STATE(); + case 1834: + if (lookahead == 'r') ADVANCE(1293); + END_STATE(); + case 1835: + if (lookahead == 'r') ADVANCE(1388); + END_STATE(); + case 1836: + if (lookahead == 'r') ADVANCE(988); + END_STATE(); + case 1837: + if (lookahead == 'r') ADVANCE(1598); + END_STATE(); + case 1838: + if (lookahead == 'r') ADVANCE(1949); + END_STATE(); + case 1839: + if (lookahead == 'r') ADVANCE(929); + if (lookahead == 't') ADVANCE(551); + END_STATE(); + case 1840: + if (lookahead == 'r') ADVANCE(1602); + END_STATE(); + case 1841: + if (lookahead == 'r') ADVANCE(1603); + END_STATE(); + case 1842: + if (lookahead == 'r') ADVANCE(1607); + END_STATE(); + case 1843: + if (lookahead == 'r') ADVANCE(1608); + END_STATE(); + case 1844: + if (lookahead == 'r') ADVANCE(1609); + END_STATE(); + case 1845: + if (lookahead == 'r') ADVANCE(1081); + END_STATE(); + case 1846: + if (lookahead == 'r') ADVANCE(932); + END_STATE(); + case 1847: + if (lookahead == 'r') ADVANCE(1613); + END_STATE(); + case 1848: + if (lookahead == 'r') ADVANCE(1752); + END_STATE(); + case 1849: + if (lookahead == 'r') ADVANCE(1037); + END_STATE(); + case 1850: + if (lookahead == 'r') ADVANCE(1742); + END_STATE(); + case 1851: + if (lookahead == 'r') ADVANCE(1775); + END_STATE(); + case 1852: + if (lookahead == 'r') ADVANCE(1056); + END_STATE(); + case 1853: + if (lookahead == 'r') ADVANCE(958); + END_STATE(); + case 1854: + if (lookahead == 'r') ADVANCE(680); + END_STATE(); + case 1855: + if (lookahead == 'r') ADVANCE(595); + END_STATE(); + case 1856: + if (lookahead == 'r') ADVANCE(640); + END_STATE(); + case 1857: + if (lookahead == 'r') ADVANCE(1268); + END_STATE(); + case 1858: + if (lookahead == 'r') ADVANCE(1933); + END_STATE(); + case 1859: + if (lookahead == 'r') ADVANCE(834); + END_STATE(); + case 1860: + if (lookahead == 'r') ADVANCE(2013); + END_STATE(); + case 1861: + if (lookahead == 'r') ADVANCE(1004); + END_STATE(); + case 1862: + if (lookahead == 'r') ADVANCE(1134); + if (lookahead == 'u') ADVANCE(144); + END_STATE(); + case 1863: + if (lookahead == 'r') ADVANCE(1996); + END_STATE(); + case 1864: + if (lookahead == 'r') ADVANCE(2058); + END_STATE(); + case 1865: + if (lookahead == 'r') ADVANCE(1935); + END_STATE(); + case 1866: + if (lookahead == 'r') ADVANCE(1011); + END_STATE(); + case 1867: + if (lookahead == 'r') ADVANCE(1028); + END_STATE(); + case 1868: + if (lookahead == 'r') ADVANCE(1813); + END_STATE(); + case 1869: + if (lookahead == 'r') ADVANCE(619); + END_STATE(); + case 1870: + if (lookahead == 'r') ADVANCE(2011); + END_STATE(); + case 1871: + if (lookahead == 'r') ADVANCE(1827); + END_STATE(); + case 1872: + if (lookahead == 'r') ADVANCE(1837); + END_STATE(); + case 1873: + if (lookahead == 'r') ADVANCE(1841); + END_STATE(); + case 1874: + if (lookahead == 'r') ADVANCE(1842); + END_STATE(); + case 1875: + if (lookahead == 'r') ADVANCE(1843); + END_STATE(); + case 1876: + if (lookahead == 'r') ADVANCE(1847); + END_STATE(); + case 1877: + if (lookahead == 'r') ADVANCE(1046); + END_STATE(); + case 1878: + if (lookahead == 'r') ADVANCE(858); + END_STATE(); + case 1879: + if (lookahead == 'r') ADVANCE(1069); + END_STATE(); + case 1880: + if (lookahead == 'r') ADVANCE(462); + END_STATE(); + case 1881: + if (lookahead == 'r') ADVANCE(1715); + END_STATE(); + case 1882: + if (lookahead == 'r') ADVANCE(2034); + END_STATE(); + case 1883: + if (lookahead == 'r') ADVANCE(1717); + END_STATE(); + case 1884: + if (lookahead == 'r') ADVANCE(1078); + END_STATE(); + case 1885: + if (lookahead == 'r') ADVANCE(1079); + END_STATE(); + case 1886: + if (lookahead == 'r') ADVANCE(1080); + END_STATE(); + case 1887: + if (lookahead == 'r') ADVANCE(1320); + END_STATE(); + case 1888: + if (lookahead == 'r') ADVANCE(1322); + END_STATE(); + case 1889: + if (lookahead == 'r') ADVANCE(1323); + END_STATE(); + case 1890: + if (lookahead == 's') ADVANCE(144); + END_STATE(); + case 1891: + if (lookahead == 's') ADVANCE(1038); + END_STATE(); + case 1892: + if (lookahead == 's') ADVANCE(306); + if (lookahead == 'u') ADVANCE(1476); + END_STATE(); + case 1893: + if (lookahead == 's') ADVANCE(461); + END_STATE(); + case 1894: + if (lookahead == 's') ADVANCE(487); + END_STATE(); + case 1895: + if (lookahead == 's') ADVANCE(192); + END_STATE(); + case 1896: + if (lookahead == 's') ADVANCE(340); + END_STATE(); + case 1897: + if (lookahead == 's') ADVANCE(210); + END_STATE(); + case 1898: + if (lookahead == 's') ADVANCE(169); + END_STATE(); + case 1899: + if (lookahead == 's') ADVANCE(171); + END_STATE(); + case 1900: + if (lookahead == 's') ADVANCE(170); + END_STATE(); + case 1901: + if (lookahead == 's') ADVANCE(1945); + END_STATE(); + case 1902: + if (lookahead == 's') ADVANCE(481); + END_STATE(); + case 1903: + if (lookahead == 's') ADVANCE(1610); + END_STATE(); + case 1904: + if (lookahead == 's') ADVANCE(271); + END_STATE(); + case 1905: + if (lookahead == 's') ADVANCE(1210); + END_STATE(); + case 1906: + if (lookahead == 's') ADVANCE(495); + END_STATE(); + case 1907: + if (lookahead == 's') ADVANCE(329); + END_STATE(); + case 1908: + if (lookahead == 's') ADVANCE(237); + END_STATE(); + case 1909: + if (lookahead == 's') ADVANCE(195); + END_STATE(); + case 1910: + if (lookahead == 's') ADVANCE(1664); + END_STATE(); + case 1911: + if (lookahead == 's') ADVANCE(1170); + END_STATE(); + case 1912: + if (lookahead == 's') ADVANCE(2135); + END_STATE(); + case 1913: + if (lookahead == 's') ADVANCE(323); + END_STATE(); + case 1914: + if (lookahead == 's') ADVANCE(1171); + END_STATE(); + case 1915: + if (lookahead == 's') ADVANCE(1175); + END_STATE(); + case 1916: + if (lookahead == 's') ADVANCE(1890); + END_STATE(); + case 1917: + if (lookahead == 's') ADVANCE(1246); + END_STATE(); + case 1918: + if (lookahead == 's') ADVANCE(1345); + END_STATE(); + case 1919: + if (lookahead == 's') ADVANCE(2039); + END_STATE(); + case 1920: + if (lookahead == 's') ADVANCE(881); + END_STATE(); + case 1921: + if (lookahead == 's') ADVANCE(913); + END_STATE(); + case 1922: + if (lookahead == 's') ADVANCE(960); + END_STATE(); + case 1923: + if (lookahead == 's') ADVANCE(2088); + END_STATE(); + case 1924: + if (lookahead == 's') ADVANCE(2044); + END_STATE(); + case 1925: + if (lookahead == 's') ADVANCE(1990); + END_STATE(); + case 1926: + if (lookahead == 's') ADVANCE(1370); + END_STATE(); + case 1927: + if (lookahead == 's') ADVANCE(1902); + END_STATE(); + case 1928: + if (lookahead == 's') ADVANCE(1979); + END_STATE(); + case 1929: + if (lookahead == 's') ADVANCE(1983); + END_STATE(); + case 1930: + if (lookahead == 's') ADVANCE(1308); + END_STATE(); + case 1931: + if (lookahead == 's') ADVANCE(1976); + END_STATE(); + case 1932: + if (lookahead == 's') ADVANCE(998); + END_STATE(); + case 1933: + if (lookahead == 's') ADVANCE(936); + END_STATE(); + case 1934: + if (lookahead == 's') ADVANCE(972); + END_STATE(); + case 1935: + if (lookahead == 's') ADVANCE(957); + END_STATE(); + case 1936: + if (lookahead == 's') ADVANCE(1180); + END_STATE(); + case 1937: + if (lookahead == 's') ADVANCE(2046); + END_STATE(); + case 1938: + if (lookahead == 's') ADVANCE(2001); + END_STATE(); + case 1939: + if (lookahead == 's') ADVANCE(1989); + END_STATE(); + case 1940: + if (lookahead == 's') ADVANCE(1003); + END_STATE(); + case 1941: + if (lookahead == 's') ADVANCE(1255); + END_STATE(); + case 1942: + if (lookahead == 's') ADVANCE(1018); + END_STATE(); + case 1943: + if (lookahead == 's') ADVANCE(1074); + END_STATE(); + case 1944: + if (lookahead == 't') ADVANCE(2125); + END_STATE(); + case 1945: + if (lookahead == 't') ADVANCE(144); + END_STATE(); + case 1946: + if (lookahead == 't') ADVANCE(144); + if (lookahead == 'u') ADVANCE(738); + END_STATE(); + case 1947: + if (lookahead == 't') ADVANCE(144); + if (lookahead == 'w') ADVANCE(1508); + END_STATE(); + case 1948: + if (lookahead == 't') ADVANCE(385); + END_STATE(); + case 1949: + if (lookahead == 't') ADVANCE(503); + END_STATE(); + case 1950: + if (lookahead == 't') ADVANCE(688); + END_STATE(); + case 1951: + if (lookahead == 't') ADVANCE(351); + END_STATE(); + case 1952: + if (lookahead == 't') ADVANCE(404); + END_STATE(); + case 1953: + if (lookahead == 't') ADVANCE(444); + END_STATE(); + case 1954: + if (lookahead == 't') ADVANCE(687); + END_STATE(); + case 1955: + if (lookahead == 't') ADVANCE(252); + END_STATE(); + case 1956: + if (lookahead == 't') ADVANCE(1143); + END_STATE(); + case 1957: + if (lookahead == 't') ADVANCE(499); + END_STATE(); + case 1958: + if (lookahead == 't') ADVANCE(510); + END_STATE(); + case 1959: + if (lookahead == 't') ADVANCE(407); + END_STATE(); + case 1960: + if (lookahead == 't') ADVANCE(410); + END_STATE(); + case 1961: + if (lookahead == 't') ADVANCE(514); + END_STATE(); + case 1962: + if (lookahead == 't') ADVANCE(695); + END_STATE(); + case 1963: + if (lookahead == 't') ADVANCE(408); + END_STATE(); + case 1964: + if (lookahead == 't') ADVANCE(409); + END_STATE(); + case 1965: + if (lookahead == 't') ADVANCE(1737); + END_STATE(); + case 1966: + if (lookahead == 't') ADVANCE(520); + END_STATE(); + case 1967: + if (lookahead == 't') ADVANCE(995); + END_STATE(); + case 1968: + if (lookahead == 't') ADVANCE(166); + END_STATE(); + case 1969: + if (lookahead == 't') ADVANCE(1465); + END_STATE(); + case 1970: + if (lookahead == 't') ADVANCE(460); + END_STATE(); + case 1971: + if (lookahead == 't') ADVANCE(741); + END_STATE(); + case 1972: + if (lookahead == 't') ADVANCE(2126); + END_STATE(); + case 1973: + if (lookahead == 't') ADVANCE(243); + if (lookahead == 'v') ADVANCE(1282); + END_STATE(); + case 1974: + if (lookahead == 't') ADVANCE(343); + END_STATE(); + case 1975: + if (lookahead == 't') ADVANCE(684); + END_STATE(); + case 1976: + if (lookahead == 't') ADVANCE(1575); + END_STATE(); + case 1977: + if (lookahead == 't') ADVANCE(405); + END_STATE(); + case 1978: + if (lookahead == 't') ADVANCE(1022); + END_STATE(); + case 1979: + if (lookahead == 't') ADVANCE(202); + END_STATE(); + case 1980: + if (lookahead == 't') ADVANCE(2130); + END_STATE(); + case 1981: + if (lookahead == 't') ADVANCE(237); + END_STATE(); + case 1982: + if (lookahead == 't') ADVANCE(511); + END_STATE(); + case 1983: + if (lookahead == 't') ADVANCE(318); + END_STATE(); + case 1984: + if (lookahead == 't') ADVANCE(1170); + END_STATE(); + case 1985: + if (lookahead == 't') ADVANCE(2131); + END_STATE(); + case 1986: + if (lookahead == 't') ADVANCE(297); + END_STATE(); + case 1987: + if (lookahead == 't') ADVANCE(1175); + END_STATE(); + case 1988: + if (lookahead == 't') ADVANCE(296); + END_STATE(); + case 1989: + if (lookahead == 't') ADVANCE(1890); + END_STATE(); + case 1990: + if (lookahead == 't') ADVANCE(246); + END_STATE(); + case 1991: + if (lookahead == 't') ADVANCE(251); + END_STATE(); + case 1992: + if (lookahead == 't') ADVANCE(1172); + END_STATE(); + case 1993: + if (lookahead == 't') ADVANCE(1473); + END_STATE(); + case 1994: + if (lookahead == 't') ADVANCE(913); + END_STATE(); + case 1995: + if (lookahead == 't') ADVANCE(1645); + END_STATE(); + case 1996: + if (lookahead == 't') ADVANCE(1896); + END_STATE(); + case 1997: + if (lookahead == 't') ADVANCE(1200); + END_STATE(); + case 1998: + if (lookahead == 't') ADVANCE(1488); + END_STATE(); + case 1999: + if (lookahead == 't') ADVANCE(944); + END_STATE(); + case 2000: + if (lookahead == 't') ADVANCE(1922); + END_STATE(); + case 2001: + if (lookahead == 't') ADVANCE(986); + END_STATE(); + case 2002: + if (lookahead == 't') ADVANCE(1584); + END_STATE(); + case 2003: + if (lookahead == 't') ADVANCE(1772); + END_STATE(); + case 2004: + if (lookahead == 't') ADVANCE(621); + END_STATE(); + case 2005: + if (lookahead == 't') ADVANCE(1281); + END_STATE(); + case 2006: + if (lookahead == 't') ADVANCE(1258); + END_STATE(); + case 2007: + if (lookahead == 't') ADVANCE(1292); + END_STATE(); + case 2008: + if (lookahead == 't') ADVANCE(1581); + END_STATE(); + case 2009: + if (lookahead == 't') ADVANCE(1283); + END_STATE(); + case 2010: + if (lookahead == 't') ADVANCE(1306); + END_STATE(); + case 2011: + if (lookahead == 't') ADVANCE(1300); + END_STATE(); + case 2012: + if (lookahead == 't') ADVANCE(1260); + END_STATE(); + case 2013: + if (lookahead == 't') ADVANCE(1740); + END_STATE(); + case 2014: + if (lookahead == 't') ADVANCE(1072); + END_STATE(); + case 2015: + if (lookahead == 't') ADVANCE(693); + END_STATE(); + case 2016: + if (lookahead == 't') ADVANCE(1540); + END_STATE(); + case 2017: + if (lookahead == 't') ADVANCE(1245); + END_STATE(); + case 2018: + if (lookahead == 't') ADVANCE(1638); + END_STATE(); + case 2019: + if (lookahead == 't') ADVANCE(1541); + END_STATE(); + case 2020: + if (lookahead == 't') ADVANCE(1825); + END_STATE(); + case 2021: + if (lookahead == 't') ADVANCE(1021); + END_STATE(); + case 2022: + if (lookahead == 't') ADVANCE(629); + END_STATE(); + case 2023: + if (lookahead == 't') ADVANCE(1222); + END_STATE(); + case 2024: + if (lookahead == 't') ADVANCE(1023); + END_STATE(); + case 2025: + if (lookahead == 't') ADVANCE(1025); + END_STATE(); + case 2026: + if (lookahead == 't') ADVANCE(1027); + END_STATE(); + case 2027: + if (lookahead == 't') ADVANCE(1030); + END_STATE(); + case 2028: + if (lookahead == 't') ADVANCE(1048); + END_STATE(); + case 2029: + if (lookahead == 't') ADVANCE(1032); + END_STATE(); + case 2030: + if (lookahead == 't') ADVANCE(1201); + END_STATE(); + case 2031: + if (lookahead == 't') ADVANCE(672); + END_STATE(); + case 2032: + if (lookahead == 't') ADVANCE(1291); + END_STATE(); + case 2033: + if (lookahead == 't') ADVANCE(1297); + END_STATE(); + case 2034: + if (lookahead == 't') ADVANCE(1307); + END_STATE(); + case 2035: + if (lookahead == 't') ADVANCE(692); + END_STATE(); + case 2036: + if (lookahead == 't') ADVANCE(681); + END_STATE(); + case 2037: + if (lookahead == 'u') ADVANCE(144); + END_STATE(); + case 2038: + if (lookahead == 'u') ADVANCE(609); + END_STATE(); + case 2039: + if (lookahead == 'u') ADVANCE(2149); + END_STATE(); + case 2040: + if (lookahead == 'u') ADVANCE(1575); + END_STATE(); + case 2041: + if (lookahead == 'u') ADVANCE(295); + END_STATE(); + case 2042: + if (lookahead == 'u') ADVANCE(711); + END_STATE(); + case 2043: + if (lookahead == 'u') ADVANCE(724); + END_STATE(); + case 2044: + if (lookahead == 'u') ADVANCE(722); + END_STATE(); + case 2045: + if (lookahead == 'u') ADVANCE(1664); + END_STATE(); + case 2046: + if (lookahead == 'u') ADVANCE(705); + END_STATE(); + case 2047: + if (lookahead == 'u') ADVANCE(1894); + END_STATE(); + case 2048: + if (lookahead == 'u') ADVANCE(729); + END_STATE(); + case 2049: + if (lookahead == 'u') ADVANCE(1981); + END_STATE(); + case 2050: + if (lookahead == 'u') ADVANCE(1981); + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 2051: + if (lookahead == 'u') ADVANCE(1450); + END_STATE(); + case 2052: + if (lookahead == 'u') ADVANCE(1890); + END_STATE(); + case 2053: + if (lookahead == 'u') ADVANCE(996); + END_STATE(); + case 2054: + if (lookahead == 'u') ADVANCE(1906); + END_STATE(); + case 2055: + if (lookahead == 'u') ADVANCE(913); + END_STATE(); + case 2056: + if (lookahead == 'u') ADVANCE(1453); + END_STATE(); + case 2057: + if (lookahead == 'u') ADVANCE(794); + END_STATE(); + case 2058: + if (lookahead == 'u') ADVANCE(946); + END_STATE(); + case 2059: + if (lookahead == 'u') ADVANCE(587); + END_STATE(); + case 2060: + if (lookahead == 'u') ADVANCE(1897); + END_STATE(); + case 2061: + if (lookahead == 'u') ADVANCE(1576); + END_STATE(); + case 2062: + if (lookahead == 'u') ADVANCE(1361); + END_STATE(); + case 2063: + if (lookahead == 'u') ADVANCE(1921); + END_STATE(); + case 2064: + if (lookahead == 'u') ADVANCE(828); + END_STATE(); + case 2065: + if (lookahead == 'u') ADVANCE(1908); + END_STATE(); + case 2066: + if (lookahead == 'u') ADVANCE(1229); + END_STATE(); + case 2067: + if (lookahead == 'u') ADVANCE(981); + END_STATE(); + case 2068: + if (lookahead == 'u') ADVANCE(608); + END_STATE(); + case 2069: + if (lookahead == 'u') ADVANCE(1294); + END_STATE(); + case 2070: + if (lookahead == 'u') ADVANCE(1228); + END_STATE(); + case 2071: + if (lookahead == 'u') ADVANCE(1768); + END_STATE(); + case 2072: + if (lookahead == 'u') ADVANCE(1740); + END_STATE(); + case 2073: + if (lookahead == 'u') ADVANCE(1769); + END_STATE(); + case 2074: + if (lookahead == 'u') ADVANCE(1833); + END_STATE(); + case 2075: + if (lookahead == 'u') ADVANCE(1835); + END_STATE(); + case 2076: + if (lookahead == 'u') ADVANCE(1180); + END_STATE(); + case 2077: + if (lookahead == 'u') ADVANCE(1463); + END_STATE(); + case 2078: + if (lookahead == 'u') ADVANCE(1534); + END_STATE(); + case 2079: + if (lookahead == 'u') ADVANCE(1928); + END_STATE(); + case 2080: + if (lookahead == 'u') ADVANCE(1263); + END_STATE(); + case 2081: + if (lookahead == 'u') ADVANCE(1387); + END_STATE(); + case 2082: + if (lookahead == 'u') ADVANCE(1994); + END_STATE(); + case 2083: + if (lookahead == 'u') ADVANCE(628); + END_STATE(); + case 2084: + if (lookahead == 'u') ADVANCE(1403); + END_STATE(); + case 2085: + if (lookahead == 'u') ADVANCE(1649); + END_STATE(); + case 2086: + if (lookahead == 'u') ADVANCE(1461); + END_STATE(); + case 2087: + if (lookahead == 'u') ADVANCE(634); + END_STATE(); + case 2088: + if (lookahead == 'u') ADVANCE(1849); + END_STATE(); + case 2089: + if (lookahead == 'u') ADVANCE(1442); + END_STATE(); + case 2090: + if (lookahead == 'u') ADVANCE(677); + END_STATE(); + case 2091: + if (lookahead == 'u') ADVANCE(735); + END_STATE(); + case 2092: + if (lookahead == 'u') ADVANCE(679); + END_STATE(); + case 2093: + if (lookahead == 'u') ADVANCE(734); + if (lookahead == 'w') ADVANCE(1500); + END_STATE(); + case 2094: + if (lookahead == 'u') ADVANCE(737); + END_STATE(); + case 2095: + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 2096: + if (lookahead == 'v') ADVANCE(144); + if (lookahead == 'w') ADVANCE(912); + END_STATE(); + case 2097: + if (lookahead == 'v') ADVANCE(158); + END_STATE(); + case 2098: + if (lookahead == 'v') ADVANCE(237); + END_STATE(); + case 2099: + if (lookahead == 'v') ADVANCE(990); + if (lookahead == 'w') ADVANCE(989); + END_STATE(); + case 2100: + if (lookahead == 'v') ADVANCE(913); + END_STATE(); + case 2101: + if (lookahead == 'v') ADVANCE(937); + END_STATE(); + case 2102: + if (lookahead == 'v') ADVANCE(1076); + END_STATE(); + case 2103: + if (lookahead == 'w') ADVANCE(144); + END_STATE(); + case 2104: + if (lookahead == 'w') ADVANCE(150); + END_STATE(); + case 2105: + if (lookahead == 'w') ADVANCE(154); + END_STATE(); + case 2106: + if (lookahead == 'w') ADVANCE(153); + END_STATE(); + case 2107: + if (lookahead == 'w') ADVANCE(152); + END_STATE(); + case 2108: + if (lookahead == 'w') ADVANCE(1575); + END_STATE(); + case 2109: + if (lookahead == 'w') ADVANCE(534); + END_STATE(); + case 2110: + if (lookahead == 'w') ADVANCE(318); + END_STATE(); + case 2111: + if (lookahead == 'w') ADVANCE(953); + END_STATE(); + case 2112: + if (lookahead == 'w') ADVANCE(1890); + END_STATE(); + case 2113: + if (lookahead == 'w') ADVANCE(1491); + END_STATE(); + case 2114: + if (lookahead == 'w') ADVANCE(1508); + END_STATE(); + case 2115: + if (lookahead == 'w') ADVANCE(1505); + END_STATE(); + case 2116: + if (lookahead == 'w') ADVANCE(1501); + END_STATE(); + case 2117: + if (lookahead == 'w') ADVANCE(1289); + END_STATE(); + case 2118: + if (lookahead == 'w') ADVANCE(336); + END_STATE(); + case 2119: + if (lookahead == 'w') ADVANCE(1415); + END_STATE(); + case 2120: + if (lookahead == 'w') ADVANCE(1573); + END_STATE(); + case 2121: + if (lookahead == 'w') ADVANCE(1572); + END_STATE(); + case 2122: + if (lookahead == 'x') ADVANCE(144); + END_STATE(); + case 2123: + if (lookahead == 'x') ADVANCE(1945); + END_STATE(); + case 2124: + if (lookahead == 'x') ADVANCE(246); + END_STATE(); + case 2125: + if (lookahead == 'y') ADVANCE(144); + END_STATE(); + case 2126: + if (lookahead == 'y') ADVANCE(502); + END_STATE(); + case 2127: + if (lookahead == 'y') ADVANCE(971); + END_STATE(); + case 2128: + if (lookahead == 'y') ADVANCE(449); + END_STATE(); + case 2129: + if (lookahead == 'y') ADVANCE(464); + END_STATE(); + case 2130: + if (lookahead == 'y') ADVANCE(326); + END_STATE(); + case 2131: + if (lookahead == 'y') ADVANCE(2095); + END_STATE(); + case 2132: + if (lookahead == 'y') ADVANCE(501); + END_STATE(); + case 2133: + if (lookahead == 'y') ADVANCE(508); + END_STATE(); + case 2134: + if (lookahead == 'y') ADVANCE(477); + END_STATE(); + case 2135: + if (lookahead == 'y') ADVANCE(1450); + END_STATE(); + case 2136: + if (lookahead == 'y') ADVANCE(912); + END_STATE(); + case 2137: + if (lookahead == 'y') ADVANCE(1890); + END_STATE(); + case 2138: + if (lookahead == 'y') ADVANCE(960); + END_STATE(); + case 2139: + if (lookahead == 'z') ADVANCE(1652); + END_STATE(); + case 2140: + if (lookahead == 'z') ADVANCE(565); + END_STATE(); + case 2141: + if (lookahead == 'z') ADVANCE(1268); + END_STATE(); + case 2142: + if (lookahead == 'z') ADVANCE(999); + END_STATE(); + case 2143: + if (lookahead == '2' || + lookahead == '4') ADVANCE(144); + END_STATE(); + case 2144: + if (lookahead == '3' || + lookahead == '5') ADVANCE(144); + END_STATE(); + case 2145: + if (lookahead == '6' || + lookahead == '8') ADVANCE(144); + END_STATE(); + case 2146: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(144); + END_STATE(); + case 2147: + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(369); + END_STATE(); + case 2148: + if (lookahead == 'a' || + lookahead == 'h') ADVANCE(144); + if (lookahead == 'w') ADVANCE(1041); + END_STATE(); + case 2149: + if (lookahead == 'b' || + lookahead == 'p') ADVANCE(144); + END_STATE(); + case 2150: + if (lookahead == 'b' || + lookahead == 'u') ADVANCE(144); + END_STATE(); + case 2151: + if (lookahead == 'd' || + lookahead == 'u') ADVANCE(144); + END_STATE(); + case 2152: + if (lookahead == 'e' || + lookahead == 'k') ADVANCE(144); + END_STATE(); + case 2153: + if (lookahead == 'e' || + lookahead == 't') ADVANCE(144); + END_STATE(); + case 2154: + if (lookahead == 'f' || + lookahead == 'r') ADVANCE(144); + END_STATE(); + case 2155: + if (lookahead == 'l' || + lookahead == 'r') ADVANCE(144); + END_STATE(); + case 2156: + if (lookahead == 'o' || + lookahead == 'u') ADVANCE(144); + END_STATE(); + case 2157: + if (lookahead == 'r' || + lookahead == 'y') ADVANCE(144); + END_STATE(); + case 2158: + if (lookahead == '3' || + lookahead == '4') ADVANCE(144); + END_STATE(); + case 2159: + if (lookahead == 'R' || + lookahead == 'S') ADVANCE(144); + if (lookahead == 'a') ADVANCE(1901); + if (lookahead == 'c') ADVANCE(1276); + if (lookahead == 'd') ADVANCE(567); + END_STATE(); + case 2160: + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(144); + END_STATE(); + case 2161: + if (lookahead == '4' || + lookahead == '5' || + lookahead == '8') ADVANCE(144); + if (lookahead == ';') ADVANCE(2176); + END_STATE(); + case 2162: + if (('a' <= lookahead && lookahead <= 'c')) ADVANCE(144); + END_STATE(); + case 2163: + if (lookahead == 'L' || + lookahead == 'R' || + lookahead == 'l' || + lookahead == 'r') ADVANCE(144); + END_STATE(); + case 2164: + if (('1' <= lookahead && lookahead <= '3') || + lookahead == 'E') ADVANCE(144); + if (lookahead == ';') ADVANCE(2176); + if (lookahead == 'd') ADVANCE(1586); + if (lookahead == 'e') ADVANCE(229); + if (lookahead == 'h') ADVANCE(1903); + if (lookahead == 'l') ADVANCE(571); + if (lookahead == 'm') ADVANCE(2062); + if (lookahead == 'n') ADVANCE(2146); + if (lookahead == 'p') ADVANCE(1435); + if (lookahead == 's') ADVANCE(1013); + END_STATE(); + case 2165: + if (('2' <= lookahead && lookahead <= '6') || + lookahead == '8') ADVANCE(144); + if (lookahead == ';') ADVANCE(2176); + END_STATE(); + case 2166: + if (('a' <= lookahead && lookahead <= 'h')) ADVANCE(144); + END_STATE(); + case 2167: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(374); + END_STATE(); + case 2168: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(11); + END_STATE(); + case 2169: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); + END_STATE(); + case 2170: + if (eof) ADVANCE(2174); + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2191); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2197); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2182); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2203); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2207); + if (lookahead == ']') ADVANCE(2179); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 2171: + if (eof) ADVANCE(2174); + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2191); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2182); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2204); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2207); + if (lookahead == ']') ADVANCE(2179); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 2172: + if (eof) ADVANCE(2174); + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2191); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2182); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2203); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2207); + if (lookahead == ']') ADVANCE(2180); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 2173: + if (eof) ADVANCE(2174); + if (lookahead == '\t') ADVANCE(2233); + if (lookahead == '\n') ADVANCE(2217); + if (lookahead == '\r') ADVANCE(2218); + if (lookahead == ' ') ADVANCE(2235); + if (lookahead == '!') ADVANCE(2185); + if (lookahead == '"') ADVANCE(2186); + if (lookahead == '#') ADVANCE(2187); + if (lookahead == '$') ADVANCE(2188); + if (lookahead == '%') ADVANCE(2189); + if (lookahead == '&') ADVANCE(2191); + if (lookahead == '\'') ADVANCE(2192); + if (lookahead == '(') ADVANCE(2215); + if (lookahead == ')') ADVANCE(2216); + if (lookahead == '*') ADVANCE(2193); + if (lookahead == '+') ADVANCE(2194); + if (lookahead == ',') ADVANCE(2195); + if (lookahead == '-') ADVANCE(2196); + if (lookahead == '.') ADVANCE(2198); + if (lookahead == '/') ADVANCE(2199); + if (lookahead == ':') ADVANCE(2200); + if (lookahead == ';') ADVANCE(2201); + if (lookahead == '<') ADVANCE(2182); + if (lookahead == '=') ADVANCE(2202); + if (lookahead == '>') ADVANCE(2184); + if (lookahead == '?') ADVANCE(2203); + if (lookahead == '@') ADVANCE(2205); + if (lookahead == '[') ADVANCE(2178); + if (lookahead == '\\') ADVANCE(2207); + if (lookahead == ']') ADVANCE(2179); + if (lookahead == '^') ADVANCE(2208); + if (lookahead == '_') ADVANCE(2209); + if (lookahead == '`') ADVANCE(2210); + if (lookahead == '{') ADVANCE(2211); + if (lookahead == '|') ADVANCE(2212); + if (lookahead == '}') ADVANCE(2213); + if (lookahead == '~') ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + if (lookahead != 0) ADVANCE(2236); + END_STATE(); + case 2174: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 2175: + ACCEPT_TOKEN(sym__backslash_escape); + END_STATE(); + case 2176: + ACCEPT_TOKEN(sym_entity_reference); + END_STATE(); + case 2177: + ACCEPT_TOKEN(sym_numeric_character_reference); + END_STATE(); + case 2178: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 2179: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 2180: + ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == ']') ADVANCE(376); + END_STATE(); + case 2181: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 2182: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(9); + if (lookahead == '?') ADVANCE(2227); + if (('#' <= lookahead && lookahead <= '\'') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '9') || + lookahead == '=' || + ('^' <= lookahead && lookahead <= '`') || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(379); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(378); + END_STATE(); + case 2183: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '!') ADVANCE(12); + if (lookahead == '?') ADVANCE(2226); + END_STATE(); + case 2184: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 2185: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 2186: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 2187: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 2188: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 2189: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 2190: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 2191: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '#') ADVANCE(2147); + if (lookahead == 'A') ADVANCE(450); + if (lookahead == 'B') ADVANCE(519); + if (lookahead == 'C') ADVANCE(473); + if (lookahead == 'D') ADVANCE(433); + if (lookahead == 'E') ADVANCE(489); + if (lookahead == 'F') ADVANCE(744); + if (lookahead == 'G') ADVANCE(176); + if (lookahead == 'H') ADVANCE(380); + if (lookahead == 'I') ADVANCE(456); + if (lookahead == 'J') ADVANCE(846); + if (lookahead == 'K') ADVANCE(472); + if (lookahead == 'L') ADVANCE(175); + if (lookahead == 'M') ADVANCE(561); + if (lookahead == 'N') ADVANCE(480); + if (lookahead == 'O') ADVANCE(458); + if (lookahead == 'P') ADVANCE(557); + if (lookahead == 'Q') ADVANCE(512); + if (lookahead == 'R') ADVANCE(413); + if (lookahead == 'S') ADVANCE(469); + if (lookahead == 'T') ADVANCE(470); + if (lookahead == 'U') ADVANCE(538); + if (lookahead == 'V') ADVANCE(442); + if (lookahead == 'W') ADVANCE(798); + if (lookahead == 'X') ADVANCE(1086); + if (lookahead == 'Y') ADVANCE(383); + if (lookahead == 'Z') ADVANCE(474); + if (lookahead == 'a') ADVANCE(517); + if (lookahead == 'b') ADVANCE(488); + if (lookahead == 'c') ADVANCE(524); + if (lookahead == 'd') ADVANCE(389); + if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'f') ADVANCE(566); + if (lookahead == 'g') ADVANCE(165); + if (lookahead == 'h') ADVANCE(391); + if (lookahead == 'i') ADVANCE(518); + if (lookahead == 'j') ADVANCE(845); + if (lookahead == 'k') ADVANCE(650); + if (lookahead == 'l') ADVANCE(145); + if (lookahead == 'm') ADVANCE(436); + if (lookahead == 'n') ADVANCE(466); + if (lookahead == 'o') ADVANCE(500); + if (lookahead == 'p') ADVANCE(588); + if (lookahead == 'q') ADVANCE(1087); + if (lookahead == 'r') ADVANCE(381); + if (lookahead == 's') ADVANCE(645); + if (lookahead == 't') ADVANCE(541); + if (lookahead == 'u') ADVANCE(390); + if (lookahead == 'v') ADVANCE(387); + if (lookahead == 'w') ADVANCE(797); + if (lookahead == 'x') ADVANCE(753); + if (lookahead == 'y') ADVANCE(556); + if (lookahead == 'z') ADVANCE(646); + END_STATE(); + case 2192: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 2193: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 2194: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 2195: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 2196: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 2197: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(375); + END_STATE(); + case 2198: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 2199: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 2200: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 2201: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 2202: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 2203: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 2204: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '>') ADVANCE(2228); + END_STATE(); + case 2205: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 2206: + ACCEPT_TOKEN(anon_sym_BSLASH); + END_STATE(); + case 2207: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (('!' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + ('[' <= lookahead && lookahead <= '`') || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(2175); + END_STATE(); + case 2208: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 2209: + ACCEPT_TOKEN(anon_sym__); + END_STATE(); + case 2210: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 2211: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 2212: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 2213: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 2214: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 2215: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 2216: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 2217: + ACCEPT_TOKEN(sym__newline_token); + END_STATE(); + case 2218: + ACCEPT_TOKEN(sym__newline_token); + if (lookahead == '\n') ADVANCE(2217); + END_STATE(); + case 2219: + ACCEPT_TOKEN(sym_uri_autolink); + END_STATE(); + case 2220: + ACCEPT_TOKEN(sym_email_autolink); + END_STATE(); + case 2221: + ACCEPT_TOKEN(sym__attribute_name); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2221); + END_STATE(); + case 2222: + ACCEPT_TOKEN(aux_sym__attribute_value_token1); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '"' && + lookahead != '\'' && + (lookahead < '<' || '>' < lookahead) && + lookahead != '`') ADVANCE(2222); + END_STATE(); + case 2223: + ACCEPT_TOKEN(anon_sym_LT_BANG_DASH_DASH); + END_STATE(); + case 2224: + ACCEPT_TOKEN(anon_sym_LT_BANG_DASH_DASH); + if (lookahead == '@') ADVANCE(2168); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '\'') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '9') || + lookahead == '=' || + ('?' <= lookahead && lookahead <= 'Z') || + ('^' <= lookahead && lookahead <= '~')) ADVANCE(379); + END_STATE(); + case 2225: + ACCEPT_TOKEN(anon_sym_DASH_DASH_GT); + END_STATE(); + case 2226: + ACCEPT_TOKEN(anon_sym_LT_QMARK); + END_STATE(); + case 2227: + ACCEPT_TOKEN(anon_sym_LT_QMARK); + if (lookahead == '@') ADVANCE(2168); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '\'') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '9') || + lookahead == '=' || + ('?' <= lookahead && lookahead <= 'Z') || + ('^' <= lookahead && lookahead <= '~')) ADVANCE(379); + END_STATE(); + case 2228: + ACCEPT_TOKEN(anon_sym_QMARK_GT); + END_STATE(); + case 2229: + ACCEPT_TOKEN(aux_sym__declaration_token1); + if (lookahead == '@') ADVANCE(2168); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2229); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '\'') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '9') || + lookahead == '=' || + lookahead == '?' || + ('^' <= lookahead && lookahead <= '~')) ADVANCE(379); + END_STATE(); + case 2230: + ACCEPT_TOKEN(aux_sym__declaration_token1); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(2230); + END_STATE(); + case 2231: + ACCEPT_TOKEN(anon_sym_LT_BANG_LBRACKCDATA_LBRACK); + END_STATE(); + case 2232: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK_GT); + END_STATE(); + case 2233: + ACCEPT_TOKEN(sym__whitespace_ge_2); + END_STATE(); + case 2234: + ACCEPT_TOKEN(sym__whitespace_ge_2); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2234); + END_STATE(); + case 2235: + ACCEPT_TOKEN(aux_sym__whitespace_token1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2234); + END_STATE(); + case 2236: + ACCEPT_TOKEN(sym__word_no_digit); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + (lookahead < ' ' || '@' < lookahead) && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(2236); + END_STATE(); + case 2237: + ACCEPT_TOKEN(sym__digits); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2237); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 2173, .external_lex_state = 2}, + [2] = {.lex_state = 2173, .external_lex_state = 3}, + [3] = {.lex_state = 2173, .external_lex_state = 3}, + [4] = {.lex_state = 2173, .external_lex_state = 4}, + [5] = {.lex_state = 2173, .external_lex_state = 4}, + [6] = {.lex_state = 2173, .external_lex_state = 5}, + [7] = {.lex_state = 2173, .external_lex_state = 4}, + [8] = {.lex_state = 2173, .external_lex_state = 5}, + [9] = {.lex_state = 2173, .external_lex_state = 6}, + [10] = {.lex_state = 2173, .external_lex_state = 6}, + [11] = {.lex_state = 2173, .external_lex_state = 7}, + [12] = {.lex_state = 2173, .external_lex_state = 8}, + [13] = {.lex_state = 2173, .external_lex_state = 9}, + [14] = {.lex_state = 2173, .external_lex_state = 8}, + [15] = {.lex_state = 2173, .external_lex_state = 4}, + [16] = {.lex_state = 2173, .external_lex_state = 4}, + [17] = {.lex_state = 2173, .external_lex_state = 4}, + [18] = {.lex_state = 2173, .external_lex_state = 9}, + [19] = {.lex_state = 2173, .external_lex_state = 8}, + [20] = {.lex_state = 2173, .external_lex_state = 10}, + [21] = {.lex_state = 2173, .external_lex_state = 7}, + [22] = {.lex_state = 2173, .external_lex_state = 7}, + [23] = {.lex_state = 2173, .external_lex_state = 8}, + [24] = {.lex_state = 2173, .external_lex_state = 9}, + [25] = {.lex_state = 2173, .external_lex_state = 8}, + [26] = {.lex_state = 2173, .external_lex_state = 9}, + [27] = {.lex_state = 2173, .external_lex_state = 9}, + [28] = {.lex_state = 2173, .external_lex_state = 7}, + [29] = {.lex_state = 2173, .external_lex_state = 10}, + [30] = {.lex_state = 2173, .external_lex_state = 7}, + [31] = {.lex_state = 2173, .external_lex_state = 8}, + [32] = {.lex_state = 2173, .external_lex_state = 7}, + [33] = {.lex_state = 2173, .external_lex_state = 9}, + [34] = {.lex_state = 2173, .external_lex_state = 7}, + [35] = {.lex_state = 2173, .external_lex_state = 4}, + [36] = {.lex_state = 2173, .external_lex_state = 8}, + [37] = {.lex_state = 2173, .external_lex_state = 8}, + [38] = {.lex_state = 2173, .external_lex_state = 8}, + [39] = {.lex_state = 2173, .external_lex_state = 9}, + [40] = {.lex_state = 2173, .external_lex_state = 8}, + [41] = {.lex_state = 2173, .external_lex_state = 7}, + [42] = {.lex_state = 2173, .external_lex_state = 7}, + [43] = {.lex_state = 2173, .external_lex_state = 7}, + [44] = {.lex_state = 2173, .external_lex_state = 9}, + [45] = {.lex_state = 2173, .external_lex_state = 4}, + [46] = {.lex_state = 2173, .external_lex_state = 9}, + [47] = {.lex_state = 2173, .external_lex_state = 9}, + [48] = {.lex_state = 2173, .external_lex_state = 9}, + [49] = {.lex_state = 2173, .external_lex_state = 4}, + [50] = {.lex_state = 2173, .external_lex_state = 8}, + [51] = {.lex_state = 2173, .external_lex_state = 7}, + [52] = {.lex_state = 2173, .external_lex_state = 10}, + [53] = {.lex_state = 2173, .external_lex_state = 10}, + [54] = {.lex_state = 2173, .external_lex_state = 10}, + [55] = {.lex_state = 2173, .external_lex_state = 10}, + [56] = {.lex_state = 2173, .external_lex_state = 10}, + [57] = {.lex_state = 2173, .external_lex_state = 10}, + [58] = {.lex_state = 2173, .external_lex_state = 10}, + [59] = {.lex_state = 2173, .external_lex_state = 10}, + [60] = {.lex_state = 2173, .external_lex_state = 10}, + [61] = {.lex_state = 2173, .external_lex_state = 10}, + [62] = {.lex_state = 2173, .external_lex_state = 10}, + [63] = {.lex_state = 2173, .external_lex_state = 10}, + [64] = {.lex_state = 2173, .external_lex_state = 10}, + [65] = {.lex_state = 2173, .external_lex_state = 10}, + [66] = {.lex_state = 2173, .external_lex_state = 10}, + [67] = {.lex_state = 2173, .external_lex_state = 10}, + [68] = {.lex_state = 2173, .external_lex_state = 10}, + [69] = {.lex_state = 2173, .external_lex_state = 10}, + [70] = {.lex_state = 2173, .external_lex_state = 10}, + [71] = {.lex_state = 2173, .external_lex_state = 10}, + [72] = {.lex_state = 2173, .external_lex_state = 10}, + [73] = {.lex_state = 2173, .external_lex_state = 10}, + [74] = {.lex_state = 2173, .external_lex_state = 10}, + [75] = {.lex_state = 2173, .external_lex_state = 10}, + [76] = {.lex_state = 2173, .external_lex_state = 10}, + [77] = {.lex_state = 2173, .external_lex_state = 10}, + [78] = {.lex_state = 2173, .external_lex_state = 10}, + [79] = {.lex_state = 2173, .external_lex_state = 10}, + [80] = {.lex_state = 2173, .external_lex_state = 10}, + [81] = {.lex_state = 2173, .external_lex_state = 10}, + [82] = {.lex_state = 2173, .external_lex_state = 10}, + [83] = {.lex_state = 2173, .external_lex_state = 10}, + [84] = {.lex_state = 2173, .external_lex_state = 10}, + [85] = {.lex_state = 2173, .external_lex_state = 10}, + [86] = {.lex_state = 2173, .external_lex_state = 6}, + [87] = {.lex_state = 2173, .external_lex_state = 5}, + [88] = {.lex_state = 2173, .external_lex_state = 3}, + [89] = {.lex_state = 2173, .external_lex_state = 4}, + [90] = {.lex_state = 2173, .external_lex_state = 4}, + [91] = {.lex_state = 2173, .external_lex_state = 3}, + [92] = {.lex_state = 2173, .external_lex_state = 6}, + [93] = {.lex_state = 2173, .external_lex_state = 3}, + [94] = {.lex_state = 2173, .external_lex_state = 6}, + [95] = {.lex_state = 2173, .external_lex_state = 5}, + [96] = {.lex_state = 2173, .external_lex_state = 4}, + [97] = {.lex_state = 2173, .external_lex_state = 4}, + [98] = {.lex_state = 2173, .external_lex_state = 4}, + [99] = {.lex_state = 2173, .external_lex_state = 5}, + [100] = {.lex_state = 2173, .external_lex_state = 9}, + [101] = {.lex_state = 2173, .external_lex_state = 8}, + [102] = {.lex_state = 2173, .external_lex_state = 9}, + [103] = {.lex_state = 2173, .external_lex_state = 9}, + [104] = {.lex_state = 2173, .external_lex_state = 8}, + [105] = {.lex_state = 2173, .external_lex_state = 7}, + [106] = {.lex_state = 2173, .external_lex_state = 10}, + [107] = {.lex_state = 2173, .external_lex_state = 10}, + [108] = {.lex_state = 2173, .external_lex_state = 10}, + [109] = {.lex_state = 2173, .external_lex_state = 9}, + [110] = {.lex_state = 2173, .external_lex_state = 8}, + [111] = {.lex_state = 2173, .external_lex_state = 8}, + [112] = {.lex_state = 2173, .external_lex_state = 7}, + [113] = {.lex_state = 2173, .external_lex_state = 10}, + [114] = {.lex_state = 2173, .external_lex_state = 7}, + [115] = {.lex_state = 2173, .external_lex_state = 8}, + [116] = {.lex_state = 2173, .external_lex_state = 7}, + [117] = {.lex_state = 2173, .external_lex_state = 7}, + [118] = {.lex_state = 2173, .external_lex_state = 8}, + [119] = {.lex_state = 2173, .external_lex_state = 9}, + [120] = {.lex_state = 2173, .external_lex_state = 4}, + [121] = {.lex_state = 2173, .external_lex_state = 9}, + [122] = {.lex_state = 2173, .external_lex_state = 7}, + [123] = {.lex_state = 2173, .external_lex_state = 9}, + [124] = {.lex_state = 2173, .external_lex_state = 4}, + [125] = {.lex_state = 2173, .external_lex_state = 7}, + [126] = {.lex_state = 2173, .external_lex_state = 8}, + [127] = {.lex_state = 2173, .external_lex_state = 9}, + [128] = {.lex_state = 2173, .external_lex_state = 9}, + [129] = {.lex_state = 2173, .external_lex_state = 10}, + [130] = {.lex_state = 2173, .external_lex_state = 4}, + [131] = {.lex_state = 2173, .external_lex_state = 7}, + [132] = {.lex_state = 2173, .external_lex_state = 8}, + [133] = {.lex_state = 2173, .external_lex_state = 10}, + [134] = {.lex_state = 2173, .external_lex_state = 8}, + [135] = {.lex_state = 2173, .external_lex_state = 7}, + [136] = {.lex_state = 2173, .external_lex_state = 10}, + [137] = {.lex_state = 2173, .external_lex_state = 10}, + [138] = {.lex_state = 2173, .external_lex_state = 10}, + [139] = {.lex_state = 2173, .external_lex_state = 10}, + [140] = {.lex_state = 2173, .external_lex_state = 10}, + [141] = {.lex_state = 2173, .external_lex_state = 10}, + [142] = {.lex_state = 2173, .external_lex_state = 10}, + [143] = {.lex_state = 2173, .external_lex_state = 10}, + [144] = {.lex_state = 2173, .external_lex_state = 10}, + [145] = {.lex_state = 2173, .external_lex_state = 10}, + [146] = {.lex_state = 2173, .external_lex_state = 10}, + [147] = {.lex_state = 2173, .external_lex_state = 10}, + [148] = {.lex_state = 2173, .external_lex_state = 8}, + [149] = {.lex_state = 2173, .external_lex_state = 9}, + [150] = {.lex_state = 2173, .external_lex_state = 8}, + [151] = {.lex_state = 2173, .external_lex_state = 7}, + [152] = {.lex_state = 2173, .external_lex_state = 10}, + [153] = {.lex_state = 2173, .external_lex_state = 7}, + [154] = {.lex_state = 2173, .external_lex_state = 9}, + [155] = {.lex_state = 2173, .external_lex_state = 10}, + [156] = {.lex_state = 2173, .external_lex_state = 10}, + [157] = {.lex_state = 2173, .external_lex_state = 10}, + [158] = {.lex_state = 2173, .external_lex_state = 9}, + [159] = {.lex_state = 2173, .external_lex_state = 10}, + [160] = {.lex_state = 2173, .external_lex_state = 9}, + [161] = {.lex_state = 2173, .external_lex_state = 8}, + [162] = {.lex_state = 2173, .external_lex_state = 7}, + [163] = {.lex_state = 2173, .external_lex_state = 7}, + [164] = {.lex_state = 2173, .external_lex_state = 8}, + [165] = {.lex_state = 2173, .external_lex_state = 10}, + [166] = {.lex_state = 2173, .external_lex_state = 11}, + [167] = {.lex_state = 2173, .external_lex_state = 12}, + [168] = {.lex_state = 2173, .external_lex_state = 13}, + [169] = {.lex_state = 2173, .external_lex_state = 14}, + [170] = {.lex_state = 2173, .external_lex_state = 14}, + [171] = {.lex_state = 2173, .external_lex_state = 12}, + [172] = {.lex_state = 2173, .external_lex_state = 13}, + [173] = {.lex_state = 2171, .external_lex_state = 8}, + [174] = {.lex_state = 2173, .external_lex_state = 11}, + [175] = {.lex_state = 2172, .external_lex_state = 10}, + [176] = {.lex_state = 2172, .external_lex_state = 9}, + [177] = {.lex_state = 2171, .external_lex_state = 8}, + [178] = {.lex_state = 2171, .external_lex_state = 7}, + [179] = {.lex_state = 2172, .external_lex_state = 7}, + [180] = {.lex_state = 2171, .external_lex_state = 10}, + [181] = {.lex_state = 2172, .external_lex_state = 7}, + [182] = {.lex_state = 2172, .external_lex_state = 8}, + [183] = {.lex_state = 2172, .external_lex_state = 9}, + [184] = {.lex_state = 2171, .external_lex_state = 9}, + [185] = {.lex_state = 2173, .external_lex_state = 11}, + [186] = {.lex_state = 2172, .external_lex_state = 8}, + [187] = {.lex_state = 2171, .external_lex_state = 7}, + [188] = {.lex_state = 2171, .external_lex_state = 9}, + [189] = {.lex_state = 2170, .external_lex_state = 8}, + [190] = {.lex_state = 2170, .external_lex_state = 7}, + [191] = {.lex_state = 2170, .external_lex_state = 9}, + [192] = {.lex_state = 2171, .external_lex_state = 10}, + [193] = {.lex_state = 2172, .external_lex_state = 10}, + [194] = {.lex_state = 2171, .external_lex_state = 10}, + [195] = {.lex_state = 2170, .external_lex_state = 10}, + [196] = {.lex_state = 2170, .external_lex_state = 8}, + [197] = {.lex_state = 2172, .external_lex_state = 10}, + [198] = {.lex_state = 2170, .external_lex_state = 9}, + [199] = {.lex_state = 2170, .external_lex_state = 7}, + [200] = {.lex_state = 2170, .external_lex_state = 10}, + [201] = {.lex_state = 2170, .external_lex_state = 10}, + [202] = {.lex_state = 2173, .external_lex_state = 3}, + [203] = {.lex_state = 2173, .external_lex_state = 4}, + [204] = {.lex_state = 2173, .external_lex_state = 9}, + [205] = {.lex_state = 1, .external_lex_state = 15}, + [206] = {.lex_state = 1, .external_lex_state = 15}, + [207] = {.lex_state = 1, .external_lex_state = 15}, + [208] = {.lex_state = 2173, .external_lex_state = 3}, + [209] = {.lex_state = 1, .external_lex_state = 15}, + [210] = {.lex_state = 1, .external_lex_state = 15}, + [211] = {.lex_state = 1, .external_lex_state = 15}, + [212] = {.lex_state = 1, .external_lex_state = 15}, + [213] = {.lex_state = 1, .external_lex_state = 15}, + [214] = {.lex_state = 2173, .external_lex_state = 4}, + [215] = {.lex_state = 1, .external_lex_state = 15}, + [216] = {.lex_state = 1, .external_lex_state = 15}, + [217] = {.lex_state = 2173, .external_lex_state = 2}, + [218] = {.lex_state = 2173, .external_lex_state = 16}, + [219] = {.lex_state = 1, .external_lex_state = 15}, + [220] = {.lex_state = 2173, .external_lex_state = 8}, + [221] = {.lex_state = 1, .external_lex_state = 15}, + [222] = {.lex_state = 1, .external_lex_state = 15}, + [223] = {.lex_state = 2173, .external_lex_state = 10}, + [224] = {.lex_state = 2173, .external_lex_state = 5}, + [225] = {.lex_state = 2173, .external_lex_state = 6}, + [226] = {.lex_state = 1, .external_lex_state = 15}, + [227] = {.lex_state = 2173, .external_lex_state = 5}, + [228] = {.lex_state = 2173, .external_lex_state = 6}, + [229] = {.lex_state = 2173, .external_lex_state = 7}, + [230] = {.lex_state = 2173, .external_lex_state = 17}, + [231] = {.lex_state = 1, .external_lex_state = 15}, + [232] = {.lex_state = 1, .external_lex_state = 15}, + [233] = {.lex_state = 2173, .external_lex_state = 18}, + [234] = {.lex_state = 2173, .external_lex_state = 2}, + [235] = {.lex_state = 2173, .external_lex_state = 16}, + [236] = {.lex_state = 2173, .external_lex_state = 4}, + [237] = {.lex_state = 2173, .external_lex_state = 4}, + [238] = {.lex_state = 2173, .external_lex_state = 3}, + [239] = {.lex_state = 2173, .external_lex_state = 18}, + [240] = {.lex_state = 2173, .external_lex_state = 10}, + [241] = {.lex_state = 2173, .external_lex_state = 6}, + [242] = {.lex_state = 2173, .external_lex_state = 5}, + [243] = {.lex_state = 2173, .external_lex_state = 6}, + [244] = {.lex_state = 2173, .external_lex_state = 6}, + [245] = {.lex_state = 2173, .external_lex_state = 5}, + [246] = {.lex_state = 2173, .external_lex_state = 2}, + [247] = {.lex_state = 2173, .external_lex_state = 5}, + [248] = {.lex_state = 2173, .external_lex_state = 3}, + [249] = {.lex_state = 2173, .external_lex_state = 18}, + [250] = {.lex_state = 2173, .external_lex_state = 6}, + [251] = {.lex_state = 2173, .external_lex_state = 17}, + [252] = {.lex_state = 2173, .external_lex_state = 2}, + [253] = {.lex_state = 2173, .external_lex_state = 5}, + [254] = {.lex_state = 2173, .external_lex_state = 6}, + [255] = {.lex_state = 2173, .external_lex_state = 17}, + [256] = {.lex_state = 2173, .external_lex_state = 4}, + [257] = {.lex_state = 2173, .external_lex_state = 4}, + [258] = {.lex_state = 2173, .external_lex_state = 4}, + [259] = {.lex_state = 2173, .external_lex_state = 3}, + [260] = {.lex_state = 2173, .external_lex_state = 4}, + [261] = {.lex_state = 2173, .external_lex_state = 5}, + [262] = {.lex_state = 2173, .external_lex_state = 16}, + [263] = {.lex_state = 2173, .external_lex_state = 3}, + [264] = {.lex_state = 2173, .external_lex_state = 3}, + [265] = {.lex_state = 2173, .external_lex_state = 7}, + [266] = {.lex_state = 2173, .external_lex_state = 9}, + [267] = {.lex_state = 2173, .external_lex_state = 10}, + [268] = {.lex_state = 2173, .external_lex_state = 10}, + [269] = {.lex_state = 2173, .external_lex_state = 8}, + [270] = {.lex_state = 2173, .external_lex_state = 10}, + [271] = {.lex_state = 2173, .external_lex_state = 7}, + [272] = {.lex_state = 2173, .external_lex_state = 10}, + [273] = {.lex_state = 2173, .external_lex_state = 10}, + [274] = {.lex_state = 2173, .external_lex_state = 10}, + [275] = {.lex_state = 2173, .external_lex_state = 10}, + [276] = {.lex_state = 2173, .external_lex_state = 7}, + [277] = {.lex_state = 2173, .external_lex_state = 7}, + [278] = {.lex_state = 2173, .external_lex_state = 8}, + [279] = {.lex_state = 2173, .external_lex_state = 8}, + [280] = {.lex_state = 2173, .external_lex_state = 10}, + [281] = {.lex_state = 2173, .external_lex_state = 9}, + [282] = {.lex_state = 2173, .external_lex_state = 10}, + [283] = {.lex_state = 2173, .external_lex_state = 10}, + [284] = {.lex_state = 2173, .external_lex_state = 10}, + [285] = {.lex_state = 2173, .external_lex_state = 10}, + [286] = {.lex_state = 2173, .external_lex_state = 10}, + [287] = {.lex_state = 2173, .external_lex_state = 10}, + [288] = {.lex_state = 2173, .external_lex_state = 10}, + [289] = {.lex_state = 2173, .external_lex_state = 10}, + [290] = {.lex_state = 2173, .external_lex_state = 10}, + [291] = {.lex_state = 2173, .external_lex_state = 10}, + [292] = {.lex_state = 2173, .external_lex_state = 8}, + [293] = {.lex_state = 2173, .external_lex_state = 10}, + [294] = {.lex_state = 2173, .external_lex_state = 10}, + [295] = {.lex_state = 2173, .external_lex_state = 8}, + [296] = {.lex_state = 2173, .external_lex_state = 7}, + [297] = {.lex_state = 2173, .external_lex_state = 10}, + [298] = {.lex_state = 2173, .external_lex_state = 10}, + [299] = {.lex_state = 2173, .external_lex_state = 7}, + [300] = {.lex_state = 2173, .external_lex_state = 10}, + [301] = {.lex_state = 2173, .external_lex_state = 7}, + [302] = {.lex_state = 2173, .external_lex_state = 8}, + [303] = {.lex_state = 2173, .external_lex_state = 10}, + [304] = {.lex_state = 2173, .external_lex_state = 7}, + [305] = {.lex_state = 2173, .external_lex_state = 10}, + [306] = {.lex_state = 2173, .external_lex_state = 10}, + [307] = {.lex_state = 2173, .external_lex_state = 8}, + [308] = {.lex_state = 2173, .external_lex_state = 10}, + [309] = {.lex_state = 2173, .external_lex_state = 10}, + [310] = {.lex_state = 2173, .external_lex_state = 9}, + [311] = {.lex_state = 2173, .external_lex_state = 10}, + [312] = {.lex_state = 2173, .external_lex_state = 4}, + [313] = {.lex_state = 2173, .external_lex_state = 10}, + [314] = {.lex_state = 2173, .external_lex_state = 10}, + [315] = {.lex_state = 2173, .external_lex_state = 10}, + [316] = {.lex_state = 2173, .external_lex_state = 10}, + [317] = {.lex_state = 2173, .external_lex_state = 10}, + [318] = {.lex_state = 2173, .external_lex_state = 4}, + [319] = {.lex_state = 2173, .external_lex_state = 10}, + [320] = {.lex_state = 2173, .external_lex_state = 3}, + [321] = {.lex_state = 2173, .external_lex_state = 10}, + [322] = {.lex_state = 2173, .external_lex_state = 10}, + [323] = {.lex_state = 2173, .external_lex_state = 10}, + [324] = {.lex_state = 2173, .external_lex_state = 10}, + [325] = {.lex_state = 2173, .external_lex_state = 10}, + [326] = {.lex_state = 2173, .external_lex_state = 10}, + [327] = {.lex_state = 2173, .external_lex_state = 5}, + [328] = {.lex_state = 2173, .external_lex_state = 10}, + [329] = {.lex_state = 2173, .external_lex_state = 7}, + [330] = {.lex_state = 2173, .external_lex_state = 10}, + [331] = {.lex_state = 2173, .external_lex_state = 4}, + [332] = {.lex_state = 2173, .external_lex_state = 2}, + [333] = {.lex_state = 2173, .external_lex_state = 10}, + [334] = {.lex_state = 2173, .external_lex_state = 2}, + [335] = {.lex_state = 2173, .external_lex_state = 6}, + [336] = {.lex_state = 2173, .external_lex_state = 4}, + [337] = {.lex_state = 2173, .external_lex_state = 10}, + [338] = {.lex_state = 2173, .external_lex_state = 9}, + [339] = {.lex_state = 2173, .external_lex_state = 10}, + [340] = {.lex_state = 2173, .external_lex_state = 9}, + [341] = {.lex_state = 2173, .external_lex_state = 10}, + [342] = {.lex_state = 2173, .external_lex_state = 10}, + [343] = {.lex_state = 2173, .external_lex_state = 7}, + [344] = {.lex_state = 2173, .external_lex_state = 7}, + [345] = {.lex_state = 2173, .external_lex_state = 7}, + [346] = {.lex_state = 2173, .external_lex_state = 7}, + [347] = {.lex_state = 2173, .external_lex_state = 10}, + [348] = {.lex_state = 2173, .external_lex_state = 10}, + [349] = {.lex_state = 2173, .external_lex_state = 4}, + [350] = {.lex_state = 2173, .external_lex_state = 7}, + [351] = {.lex_state = 2173, .external_lex_state = 4}, + [352] = {.lex_state = 2173, .external_lex_state = 7}, + [353] = {.lex_state = 2173, .external_lex_state = 7}, + [354] = {.lex_state = 2173, .external_lex_state = 10}, + [355] = {.lex_state = 2173, .external_lex_state = 7}, + [356] = {.lex_state = 2173, .external_lex_state = 9}, + [357] = {.lex_state = 2173, .external_lex_state = 7}, + [358] = {.lex_state = 2173, .external_lex_state = 7}, + [359] = {.lex_state = 2173, .external_lex_state = 10}, + [360] = {.lex_state = 2173, .external_lex_state = 7}, + [361] = {.lex_state = 2173, .external_lex_state = 7}, + [362] = {.lex_state = 2173, .external_lex_state = 9}, + [363] = {.lex_state = 2173, .external_lex_state = 9}, + [364] = {.lex_state = 2173, .external_lex_state = 7}, + [365] = {.lex_state = 2173, .external_lex_state = 7}, + [366] = {.lex_state = 2173, .external_lex_state = 7}, + [367] = {.lex_state = 2173, .external_lex_state = 7}, + [368] = {.lex_state = 2173, .external_lex_state = 7}, + [369] = {.lex_state = 2173, .external_lex_state = 7}, + [370] = {.lex_state = 2173, .external_lex_state = 7}, + [371] = {.lex_state = 2173, .external_lex_state = 7}, + [372] = {.lex_state = 2173, .external_lex_state = 7}, + [373] = {.lex_state = 2173, .external_lex_state = 9}, + [374] = {.lex_state = 2173, .external_lex_state = 7}, + [375] = {.lex_state = 2173, .external_lex_state = 9}, + [376] = {.lex_state = 2173, .external_lex_state = 7}, + [377] = {.lex_state = 2173, .external_lex_state = 7}, + [378] = {.lex_state = 2173, .external_lex_state = 7}, + [379] = {.lex_state = 2173, .external_lex_state = 7}, + [380] = {.lex_state = 2173, .external_lex_state = 7}, + [381] = {.lex_state = 2173, .external_lex_state = 7}, + [382] = {.lex_state = 2173, .external_lex_state = 7}, + [383] = {.lex_state = 2173, .external_lex_state = 7}, + [384] = {.lex_state = 2173, .external_lex_state = 7}, + [385] = {.lex_state = 2173, .external_lex_state = 9}, + [386] = {.lex_state = 2173, .external_lex_state = 9}, + [387] = {.lex_state = 2173, .external_lex_state = 9}, + [388] = {.lex_state = 2173, .external_lex_state = 9}, + [389] = {.lex_state = 2173, .external_lex_state = 9}, + [390] = {.lex_state = 2173, .external_lex_state = 7}, + [391] = {.lex_state = 2173, .external_lex_state = 7}, + [392] = {.lex_state = 2173, .external_lex_state = 9}, + [393] = {.lex_state = 2173, .external_lex_state = 9}, + [394] = {.lex_state = 2173, .external_lex_state = 7}, + [395] = {.lex_state = 2173, .external_lex_state = 7}, + [396] = {.lex_state = 2173, .external_lex_state = 9}, + [397] = {.lex_state = 2173, .external_lex_state = 7}, + [398] = {.lex_state = 2173, .external_lex_state = 7}, + [399] = {.lex_state = 2173, .external_lex_state = 9}, + [400] = {.lex_state = 2173, .external_lex_state = 9}, + [401] = {.lex_state = 2173, .external_lex_state = 9}, + [402] = {.lex_state = 2173, .external_lex_state = 7}, + [403] = {.lex_state = 2173, .external_lex_state = 7}, + [404] = {.lex_state = 2173, .external_lex_state = 7}, + [405] = {.lex_state = 2173, .external_lex_state = 7}, + [406] = {.lex_state = 2173, .external_lex_state = 7}, + [407] = {.lex_state = 2173, .external_lex_state = 7}, + [408] = {.lex_state = 2173, .external_lex_state = 7}, + [409] = {.lex_state = 2173, .external_lex_state = 7}, + [410] = {.lex_state = 2173, .external_lex_state = 7}, + [411] = {.lex_state = 2173, .external_lex_state = 7}, + [412] = {.lex_state = 2173, .external_lex_state = 7}, + [413] = {.lex_state = 2173, .external_lex_state = 7}, + [414] = {.lex_state = 2173, .external_lex_state = 7}, + [415] = {.lex_state = 2173, .external_lex_state = 10}, + [416] = {.lex_state = 2173, .external_lex_state = 8}, + [417] = {.lex_state = 2173, .external_lex_state = 9}, + [418] = {.lex_state = 2173, .external_lex_state = 9}, + [419] = {.lex_state = 2173, .external_lex_state = 10}, + [420] = {.lex_state = 2173, .external_lex_state = 9}, + [421] = {.lex_state = 2173, .external_lex_state = 9}, + [422] = {.lex_state = 2173, .external_lex_state = 9}, + [423] = {.lex_state = 2173, .external_lex_state = 9}, + [424] = {.lex_state = 2173, .external_lex_state = 9}, + [425] = {.lex_state = 2173, .external_lex_state = 9}, + [426] = {.lex_state = 2173, .external_lex_state = 9}, + [427] = {.lex_state = 2173, .external_lex_state = 9}, + [428] = {.lex_state = 2173, .external_lex_state = 8}, + [429] = {.lex_state = 2173, .external_lex_state = 8}, + [430] = {.lex_state = 2173, .external_lex_state = 8}, + [431] = {.lex_state = 2173, .external_lex_state = 8}, + [432] = {.lex_state = 2173, .external_lex_state = 9}, + [433] = {.lex_state = 2173, .external_lex_state = 8}, + [434] = {.lex_state = 2173, .external_lex_state = 8}, + [435] = {.lex_state = 2173, .external_lex_state = 8}, + [436] = {.lex_state = 2173, .external_lex_state = 7}, + [437] = {.lex_state = 2173, .external_lex_state = 8}, + [438] = {.lex_state = 2173, .external_lex_state = 8}, + [439] = {.lex_state = 2173, .external_lex_state = 8}, + [440] = {.lex_state = 2173, .external_lex_state = 7}, + [441] = {.lex_state = 2173, .external_lex_state = 8}, + [442] = {.lex_state = 2173, .external_lex_state = 8}, + [443] = {.lex_state = 2173, .external_lex_state = 9}, + [444] = {.lex_state = 2173, .external_lex_state = 8}, + [445] = {.lex_state = 2173, .external_lex_state = 8}, + [446] = {.lex_state = 2173, .external_lex_state = 8}, + [447] = {.lex_state = 2173, .external_lex_state = 8}, + [448] = {.lex_state = 2173, .external_lex_state = 8}, + [449] = {.lex_state = 2173, .external_lex_state = 8}, + [450] = {.lex_state = 2173, .external_lex_state = 8}, + [451] = {.lex_state = 2173, .external_lex_state = 8}, + [452] = {.lex_state = 2173, .external_lex_state = 8}, + [453] = {.lex_state = 2173, .external_lex_state = 8}, + [454] = {.lex_state = 2173, .external_lex_state = 8}, + [455] = {.lex_state = 2173, .external_lex_state = 8}, + [456] = {.lex_state = 2173, .external_lex_state = 8}, + [457] = {.lex_state = 2173, .external_lex_state = 8}, + [458] = {.lex_state = 2173, .external_lex_state = 8}, + [459] = {.lex_state = 2173, .external_lex_state = 8}, + [460] = {.lex_state = 2173, .external_lex_state = 8}, + [461] = {.lex_state = 2173, .external_lex_state = 8}, + [462] = {.lex_state = 2173, .external_lex_state = 8}, + [463] = {.lex_state = 2173, .external_lex_state = 9}, + [464] = {.lex_state = 2173, .external_lex_state = 9}, + [465] = {.lex_state = 2173, .external_lex_state = 9}, + [466] = {.lex_state = 2173, .external_lex_state = 9}, + [467] = {.lex_state = 2173, .external_lex_state = 9}, + [468] = {.lex_state = 2173, .external_lex_state = 8}, + [469] = {.lex_state = 2173, .external_lex_state = 8}, + [470] = {.lex_state = 2173, .external_lex_state = 9}, + [471] = {.lex_state = 2173, .external_lex_state = 9}, + [472] = {.lex_state = 2173, .external_lex_state = 8}, + [473] = {.lex_state = 2173, .external_lex_state = 8}, + [474] = {.lex_state = 2173, .external_lex_state = 8}, + [475] = {.lex_state = 2173, .external_lex_state = 8}, + [476] = {.lex_state = 2173, .external_lex_state = 8}, + [477] = {.lex_state = 2173, .external_lex_state = 9}, + [478] = {.lex_state = 2173, .external_lex_state = 9}, + [479] = {.lex_state = 2173, .external_lex_state = 9}, + [480] = {.lex_state = 2173, .external_lex_state = 8}, + [481] = {.lex_state = 2173, .external_lex_state = 8}, + [482] = {.lex_state = 2173, .external_lex_state = 8}, + [483] = {.lex_state = 2173, .external_lex_state = 8}, + [484] = {.lex_state = 2173, .external_lex_state = 8}, + [485] = {.lex_state = 2173, .external_lex_state = 8}, + [486] = {.lex_state = 2173, .external_lex_state = 8}, + [487] = {.lex_state = 2173, .external_lex_state = 8}, + [488] = {.lex_state = 2173, .external_lex_state = 8}, + [489] = {.lex_state = 2173, .external_lex_state = 8}, + [490] = {.lex_state = 2173, .external_lex_state = 8}, + [491] = {.lex_state = 2173, .external_lex_state = 8}, + [492] = {.lex_state = 2173, .external_lex_state = 8}, + [493] = {.lex_state = 2173, .external_lex_state = 10}, + [494] = {.lex_state = 2173, .external_lex_state = 9}, + [495] = {.lex_state = 2173, .external_lex_state = 9}, + [496] = {.lex_state = 2173, .external_lex_state = 9}, + [497] = {.lex_state = 2173, .external_lex_state = 8}, + [498] = {.lex_state = 2173, .external_lex_state = 9}, + [499] = {.lex_state = 2173, .external_lex_state = 9}, + [500] = {.lex_state = 2173, .external_lex_state = 10}, + [501] = {.lex_state = 2173, .external_lex_state = 9}, + [502] = {.lex_state = 2173, .external_lex_state = 10}, + [503] = {.lex_state = 2173, .external_lex_state = 8}, + [504] = {.lex_state = 2173, .external_lex_state = 9}, + [505] = {.lex_state = 2173, .external_lex_state = 9}, + [506] = {.lex_state = 2173, .external_lex_state = 9}, + [507] = {.lex_state = 2173, .external_lex_state = 9}, + [508] = {.lex_state = 2173, .external_lex_state = 9}, + [509] = {.lex_state = 2173, .external_lex_state = 9}, + [510] = {.lex_state = 2173, .external_lex_state = 9}, + [511] = {.lex_state = 2173, .external_lex_state = 10}, + [512] = {.lex_state = 2173, .external_lex_state = 10}, + [513] = {.lex_state = 2173, .external_lex_state = 10}, + [514] = {.lex_state = 2173, .external_lex_state = 10}, + [515] = {.lex_state = 2173, .external_lex_state = 10}, + [516] = {.lex_state = 2173, .external_lex_state = 10}, + [517] = {.lex_state = 2173, .external_lex_state = 10}, + [518] = {.lex_state = 2173, .external_lex_state = 10}, + [519] = {.lex_state = 2173, .external_lex_state = 10}, + [520] = {.lex_state = 2173, .external_lex_state = 10}, + [521] = {.lex_state = 2173, .external_lex_state = 10}, + [522] = {.lex_state = 2173, .external_lex_state = 10}, + [523] = {.lex_state = 2173, .external_lex_state = 10}, + [524] = {.lex_state = 2173, .external_lex_state = 10}, + [525] = {.lex_state = 2173, .external_lex_state = 10}, + [526] = {.lex_state = 2173, .external_lex_state = 10}, + [527] = {.lex_state = 2173, .external_lex_state = 10}, + [528] = {.lex_state = 2173, .external_lex_state = 10}, + [529] = {.lex_state = 2173, .external_lex_state = 10}, + [530] = {.lex_state = 2173, .external_lex_state = 10}, + [531] = {.lex_state = 2173, .external_lex_state = 10}, + [532] = {.lex_state = 2173, .external_lex_state = 10}, + [533] = {.lex_state = 2173, .external_lex_state = 9}, + [534] = {.lex_state = 2173, .external_lex_state = 10}, + [535] = {.lex_state = 2173, .external_lex_state = 8}, + [536] = {.lex_state = 2173, .external_lex_state = 10}, + [537] = {.lex_state = 2173, .external_lex_state = 10}, + [538] = {.lex_state = 2173, .external_lex_state = 7}, + [539] = {.lex_state = 2173, .external_lex_state = 10}, + [540] = {.lex_state = 2173, .external_lex_state = 10}, + [541] = {.lex_state = 2173, .external_lex_state = 10}, + [542] = {.lex_state = 2173, .external_lex_state = 10}, + [543] = {.lex_state = 2173, .external_lex_state = 10}, + [544] = {.lex_state = 2173, .external_lex_state = 10}, + [545] = {.lex_state = 2173, .external_lex_state = 10}, + [546] = {.lex_state = 2173, .external_lex_state = 10}, + [547] = {.lex_state = 2173, .external_lex_state = 10}, + [548] = {.lex_state = 2173, .external_lex_state = 10}, + [549] = {.lex_state = 2173, .external_lex_state = 10}, + [550] = {.lex_state = 2173, .external_lex_state = 10}, + [551] = {.lex_state = 2173, .external_lex_state = 10}, + [552] = {.lex_state = 2173, .external_lex_state = 10}, + [553] = {.lex_state = 2173, .external_lex_state = 10}, + [554] = {.lex_state = 2173, .external_lex_state = 10}, + [555] = {.lex_state = 2173, .external_lex_state = 10}, + [556] = {.lex_state = 2173, .external_lex_state = 10}, + [557] = {.lex_state = 2173, .external_lex_state = 10}, + [558] = {.lex_state = 2173, .external_lex_state = 10}, + [559] = {.lex_state = 2173, .external_lex_state = 10}, + [560] = {.lex_state = 2173, .external_lex_state = 10}, + [561] = {.lex_state = 2173, .external_lex_state = 10}, + [562] = {.lex_state = 2173, .external_lex_state = 10}, + [563] = {.lex_state = 2173, .external_lex_state = 10}, + [564] = {.lex_state = 2173, .external_lex_state = 10}, + [565] = {.lex_state = 2173, .external_lex_state = 10}, + [566] = {.lex_state = 2173, .external_lex_state = 10}, + [567] = {.lex_state = 2173, .external_lex_state = 10}, + [568] = {.lex_state = 2173, .external_lex_state = 10}, + [569] = {.lex_state = 2173, .external_lex_state = 10}, + [570] = {.lex_state = 2173, .external_lex_state = 10}, + [571] = {.lex_state = 2173, .external_lex_state = 10}, + [572] = {.lex_state = 2173, .external_lex_state = 10}, + [573] = {.lex_state = 2173, .external_lex_state = 9}, + [574] = {.lex_state = 2173, .external_lex_state = 10}, + [575] = {.lex_state = 2173, .external_lex_state = 10}, + [576] = {.lex_state = 2173, .external_lex_state = 7}, + [577] = {.lex_state = 2173, .external_lex_state = 9}, + [578] = {.lex_state = 2173, .external_lex_state = 10}, + [579] = {.lex_state = 2173, .external_lex_state = 10}, + [580] = {.lex_state = 2173, .external_lex_state = 7}, + [581] = {.lex_state = 2173, .external_lex_state = 7}, + [582] = {.lex_state = 2173, .external_lex_state = 9}, + [583] = {.lex_state = 2173, .external_lex_state = 8}, + [584] = {.lex_state = 2173, .external_lex_state = 9}, + [585] = {.lex_state = 2173, .external_lex_state = 7}, + [586] = {.lex_state = 2173, .external_lex_state = 7}, + [587] = {.lex_state = 2173, .external_lex_state = 7}, + [588] = {.lex_state = 2173, .external_lex_state = 10}, + [589] = {.lex_state = 2173, .external_lex_state = 9}, + [590] = {.lex_state = 2173, .external_lex_state = 7}, + [591] = {.lex_state = 2173, .external_lex_state = 9}, + [592] = {.lex_state = 2173, .external_lex_state = 9}, + [593] = {.lex_state = 2173, .external_lex_state = 10}, + [594] = {.lex_state = 2173, .external_lex_state = 9}, + [595] = {.lex_state = 2173, .external_lex_state = 8}, + [596] = {.lex_state = 2173, .external_lex_state = 7}, + [597] = {.lex_state = 2173, .external_lex_state = 7}, + [598] = {.lex_state = 2173, .external_lex_state = 8}, + [599] = {.lex_state = 2173, .external_lex_state = 8}, + [600] = {.lex_state = 2173, .external_lex_state = 8}, + [601] = {.lex_state = 2173, .external_lex_state = 8}, + [602] = {.lex_state = 2173, .external_lex_state = 9}, + [603] = {.lex_state = 2173, .external_lex_state = 8}, + [604] = {.lex_state = 2173, .external_lex_state = 8}, + [605] = {.lex_state = 2173, .external_lex_state = 8}, + [606] = {.lex_state = 2173, .external_lex_state = 10}, + [607] = {.lex_state = 2173, .external_lex_state = 8}, + [608] = {.lex_state = 2173, .external_lex_state = 8}, + [609] = {.lex_state = 2173, .external_lex_state = 8}, + [610] = {.lex_state = 2173, .external_lex_state = 7}, + [611] = {.lex_state = 2173, .external_lex_state = 7}, + [612] = {.lex_state = 2173, .external_lex_state = 7}, + [613] = {.lex_state = 2173, .external_lex_state = 7}, + [614] = {.lex_state = 2173, .external_lex_state = 8}, + [615] = {.lex_state = 2173, .external_lex_state = 10}, + [616] = {.lex_state = 2173, .external_lex_state = 10}, + [617] = {.lex_state = 2}, + [618] = {.lex_state = 2}, + [619] = {.lex_state = 2}, + [620] = {.lex_state = 2}, + [621] = {.lex_state = 2}, + [622] = {.lex_state = 2}, + [623] = {.lex_state = 2, .external_lex_state = 19}, + [624] = {.lex_state = 2}, + [625] = {.lex_state = 2}, + [626] = {.lex_state = 2}, + [627] = {.lex_state = 2}, + [628] = {.lex_state = 2}, + [629] = {.lex_state = 2}, + [630] = {.lex_state = 2, .external_lex_state = 19}, + [631] = {.lex_state = 2}, + [632] = {.lex_state = 2}, + [633] = {.lex_state = 2}, + [634] = {.lex_state = 2}, + [635] = {.lex_state = 2}, + [636] = {.lex_state = 2}, + [637] = {.lex_state = 2}, + [638] = {.lex_state = 2}, + [639] = {.lex_state = 1, .external_lex_state = 20}, + [640] = {.lex_state = 2}, + [641] = {.lex_state = 1, .external_lex_state = 21}, + [642] = {.lex_state = 1, .external_lex_state = 21}, + [643] = {.lex_state = 1, .external_lex_state = 15}, + [644] = {.lex_state = 1, .external_lex_state = 15}, + [645] = {.lex_state = 1, .external_lex_state = 15}, + [646] = {.lex_state = 1, .external_lex_state = 15}, + [647] = {.lex_state = 2}, + [648] = {.lex_state = 2}, + [649] = {.lex_state = 2, .external_lex_state = 19}, + [650] = {.lex_state = 2, .external_lex_state = 19}, + [651] = {.lex_state = 2}, + [652] = {.lex_state = 2}, + [653] = {.lex_state = 2, .external_lex_state = 19}, + [654] = {.lex_state = 2}, + [655] = {.lex_state = 2}, + [656] = {.lex_state = 2}, + [657] = {.lex_state = 2}, + [658] = {.lex_state = 2}, + [659] = {.lex_state = 2}, + [660] = {.lex_state = 2}, + [661] = {.lex_state = 2}, + [662] = {.lex_state = 2}, + [663] = {.lex_state = 2}, + [664] = {.lex_state = 2173}, + [665] = {.lex_state = 3, .external_lex_state = 19}, + [666] = {.lex_state = 6, .external_lex_state = 22}, + [667] = {.lex_state = 3, .external_lex_state = 19}, + [668] = {.lex_state = 6, .external_lex_state = 22}, + [669] = {.lex_state = 3, .external_lex_state = 19}, + [670] = {.lex_state = 3, .external_lex_state = 19}, + [671] = {.lex_state = 6, .external_lex_state = 22}, + [672] = {.lex_state = 2173}, + [673] = {.lex_state = 6, .external_lex_state = 22}, + [674] = {.lex_state = 3, .external_lex_state = 19}, + [675] = {.lex_state = 3, .external_lex_state = 19}, + [676] = {.lex_state = 2173}, + [677] = {.lex_state = 3, .external_lex_state = 19}, + [678] = {.lex_state = 3, .external_lex_state = 19}, + [679] = {.lex_state = 6, .external_lex_state = 22}, + [680] = {.lex_state = 3, .external_lex_state = 19}, + [681] = {.lex_state = 6, .external_lex_state = 22}, + [682] = {.lex_state = 3, .external_lex_state = 19}, + [683] = {.lex_state = 2}, + [684] = {.lex_state = 3}, + [685] = {.lex_state = 3}, + [686] = {.lex_state = 3}, + [687] = {.lex_state = 3}, + [688] = {.lex_state = 4}, + [689] = {.lex_state = 5}, + [690] = {.lex_state = 3}, + [691] = {.lex_state = 5}, + [692] = {.lex_state = 3}, + [693] = {.lex_state = 3}, + [694] = {.lex_state = 3}, + [695] = {.lex_state = 3}, + [696] = {.lex_state = 3}, + [697] = {.lex_state = 3}, + [698] = {.lex_state = 3}, + [699] = {.lex_state = 3}, + [700] = {.lex_state = 3}, + [701] = {.lex_state = 5}, + [702] = {.lex_state = 3}, + [703] = {.lex_state = 4}, + [704] = {.lex_state = 3}, + [705] = {.lex_state = 3}, + [706] = {.lex_state = 3}, + [707] = {.lex_state = 3}, + [708] = {.lex_state = 3}, + [709] = {.lex_state = 5}, + [710] = {.lex_state = 4}, + [711] = {.lex_state = 3}, + [712] = {.lex_state = 3}, + [713] = {.lex_state = 3}, + [714] = {.lex_state = 3}, + [715] = {.lex_state = 3}, + [716] = {.lex_state = 3}, + [717] = {.lex_state = 3}, + [718] = {.lex_state = 4}, + [719] = {.lex_state = 3}, + [720] = {.lex_state = 5}, + [721] = {.lex_state = 4}, + [722] = {.lex_state = 4}, + [723] = {.lex_state = 3}, + [724] = {.lex_state = 3}, + [725] = {.lex_state = 3}, + [726] = {.lex_state = 5}, + [727] = {.lex_state = 6}, + [728] = {.lex_state = 2, .external_lex_state = 19}, + [729] = {.lex_state = 2, .external_lex_state = 19}, + [730] = {.lex_state = 6}, + [731] = {.lex_state = 2}, + [732] = {.lex_state = 2, .external_lex_state = 19}, + [733] = {.lex_state = 6}, + [734] = {.lex_state = 6}, + [735] = {.lex_state = 2, .external_lex_state = 19}, + [736] = {.lex_state = 6}, + [737] = {.lex_state = 6}, + [738] = {.lex_state = 6}, + [739] = {.lex_state = 2, .external_lex_state = 19}, + [740] = {.lex_state = 6}, + [741] = {.lex_state = 2}, + [742] = {.lex_state = 6}, + [743] = {.lex_state = 6}, + [744] = {.lex_state = 6}, + [745] = {.lex_state = 2}, + [746] = {.lex_state = 2, .external_lex_state = 23}, + [747] = {.lex_state = 2, .external_lex_state = 19}, + [748] = {.lex_state = 6}, + [749] = {.lex_state = 2, .external_lex_state = 23}, + [750] = {.lex_state = 2}, + [751] = {.lex_state = 6}, + [752] = {.lex_state = 6}, + [753] = {.lex_state = 6}, + [754] = {.lex_state = 6}, + [755] = {.lex_state = 6}, + [756] = {.lex_state = 2, .external_lex_state = 19}, + [757] = {.lex_state = 2, .external_lex_state = 19}, + [758] = {.lex_state = 2}, + [759] = {.lex_state = 2}, + [760] = {.lex_state = 2}, + [761] = {.lex_state = 2}, + [762] = {.lex_state = 2}, + [763] = {.lex_state = 2}, + [764] = {.lex_state = 2}, + [765] = {.lex_state = 2}, + [766] = {.lex_state = 2}, + [767] = {.lex_state = 2}, + [768] = {.lex_state = 2}, + [769] = {.lex_state = 2}, + [770] = {.lex_state = 2}, + [771] = {.lex_state = 2}, + [772] = {.lex_state = 2}, + [773] = {.lex_state = 2}, + [774] = {.lex_state = 2}, + [775] = {.lex_state = 2}, + [776] = {.lex_state = 3, .external_lex_state = 19}, + [777] = {.lex_state = 4, .external_lex_state = 19}, + [778] = {.lex_state = 2}, + [779] = {.lex_state = 3, .external_lex_state = 19}, + [780] = {.lex_state = 5, .external_lex_state = 19}, + [781] = {.lex_state = 3, .external_lex_state = 23}, + [782] = {.lex_state = 2173, .external_lex_state = 19}, + [783] = {.lex_state = 6, .external_lex_state = 24}, + [784] = {.lex_state = 6, .external_lex_state = 25}, + [785] = {.lex_state = 4, .external_lex_state = 23}, + [786] = {.lex_state = 5, .external_lex_state = 23}, + [787] = {.lex_state = 5, .external_lex_state = 23}, + [788] = {.lex_state = 3, .external_lex_state = 23}, + [789] = {.lex_state = 3}, + [790] = {.lex_state = 6, .external_lex_state = 25}, + [791] = {.lex_state = 2}, + [792] = {.lex_state = 4, .external_lex_state = 23}, + [793] = {.lex_state = 2173}, + [794] = {.lex_state = 3}, + [795] = {.lex_state = 4}, + [796] = {.lex_state = 6, .external_lex_state = 19}, + [797] = {.lex_state = 3}, + [798] = {.lex_state = 6, .external_lex_state = 19}, + [799] = {.lex_state = 4}, + [800] = {.lex_state = 6, .external_lex_state = 22}, + [801] = {.lex_state = 4}, + [802] = {.lex_state = 6, .external_lex_state = 22}, + [803] = {.lex_state = 3}, + [804] = {.lex_state = 6, .external_lex_state = 23}, + [805] = {.lex_state = 6, .external_lex_state = 23}, + [806] = {.lex_state = 6, .external_lex_state = 22}, + [807] = {.lex_state = 6, .external_lex_state = 19}, + [808] = {.lex_state = 3}, + [809] = {.lex_state = 5}, + [810] = {.lex_state = 5}, + [811] = {.lex_state = 5}, + [812] = {.lex_state = 6}, + [813] = {.lex_state = 6}, + [814] = {.lex_state = 6}, + [815] = {.lex_state = 6}, + [816] = {.lex_state = 6}, + [817] = {.lex_state = 6}, + [818] = {.lex_state = 6}, + [819] = {.lex_state = 6}, + [820] = {.lex_state = 6}, + [821] = {.lex_state = 6}, + [822] = {.lex_state = 0}, + [823] = {.lex_state = 0}, + [824] = {.lex_state = 0}, + [825] = {.lex_state = 0}, + [826] = {.lex_state = 0}, + [827] = {.lex_state = 0}, + [828] = {.lex_state = 0}, + [829] = {.lex_state = 0}, + [830] = {.lex_state = 0}, + [831] = {.lex_state = 0}, + [832] = {.lex_state = 0}, + [833] = {.lex_state = 0}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 0}, + [836] = {.lex_state = 0}, + [837] = {.lex_state = 0}, + [838] = {.lex_state = 0}, + [839] = {.lex_state = 0}, + [840] = {.lex_state = 0}, + [841] = {.lex_state = 0}, + [842] = {.lex_state = 0}, + [843] = {.lex_state = 7}, + [844] = {.lex_state = 7}, + [845] = {.lex_state = 0}, + [846] = {.lex_state = 0}, + [847] = {.lex_state = 0}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 7}, + [851] = {.lex_state = 7}, + [852] = {.lex_state = 0}, + [853] = {.lex_state = 0}, + [854] = {.lex_state = 0}, + [855] = {.lex_state = 0}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 0}, + [858] = {.lex_state = 8}, + [859] = {.lex_state = 8}, + [860] = {.lex_state = 2173}, + [861] = {.lex_state = 8}, + [862] = {.lex_state = 8}, + [863] = {.lex_state = 2173}, + [864] = {.lex_state = 8}, + [865] = {.lex_state = 8}, + [866] = {.lex_state = 7}, + [867] = {.lex_state = 8}, + [868] = {.lex_state = 8}, + [869] = {.lex_state = 8}, + [870] = {.lex_state = 8}, + [871] = {.lex_state = 2173}, + [872] = {.lex_state = 8}, + [873] = {.lex_state = 0}, + [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}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 0}, + [884] = {.lex_state = 0}, + [885] = {.lex_state = 0}, + [886] = {.lex_state = 0}, + [887] = {.lex_state = 0}, + [888] = {.lex_state = 0}, + [889] = {.lex_state = 0}, + [890] = {.lex_state = 0}, + [891] = {.lex_state = 7, .external_lex_state = 23}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 0}, + [894] = {.lex_state = 7, .external_lex_state = 23}, + [895] = {.lex_state = 0}, + [896] = {.lex_state = 0}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 8, .external_lex_state = 23}, + [899] = {.lex_state = 8, .external_lex_state = 23}, + [900] = {.lex_state = 0}, + [901] = {.lex_state = 0}, + [902] = {.lex_state = 0}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 0}, + [906] = {.lex_state = 0}, + [907] = {.lex_state = 0}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 0}, + [910] = {.lex_state = 0}, + [911] = {.lex_state = 0}, + [912] = {.lex_state = 0}, + [913] = {.lex_state = 0}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 0}, + [916] = {.lex_state = 0}, + [917] = {.lex_state = 0}, + [918] = {.lex_state = 0}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 0}, + [922] = {.lex_state = 0}, + [923] = {.lex_state = 0}, + [924] = {.lex_state = 0}, + [925] = {.lex_state = 0}, + [926] = {.lex_state = 0}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 0}, + [930] = {.lex_state = 0}, + [931] = {.lex_state = 0}, + [932] = {.lex_state = 0}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 0}, + [935] = {.lex_state = 0}, + [936] = {.lex_state = 0}, + [937] = {.lex_state = 0}, + [938] = {.lex_state = 0}, + [939] = {.lex_state = 0}, + [940] = {.lex_state = 0}, + [941] = {.lex_state = 0}, + [942] = {.lex_state = 0}, + [943] = {.lex_state = 0}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 0}, + [946] = {.lex_state = 0}, + [947] = {.lex_state = 0}, + [948] = {.lex_state = 0}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 0}, + [951] = {.lex_state = 0}, + [952] = {.lex_state = 0}, + [953] = {.lex_state = 0}, + [954] = {.lex_state = 0}, + [955] = {.lex_state = 0}, + [956] = {.lex_state = 0}, + [957] = {.lex_state = 0}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 0}, + [961] = {.lex_state = 0}, + [962] = {.lex_state = 0}, + [963] = {.lex_state = 8}, + [964] = {.lex_state = 0}, + [965] = {.lex_state = 0}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 0}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 0}, + [971] = {.lex_state = 0}, + [972] = {.lex_state = 0}, + [973] = {.lex_state = 0}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 0}, + [976] = {.lex_state = 0}, + [977] = {.lex_state = 0}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 0}, + [982] = {.lex_state = 0}, + [983] = {.lex_state = 0}, + [984] = {.lex_state = 0}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 0}, + [987] = {.lex_state = 0}, + [988] = {.lex_state = 0}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 7}, + [991] = {.lex_state = 8}, + [992] = {.lex_state = 8}, + [993] = {.lex_state = 7}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 0}, + [997] = {.lex_state = 0}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 0}, + [1002] = {.lex_state = 0}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 0}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 0}, + [1008] = {.lex_state = 0}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 0}, + [1011] = {.lex_state = 0}, + [1012] = {.lex_state = 0}, + [1013] = {.lex_state = 0}, + [1014] = {.lex_state = 0, .external_lex_state = 26}, + [1015] = {.lex_state = 0}, + [1016] = {.lex_state = 0}, + [1017] = {.lex_state = 0}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 0}, + [1020] = {.lex_state = 0}, + [1021] = {.lex_state = 0}, + [1022] = {.lex_state = 0}, + [1023] = {.lex_state = 0}, + [1024] = {.lex_state = 0, .external_lex_state = 27}, + [1025] = {.lex_state = 0}, + [1026] = {.lex_state = 0}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 0}, + [1030] = {.lex_state = 0, .external_lex_state = 27}, + [1031] = {.lex_state = 0, .external_lex_state = 27}, + [1032] = {.lex_state = 0}, + [1033] = {.lex_state = 0, .external_lex_state = 27}, + [1034] = {.lex_state = 0}, + [1035] = {.lex_state = 0}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 0}, + [1038] = {.lex_state = 0}, + [1039] = {.lex_state = 0}, +}; + +enum { + ts_external_token__error = 0, + ts_external_token__trigger_error = 1, + ts_external_token__code_span_start = 2, + ts_external_token__code_span_close = 3, + ts_external_token__emphasis_open_star = 4, + ts_external_token__emphasis_open_underscore = 5, + ts_external_token__emphasis_close_star = 6, + ts_external_token__emphasis_close_underscore = 7, + ts_external_token__last_token_whitespace = 8, + ts_external_token__last_token_punctuation = 9, + ts_external_token__strikethrough_open = 10, + ts_external_token__strikethrough_close = 11, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__error] = sym__error, + [ts_external_token__trigger_error] = sym__trigger_error, + [ts_external_token__code_span_start] = sym__code_span_start, + [ts_external_token__code_span_close] = sym__code_span_close, + [ts_external_token__emphasis_open_star] = sym__emphasis_open_star, + [ts_external_token__emphasis_open_underscore] = sym__emphasis_open_underscore, + [ts_external_token__emphasis_close_star] = sym__emphasis_close_star, + [ts_external_token__emphasis_close_underscore] = sym__emphasis_close_underscore, + [ts_external_token__last_token_whitespace] = sym__last_token_whitespace, + [ts_external_token__last_token_punctuation] = sym__last_token_punctuation, + [ts_external_token__strikethrough_open] = sym__strikethrough_open, + [ts_external_token__strikethrough_close] = sym__strikethrough_close, +}; + +static const bool ts_external_scanner_states[28][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__error] = true, + [ts_external_token__trigger_error] = true, + [ts_external_token__code_span_start] = true, + [ts_external_token__code_span_close] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, + [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, + [ts_external_token__strikethrough_open] = true, + [ts_external_token__strikethrough_close] = true, + }, + [2] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__last_token_whitespace] = true, + [ts_external_token__strikethrough_open] = true, + }, + [3] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__last_token_punctuation] = true, + [ts_external_token__strikethrough_open] = true, + [ts_external_token__strikethrough_close] = true, + }, + [4] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__last_token_punctuation] = true, + [ts_external_token__strikethrough_open] = true, + }, + [5] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__last_token_punctuation] = true, + [ts_external_token__strikethrough_open] = true, + }, + [6] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, + [ts_external_token__last_token_punctuation] = true, + [ts_external_token__strikethrough_open] = true, + }, + [7] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, + [ts_external_token__strikethrough_open] = true, + }, + [8] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__strikethrough_open] = true, + }, + [9] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__strikethrough_open] = true, + [ts_external_token__strikethrough_close] = true, + }, + [10] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__strikethrough_open] = true, + }, + [11] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__code_span_close] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__strikethrough_open] = true, + }, + [12] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__code_span_close] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__strikethrough_open] = true, + }, + [13] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__code_span_close] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, + [ts_external_token__strikethrough_open] = true, + }, + [14] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__code_span_close] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__strikethrough_open] = true, + [ts_external_token__strikethrough_close] = true, + }, + [15] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + }, + [16] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__last_token_whitespace] = true, + [ts_external_token__strikethrough_open] = true, + }, + [17] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, + [ts_external_token__last_token_whitespace] = true, + [ts_external_token__strikethrough_open] = true, + }, + [18] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__last_token_whitespace] = true, + [ts_external_token__strikethrough_open] = true, + [ts_external_token__strikethrough_close] = true, + }, + [19] = { + [ts_external_token__last_token_punctuation] = true, + }, + [20] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__last_token_punctuation] = true, + }, + [21] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__last_token_whitespace] = true, + }, + [22] = { + [ts_external_token__code_span_close] = true, + }, + [23] = { + [ts_external_token__last_token_whitespace] = true, + }, + [24] = { + [ts_external_token__code_span_close] = true, + [ts_external_token__last_token_punctuation] = true, + }, + [25] = { + [ts_external_token__code_span_close] = true, + [ts_external_token__last_token_whitespace] = true, + }, + [26] = { + [ts_external_token__trigger_error] = true, + [ts_external_token__last_token_whitespace] = true, + }, + [27] = { + [ts_external_token__trigger_error] = true, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym__backslash_escape] = ACTIONS(1), + [sym_entity_reference] = ACTIONS(1), + [sym_numeric_character_reference] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_BSLASH] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [sym__newline_token] = ACTIONS(1), + [sym_uri_autolink] = ACTIONS(1), + [sym_email_autolink] = ACTIONS(1), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1), + [anon_sym_DASH_DASH_GT] = ACTIONS(1), + [anon_sym_LT_QMARK] = ACTIONS(1), + [anon_sym_QMARK_GT] = ACTIONS(1), + [aux_sym__declaration_token1] = ACTIONS(1), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK_RBRACK_GT] = ACTIONS(1), + [sym__whitespace_ge_2] = ACTIONS(1), + [aux_sym__whitespace_token1] = ACTIONS(1), + [sym__word_no_digit] = ACTIONS(1), + [sym__digits] = ACTIONS(1), + [sym__error] = ACTIONS(1), + [sym__trigger_error] = ACTIONS(1), + [sym__code_span_start] = ACTIONS(1), + [sym__code_span_close] = ACTIONS(1), + [sym__emphasis_open_star] = ACTIONS(1), + [sym__emphasis_open_underscore] = ACTIONS(1), + [sym__emphasis_close_star] = ACTIONS(1), + [sym__emphasis_close_underscore] = ACTIONS(1), + [sym__last_token_whitespace] = ACTIONS(1), + [sym__last_token_punctuation] = ACTIONS(1), + [sym__strikethrough_open] = ACTIONS(1), + [sym__strikethrough_close] = ACTIONS(1), + }, + [1] = { + [sym_inline] = STATE(1023), + [sym_backslash_escape] = STATE(152), + [sym_code_span] = STATE(152), + [sym__link_text] = STATE(1005), + [sym__link_text_non_empty] = STATE(267), + [sym_shortcut_link] = STATE(273), + [sym_full_reference_link] = STATE(273), + [sym_collapsed_reference_link] = STATE(273), + [sym_inline_link] = STATE(273), + [sym_image] = STATE(152), + [sym__image_inline_link] = STATE(268), + [sym__image_shortcut_link] = STATE(268), + [sym__image_full_reference_link] = STATE(268), + [sym__image_collapsed_reference_link] = STATE(268), + [sym__image_description] = STATE(1012), + [sym__image_description_non_empty] = STATE(270), + [sym_html_tag] = STATE(152), + [sym__open_tag] = STATE(272), + [sym__closing_tag] = STATE(272), + [sym__html_comment] = STATE(272), + [sym__processing_instruction] = STATE(272), + [sym__declaration] = STATE(272), + [sym__cdata_section] = STATE(272), + [sym_hard_line_break] = STATE(152), + [sym__whitespace] = STATE(152), + [sym__word] = STATE(152), + [sym__soft_line_break] = STATE(152), + [sym__inline_base] = STATE(273), + [sym__text_base] = STATE(152), + [sym__inline_element] = STATE(273), + [aux_sym__inline] = STATE(29), + [sym__strikethrough] = STATE(273), + [sym__emphasis_star] = STATE(274), + [sym__strong_emphasis_star] = STATE(273), + [sym__emphasis_underscore] = STATE(274), + [sym__strong_emphasis_underscore] = STATE(273), + [aux_sym__inline_base_repeat1] = STATE(152), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_GT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(13), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(13), + [anon_sym__] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(13), + [sym__newline_token] = ACTIONS(21), + [sym_uri_autolink] = ACTIONS(5), + [sym_email_autolink] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), + [anon_sym_LT_QMARK] = ACTIONS(25), + [aux_sym__declaration_token1] = ACTIONS(27), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), + [sym__whitespace_ge_2] = ACTIONS(31), + [aux_sym__whitespace_token1] = ACTIONS(33), + [sym__word_no_digit] = ACTIONS(5), + [sym__digits] = ACTIONS(5), + [sym__code_span_start] = ACTIONS(35), + [sym__emphasis_open_star] = ACTIONS(37), + [sym__emphasis_open_underscore] = ACTIONS(39), + [sym__last_token_whitespace] = ACTIONS(41), + [sym__strikethrough_open] = ACTIONS(43), + }, + [2] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(21), + [sym_full_reference_link] = STATE(21), + [sym_collapsed_reference_link] = STATE(21), + [sym_inline_link] = STATE(21), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(21), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(21), + [aux_sym__inline_no_star] = STATE(21), + [sym__strikethrough] = STATE(21), + [sym__emphasis_star] = STATE(299), + [sym__strong_emphasis_star] = STATE(21), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(21), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(45), + [sym_entity_reference] = ACTIONS(48), + [sym_numeric_character_reference] = ACTIONS(48), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_RBRACK] = ACTIONS(54), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(60), + [anon_sym_BANG] = ACTIONS(63), + [anon_sym_DQUOTE] = ACTIONS(60), + [anon_sym_POUND] = ACTIONS(60), + [anon_sym_DOLLAR] = ACTIONS(60), + [anon_sym_PERCENT] = ACTIONS(60), + [anon_sym_AMP] = ACTIONS(66), + [anon_sym_SQUOTE] = ACTIONS(60), + [anon_sym_STAR] = ACTIONS(60), + [anon_sym_PLUS] = ACTIONS(60), + [anon_sym_COMMA] = ACTIONS(60), + [anon_sym_DASH] = ACTIONS(60), + [anon_sym_DOT] = ACTIONS(60), + [anon_sym_SLASH] = ACTIONS(60), + [anon_sym_COLON] = ACTIONS(60), + [anon_sym_SEMI] = ACTIONS(60), + [anon_sym_EQ] = ACTIONS(60), + [anon_sym_QMARK] = ACTIONS(60), + [anon_sym_AT] = ACTIONS(60), + [anon_sym_BSLASH] = ACTIONS(69), + [anon_sym_CARET] = ACTIONS(60), + [anon_sym__] = ACTIONS(60), + [anon_sym_BQUOTE] = ACTIONS(60), + [anon_sym_LBRACE] = ACTIONS(60), + [anon_sym_PIPE] = ACTIONS(60), + [anon_sym_RBRACE] = ACTIONS(60), + [anon_sym_TILDE] = ACTIONS(60), + [anon_sym_LPAREN] = ACTIONS(60), + [anon_sym_RPAREN] = ACTIONS(60), + [sym__newline_token] = ACTIONS(72), + [sym_uri_autolink] = ACTIONS(48), + [sym_email_autolink] = ACTIONS(48), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(75), + [anon_sym_LT_QMARK] = ACTIONS(78), + [aux_sym__declaration_token1] = ACTIONS(81), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(84), + [sym__whitespace_ge_2] = ACTIONS(87), + [aux_sym__whitespace_token1] = ACTIONS(90), + [sym__word_no_digit] = ACTIONS(48), + [sym__digits] = ACTIONS(48), + [sym__code_span_start] = ACTIONS(93), + [sym__emphasis_open_star] = ACTIONS(96), + [sym__emphasis_open_underscore] = ACTIONS(99), + [sym__last_token_punctuation] = ACTIONS(102), + [sym__strikethrough_open] = ACTIONS(104), + [sym__strikethrough_close] = ACTIONS(107), + }, + [3] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(14), + [sym_full_reference_link] = STATE(14), + [sym_collapsed_reference_link] = STATE(14), + [sym_inline_link] = STATE(14), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(14), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(14), + [aux_sym__inline_no_underscore] = STATE(14), + [sym__strikethrough] = STATE(14), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(14), + [sym__emphasis_underscore] = STATE(302), + [sym__strong_emphasis_underscore] = STATE(14), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(109), + [sym_entity_reference] = ACTIONS(112), + [sym_numeric_character_reference] = ACTIONS(112), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(121), + [anon_sym_GT] = ACTIONS(124), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(124), + [anon_sym_POUND] = ACTIONS(124), + [anon_sym_DOLLAR] = ACTIONS(124), + [anon_sym_PERCENT] = ACTIONS(124), + [anon_sym_AMP] = ACTIONS(130), + [anon_sym_SQUOTE] = ACTIONS(124), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_PLUS] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_DASH] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(124), + [anon_sym_SLASH] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_SEMI] = ACTIONS(124), + [anon_sym_EQ] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_AT] = ACTIONS(124), + [anon_sym_BSLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(124), + [anon_sym__] = ACTIONS(124), + [anon_sym_BQUOTE] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_PIPE] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_TILDE] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(124), + [anon_sym_RPAREN] = ACTIONS(124), + [sym__newline_token] = ACTIONS(136), + [sym_uri_autolink] = ACTIONS(112), + [sym_email_autolink] = ACTIONS(112), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(139), + [anon_sym_LT_QMARK] = ACTIONS(142), + [aux_sym__declaration_token1] = ACTIONS(145), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(148), + [sym__whitespace_ge_2] = ACTIONS(151), + [aux_sym__whitespace_token1] = ACTIONS(154), + [sym__word_no_digit] = ACTIONS(112), + [sym__digits] = ACTIONS(112), + [sym__code_span_start] = ACTIONS(157), + [sym__emphasis_open_star] = ACTIONS(160), + [sym__emphasis_open_underscore] = ACTIONS(163), + [sym__last_token_punctuation] = ACTIONS(166), + [sym__strikethrough_open] = ACTIONS(168), + [sym__strikethrough_close] = ACTIONS(107), + }, + [4] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(41), + [sym_full_reference_link] = STATE(41), + [sym_collapsed_reference_link] = STATE(41), + [sym_inline_link] = STATE(41), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(41), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(41), + [aux_sym__inline_no_star] = STATE(41), + [sym__strikethrough] = STATE(41), + [sym__emphasis_star] = STATE(276), + [sym__strong_emphasis_star] = STATE(41), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(41), + [aux_sym__inline_base_repeat1] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(171), + [sym__backslash_escape] = ACTIONS(173), + [sym_entity_reference] = ACTIONS(176), + [sym_numeric_character_reference] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(182), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(188), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(188), + [anon_sym_POUND] = ACTIONS(188), + [anon_sym_DOLLAR] = ACTIONS(188), + [anon_sym_PERCENT] = ACTIONS(188), + [anon_sym_AMP] = ACTIONS(194), + [anon_sym_SQUOTE] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_DOT] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(188), + [anon_sym_COLON] = ACTIONS(188), + [anon_sym_SEMI] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(188), + [anon_sym_QMARK] = ACTIONS(188), + [anon_sym_AT] = ACTIONS(188), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(188), + [anon_sym__] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(188), + [anon_sym_LBRACE] = ACTIONS(188), + [anon_sym_PIPE] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_LPAREN] = ACTIONS(188), + [anon_sym_RPAREN] = ACTIONS(188), + [sym__newline_token] = ACTIONS(200), + [sym_uri_autolink] = ACTIONS(176), + [sym_email_autolink] = ACTIONS(176), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(203), + [anon_sym_LT_QMARK] = ACTIONS(206), + [aux_sym__declaration_token1] = ACTIONS(209), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(212), + [sym__whitespace_ge_2] = ACTIONS(215), + [aux_sym__whitespace_token1] = ACTIONS(218), + [sym__word_no_digit] = ACTIONS(176), + [sym__digits] = ACTIONS(176), + [sym__code_span_start] = ACTIONS(221), + [sym__emphasis_open_star] = ACTIONS(224), + [sym__emphasis_open_underscore] = ACTIONS(227), + [sym__last_token_punctuation] = ACTIONS(230), + [sym__strikethrough_open] = ACTIONS(232), + }, + [5] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(50), + [sym_full_reference_link] = STATE(50), + [sym_collapsed_reference_link] = STATE(50), + [sym_inline_link] = STATE(50), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(50), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(50), + [aux_sym__inline_no_underscore] = STATE(50), + [sym__strikethrough] = STATE(50), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(50), + [sym__emphasis_underscore] = STATE(279), + [sym__strong_emphasis_underscore] = STATE(50), + [aux_sym__inline_base_repeat1] = STATE(148), + [ts_builtin_sym_end] = ACTIONS(171), + [sym__backslash_escape] = ACTIONS(235), + [sym_entity_reference] = ACTIONS(238), + [sym_numeric_character_reference] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(247), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_POUND] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(256), + [anon_sym_SQUOTE] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(250), + [anon_sym_QMARK] = ACTIONS(250), + [anon_sym_AT] = ACTIONS(250), + [anon_sym_BSLASH] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym__] = ACTIONS(250), + [anon_sym_BQUOTE] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [sym__newline_token] = ACTIONS(262), + [sym_uri_autolink] = ACTIONS(238), + [sym_email_autolink] = ACTIONS(238), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(265), + [anon_sym_LT_QMARK] = ACTIONS(268), + [aux_sym__declaration_token1] = ACTIONS(271), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(274), + [sym__whitespace_ge_2] = ACTIONS(277), + [aux_sym__whitespace_token1] = ACTIONS(280), + [sym__word_no_digit] = ACTIONS(238), + [sym__digits] = ACTIONS(238), + [sym__code_span_start] = ACTIONS(283), + [sym__emphasis_open_star] = ACTIONS(286), + [sym__emphasis_open_underscore] = ACTIONS(289), + [sym__last_token_punctuation] = ACTIONS(292), + [sym__strikethrough_open] = ACTIONS(294), + }, + [6] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(24), + [sym_full_reference_link] = STATE(24), + [sym_collapsed_reference_link] = STATE(24), + [sym_inline_link] = STATE(24), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(24), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(24), + [aux_sym__inline_no_tilde] = STATE(24), + [sym__strikethrough] = STATE(24), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(24), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(24), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(297), + [sym_entity_reference] = ACTIONS(300), + [sym_numeric_character_reference] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(303), + [anon_sym_RBRACK] = ACTIONS(306), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(312), + [anon_sym_BANG] = ACTIONS(315), + [anon_sym_DQUOTE] = ACTIONS(312), + [anon_sym_POUND] = ACTIONS(312), + [anon_sym_DOLLAR] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_SQUOTE] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_COMMA] = ACTIONS(312), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_COLON] = ACTIONS(312), + [anon_sym_SEMI] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(312), + [anon_sym_BSLASH] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym__] = ACTIONS(312), + [anon_sym_BQUOTE] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_RBRACE] = ACTIONS(312), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_RPAREN] = ACTIONS(312), + [sym__newline_token] = ACTIONS(324), + [sym_uri_autolink] = ACTIONS(300), + [sym_email_autolink] = ACTIONS(300), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(327), + [anon_sym_LT_QMARK] = ACTIONS(330), + [aux_sym__declaration_token1] = ACTIONS(333), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(336), + [sym__whitespace_ge_2] = ACTIONS(339), + [aux_sym__whitespace_token1] = ACTIONS(342), + [sym__word_no_digit] = ACTIONS(300), + [sym__digits] = ACTIONS(300), + [sym__code_span_start] = ACTIONS(345), + [sym__emphasis_open_star] = ACTIONS(348), + [sym__emphasis_open_underscore] = ACTIONS(351), + [sym__emphasis_close_underscore] = ACTIONS(354), + [sym__last_token_punctuation] = ACTIONS(356), + [sym__strikethrough_open] = ACTIONS(358), + }, + [7] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(48), + [sym_full_reference_link] = STATE(48), + [sym_collapsed_reference_link] = STATE(48), + [sym_inline_link] = STATE(48), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(48), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(48), + [aux_sym__inline_no_tilde] = STATE(48), + [sym__strikethrough] = STATE(48), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(48), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(48), + [aux_sym__inline_base_repeat1] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(171), + [sym__backslash_escape] = ACTIONS(361), + [sym_entity_reference] = ACTIONS(364), + [sym_numeric_character_reference] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_RBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_POUND] = ACTIONS(376), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_PERCENT] = ACTIONS(376), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(376), + [anon_sym_STAR] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(376), + [anon_sym_DOT] = ACTIONS(376), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_COLON] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym_EQ] = ACTIONS(376), + [anon_sym_QMARK] = ACTIONS(376), + [anon_sym_AT] = ACTIONS(376), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(376), + [anon_sym__] = ACTIONS(376), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(376), + [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_RPAREN] = ACTIONS(376), + [sym__newline_token] = ACTIONS(388), + [sym_uri_autolink] = ACTIONS(364), + [sym_email_autolink] = ACTIONS(364), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), + [anon_sym_LT_QMARK] = ACTIONS(394), + [aux_sym__declaration_token1] = ACTIONS(397), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(400), + [sym__whitespace_ge_2] = ACTIONS(403), + [aux_sym__whitespace_token1] = ACTIONS(406), + [sym__word_no_digit] = ACTIONS(364), + [sym__digits] = ACTIONS(364), + [sym__code_span_start] = ACTIONS(409), + [sym__emphasis_open_star] = ACTIONS(412), + [sym__emphasis_open_underscore] = ACTIONS(415), + [sym__last_token_punctuation] = ACTIONS(418), + [sym__strikethrough_open] = ACTIONS(420), + }, + [8] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(11), + [sym_full_reference_link] = STATE(11), + [sym_collapsed_reference_link] = STATE(11), + [sym_inline_link] = STATE(11), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(11), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(11), + [aux_sym__inline_no_star] = STATE(11), + [sym__strikethrough] = STATE(11), + [sym__emphasis_star] = STATE(271), + [sym__strong_emphasis_star] = STATE(11), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(11), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(423), + [sym_entity_reference] = ACTIONS(426), + [sym_numeric_character_reference] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(429), + [anon_sym_RBRACK] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_POUND] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(438), + [anon_sym_PERCENT] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(444), + [anon_sym_SQUOTE] = ACTIONS(438), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_COMMA] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_DOT] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_COLON] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_BSLASH] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(438), + [anon_sym__] = ACTIONS(438), + [anon_sym_BQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_RBRACE] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(438), + [anon_sym_RPAREN] = ACTIONS(438), + [sym__newline_token] = ACTIONS(450), + [sym_uri_autolink] = ACTIONS(426), + [sym_email_autolink] = ACTIONS(426), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(453), + [anon_sym_LT_QMARK] = ACTIONS(456), + [aux_sym__declaration_token1] = ACTIONS(459), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(462), + [sym__whitespace_ge_2] = ACTIONS(465), + [aux_sym__whitespace_token1] = ACTIONS(468), + [sym__word_no_digit] = ACTIONS(426), + [sym__digits] = ACTIONS(426), + [sym__code_span_start] = ACTIONS(471), + [sym__emphasis_open_star] = ACTIONS(474), + [sym__emphasis_open_underscore] = ACTIONS(477), + [sym__emphasis_close_underscore] = ACTIONS(354), + [sym__last_token_punctuation] = ACTIONS(480), + [sym__strikethrough_open] = ACTIONS(482), + }, + [9] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(26), + [sym_full_reference_link] = STATE(26), + [sym_collapsed_reference_link] = STATE(26), + [sym_inline_link] = STATE(26), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(26), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(26), + [aux_sym__inline_no_tilde] = STATE(26), + [sym__strikethrough] = STATE(26), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(26), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(26), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(485), + [sym_entity_reference] = ACTIONS(488), + [sym_numeric_character_reference] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_RBRACK] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(497), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(500), + [anon_sym_POUND] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_PERCENT] = ACTIONS(500), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_COMMA] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_SLASH] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(500), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_BSLASH] = ACTIONS(509), + [anon_sym_CARET] = ACTIONS(500), + [anon_sym__] = ACTIONS(500), + [anon_sym_BQUOTE] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(500), + [sym__newline_token] = ACTIONS(512), + [sym_uri_autolink] = ACTIONS(488), + [sym_email_autolink] = ACTIONS(488), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(515), + [anon_sym_LT_QMARK] = ACTIONS(518), + [aux_sym__declaration_token1] = ACTIONS(521), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(524), + [sym__whitespace_ge_2] = ACTIONS(527), + [aux_sym__whitespace_token1] = ACTIONS(530), + [sym__word_no_digit] = ACTIONS(488), + [sym__digits] = ACTIONS(488), + [sym__code_span_start] = ACTIONS(533), + [sym__emphasis_open_star] = ACTIONS(536), + [sym__emphasis_open_underscore] = ACTIONS(539), + [sym__emphasis_close_star] = ACTIONS(542), + [sym__last_token_punctuation] = ACTIONS(544), + [sym__strikethrough_open] = ACTIONS(546), + }, + [10] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(23), + [sym_full_reference_link] = STATE(23), + [sym_collapsed_reference_link] = STATE(23), + [sym_inline_link] = STATE(23), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(23), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(23), + [aux_sym__inline_no_underscore] = STATE(23), + [sym__strikethrough] = STATE(23), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(23), + [sym__emphasis_underscore] = STATE(295), + [sym__strong_emphasis_underscore] = STATE(23), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(549), + [sym_entity_reference] = ACTIONS(552), + [sym_numeric_character_reference] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_RBRACK] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_BSLASH] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym__] = ACTIONS(564), + [anon_sym_BQUOTE] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_RPAREN] = ACTIONS(564), + [sym__newline_token] = ACTIONS(576), + [sym_uri_autolink] = ACTIONS(552), + [sym_email_autolink] = ACTIONS(552), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(579), + [anon_sym_LT_QMARK] = ACTIONS(582), + [aux_sym__declaration_token1] = ACTIONS(585), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(588), + [sym__whitespace_ge_2] = ACTIONS(591), + [aux_sym__whitespace_token1] = ACTIONS(594), + [sym__word_no_digit] = ACTIONS(552), + [sym__digits] = ACTIONS(552), + [sym__code_span_start] = ACTIONS(597), + [sym__emphasis_open_star] = ACTIONS(600), + [sym__emphasis_open_underscore] = ACTIONS(603), + [sym__emphasis_close_star] = ACTIONS(542), + [sym__last_token_punctuation] = ACTIONS(606), + [sym__strikethrough_open] = ACTIONS(608), + }, + [11] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(649), + [sym__strikethrough_open] = ACTIONS(651), + }, + [12] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(691), + [sym__strikethrough_open] = ACTIONS(693), + }, + [13] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(735), + }, + [14] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(737), + [sym__strikethrough_open] = ACTIONS(693), + }, + [15] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(32), + [sym_full_reference_link] = STATE(32), + [sym_collapsed_reference_link] = STATE(32), + [sym_inline_link] = STATE(32), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(32), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(32), + [aux_sym__inline_no_star] = STATE(32), + [sym__strikethrough] = STATE(32), + [sym__emphasis_star] = STATE(301), + [sym__strong_emphasis_star] = STATE(32), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(32), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(173), + [sym_entity_reference] = ACTIONS(176), + [sym_numeric_character_reference] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_RBRACK] = ACTIONS(182), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(188), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(188), + [anon_sym_POUND] = ACTIONS(188), + [anon_sym_DOLLAR] = ACTIONS(188), + [anon_sym_PERCENT] = ACTIONS(188), + [anon_sym_AMP] = ACTIONS(194), + [anon_sym_SQUOTE] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_DASH] = ACTIONS(188), + [anon_sym_DOT] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(188), + [anon_sym_COLON] = ACTIONS(188), + [anon_sym_SEMI] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(188), + [anon_sym_QMARK] = ACTIONS(188), + [anon_sym_AT] = ACTIONS(188), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_CARET] = ACTIONS(188), + [anon_sym__] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(188), + [anon_sym_LBRACE] = ACTIONS(188), + [anon_sym_PIPE] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_LPAREN] = ACTIONS(188), + [anon_sym_RPAREN] = ACTIONS(188), + [sym__newline_token] = ACTIONS(200), + [sym_uri_autolink] = ACTIONS(176), + [sym_email_autolink] = ACTIONS(176), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(203), + [anon_sym_LT_QMARK] = ACTIONS(206), + [aux_sym__declaration_token1] = ACTIONS(209), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(212), + [sym__whitespace_ge_2] = ACTIONS(215), + [aux_sym__whitespace_token1] = ACTIONS(218), + [sym__word_no_digit] = ACTIONS(176), + [sym__digits] = ACTIONS(176), + [sym__code_span_start] = ACTIONS(221), + [sym__emphasis_open_star] = ACTIONS(224), + [sym__emphasis_open_underscore] = ACTIONS(227), + [sym__last_token_punctuation] = ACTIONS(739), + [sym__strikethrough_open] = ACTIONS(232), + }, + [16] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(38), + [sym_full_reference_link] = STATE(38), + [sym_collapsed_reference_link] = STATE(38), + [sym_inline_link] = STATE(38), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(38), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(38), + [aux_sym__inline_no_underscore] = STATE(38), + [sym__strikethrough] = STATE(38), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(38), + [sym__emphasis_underscore] = STATE(292), + [sym__strong_emphasis_underscore] = STATE(38), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(235), + [sym_entity_reference] = ACTIONS(238), + [sym_numeric_character_reference] = ACTIONS(238), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(247), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_BANG] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_POUND] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(250), + [anon_sym_PERCENT] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(256), + [anon_sym_SQUOTE] = ACTIONS(250), + [anon_sym_STAR] = ACTIONS(250), + [anon_sym_PLUS] = ACTIONS(250), + [anon_sym_COMMA] = ACTIONS(250), + [anon_sym_DASH] = ACTIONS(250), + [anon_sym_DOT] = ACTIONS(250), + [anon_sym_SLASH] = ACTIONS(250), + [anon_sym_COLON] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_EQ] = ACTIONS(250), + [anon_sym_QMARK] = ACTIONS(250), + [anon_sym_AT] = ACTIONS(250), + [anon_sym_BSLASH] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(250), + [anon_sym__] = ACTIONS(250), + [anon_sym_BQUOTE] = ACTIONS(250), + [anon_sym_LBRACE] = ACTIONS(250), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_RBRACE] = ACTIONS(250), + [anon_sym_TILDE] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [sym__newline_token] = ACTIONS(262), + [sym_uri_autolink] = ACTIONS(238), + [sym_email_autolink] = ACTIONS(238), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(265), + [anon_sym_LT_QMARK] = ACTIONS(268), + [aux_sym__declaration_token1] = ACTIONS(271), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(274), + [sym__whitespace_ge_2] = ACTIONS(277), + [aux_sym__whitespace_token1] = ACTIONS(280), + [sym__word_no_digit] = ACTIONS(238), + [sym__digits] = ACTIONS(238), + [sym__code_span_start] = ACTIONS(283), + [sym__emphasis_open_star] = ACTIONS(286), + [sym__emphasis_open_underscore] = ACTIONS(289), + [sym__last_token_punctuation] = ACTIONS(741), + [sym__strikethrough_open] = ACTIONS(294), + }, + [17] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(44), + [sym_full_reference_link] = STATE(44), + [sym_collapsed_reference_link] = STATE(44), + [sym_inline_link] = STATE(44), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(44), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(44), + [aux_sym__inline_no_tilde] = STATE(44), + [sym__strikethrough] = STATE(44), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(44), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(44), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(361), + [sym_entity_reference] = ACTIONS(364), + [sym_numeric_character_reference] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_RBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(376), + [anon_sym_BANG] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(376), + [anon_sym_POUND] = ACTIONS(376), + [anon_sym_DOLLAR] = ACTIONS(376), + [anon_sym_PERCENT] = ACTIONS(376), + [anon_sym_AMP] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(376), + [anon_sym_STAR] = ACTIONS(376), + [anon_sym_PLUS] = ACTIONS(376), + [anon_sym_COMMA] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(376), + [anon_sym_DOT] = ACTIONS(376), + [anon_sym_SLASH] = ACTIONS(376), + [anon_sym_COLON] = ACTIONS(376), + [anon_sym_SEMI] = ACTIONS(376), + [anon_sym_EQ] = ACTIONS(376), + [anon_sym_QMARK] = ACTIONS(376), + [anon_sym_AT] = ACTIONS(376), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(376), + [anon_sym__] = ACTIONS(376), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(376), + [anon_sym_RBRACE] = ACTIONS(376), + [anon_sym_TILDE] = ACTIONS(376), + [anon_sym_LPAREN] = ACTIONS(376), + [anon_sym_RPAREN] = ACTIONS(376), + [sym__newline_token] = ACTIONS(388), + [sym_uri_autolink] = ACTIONS(364), + [sym_email_autolink] = ACTIONS(364), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), + [anon_sym_LT_QMARK] = ACTIONS(394), + [aux_sym__declaration_token1] = ACTIONS(397), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(400), + [sym__whitespace_ge_2] = ACTIONS(403), + [aux_sym__whitespace_token1] = ACTIONS(406), + [sym__word_no_digit] = ACTIONS(364), + [sym__digits] = ACTIONS(364), + [sym__code_span_start] = ACTIONS(409), + [sym__emphasis_open_star] = ACTIONS(412), + [sym__emphasis_open_underscore] = ACTIONS(415), + [sym__last_token_punctuation] = ACTIONS(743), + [sym__strikethrough_open] = ACTIONS(420), + }, + [18] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(745), + [sym_entity_reference] = ACTIONS(748), + [sym_numeric_character_reference] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(751), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(763), + [anon_sym_DQUOTE] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_PERCENT] = ACTIONS(760), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_SQUOTE] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(760), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_BSLASH] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(760), + [anon_sym__] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [sym__newline_token] = ACTIONS(772), + [sym_uri_autolink] = ACTIONS(748), + [sym_email_autolink] = ACTIONS(748), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(775), + [anon_sym_LT_QMARK] = ACTIONS(778), + [aux_sym__declaration_token1] = ACTIONS(781), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(784), + [sym__whitespace_ge_2] = ACTIONS(787), + [aux_sym__whitespace_token1] = ACTIONS(790), + [sym__word_no_digit] = ACTIONS(748), + [sym__digits] = ACTIONS(748), + [sym__code_span_start] = ACTIONS(793), + [sym__emphasis_open_star] = ACTIONS(796), + [sym__emphasis_open_underscore] = ACTIONS(799), + [sym__strikethrough_open] = ACTIONS(802), + [sym__strikethrough_close] = ACTIONS(805), + }, + [19] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(807), + [sym__strikethrough_open] = ACTIONS(693), + }, + [20] = { + [sym_backslash_escape] = STATE(152), + [sym_code_span] = STATE(152), + [sym__link_text] = STATE(1005), + [sym__link_text_non_empty] = STATE(267), + [sym_shortcut_link] = STATE(273), + [sym_full_reference_link] = STATE(273), + [sym_collapsed_reference_link] = STATE(273), + [sym_inline_link] = STATE(273), + [sym_image] = STATE(152), + [sym__image_inline_link] = STATE(268), + [sym__image_shortcut_link] = STATE(268), + [sym__image_full_reference_link] = STATE(268), + [sym__image_collapsed_reference_link] = STATE(268), + [sym__image_description] = STATE(1012), + [sym__image_description_non_empty] = STATE(270), + [sym_html_tag] = STATE(152), + [sym__open_tag] = STATE(272), + [sym__closing_tag] = STATE(272), + [sym__html_comment] = STATE(272), + [sym__processing_instruction] = STATE(272), + [sym__declaration] = STATE(272), + [sym__cdata_section] = STATE(272), + [sym_hard_line_break] = STATE(152), + [sym__whitespace] = STATE(152), + [sym__word] = STATE(152), + [sym__soft_line_break] = STATE(152), + [sym__inline_base] = STATE(273), + [sym__text_base] = STATE(152), + [sym__inline_element] = STATE(273), + [aux_sym__inline] = STATE(20), + [sym__strikethrough] = STATE(273), + [sym__emphasis_star] = STATE(274), + [sym__strong_emphasis_star] = STATE(273), + [sym__emphasis_underscore] = STATE(274), + [sym__strong_emphasis_underscore] = STATE(273), + [aux_sym__inline_base_repeat1] = STATE(152), + [ts_builtin_sym_end] = ACTIONS(809), + [sym__backslash_escape] = ACTIONS(811), + [sym_entity_reference] = ACTIONS(814), + [sym_numeric_character_reference] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_BSLASH] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym__] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [sym__newline_token] = ACTIONS(838), + [sym_uri_autolink] = ACTIONS(814), + [sym_email_autolink] = ACTIONS(814), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(841), + [anon_sym_LT_QMARK] = ACTIONS(844), + [aux_sym__declaration_token1] = ACTIONS(847), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(850), + [sym__whitespace_ge_2] = ACTIONS(853), + [aux_sym__whitespace_token1] = ACTIONS(856), + [sym__word_no_digit] = ACTIONS(814), + [sym__digits] = ACTIONS(814), + [sym__code_span_start] = ACTIONS(859), + [sym__emphasis_open_star] = ACTIONS(862), + [sym__emphasis_open_underscore] = ACTIONS(865), + [sym__strikethrough_open] = ACTIONS(868), + }, + [21] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(871), + [sym__strikethrough_open] = ACTIONS(651), + }, + [22] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(873), + [sym__strikethrough_open] = ACTIONS(651), + }, + [23] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(875), + [sym__strikethrough_open] = ACTIONS(693), + }, + [24] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(877), + }, + [25] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(879), + [sym__strikethrough_open] = ACTIONS(693), + }, + [26] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(881), + }, + [27] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(883), + }, + [28] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(885), + [sym__strikethrough_open] = ACTIONS(651), + }, + [29] = { + [sym_backslash_escape] = STATE(152), + [sym_code_span] = STATE(152), + [sym__link_text] = STATE(1005), + [sym__link_text_non_empty] = STATE(267), + [sym_shortcut_link] = STATE(273), + [sym_full_reference_link] = STATE(273), + [sym_collapsed_reference_link] = STATE(273), + [sym_inline_link] = STATE(273), + [sym_image] = STATE(152), + [sym__image_inline_link] = STATE(268), + [sym__image_shortcut_link] = STATE(268), + [sym__image_full_reference_link] = STATE(268), + [sym__image_collapsed_reference_link] = STATE(268), + [sym__image_description] = STATE(1012), + [sym__image_description_non_empty] = STATE(270), + [sym_html_tag] = STATE(152), + [sym__open_tag] = STATE(272), + [sym__closing_tag] = STATE(272), + [sym__html_comment] = STATE(272), + [sym__processing_instruction] = STATE(272), + [sym__declaration] = STATE(272), + [sym__cdata_section] = STATE(272), + [sym_hard_line_break] = STATE(152), + [sym__whitespace] = STATE(152), + [sym__word] = STATE(152), + [sym__soft_line_break] = STATE(152), + [sym__inline_base] = STATE(273), + [sym__text_base] = STATE(152), + [sym__inline_element] = STATE(273), + [aux_sym__inline] = STATE(20), + [sym__strikethrough] = STATE(273), + [sym__emphasis_star] = STATE(274), + [sym__strong_emphasis_star] = STATE(273), + [sym__emphasis_underscore] = STATE(274), + [sym__strong_emphasis_underscore] = STATE(273), + [aux_sym__inline_base_repeat1] = STATE(152), + [ts_builtin_sym_end] = ACTIONS(887), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_GT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(13), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(13), + [anon_sym__] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(13), + [sym__newline_token] = ACTIONS(21), + [sym_uri_autolink] = ACTIONS(5), + [sym_email_autolink] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), + [anon_sym_LT_QMARK] = ACTIONS(25), + [aux_sym__declaration_token1] = ACTIONS(27), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), + [sym__whitespace_ge_2] = ACTIONS(31), + [aux_sym__whitespace_token1] = ACTIONS(33), + [sym__word_no_digit] = ACTIONS(5), + [sym__digits] = ACTIONS(5), + [sym__code_span_start] = ACTIONS(35), + [sym__emphasis_open_star] = ACTIONS(37), + [sym__emphasis_open_underscore] = ACTIONS(39), + [sym__strikethrough_open] = ACTIONS(43), + }, + [30] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(889), + [sym__strikethrough_open] = ACTIONS(651), + }, + [31] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(891), + [sym_entity_reference] = ACTIONS(894), + [sym_numeric_character_reference] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_RBRACK] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(906), + [anon_sym_POUND] = ACTIONS(906), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_PERCENT] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_COMMA] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_COLON] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_EQ] = ACTIONS(906), + [anon_sym_QMARK] = ACTIONS(906), + [anon_sym_AT] = ACTIONS(906), + [anon_sym_BSLASH] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym__] = ACTIONS(906), + [anon_sym_BQUOTE] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(906), + [anon_sym_RPAREN] = ACTIONS(906), + [sym__newline_token] = ACTIONS(918), + [sym_uri_autolink] = ACTIONS(894), + [sym_email_autolink] = ACTIONS(894), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(921), + [anon_sym_LT_QMARK] = ACTIONS(924), + [aux_sym__declaration_token1] = ACTIONS(927), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(930), + [sym__whitespace_ge_2] = ACTIONS(933), + [aux_sym__whitespace_token1] = ACTIONS(936), + [sym__word_no_digit] = ACTIONS(894), + [sym__digits] = ACTIONS(894), + [sym__code_span_start] = ACTIONS(939), + [sym__emphasis_open_star] = ACTIONS(942), + [sym__emphasis_open_underscore] = ACTIONS(945), + [sym__emphasis_close_underscore] = ACTIONS(948), + [sym__strikethrough_open] = ACTIONS(950), + }, + [32] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(953), + [sym__strikethrough_open] = ACTIONS(651), + }, + [33] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(955), + }, + [34] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(957), + [sym__strikethrough_open] = ACTIONS(651), + }, + [35] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(22), + [sym_full_reference_link] = STATE(22), + [sym_collapsed_reference_link] = STATE(22), + [sym_inline_link] = STATE(22), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(22), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(22), + [aux_sym__inline_no_star] = STATE(22), + [sym__strikethrough] = STATE(22), + [sym__emphasis_star] = STATE(296), + [sym__strong_emphasis_star] = STATE(22), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(22), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__last_token_punctuation] = ACTIONS(959), + [sym__strikethrough_open] = ACTIONS(651), + }, + [36] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(961), + [sym__strikethrough_open] = ACTIONS(693), + }, + [37] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(963), + [sym__strikethrough_open] = ACTIONS(693), + }, + [38] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(965), + [sym__strikethrough_open] = ACTIONS(693), + }, + [39] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(967), + }, + [40] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(969), + [sym__strikethrough_open] = ACTIONS(693), + }, + [41] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(971), + [sym__strikethrough_open] = ACTIONS(651), + }, + [42] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(973), + [sym_entity_reference] = ACTIONS(976), + [sym_numeric_character_reference] = ACTIONS(976), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_COLON] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(988), + [anon_sym_AT] = ACTIONS(988), + [anon_sym_BSLASH] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym__] = ACTIONS(988), + [anon_sym_BQUOTE] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_TILDE] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [sym__newline_token] = ACTIONS(1000), + [sym_uri_autolink] = ACTIONS(976), + [sym_email_autolink] = ACTIONS(976), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1003), + [anon_sym_LT_QMARK] = ACTIONS(1006), + [aux_sym__declaration_token1] = ACTIONS(1009), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1012), + [sym__whitespace_ge_2] = ACTIONS(1015), + [aux_sym__whitespace_token1] = ACTIONS(1018), + [sym__word_no_digit] = ACTIONS(976), + [sym__digits] = ACTIONS(976), + [sym__code_span_start] = ACTIONS(1021), + [sym__emphasis_open_star] = ACTIONS(1024), + [sym__emphasis_open_underscore] = ACTIONS(1027), + [sym__emphasis_close_star] = ACTIONS(1030), + [sym__strikethrough_open] = ACTIONS(1032), + }, + [43] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(1035), + [sym__strikethrough_open] = ACTIONS(651), + }, + [44] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(1037), + }, + [45] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(25), + [sym_full_reference_link] = STATE(25), + [sym_collapsed_reference_link] = STATE(25), + [sym_inline_link] = STATE(25), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(25), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(25), + [aux_sym__inline_no_underscore] = STATE(25), + [sym__strikethrough] = STATE(25), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(25), + [sym__emphasis_underscore] = STATE(269), + [sym__strong_emphasis_underscore] = STATE(25), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__last_token_punctuation] = ACTIONS(1039), + [sym__strikethrough_open] = ACTIONS(693), + }, + [46] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(1041), + }, + [47] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(1043), + }, + [48] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(18), + [sym_full_reference_link] = STATE(18), + [sym_collapsed_reference_link] = STATE(18), + [sym_inline_link] = STATE(18), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(18), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(18), + [aux_sym__inline_no_tilde] = STATE(18), + [sym__strikethrough] = STATE(18), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(18), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(18), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + [sym__strikethrough_close] = ACTIONS(1045), + }, + [49] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(47), + [sym_full_reference_link] = STATE(47), + [sym_collapsed_reference_link] = STATE(47), + [sym_inline_link] = STATE(47), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(47), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(47), + [aux_sym__inline_no_tilde] = STATE(47), + [sym__strikethrough] = STATE(47), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(47), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(47), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__last_token_punctuation] = ACTIONS(1047), + [sym__strikethrough_open] = ACTIONS(733), + }, + [50] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(31), + [sym_full_reference_link] = STATE(31), + [sym_collapsed_reference_link] = STATE(31), + [sym_inline_link] = STATE(31), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(31), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(31), + [aux_sym__inline_no_underscore] = STATE(31), + [sym__strikethrough] = STATE(31), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(31), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(31), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__emphasis_close_underscore] = ACTIONS(1049), + [sym__strikethrough_open] = ACTIONS(693), + }, + [51] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(42), + [sym_full_reference_link] = STATE(42), + [sym_collapsed_reference_link] = STATE(42), + [sym_inline_link] = STATE(42), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(42), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(42), + [aux_sym__inline_no_star] = STATE(42), + [sym__strikethrough] = STATE(42), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(42), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(42), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__emphasis_close_star] = ACTIONS(1051), + [sym__strikethrough_open] = ACTIONS(651), + }, + [52] = { + [sym_backslash_escape] = STATE(152), + [sym_code_span] = STATE(152), + [sym__link_text] = STATE(1005), + [sym__link_text_non_empty] = STATE(267), + [sym_shortcut_link] = STATE(273), + [sym_full_reference_link] = STATE(273), + [sym_collapsed_reference_link] = STATE(273), + [sym_inline_link] = STATE(273), + [sym_image] = STATE(152), + [sym__image_inline_link] = STATE(268), + [sym__image_shortcut_link] = STATE(268), + [sym__image_full_reference_link] = STATE(268), + [sym__image_collapsed_reference_link] = STATE(268), + [sym__image_description] = STATE(1012), + [sym__image_description_non_empty] = STATE(270), + [sym_html_tag] = STATE(152), + [sym__open_tag] = STATE(272), + [sym__closing_tag] = STATE(272), + [sym__html_comment] = STATE(272), + [sym__processing_instruction] = STATE(272), + [sym__declaration] = STATE(272), + [sym__cdata_section] = STATE(272), + [sym_hard_line_break] = STATE(152), + [sym__whitespace] = STATE(152), + [sym__word] = STATE(152), + [sym__soft_line_break] = STATE(152), + [sym__inline_base] = STATE(273), + [sym__text_base] = STATE(152), + [sym__inline_element] = STATE(273), + [aux_sym__inline] = STATE(20), + [sym__strikethrough] = STATE(273), + [sym__emphasis_star] = STATE(274), + [sym__strong_emphasis_star] = STATE(273), + [sym__emphasis_underscore] = STATE(274), + [sym__strong_emphasis_underscore] = STATE(273), + [aux_sym__inline_base_repeat1] = STATE(152), + [ts_builtin_sym_end] = ACTIONS(1053), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_GT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(13), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(13), + [anon_sym__] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(13), + [sym__newline_token] = ACTIONS(21), + [sym_uri_autolink] = ACTIONS(5), + [sym_email_autolink] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), + [anon_sym_LT_QMARK] = ACTIONS(25), + [aux_sym__declaration_token1] = ACTIONS(27), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), + [sym__whitespace_ge_2] = ACTIONS(31), + [aux_sym__whitespace_token1] = ACTIONS(33), + [sym__word_no_digit] = ACTIONS(5), + [sym__digits] = ACTIONS(5), + [sym__code_span_start] = ACTIONS(35), + [sym__emphasis_open_star] = ACTIONS(37), + [sym__emphasis_open_underscore] = ACTIONS(39), + [sym__strikethrough_open] = ACTIONS(43), + }, + [53] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(12), + [sym_full_reference_link] = STATE(12), + [sym_collapsed_reference_link] = STATE(12), + [sym_inline_link] = STATE(12), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(12), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(12), + [aux_sym__inline_no_underscore] = STATE(12), + [sym__strikethrough] = STATE(12), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(12), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(12), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikethrough_open] = ACTIONS(693), + }, + [54] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(34), + [sym_full_reference_link] = STATE(34), + [sym_collapsed_reference_link] = STATE(34), + [sym_inline_link] = STATE(34), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(34), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(34), + [aux_sym__inline_no_star] = STATE(34), + [sym__strikethrough] = STATE(34), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(34), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(34), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__strikethrough_open] = ACTIONS(651), + }, + [55] = { + [sym_backslash_escape] = STATE(152), + [sym_code_span] = STATE(152), + [sym__link_text] = STATE(1005), + [sym__link_text_non_empty] = STATE(267), + [sym_shortcut_link] = STATE(273), + [sym_full_reference_link] = STATE(273), + [sym_collapsed_reference_link] = STATE(273), + [sym_inline_link] = STATE(273), + [sym_image] = STATE(152), + [sym__image_inline_link] = STATE(268), + [sym__image_shortcut_link] = STATE(268), + [sym__image_full_reference_link] = STATE(268), + [sym__image_collapsed_reference_link] = STATE(268), + [sym__image_description] = STATE(1012), + [sym__image_description_non_empty] = STATE(270), + [sym_html_tag] = STATE(152), + [sym__open_tag] = STATE(272), + [sym__closing_tag] = STATE(272), + [sym__html_comment] = STATE(272), + [sym__processing_instruction] = STATE(272), + [sym__declaration] = STATE(272), + [sym__cdata_section] = STATE(272), + [sym_hard_line_break] = STATE(152), + [sym__whitespace] = STATE(152), + [sym__word] = STATE(152), + [sym__soft_line_break] = STATE(152), + [sym__inline_base] = STATE(273), + [sym__text_base] = STATE(152), + [sym__inline_element] = STATE(273), + [aux_sym__inline] = STATE(52), + [sym__strikethrough] = STATE(273), + [sym__emphasis_star] = STATE(274), + [sym__strong_emphasis_star] = STATE(273), + [sym__emphasis_underscore] = STATE(274), + [sym__strong_emphasis_underscore] = STATE(273), + [aux_sym__inline_base_repeat1] = STATE(152), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(5), + [sym_numeric_character_reference] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_GT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(13), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(13), + [anon_sym__] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(13), + [sym__newline_token] = ACTIONS(21), + [sym_uri_autolink] = ACTIONS(5), + [sym_email_autolink] = ACTIONS(5), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), + [anon_sym_LT_QMARK] = ACTIONS(25), + [aux_sym__declaration_token1] = ACTIONS(27), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), + [sym__whitespace_ge_2] = ACTIONS(31), + [aux_sym__whitespace_token1] = ACTIONS(33), + [sym__word_no_digit] = ACTIONS(5), + [sym__digits] = ACTIONS(5), + [sym__code_span_start] = ACTIONS(35), + [sym__emphasis_open_star] = ACTIONS(37), + [sym__emphasis_open_underscore] = ACTIONS(39), + [sym__strikethrough_open] = ACTIONS(43), + }, + [56] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(27), + [sym_full_reference_link] = STATE(27), + [sym_collapsed_reference_link] = STATE(27), + [sym_inline_link] = STATE(27), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(27), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(27), + [aux_sym__inline_no_tilde] = STATE(27), + [sym__strikethrough] = STATE(27), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(27), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(27), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + }, + [57] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(63), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [58] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(63), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [59] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(57), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [60] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(63), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [61] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(63), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [62] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(63), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1103), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [63] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(63), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1105), + [sym_entity_reference] = ACTIONS(1108), + [sym_numeric_character_reference] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_RBRACK] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_POUND] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_PERCENT] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1120), + [anon_sym_SLASH] = ACTIONS(1120), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_BSLASH] = ACTIONS(1129), + [anon_sym_CARET] = ACTIONS(1120), + [anon_sym__] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [sym__newline_token] = ACTIONS(1132), + [sym_uri_autolink] = ACTIONS(1108), + [sym_email_autolink] = ACTIONS(1108), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1135), + [anon_sym_LT_QMARK] = ACTIONS(1138), + [aux_sym__declaration_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1144), + [sym__whitespace_ge_2] = ACTIONS(1147), + [aux_sym__whitespace_token1] = ACTIONS(1150), + [sym__word_no_digit] = ACTIONS(1108), + [sym__digits] = ACTIONS(1108), + [sym__code_span_start] = ACTIONS(1153), + [sym__emphasis_open_star] = ACTIONS(1156), + [sym__emphasis_open_underscore] = ACTIONS(1159), + [sym__strikethrough_open] = ACTIONS(1162), + }, + [64] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(28), + [sym_full_reference_link] = STATE(28), + [sym_collapsed_reference_link] = STATE(28), + [sym_inline_link] = STATE(28), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(28), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(28), + [aux_sym__inline_no_star] = STATE(28), + [sym__strikethrough] = STATE(28), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(28), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(28), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__strikethrough_open] = ACTIONS(651), + }, + [65] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(81), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [66] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(58), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [67] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(19), + [sym_full_reference_link] = STATE(19), + [sym_collapsed_reference_link] = STATE(19), + [sym_inline_link] = STATE(19), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(19), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(19), + [aux_sym__inline_no_underscore] = STATE(19), + [sym__strikethrough] = STATE(19), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(19), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(19), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikethrough_open] = ACTIONS(693), + }, + [68] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(46), + [sym_full_reference_link] = STATE(46), + [sym_collapsed_reference_link] = STATE(46), + [sym_inline_link] = STATE(46), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(46), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(46), + [aux_sym__inline_no_tilde] = STATE(46), + [sym__strikethrough] = STATE(46), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(46), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(46), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + }, + [69] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(62), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [70] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(79), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [71] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(13), + [sym_full_reference_link] = STATE(13), + [sym_collapsed_reference_link] = STATE(13), + [sym_inline_link] = STATE(13), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(13), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(13), + [aux_sym__inline_no_tilde] = STATE(13), + [sym__strikethrough] = STATE(13), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(13), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(13), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + }, + [72] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(36), + [sym_full_reference_link] = STATE(36), + [sym_collapsed_reference_link] = STATE(36), + [sym_inline_link] = STATE(36), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(36), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(36), + [aux_sym__inline_no_underscore] = STATE(36), + [sym__strikethrough] = STATE(36), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(36), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(36), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikethrough_open] = ACTIONS(693), + }, + [73] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(43), + [sym_full_reference_link] = STATE(43), + [sym_collapsed_reference_link] = STATE(43), + [sym_inline_link] = STATE(43), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(43), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(43), + [aux_sym__inline_no_star] = STATE(43), + [sym__strikethrough] = STATE(43), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(43), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(43), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__strikethrough_open] = ACTIONS(651), + }, + [74] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(61), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [75] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(63), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [76] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(40), + [sym_full_reference_link] = STATE(40), + [sym_collapsed_reference_link] = STATE(40), + [sym_inline_link] = STATE(40), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(40), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(40), + [aux_sym__inline_no_underscore] = STATE(40), + [sym__strikethrough] = STATE(40), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(40), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(40), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikethrough_open] = ACTIONS(693), + }, + [77] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(60), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [78] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(30), + [sym_full_reference_link] = STATE(30), + [sym_collapsed_reference_link] = STATE(30), + [sym_inline_link] = STATE(30), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(30), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(30), + [aux_sym__inline_no_star] = STATE(30), + [sym__strikethrough] = STATE(30), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(30), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(30), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__strikethrough_open] = ACTIONS(651), + }, + [79] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(63), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [80] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(75), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [81] = { + [sym_backslash_escape] = STATE(156), + [sym_code_span] = STATE(156), + [sym__link_text] = STATE(1009), + [sym__link_text_non_empty] = STATE(555), + [sym_shortcut_link] = STATE(561), + [sym_full_reference_link] = STATE(561), + [sym_collapsed_reference_link] = STATE(561), + [sym_inline_link] = STATE(561), + [sym_image] = STATE(156), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(156), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(156), + [sym__whitespace] = STATE(156), + [sym__word] = STATE(156), + [sym__soft_line_break] = STATE(156), + [sym__inline_base] = STATE(561), + [sym__text_base] = STATE(156), + [sym__inline_element] = STATE(561), + [aux_sym__inline] = STATE(63), + [sym__strikethrough] = STATE(561), + [sym__emphasis_star] = STATE(562), + [sym__strong_emphasis_star] = STATE(561), + [sym__emphasis_underscore] = STATE(562), + [sym__strong_emphasis_underscore] = STATE(561), + [aux_sym__inline_base_repeat1] = STATE(156), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1057), + [sym_numeric_character_reference] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_RBRACK] = ACTIONS(1169), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1057), + [sym_email_autolink] = ACTIONS(1057), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1057), + [sym__digits] = ACTIONS(1057), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(1089), + [sym__emphasis_open_underscore] = ACTIONS(1091), + [sym__strikethrough_open] = ACTIONS(1093), + }, + [82] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(39), + [sym_full_reference_link] = STATE(39), + [sym_collapsed_reference_link] = STATE(39), + [sym_inline_link] = STATE(39), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(39), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(39), + [aux_sym__inline_no_tilde] = STATE(39), + [sym__strikethrough] = STATE(39), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(39), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(39), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + }, + [83] = { + [sym_backslash_escape] = STATE(154), + [sym_code_span] = STATE(154), + [sym__link_text] = STATE(1011), + [sym__link_text_non_empty] = STATE(506), + [sym_shortcut_link] = STATE(33), + [sym_full_reference_link] = STATE(33), + [sym_collapsed_reference_link] = STATE(33), + [sym_inline_link] = STATE(33), + [sym_image] = STATE(154), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(154), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(154), + [sym__whitespace] = STATE(154), + [sym__word] = STATE(154), + [sym__soft_line_break] = STATE(154), + [sym__inline_base] = STATE(33), + [sym__text_base] = STATE(154), + [sym__inline_element_no_tilde] = STATE(33), + [aux_sym__inline_no_tilde] = STATE(33), + [sym__strikethrough] = STATE(33), + [sym__emphasis_star] = STATE(281), + [sym__strong_emphasis_star] = STATE(33), + [sym__emphasis_underscore] = STATE(281), + [sym__strong_emphasis_underscore] = STATE(33), + [aux_sym__inline_base_repeat1] = STATE(154), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(697), + [sym_numeric_character_reference] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(697), + [sym_email_autolink] = ACTIONS(697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(697), + [sym__digits] = ACTIONS(697), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(729), + [sym__emphasis_open_underscore] = ACTIONS(731), + [sym__strikethrough_open] = ACTIONS(733), + }, + [84] = { + [sym_backslash_escape] = STATE(153), + [sym_code_span] = STATE(153), + [sym__link_text] = STATE(1004), + [sym__link_text_non_empty] = STATE(343), + [sym_shortcut_link] = STATE(51), + [sym_full_reference_link] = STATE(51), + [sym_collapsed_reference_link] = STATE(51), + [sym_inline_link] = STATE(51), + [sym_image] = STATE(153), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(153), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(153), + [sym__whitespace] = STATE(153), + [sym__word] = STATE(153), + [sym__soft_line_break] = STATE(153), + [sym__inline_base] = STATE(51), + [sym__text_base] = STATE(153), + [sym__inline_element_no_star] = STATE(51), + [aux_sym__inline_no_star] = STATE(51), + [sym__strikethrough] = STATE(51), + [sym__emphasis_star] = STATE(277), + [sym__strong_emphasis_star] = STATE(51), + [sym__emphasis_underscore] = STATE(277), + [sym__strong_emphasis_underscore] = STATE(51), + [aux_sym__inline_base_repeat1] = STATE(153), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(613), + [sym_numeric_character_reference] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(613), + [sym_email_autolink] = ACTIONS(613), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(613), + [sym__digits] = ACTIONS(613), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(645), + [sym__emphasis_open_underscore] = ACTIONS(647), + [sym__strikethrough_open] = ACTIONS(651), + }, + [85] = { + [sym_backslash_escape] = STATE(148), + [sym_code_span] = STATE(148), + [sym__link_text] = STATE(1007), + [sym__link_text_non_empty] = STATE(428), + [sym_shortcut_link] = STATE(37), + [sym_full_reference_link] = STATE(37), + [sym_collapsed_reference_link] = STATE(37), + [sym_inline_link] = STATE(37), + [sym_image] = STATE(148), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(148), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(148), + [sym__whitespace] = STATE(148), + [sym__word] = STATE(148), + [sym__soft_line_break] = STATE(148), + [sym__inline_base] = STATE(37), + [sym__text_base] = STATE(148), + [sym__inline_element_no_underscore] = STATE(37), + [aux_sym__inline_no_underscore] = STATE(37), + [sym__strikethrough] = STATE(37), + [sym__emphasis_star] = STATE(278), + [sym__strong_emphasis_star] = STATE(37), + [sym__emphasis_underscore] = STATE(278), + [sym__strong_emphasis_underscore] = STATE(37), + [aux_sym__inline_base_repeat1] = STATE(148), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(655), + [sym_numeric_character_reference] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(657), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(655), + [sym_email_autolink] = ACTIONS(655), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(655), + [sym__digits] = ACTIONS(655), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(687), + [sym__emphasis_open_underscore] = ACTIONS(689), + [sym__strikethrough_open] = ACTIONS(693), + }, + [86] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(108), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(1171), + [sym_entity_reference] = ACTIONS(1174), + [sym_numeric_character_reference] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_RBRACK] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_DQUOTE] = ACTIONS(1183), + [anon_sym_POUND] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_COMMA] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_AT] = ACTIONS(1183), + [anon_sym_BSLASH] = ACTIONS(1192), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym__] = ACTIONS(1183), + [anon_sym_BQUOTE] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_TILDE] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1183), + [sym__newline_token] = ACTIONS(1195), + [sym_uri_autolink] = ACTIONS(1174), + [sym_email_autolink] = ACTIONS(1174), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1198), + [anon_sym_LT_QMARK] = ACTIONS(1201), + [aux_sym__declaration_token1] = ACTIONS(1204), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1207), + [sym__whitespace_ge_2] = ACTIONS(1210), + [aux_sym__whitespace_token1] = ACTIONS(1213), + [sym__word_no_digit] = ACTIONS(1174), + [sym__digits] = ACTIONS(1174), + [sym__code_span_start] = ACTIONS(1216), + [sym__emphasis_open_star] = ACTIONS(1219), + [sym__emphasis_open_underscore] = ACTIONS(1222), + [sym__emphasis_close_star] = ACTIONS(542), + [sym__last_token_punctuation] = ACTIONS(1225), + [sym__strikethrough_open] = ACTIONS(1227), + }, + [87] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(107), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(1230), + [sym_entity_reference] = ACTIONS(1233), + [sym_numeric_character_reference] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(354), + [anon_sym_RBRACK] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(1242), + [anon_sym_DOLLAR] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_COMMA] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_DOT] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_COLON] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1242), + [anon_sym_AT] = ACTIONS(1242), + [anon_sym_BSLASH] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym__] = ACTIONS(1242), + [anon_sym_BQUOTE] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_RPAREN] = ACTIONS(1242), + [sym__newline_token] = ACTIONS(1254), + [sym_uri_autolink] = ACTIONS(1233), + [sym_email_autolink] = ACTIONS(1233), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1257), + [anon_sym_LT_QMARK] = ACTIONS(1260), + [aux_sym__declaration_token1] = ACTIONS(1263), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1266), + [sym__whitespace_ge_2] = ACTIONS(1269), + [aux_sym__whitespace_token1] = ACTIONS(1272), + [sym__word_no_digit] = ACTIONS(1233), + [sym__digits] = ACTIONS(1233), + [sym__code_span_start] = ACTIONS(1275), + [sym__emphasis_open_star] = ACTIONS(1278), + [sym__emphasis_open_underscore] = ACTIONS(1281), + [sym__emphasis_close_underscore] = ACTIONS(354), + [sym__last_token_punctuation] = ACTIONS(1284), + [sym__strikethrough_open] = ACTIONS(1286), + }, + [88] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(113), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(1289), + [sym_entity_reference] = ACTIONS(1292), + [sym_numeric_character_reference] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_RBRACK] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_GT] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1301), + [anon_sym_PERCENT] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_SLASH] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1301), + [anon_sym_AT] = ACTIONS(1301), + [anon_sym_BSLASH] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1301), + [anon_sym__] = ACTIONS(1301), + [anon_sym_BQUOTE] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [sym__newline_token] = ACTIONS(1313), + [sym_uri_autolink] = ACTIONS(1292), + [sym_email_autolink] = ACTIONS(1292), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1316), + [anon_sym_LT_QMARK] = ACTIONS(1319), + [aux_sym__declaration_token1] = ACTIONS(1322), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1325), + [sym__whitespace_ge_2] = ACTIONS(1328), + [aux_sym__whitespace_token1] = ACTIONS(1331), + [sym__word_no_digit] = ACTIONS(1292), + [sym__digits] = ACTIONS(1292), + [sym__code_span_start] = ACTIONS(1334), + [sym__emphasis_open_star] = ACTIONS(1337), + [sym__emphasis_open_underscore] = ACTIONS(1340), + [sym__last_token_punctuation] = ACTIONS(1343), + [sym__strikethrough_open] = ACTIONS(1345), + [sym__strikethrough_close] = ACTIONS(107), + }, + [89] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(129), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [ts_builtin_sym_end] = ACTIONS(171), + [sym__backslash_escape] = ACTIONS(1348), + [sym_entity_reference] = ACTIONS(1351), + [sym_numeric_character_reference] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym__] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [sym__newline_token] = ACTIONS(1372), + [sym_uri_autolink] = ACTIONS(1351), + [sym_email_autolink] = ACTIONS(1351), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1375), + [anon_sym_LT_QMARK] = ACTIONS(1378), + [aux_sym__declaration_token1] = ACTIONS(1381), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1384), + [sym__whitespace_ge_2] = ACTIONS(1387), + [aux_sym__whitespace_token1] = ACTIONS(1390), + [sym__word_no_digit] = ACTIONS(1351), + [sym__digits] = ACTIONS(1351), + [sym__code_span_start] = ACTIONS(1393), + [sym__emphasis_open_star] = ACTIONS(1396), + [sym__emphasis_open_underscore] = ACTIONS(1399), + [sym__last_token_punctuation] = ACTIONS(1402), + [sym__strikethrough_open] = ACTIONS(1404), + }, + [90] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(106), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(1348), + [sym_entity_reference] = ACTIONS(1351), + [sym_numeric_character_reference] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym__] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [sym__newline_token] = ACTIONS(1372), + [sym_uri_autolink] = ACTIONS(1351), + [sym_email_autolink] = ACTIONS(1351), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1375), + [anon_sym_LT_QMARK] = ACTIONS(1378), + [aux_sym__declaration_token1] = ACTIONS(1381), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1384), + [sym__whitespace_ge_2] = ACTIONS(1387), + [aux_sym__whitespace_token1] = ACTIONS(1390), + [sym__word_no_digit] = ACTIONS(1351), + [sym__digits] = ACTIONS(1351), + [sym__code_span_start] = ACTIONS(1393), + [sym__emphasis_open_star] = ACTIONS(1396), + [sym__emphasis_open_underscore] = ACTIONS(1399), + [sym__last_token_punctuation] = ACTIONS(1407), + [sym__strikethrough_open] = ACTIONS(1404), + }, + [91] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(135), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(135), + [aux_sym__inline_no_star_no_link] = STATE(135), + [sym__strikethrough_no_link] = STATE(135), + [sym__emphasis_star_no_link] = STATE(597), + [sym__strong_emphasis_star_no_link] = STATE(135), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(135), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(1409), + [sym_entity_reference] = ACTIONS(1412), + [sym_numeric_character_reference] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_DOLLAR] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1418), + [anon_sym_COLON] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1418), + [anon_sym_BSLASH] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1418), + [anon_sym__] = ACTIONS(1418), + [anon_sym_BQUOTE] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_RPAREN] = ACTIONS(1418), + [sym__newline_token] = ACTIONS(1430), + [sym_uri_autolink] = ACTIONS(1412), + [sym_email_autolink] = ACTIONS(1412), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1433), + [anon_sym_LT_QMARK] = ACTIONS(1436), + [aux_sym__declaration_token1] = ACTIONS(1439), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1442), + [sym__whitespace_ge_2] = ACTIONS(1445), + [aux_sym__whitespace_token1] = ACTIONS(1448), + [sym__word_no_digit] = ACTIONS(1412), + [sym__digits] = ACTIONS(1412), + [sym__code_span_start] = ACTIONS(1451), + [sym__emphasis_open_star] = ACTIONS(1454), + [sym__emphasis_open_underscore] = ACTIONS(1457), + [sym__last_token_punctuation] = ACTIONS(1460), + [sym__strikethrough_open] = ACTIONS(1462), + [sym__strikethrough_close] = ACTIONS(1465), + }, + [92] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(103), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(103), + [aux_sym__inline_no_tilde_no_link] = STATE(103), + [sym__strikethrough_no_link] = STATE(103), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(103), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(103), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(1467), + [sym_entity_reference] = ACTIONS(1470), + [sym_numeric_character_reference] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_COLON] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [sym__newline_token] = ACTIONS(1488), + [sym_uri_autolink] = ACTIONS(1470), + [sym_email_autolink] = ACTIONS(1470), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1491), + [anon_sym_LT_QMARK] = ACTIONS(1494), + [aux_sym__declaration_token1] = ACTIONS(1497), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1500), + [sym__whitespace_ge_2] = ACTIONS(1503), + [aux_sym__whitespace_token1] = ACTIONS(1506), + [sym__word_no_digit] = ACTIONS(1470), + [sym__digits] = ACTIONS(1470), + [sym__code_span_start] = ACTIONS(1509), + [sym__emphasis_open_star] = ACTIONS(1512), + [sym__emphasis_open_underscore] = ACTIONS(1515), + [sym__emphasis_close_star] = ACTIONS(1518), + [sym__last_token_punctuation] = ACTIONS(1520), + [sym__strikethrough_open] = ACTIONS(1522), + }, + [93] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(118), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(118), + [aux_sym__inline_no_underscore_no_link] = STATE(118), + [sym__strikethrough_no_link] = STATE(118), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(118), + [sym__emphasis_underscore_no_link] = STATE(604), + [sym__strong_emphasis_underscore_no_link] = STATE(118), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(1525), + [sym_entity_reference] = ACTIONS(1528), + [sym_numeric_character_reference] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_COLON] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), + [anon_sym_BSLASH] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1534), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1534), + [sym__newline_token] = ACTIONS(1546), + [sym_uri_autolink] = ACTIONS(1528), + [sym_email_autolink] = ACTIONS(1528), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1549), + [anon_sym_LT_QMARK] = ACTIONS(1552), + [aux_sym__declaration_token1] = ACTIONS(1555), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1558), + [sym__whitespace_ge_2] = ACTIONS(1561), + [aux_sym__whitespace_token1] = ACTIONS(1564), + [sym__word_no_digit] = ACTIONS(1528), + [sym__digits] = ACTIONS(1528), + [sym__code_span_start] = ACTIONS(1567), + [sym__emphasis_open_star] = ACTIONS(1570), + [sym__emphasis_open_underscore] = ACTIONS(1573), + [sym__last_token_punctuation] = ACTIONS(1576), + [sym__strikethrough_open] = ACTIONS(1578), + [sym__strikethrough_close] = ACTIONS(1465), + }, + [94] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(104), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(104), + [aux_sym__inline_no_underscore_no_link] = STATE(104), + [sym__strikethrough_no_link] = STATE(104), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(104), + [sym__emphasis_underscore_no_link] = STATE(614), + [sym__strong_emphasis_underscore_no_link] = STATE(104), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(1581), + [sym_entity_reference] = ACTIONS(1584), + [sym_numeric_character_reference] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_COLON] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym__] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [sym__newline_token] = ACTIONS(1602), + [sym_uri_autolink] = ACTIONS(1584), + [sym_email_autolink] = ACTIONS(1584), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1605), + [anon_sym_LT_QMARK] = ACTIONS(1608), + [aux_sym__declaration_token1] = ACTIONS(1611), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1614), + [sym__whitespace_ge_2] = ACTIONS(1617), + [aux_sym__whitespace_token1] = ACTIONS(1620), + [sym__word_no_digit] = ACTIONS(1584), + [sym__digits] = ACTIONS(1584), + [sym__code_span_start] = ACTIONS(1623), + [sym__emphasis_open_star] = ACTIONS(1626), + [sym__emphasis_open_underscore] = ACTIONS(1629), + [sym__emphasis_close_star] = ACTIONS(1518), + [sym__last_token_punctuation] = ACTIONS(1632), + [sym__strikethrough_open] = ACTIONS(1634), + }, + [95] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(128), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(128), + [aux_sym__inline_no_tilde_no_link] = STATE(128), + [sym__strikethrough_no_link] = STATE(128), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(128), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(128), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(1637), + [sym_entity_reference] = ACTIONS(1640), + [sym_numeric_character_reference] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1646), + [anon_sym_PERCENT] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_COMMA] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_DOT] = ACTIONS(1646), + [anon_sym_SLASH] = ACTIONS(1646), + [anon_sym_COLON] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_EQ] = ACTIONS(1646), + [anon_sym_QMARK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1646), + [anon_sym_BSLASH] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym__] = ACTIONS(1646), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(1646), + [sym__newline_token] = ACTIONS(1658), + [sym_uri_autolink] = ACTIONS(1640), + [sym_email_autolink] = ACTIONS(1640), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1661), + [anon_sym_LT_QMARK] = ACTIONS(1664), + [aux_sym__declaration_token1] = ACTIONS(1667), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1670), + [sym__whitespace_ge_2] = ACTIONS(1673), + [aux_sym__whitespace_token1] = ACTIONS(1676), + [sym__word_no_digit] = ACTIONS(1640), + [sym__digits] = ACTIONS(1640), + [sym__code_span_start] = ACTIONS(1679), + [sym__emphasis_open_star] = ACTIONS(1682), + [sym__emphasis_open_underscore] = ACTIONS(1685), + [sym__emphasis_close_underscore] = ACTIONS(1688), + [sym__last_token_punctuation] = ACTIONS(1690), + [sym__strikethrough_open] = ACTIONS(1692), + }, + [96] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(100), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(100), + [aux_sym__inline_no_tilde_no_link] = STATE(100), + [sym__strikethrough_no_link] = STATE(100), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(100), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(100), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(1695), + [sym_entity_reference] = ACTIONS(1698), + [sym_numeric_character_reference] = ACTIONS(1698), + [anon_sym_RBRACK] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_GT] = ACTIONS(1706), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1706), + [anon_sym_PERCENT] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_DOT] = ACTIONS(1706), + [anon_sym_SLASH] = ACTIONS(1706), + [anon_sym_COLON] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1706), + [anon_sym_QMARK] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_BSLASH] = ACTIONS(1715), + [anon_sym_CARET] = ACTIONS(1706), + [anon_sym__] = ACTIONS(1706), + [anon_sym_BQUOTE] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [sym__newline_token] = ACTIONS(1718), + [sym_uri_autolink] = ACTIONS(1698), + [sym_email_autolink] = ACTIONS(1698), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1721), + [anon_sym_LT_QMARK] = ACTIONS(1724), + [aux_sym__declaration_token1] = ACTIONS(1727), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1730), + [sym__whitespace_ge_2] = ACTIONS(1733), + [aux_sym__whitespace_token1] = ACTIONS(1736), + [sym__word_no_digit] = ACTIONS(1698), + [sym__digits] = ACTIONS(1698), + [sym__code_span_start] = ACTIONS(1739), + [sym__emphasis_open_star] = ACTIONS(1742), + [sym__emphasis_open_underscore] = ACTIONS(1745), + [sym__last_token_punctuation] = ACTIONS(1748), + [sym__strikethrough_open] = ACTIONS(1750), + }, + [97] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(126), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(126), + [aux_sym__inline_no_underscore_no_link] = STATE(126), + [sym__strikethrough_no_link] = STATE(126), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(126), + [sym__emphasis_underscore_no_link] = STATE(605), + [sym__strong_emphasis_underscore_no_link] = STATE(126), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(1753), + [sym_entity_reference] = ACTIONS(1756), + [sym_numeric_character_reference] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1759), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_BSLASH] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1762), + [anon_sym__] = ACTIONS(1762), + [anon_sym_BQUOTE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [sym__newline_token] = ACTIONS(1774), + [sym_uri_autolink] = ACTIONS(1756), + [sym_email_autolink] = ACTIONS(1756), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1777), + [anon_sym_LT_QMARK] = ACTIONS(1780), + [aux_sym__declaration_token1] = ACTIONS(1783), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1786), + [sym__whitespace_ge_2] = ACTIONS(1789), + [aux_sym__whitespace_token1] = ACTIONS(1792), + [sym__word_no_digit] = ACTIONS(1756), + [sym__digits] = ACTIONS(1756), + [sym__code_span_start] = ACTIONS(1795), + [sym__emphasis_open_star] = ACTIONS(1798), + [sym__emphasis_open_underscore] = ACTIONS(1801), + [sym__last_token_punctuation] = ACTIONS(1804), + [sym__strikethrough_open] = ACTIONS(1806), + }, + [98] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(122), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(122), + [aux_sym__inline_no_star_no_link] = STATE(122), + [sym__strikethrough_no_link] = STATE(122), + [sym__emphasis_star_no_link] = STATE(612), + [sym__strong_emphasis_star_no_link] = STATE(122), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(122), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(1809), + [sym_entity_reference] = ACTIONS(1812), + [sym_numeric_character_reference] = ACTIONS(1812), + [anon_sym_RBRACK] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_GT] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_PERCENT] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_SLASH] = ACTIONS(1818), + [anon_sym_COLON] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_QMARK] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1818), + [anon_sym_BSLASH] = ACTIONS(1827), + [anon_sym_CARET] = ACTIONS(1818), + [anon_sym__] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [sym__newline_token] = ACTIONS(1830), + [sym_uri_autolink] = ACTIONS(1812), + [sym_email_autolink] = ACTIONS(1812), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1833), + [anon_sym_LT_QMARK] = ACTIONS(1836), + [aux_sym__declaration_token1] = ACTIONS(1839), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1842), + [sym__whitespace_ge_2] = ACTIONS(1845), + [aux_sym__whitespace_token1] = ACTIONS(1848), + [sym__word_no_digit] = ACTIONS(1812), + [sym__digits] = ACTIONS(1812), + [sym__code_span_start] = ACTIONS(1851), + [sym__emphasis_open_star] = ACTIONS(1854), + [sym__emphasis_open_underscore] = ACTIONS(1857), + [sym__last_token_punctuation] = ACTIONS(1860), + [sym__strikethrough_open] = ACTIONS(1862), + }, + [99] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(131), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(131), + [aux_sym__inline_no_star_no_link] = STATE(131), + [sym__strikethrough_no_link] = STATE(131), + [sym__emphasis_star_no_link] = STATE(590), + [sym__strong_emphasis_star_no_link] = STATE(131), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(131), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(1865), + [sym_entity_reference] = ACTIONS(1868), + [sym_numeric_character_reference] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1874), + [anon_sym_DOLLAR] = ACTIONS(1874), + [anon_sym_PERCENT] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_PLUS] = ACTIONS(1874), + [anon_sym_COMMA] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_SLASH] = ACTIONS(1874), + [anon_sym_COLON] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_QMARK] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_BSLASH] = ACTIONS(1883), + [anon_sym_CARET] = ACTIONS(1874), + [anon_sym__] = ACTIONS(1874), + [anon_sym_BQUOTE] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [sym__newline_token] = ACTIONS(1886), + [sym_uri_autolink] = ACTIONS(1868), + [sym_email_autolink] = ACTIONS(1868), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1889), + [anon_sym_LT_QMARK] = ACTIONS(1892), + [aux_sym__declaration_token1] = ACTIONS(1895), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1898), + [sym__whitespace_ge_2] = ACTIONS(1901), + [aux_sym__whitespace_token1] = ACTIONS(1904), + [sym__word_no_digit] = ACTIONS(1868), + [sym__digits] = ACTIONS(1868), + [sym__code_span_start] = ACTIONS(1907), + [sym__emphasis_open_star] = ACTIONS(1910), + [sym__emphasis_open_underscore] = ACTIONS(1913), + [sym__emphasis_close_underscore] = ACTIONS(1688), + [sym__last_token_punctuation] = ACTIONS(1916), + [sym__strikethrough_open] = ACTIONS(1918), + }, + [100] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(123), + [aux_sym__inline_no_tilde_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + [sym__strikethrough_close] = ACTIONS(1939), + }, + [101] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__emphasis_close_underscore] = ACTIONS(1957), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [102] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(123), + [aux_sym__inline_no_tilde_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + [sym__strikethrough_close] = ACTIONS(1961), + }, + [103] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(123), + [aux_sym__inline_no_tilde_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + [sym__strikethrough_close] = ACTIONS(1963), + }, + [104] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__emphasis_close_underscore] = ACTIONS(1965), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [105] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__emphasis_close_star] = ACTIONS(1983), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [106] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(133), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1987), + [sym_numeric_character_reference] = ACTIONS(1987), + [anon_sym_RBRACK] = ACTIONS(1989), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1987), + [sym_email_autolink] = ACTIONS(1987), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1993), + [anon_sym_LT_QMARK] = ACTIONS(1995), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1997), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1987), + [sym__digits] = ACTIONS(1987), + [sym__code_span_start] = ACTIONS(1999), + [sym__emphasis_open_star] = ACTIONS(2001), + [sym__emphasis_open_underscore] = ACTIONS(2003), + [sym__strikethrough_open] = ACTIONS(2005), + }, + [107] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(133), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1987), + [sym_numeric_character_reference] = ACTIONS(1987), + [anon_sym_RBRACK] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1987), + [sym_email_autolink] = ACTIONS(1987), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1993), + [anon_sym_LT_QMARK] = ACTIONS(1995), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1997), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1987), + [sym__digits] = ACTIONS(1987), + [sym__code_span_start] = ACTIONS(1999), + [sym__emphasis_open_star] = ACTIONS(2001), + [sym__emphasis_open_underscore] = ACTIONS(2003), + [sym__strikethrough_open] = ACTIONS(2005), + }, + [108] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(133), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1987), + [sym_numeric_character_reference] = ACTIONS(1987), + [anon_sym_RBRACK] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1987), + [sym_email_autolink] = ACTIONS(1987), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1993), + [anon_sym_LT_QMARK] = ACTIONS(1995), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1997), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1987), + [sym__digits] = ACTIONS(1987), + [sym__code_span_start] = ACTIONS(1999), + [sym__emphasis_open_star] = ACTIONS(2001), + [sym__emphasis_open_underscore] = ACTIONS(2003), + [sym__strikethrough_open] = ACTIONS(2005), + }, + [109] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(123), + [aux_sym__inline_no_tilde_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + [sym__strikethrough_close] = ACTIONS(2011), + }, + [110] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__emphasis_close_underscore] = ACTIONS(2013), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [111] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(2015), + [sym_entity_reference] = ACTIONS(2018), + [sym_numeric_character_reference] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_COMMA] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_DOT] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2024), + [anon_sym_COLON] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_EQ] = ACTIONS(2024), + [anon_sym_QMARK] = ACTIONS(2024), + [anon_sym_AT] = ACTIONS(2024), + [anon_sym_BSLASH] = ACTIONS(2033), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym__] = ACTIONS(2024), + [anon_sym_BQUOTE] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_TILDE] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [sym__newline_token] = ACTIONS(2036), + [sym_uri_autolink] = ACTIONS(2018), + [sym_email_autolink] = ACTIONS(2018), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2039), + [anon_sym_LT_QMARK] = ACTIONS(2042), + [aux_sym__declaration_token1] = ACTIONS(2045), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2048), + [sym__whitespace_ge_2] = ACTIONS(2051), + [aux_sym__whitespace_token1] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2018), + [sym__digits] = ACTIONS(2018), + [sym__code_span_start] = ACTIONS(2057), + [sym__emphasis_open_star] = ACTIONS(2060), + [sym__emphasis_open_underscore] = ACTIONS(2063), + [sym__emphasis_close_underscore] = ACTIONS(2066), + [sym__strikethrough_open] = ACTIONS(2068), + }, + [112] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(2071), + [sym_entity_reference] = ACTIONS(2074), + [sym_numeric_character_reference] = ACTIONS(2074), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_GT] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_COMMA] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_COLON] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_EQ] = ACTIONS(2080), + [anon_sym_QMARK] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2080), + [anon_sym_BSLASH] = ACTIONS(2089), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym__] = ACTIONS(2080), + [anon_sym_BQUOTE] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_RPAREN] = ACTIONS(2080), + [sym__newline_token] = ACTIONS(2092), + [sym_uri_autolink] = ACTIONS(2074), + [sym_email_autolink] = ACTIONS(2074), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2095), + [anon_sym_LT_QMARK] = ACTIONS(2098), + [aux_sym__declaration_token1] = ACTIONS(2101), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2104), + [sym__whitespace_ge_2] = ACTIONS(2107), + [aux_sym__whitespace_token1] = ACTIONS(2110), + [sym__word_no_digit] = ACTIONS(2074), + [sym__digits] = ACTIONS(2074), + [sym__code_span_start] = ACTIONS(2113), + [sym__emphasis_open_star] = ACTIONS(2116), + [sym__emphasis_open_underscore] = ACTIONS(2119), + [sym__emphasis_close_star] = ACTIONS(2122), + [sym__strikethrough_open] = ACTIONS(2124), + }, + [113] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(133), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1987), + [sym_numeric_character_reference] = ACTIONS(1987), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1987), + [sym_email_autolink] = ACTIONS(1987), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1993), + [anon_sym_LT_QMARK] = ACTIONS(1995), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1997), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1987), + [sym__digits] = ACTIONS(1987), + [sym__code_span_start] = ACTIONS(1999), + [sym__emphasis_open_star] = ACTIONS(2001), + [sym__emphasis_open_underscore] = ACTIONS(2003), + [sym__strikethrough_open] = ACTIONS(2005), + }, + [114] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__emphasis_close_star] = ACTIONS(2129), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [115] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__emphasis_close_underscore] = ACTIONS(2131), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [116] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__emphasis_close_star] = ACTIONS(2133), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [117] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__emphasis_close_star] = ACTIONS(2135), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [118] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__emphasis_close_underscore] = ACTIONS(2137), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [119] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(123), + [aux_sym__inline_no_tilde_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + [sym__strikethrough_close] = ACTIONS(2139), + }, + [120] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(105), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(105), + [aux_sym__inline_no_star_no_link] = STATE(105), + [sym__strikethrough_no_link] = STATE(105), + [sym__emphasis_star_no_link] = STATE(613), + [sym__strong_emphasis_star_no_link] = STATE(105), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(105), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__last_token_punctuation] = ACTIONS(2141), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [121] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(123), + [aux_sym__inline_no_tilde_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + [sym__strikethrough_close] = ACTIONS(2143), + }, + [122] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__emphasis_close_star] = ACTIONS(2145), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [123] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(123), + [aux_sym__inline_no_tilde_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(2147), + [sym_entity_reference] = ACTIONS(2150), + [sym_numeric_character_reference] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_COLON] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(2156), + [anon_sym_QMARK] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_BSLASH] = ACTIONS(2165), + [anon_sym_CARET] = ACTIONS(2156), + [anon_sym__] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(2156), + [sym__newline_token] = ACTIONS(2168), + [sym_uri_autolink] = ACTIONS(2150), + [sym_email_autolink] = ACTIONS(2150), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2171), + [anon_sym_LT_QMARK] = ACTIONS(2174), + [aux_sym__declaration_token1] = ACTIONS(2177), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2180), + [sym__whitespace_ge_2] = ACTIONS(2183), + [aux_sym__whitespace_token1] = ACTIONS(2186), + [sym__word_no_digit] = ACTIONS(2150), + [sym__digits] = ACTIONS(2150), + [sym__code_span_start] = ACTIONS(2189), + [sym__emphasis_open_star] = ACTIONS(2192), + [sym__emphasis_open_underscore] = ACTIONS(2195), + [sym__strikethrough_open] = ACTIONS(2198), + [sym__strikethrough_close] = ACTIONS(2201), + }, + [124] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(134), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(134), + [aux_sym__inline_no_underscore_no_link] = STATE(134), + [sym__strikethrough_no_link] = STATE(134), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(134), + [sym__emphasis_underscore_no_link] = STATE(595), + [sym__strong_emphasis_underscore_no_link] = STATE(134), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__last_token_punctuation] = ACTIONS(2203), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [125] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__emphasis_close_star] = ACTIONS(2205), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [126] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__emphasis_close_underscore] = ACTIONS(2207), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [127] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(123), + [aux_sym__inline_no_tilde_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + [sym__strikethrough_close] = ACTIONS(2209), + }, + [128] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(123), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(123), + [aux_sym__inline_no_tilde_no_link] = STATE(123), + [sym__strikethrough_no_link] = STATE(123), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(123), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(123), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + [sym__strikethrough_close] = ACTIONS(2211), + }, + [129] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(133), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1987), + [sym_numeric_character_reference] = ACTIONS(1987), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(1987), + [sym_email_autolink] = ACTIONS(1987), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1993), + [anon_sym_LT_QMARK] = ACTIONS(1995), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1997), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(1987), + [sym__digits] = ACTIONS(1987), + [sym__code_span_start] = ACTIONS(1999), + [sym__emphasis_open_star] = ACTIONS(2001), + [sym__emphasis_open_underscore] = ACTIONS(2003), + [sym__strikethrough_open] = ACTIONS(2005), + }, + [130] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(119), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(119), + [aux_sym__inline_no_tilde_no_link] = STATE(119), + [sym__strikethrough_no_link] = STATE(119), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(119), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(119), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__last_token_punctuation] = ACTIONS(2215), + [sym__strikethrough_open] = ACTIONS(1937), + }, + [131] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__emphasis_close_star] = ACTIONS(2217), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [132] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__emphasis_close_underscore] = ACTIONS(2219), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [133] = { + [sym_backslash_escape] = STATE(159), + [sym_code_span] = STATE(159), + [sym_image] = STATE(159), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(159), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(159), + [sym__whitespace] = STATE(159), + [sym__word] = STATE(159), + [sym__soft_line_break] = STATE(159), + [sym__inline_base] = STATE(616), + [sym__text_base] = STATE(159), + [sym__inline_element_no_link] = STATE(616), + [aux_sym__inline_no_link] = STATE(133), + [sym__strikethrough_no_link] = STATE(616), + [sym__emphasis_star_no_link] = STATE(593), + [sym__strong_emphasis_star_no_link] = STATE(616), + [sym__emphasis_underscore_no_link] = STATE(593), + [sym__strong_emphasis_underscore_no_link] = STATE(616), + [aux_sym__inline_base_repeat1] = STATE(159), + [sym__backslash_escape] = ACTIONS(2221), + [sym_entity_reference] = ACTIONS(2224), + [sym_numeric_character_reference] = ACTIONS(2224), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_GT] = ACTIONS(2232), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [anon_sym_DOLLAR] = ACTIONS(2232), + [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_DOT] = ACTIONS(2232), + [anon_sym_SLASH] = ACTIONS(2232), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2232), + [anon_sym_QMARK] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2232), + [anon_sym_BSLASH] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2232), + [anon_sym__] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_RPAREN] = ACTIONS(2232), + [sym__newline_token] = ACTIONS(2244), + [sym_uri_autolink] = ACTIONS(2224), + [sym_email_autolink] = ACTIONS(2224), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2247), + [anon_sym_LT_QMARK] = ACTIONS(2250), + [aux_sym__declaration_token1] = ACTIONS(2253), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2256), + [sym__whitespace_ge_2] = ACTIONS(2259), + [aux_sym__whitespace_token1] = ACTIONS(2262), + [sym__word_no_digit] = ACTIONS(2224), + [sym__digits] = ACTIONS(2224), + [sym__code_span_start] = ACTIONS(2265), + [sym__emphasis_open_star] = ACTIONS(2268), + [sym__emphasis_open_underscore] = ACTIONS(2271), + [sym__strikethrough_open] = ACTIONS(2274), + }, + [134] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(111), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(111), + [aux_sym__inline_no_underscore_no_link] = STATE(111), + [sym__strikethrough_no_link] = STATE(111), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(111), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(111), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__emphasis_close_underscore] = ACTIONS(2277), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [135] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(112), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(112), + [aux_sym__inline_no_star_no_link] = STATE(112), + [sym__strikethrough_no_link] = STATE(112), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(112), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(112), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__emphasis_close_star] = ACTIONS(2279), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [136] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(125), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(125), + [aux_sym__inline_no_star_no_link] = STATE(125), + [sym__strikethrough_no_link] = STATE(125), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(125), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(125), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [137] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(132), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(132), + [aux_sym__inline_no_underscore_no_link] = STATE(132), + [sym__strikethrough_no_link] = STATE(132), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(132), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(132), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [138] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(110), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(110), + [aux_sym__inline_no_underscore_no_link] = STATE(110), + [sym__strikethrough_no_link] = STATE(110), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(110), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(110), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [139] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(109), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(109), + [aux_sym__inline_no_tilde_no_link] = STATE(109), + [sym__strikethrough_no_link] = STATE(109), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(109), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(109), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + }, + [140] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(121), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(121), + [aux_sym__inline_no_tilde_no_link] = STATE(121), + [sym__strikethrough_no_link] = STATE(121), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(121), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(121), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + }, + [141] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(114), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(114), + [aux_sym__inline_no_star_no_link] = STATE(114), + [sym__strikethrough_no_link] = STATE(114), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(114), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(114), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [142] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(116), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(116), + [aux_sym__inline_no_star_no_link] = STATE(116), + [sym__strikethrough_no_link] = STATE(116), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(116), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(116), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [143] = { + [sym_backslash_escape] = STATE(163), + [sym_code_span] = STATE(163), + [sym_image] = STATE(163), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(163), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(163), + [sym__whitespace] = STATE(163), + [sym__word] = STATE(163), + [sym__soft_line_break] = STATE(163), + [sym__inline_base] = STATE(117), + [sym__text_base] = STATE(163), + [sym__inline_element_no_star_no_link] = STATE(117), + [aux_sym__inline_no_star_no_link] = STATE(117), + [sym__strikethrough_no_link] = STATE(117), + [sym__emphasis_star_no_link] = STATE(610), + [sym__strong_emphasis_star_no_link] = STATE(117), + [sym__emphasis_underscore_no_link] = STATE(610), + [sym__strong_emphasis_underscore_no_link] = STATE(117), + [aux_sym__inline_base_repeat1] = STATE(163), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(1967), + [sym_numeric_character_reference] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(1967), + [sym_email_autolink] = ACTIONS(1967), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(1967), + [sym__digits] = ACTIONS(1967), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(1979), + [sym__emphasis_open_underscore] = ACTIONS(1981), + [sym__strikethrough_open] = ACTIONS(1985), + }, + [144] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(101), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(101), + [aux_sym__inline_no_underscore_no_link] = STATE(101), + [sym__strikethrough_no_link] = STATE(101), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(101), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(101), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [145] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(127), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(127), + [aux_sym__inline_no_tilde_no_link] = STATE(127), + [sym__strikethrough_no_link] = STATE(127), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(127), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(127), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + }, + [146] = { + [sym_backslash_escape] = STATE(158), + [sym_code_span] = STATE(158), + [sym_image] = STATE(158), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(158), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(158), + [sym__whitespace] = STATE(158), + [sym__word] = STATE(158), + [sym__soft_line_break] = STATE(158), + [sym__inline_base] = STATE(102), + [sym__text_base] = STATE(158), + [sym__inline_element_no_tilde_no_link] = STATE(102), + [aux_sym__inline_no_tilde_no_link] = STATE(102), + [sym__strikethrough_no_link] = STATE(102), + [sym__emphasis_star_no_link] = STATE(602), + [sym__strong_emphasis_star_no_link] = STATE(102), + [sym__emphasis_underscore_no_link] = STATE(602), + [sym__strong_emphasis_underscore_no_link] = STATE(102), + [aux_sym__inline_base_repeat1] = STATE(158), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(1921), + [sym_numeric_character_reference] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(1921), + [sym_email_autolink] = ACTIONS(1921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(1921), + [sym__digits] = ACTIONS(1921), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(1933), + [sym__emphasis_open_underscore] = ACTIONS(1935), + [sym__strikethrough_open] = ACTIONS(1937), + }, + [147] = { + [sym_backslash_escape] = STATE(161), + [sym_code_span] = STATE(161), + [sym_image] = STATE(161), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(161), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(161), + [sym__whitespace] = STATE(161), + [sym__word] = STATE(161), + [sym__soft_line_break] = STATE(161), + [sym__inline_base] = STATE(115), + [sym__text_base] = STATE(161), + [sym__inline_element_no_underscore_no_link] = STATE(115), + [aux_sym__inline_no_underscore_no_link] = STATE(115), + [sym__strikethrough_no_link] = STATE(115), + [sym__emphasis_star_no_link] = STATE(609), + [sym__strong_emphasis_star_no_link] = STATE(115), + [sym__emphasis_underscore_no_link] = STATE(609), + [sym__strong_emphasis_underscore_no_link] = STATE(115), + [aux_sym__inline_base_repeat1] = STATE(161), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(1941), + [sym_numeric_character_reference] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(1941), + [sym_email_autolink] = ACTIONS(1941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(1941), + [sym__digits] = ACTIONS(1941), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(1953), + [sym__emphasis_open_underscore] = ACTIONS(1955), + [sym__strikethrough_open] = ACTIONS(1959), + }, + [148] = { + [sym_backslash_escape] = STATE(150), + [sym_code_span] = STATE(150), + [sym_image] = STATE(150), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(150), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(150), + [sym__whitespace] = STATE(150), + [sym__word] = STATE(150), + [sym__soft_line_break] = STATE(150), + [sym__text_base] = STATE(150), + [aux_sym__inline_base_repeat1] = STATE(150), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(2281), + [sym_numeric_character_reference] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(2281), + [sym_email_autolink] = ACTIONS(2281), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), + [anon_sym_LT_QMARK] = ACTIONS(675), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(679), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(2281), + [sym__digits] = ACTIONS(2281), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(2283), + [sym__emphasis_open_underscore] = ACTIONS(2283), + [sym__emphasis_close_underscore] = ACTIONS(2283), + [sym__strikethrough_open] = ACTIONS(2283), + }, + [149] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(149), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__text_base] = STATE(149), + [aux_sym__inline_base_repeat1] = STATE(149), + [sym__backslash_escape] = ACTIONS(2285), + [sym_entity_reference] = ACTIONS(2288), + [sym_numeric_character_reference] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_RBRACK] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_GT] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_POUND] = ACTIONS(2296), + [anon_sym_DOLLAR] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_COLON] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2296), + [anon_sym_QMARK] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_BSLASH] = ACTIONS(2305), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym__] = ACTIONS(2296), + [anon_sym_BQUOTE] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_RPAREN] = ACTIONS(2296), + [sym__newline_token] = ACTIONS(2308), + [sym_uri_autolink] = ACTIONS(2288), + [sym_email_autolink] = ACTIONS(2288), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2311), + [anon_sym_LT_QMARK] = ACTIONS(2314), + [aux_sym__declaration_token1] = ACTIONS(2317), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2320), + [sym__whitespace_ge_2] = ACTIONS(2323), + [aux_sym__whitespace_token1] = ACTIONS(2326), + [sym__word_no_digit] = ACTIONS(2288), + [sym__digits] = ACTIONS(2288), + [sym__code_span_start] = ACTIONS(2329), + [sym__emphasis_open_star] = ACTIONS(2291), + [sym__emphasis_open_underscore] = ACTIONS(2291), + [sym__strikethrough_open] = ACTIONS(2291), + [sym__strikethrough_close] = ACTIONS(2291), + }, + [150] = { + [sym_backslash_escape] = STATE(150), + [sym_code_span] = STATE(150), + [sym_image] = STATE(150), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(430), + [sym_html_tag] = STATE(150), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(150), + [sym__whitespace] = STATE(150), + [sym__word] = STATE(150), + [sym__soft_line_break] = STATE(150), + [sym__text_base] = STATE(150), + [aux_sym__inline_base_repeat1] = STATE(150), + [sym__backslash_escape] = ACTIONS(2332), + [sym_entity_reference] = ACTIONS(2335), + [sym_numeric_character_reference] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_RBRACK] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_GT] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_PERCENT] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_COMMA] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_DOT] = ACTIONS(2341), + [anon_sym_SLASH] = ACTIONS(2341), + [anon_sym_COLON] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(2341), + [anon_sym_QMARK] = ACTIONS(2341), + [anon_sym_AT] = ACTIONS(2341), + [anon_sym_BSLASH] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2341), + [anon_sym__] = ACTIONS(2341), + [anon_sym_BQUOTE] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_TILDE] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_RPAREN] = ACTIONS(2341), + [sym__newline_token] = ACTIONS(2353), + [sym_uri_autolink] = ACTIONS(2335), + [sym_email_autolink] = ACTIONS(2335), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2356), + [anon_sym_LT_QMARK] = ACTIONS(2359), + [aux_sym__declaration_token1] = ACTIONS(2362), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2365), + [sym__whitespace_ge_2] = ACTIONS(2368), + [aux_sym__whitespace_token1] = ACTIONS(2371), + [sym__word_no_digit] = ACTIONS(2335), + [sym__digits] = ACTIONS(2335), + [sym__code_span_start] = ACTIONS(2374), + [sym__emphasis_open_star] = ACTIONS(2291), + [sym__emphasis_open_underscore] = ACTIONS(2291), + [sym__emphasis_close_underscore] = ACTIONS(2291), + [sym__strikethrough_open] = ACTIONS(2291), + }, + [151] = { + [sym_backslash_escape] = STATE(151), + [sym_code_span] = STATE(151), + [sym_image] = STATE(151), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(151), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(151), + [sym__whitespace] = STATE(151), + [sym__word] = STATE(151), + [sym__soft_line_break] = STATE(151), + [sym__text_base] = STATE(151), + [aux_sym__inline_base_repeat1] = STATE(151), + [sym__backslash_escape] = ACTIONS(2377), + [sym_entity_reference] = ACTIONS(2380), + [sym_numeric_character_reference] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_RBRACK] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_POUND] = ACTIONS(2386), + [anon_sym_DOLLAR] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_DOT] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_COLON] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_EQ] = ACTIONS(2386), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_BSLASH] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2386), + [anon_sym__] = ACTIONS(2386), + [anon_sym_BQUOTE] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [sym__newline_token] = ACTIONS(2398), + [sym_uri_autolink] = ACTIONS(2380), + [sym_email_autolink] = ACTIONS(2380), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2401), + [anon_sym_LT_QMARK] = ACTIONS(2404), + [aux_sym__declaration_token1] = ACTIONS(2407), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2410), + [sym__whitespace_ge_2] = ACTIONS(2413), + [aux_sym__whitespace_token1] = ACTIONS(2416), + [sym__word_no_digit] = ACTIONS(2380), + [sym__digits] = ACTIONS(2380), + [sym__code_span_start] = ACTIONS(2419), + [sym__emphasis_open_star] = ACTIONS(2291), + [sym__emphasis_open_underscore] = ACTIONS(2291), + [sym__emphasis_close_star] = ACTIONS(2291), + [sym__strikethrough_open] = ACTIONS(2291), + }, + [152] = { + [sym_backslash_escape] = STATE(155), + [sym_code_span] = STATE(155), + [sym_image] = STATE(155), + [sym__image_inline_link] = STATE(268), + [sym__image_shortcut_link] = STATE(268), + [sym__image_full_reference_link] = STATE(268), + [sym__image_collapsed_reference_link] = STATE(268), + [sym__image_description] = STATE(1012), + [sym__image_description_non_empty] = STATE(270), + [sym_html_tag] = STATE(155), + [sym__open_tag] = STATE(272), + [sym__closing_tag] = STATE(272), + [sym__html_comment] = STATE(272), + [sym__processing_instruction] = STATE(272), + [sym__declaration] = STATE(272), + [sym__cdata_section] = STATE(272), + [sym_hard_line_break] = STATE(155), + [sym__whitespace] = STATE(155), + [sym__word] = STATE(155), + [sym__soft_line_break] = STATE(155), + [sym__text_base] = STATE(155), + [aux_sym__inline_base_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym__backslash_escape] = ACTIONS(3), + [sym_entity_reference] = ACTIONS(2422), + [sym_numeric_character_reference] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_GT] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(15), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_POUND] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(13), + [anon_sym_PERCENT] = ACTIONS(13), + [anon_sym_AMP] = ACTIONS(17), + [anon_sym_SQUOTE] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_PLUS] = ACTIONS(13), + [anon_sym_COMMA] = ACTIONS(13), + [anon_sym_DASH] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(13), + [anon_sym_SLASH] = ACTIONS(13), + [anon_sym_COLON] = ACTIONS(13), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(13), + [anon_sym_QMARK] = ACTIONS(13), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(19), + [anon_sym_CARET] = ACTIONS(13), + [anon_sym__] = ACTIONS(13), + [anon_sym_BQUOTE] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_PIPE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(13), + [anon_sym_TILDE] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(13), + [sym__newline_token] = ACTIONS(21), + [sym_uri_autolink] = ACTIONS(2422), + [sym_email_autolink] = ACTIONS(2422), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(23), + [anon_sym_LT_QMARK] = ACTIONS(25), + [aux_sym__declaration_token1] = ACTIONS(27), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(29), + [sym__whitespace_ge_2] = ACTIONS(31), + [aux_sym__whitespace_token1] = ACTIONS(33), + [sym__word_no_digit] = ACTIONS(2422), + [sym__digits] = ACTIONS(2422), + [sym__code_span_start] = ACTIONS(35), + [sym__emphasis_open_star] = ACTIONS(2283), + [sym__emphasis_open_underscore] = ACTIONS(2283), + [sym__strikethrough_open] = ACTIONS(2283), + }, + [153] = { + [sym_backslash_escape] = STATE(151), + [sym_code_span] = STATE(151), + [sym_image] = STATE(151), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(345), + [sym_html_tag] = STATE(151), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(151), + [sym__whitespace] = STATE(151), + [sym__word] = STATE(151), + [sym__soft_line_break] = STATE(151), + [sym__text_base] = STATE(151), + [aux_sym__inline_base_repeat1] = STATE(151), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(2424), + [sym_numeric_character_reference] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(2424), + [sym_email_autolink] = ACTIONS(2424), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(631), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(2424), + [sym__digits] = ACTIONS(2424), + [sym__code_span_start] = ACTIONS(643), + [sym__emphasis_open_star] = ACTIONS(2283), + [sym__emphasis_open_underscore] = ACTIONS(2283), + [sym__emphasis_close_star] = ACTIONS(2283), + [sym__strikethrough_open] = ACTIONS(2283), + }, + [154] = { + [sym_backslash_escape] = STATE(149), + [sym_code_span] = STATE(149), + [sym_image] = STATE(149), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(508), + [sym_html_tag] = STATE(149), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(149), + [sym__whitespace] = STATE(149), + [sym__word] = STATE(149), + [sym__soft_line_break] = STATE(149), + [sym__text_base] = STATE(149), + [aux_sym__inline_base_repeat1] = STATE(149), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(2426), + [sym_numeric_character_reference] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(2426), + [sym_email_autolink] = ACTIONS(2426), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(715), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(2426), + [sym__digits] = ACTIONS(2426), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(2283), + [sym__emphasis_open_underscore] = ACTIONS(2283), + [sym__strikethrough_open] = ACTIONS(2283), + [sym__strikethrough_close] = ACTIONS(2283), + }, + [155] = { + [sym_backslash_escape] = STATE(155), + [sym_code_span] = STATE(155), + [sym_image] = STATE(155), + [sym__image_inline_link] = STATE(268), + [sym__image_shortcut_link] = STATE(268), + [sym__image_full_reference_link] = STATE(268), + [sym__image_collapsed_reference_link] = STATE(268), + [sym__image_description] = STATE(1012), + [sym__image_description_non_empty] = STATE(270), + [sym_html_tag] = STATE(155), + [sym__open_tag] = STATE(272), + [sym__closing_tag] = STATE(272), + [sym__html_comment] = STATE(272), + [sym__processing_instruction] = STATE(272), + [sym__declaration] = STATE(272), + [sym__cdata_section] = STATE(272), + [sym_hard_line_break] = STATE(155), + [sym__whitespace] = STATE(155), + [sym__word] = STATE(155), + [sym__soft_line_break] = STATE(155), + [sym__text_base] = STATE(155), + [aux_sym__inline_base_repeat1] = STATE(155), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym__backslash_escape] = ACTIONS(2428), + [sym_entity_reference] = ACTIONS(2431), + [sym_numeric_character_reference] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_RBRACK] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_GT] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_PERCENT] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2443), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2437), + [anon_sym_PLUS] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2437), + [anon_sym_DOT] = ACTIONS(2437), + [anon_sym_SLASH] = ACTIONS(2437), + [anon_sym_COLON] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2437), + [anon_sym_EQ] = ACTIONS(2437), + [anon_sym_QMARK] = ACTIONS(2437), + [anon_sym_AT] = ACTIONS(2437), + [anon_sym_BSLASH] = ACTIONS(2446), + [anon_sym_CARET] = ACTIONS(2437), + [anon_sym__] = ACTIONS(2437), + [anon_sym_BQUOTE] = ACTIONS(2437), + [anon_sym_LBRACE] = ACTIONS(2437), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_TILDE] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_RPAREN] = ACTIONS(2437), + [sym__newline_token] = ACTIONS(2449), + [sym_uri_autolink] = ACTIONS(2431), + [sym_email_autolink] = ACTIONS(2431), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2452), + [anon_sym_LT_QMARK] = ACTIONS(2455), + [aux_sym__declaration_token1] = ACTIONS(2458), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2461), + [sym__whitespace_ge_2] = ACTIONS(2464), + [aux_sym__whitespace_token1] = ACTIONS(2467), + [sym__word_no_digit] = ACTIONS(2431), + [sym__digits] = ACTIONS(2431), + [sym__code_span_start] = ACTIONS(2470), + [sym__emphasis_open_star] = ACTIONS(2291), + [sym__emphasis_open_underscore] = ACTIONS(2291), + [sym__strikethrough_open] = ACTIONS(2291), + }, + [156] = { + [sym_backslash_escape] = STATE(157), + [sym_code_span] = STATE(157), + [sym_image] = STATE(157), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(157), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(157), + [sym__whitespace] = STATE(157), + [sym__word] = STATE(157), + [sym__soft_line_break] = STATE(157), + [sym__text_base] = STATE(157), + [aux_sym__inline_base_repeat1] = STATE(157), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(2473), + [sym_numeric_character_reference] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(2473), + [sym_email_autolink] = ACTIONS(2473), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1075), + [anon_sym_LT_QMARK] = ACTIONS(1077), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(2473), + [sym__digits] = ACTIONS(2473), + [sym__code_span_start] = ACTIONS(1087), + [sym__emphasis_open_star] = ACTIONS(2283), + [sym__emphasis_open_underscore] = ACTIONS(2283), + [sym__strikethrough_open] = ACTIONS(2283), + }, + [157] = { + [sym_backslash_escape] = STATE(157), + [sym_code_span] = STATE(157), + [sym_image] = STATE(157), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(518), + [sym_html_tag] = STATE(157), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(157), + [sym__whitespace] = STATE(157), + [sym__word] = STATE(157), + [sym__soft_line_break] = STATE(157), + [sym__text_base] = STATE(157), + [aux_sym__inline_base_repeat1] = STATE(157), + [sym__backslash_escape] = ACTIONS(2475), + [sym_entity_reference] = ACTIONS(2478), + [sym_numeric_character_reference] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_RBRACK] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2484), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2484), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_DOT] = ACTIONS(2484), + [anon_sym_SLASH] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_EQ] = ACTIONS(2484), + [anon_sym_QMARK] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2493), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym__] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [sym__newline_token] = ACTIONS(2496), + [sym_uri_autolink] = ACTIONS(2478), + [sym_email_autolink] = ACTIONS(2478), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2499), + [anon_sym_LT_QMARK] = ACTIONS(2502), + [aux_sym__declaration_token1] = ACTIONS(2505), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2508), + [sym__whitespace_ge_2] = ACTIONS(2511), + [aux_sym__whitespace_token1] = ACTIONS(2514), + [sym__word_no_digit] = ACTIONS(2478), + [sym__digits] = ACTIONS(2478), + [sym__code_span_start] = ACTIONS(2517), + [sym__emphasis_open_star] = ACTIONS(2291), + [sym__emphasis_open_underscore] = ACTIONS(2291), + [sym__strikethrough_open] = ACTIONS(2291), + }, + [158] = { + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(160), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__text_base] = STATE(160), + [aux_sym__inline_base_repeat1] = STATE(160), + [sym__backslash_escape] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(2520), + [sym_numeric_character_reference] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(705), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(705), + [anon_sym_DOLLAR] = ACTIONS(705), + [anon_sym_PERCENT] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(709), + [anon_sym_SQUOTE] = ACTIONS(705), + [anon_sym_STAR] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_DOT] = ACTIONS(705), + [anon_sym_SLASH] = ACTIONS(705), + [anon_sym_COLON] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_EQ] = ACTIONS(705), + [anon_sym_QMARK] = ACTIONS(705), + [anon_sym_AT] = ACTIONS(705), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_CARET] = ACTIONS(705), + [anon_sym__] = ACTIONS(705), + [anon_sym_BQUOTE] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(705), + [anon_sym_PIPE] = ACTIONS(705), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_RPAREN] = ACTIONS(705), + [sym__newline_token] = ACTIONS(713), + [sym_uri_autolink] = ACTIONS(2520), + [sym_email_autolink] = ACTIONS(2520), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1925), + [anon_sym_LT_QMARK] = ACTIONS(1927), + [aux_sym__declaration_token1] = ACTIONS(719), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1929), + [sym__whitespace_ge_2] = ACTIONS(723), + [aux_sym__whitespace_token1] = ACTIONS(725), + [sym__word_no_digit] = ACTIONS(2520), + [sym__digits] = ACTIONS(2520), + [sym__code_span_start] = ACTIONS(1931), + [sym__emphasis_open_star] = ACTIONS(2283), + [sym__emphasis_open_underscore] = ACTIONS(2283), + [sym__strikethrough_open] = ACTIONS(2283), + [sym__strikethrough_close] = ACTIONS(2283), + }, + [159] = { + [sym_backslash_escape] = STATE(165), + [sym_code_span] = STATE(165), + [sym_image] = STATE(165), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(165), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(165), + [sym__whitespace] = STATE(165), + [sym__word] = STATE(165), + [sym__soft_line_break] = STATE(165), + [sym__text_base] = STATE(165), + [aux_sym__inline_base_repeat1] = STATE(165), + [sym__backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(2522), + [sym_numeric_character_reference] = ACTIONS(2522), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [sym__newline_token] = ACTIONS(1073), + [sym_uri_autolink] = ACTIONS(2522), + [sym_email_autolink] = ACTIONS(2522), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1993), + [anon_sym_LT_QMARK] = ACTIONS(1995), + [aux_sym__declaration_token1] = ACTIONS(1079), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1997), + [sym__whitespace_ge_2] = ACTIONS(1083), + [aux_sym__whitespace_token1] = ACTIONS(1085), + [sym__word_no_digit] = ACTIONS(2522), + [sym__digits] = ACTIONS(2522), + [sym__code_span_start] = ACTIONS(1999), + [sym__emphasis_open_star] = ACTIONS(2283), + [sym__emphasis_open_underscore] = ACTIONS(2283), + [sym__strikethrough_open] = ACTIONS(2283), + }, + [160] = { + [sym_backslash_escape] = STATE(160), + [sym_code_span] = STATE(160), + [sym_image] = STATE(160), + [sym__image_inline_link] = STATE(507), + [sym__image_shortcut_link] = STATE(507), + [sym__image_full_reference_link] = STATE(507), + [sym__image_collapsed_reference_link] = STATE(507), + [sym__image_description] = STATE(1010), + [sym__image_description_non_empty] = STATE(533), + [sym_html_tag] = STATE(160), + [sym__open_tag] = STATE(509), + [sym__closing_tag] = STATE(509), + [sym__html_comment] = STATE(509), + [sym__processing_instruction] = STATE(509), + [sym__declaration] = STATE(509), + [sym__cdata_section] = STATE(509), + [sym_hard_line_break] = STATE(160), + [sym__whitespace] = STATE(160), + [sym__word] = STATE(160), + [sym__soft_line_break] = STATE(160), + [sym__text_base] = STATE(160), + [aux_sym__inline_base_repeat1] = STATE(160), + [sym__backslash_escape] = ACTIONS(2285), + [sym_entity_reference] = ACTIONS(2524), + [sym_numeric_character_reference] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_GT] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_POUND] = ACTIONS(2296), + [anon_sym_DOLLAR] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_COLON] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2296), + [anon_sym_QMARK] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_BSLASH] = ACTIONS(2305), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym__] = ACTIONS(2296), + [anon_sym_BQUOTE] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_RPAREN] = ACTIONS(2296), + [sym__newline_token] = ACTIONS(2308), + [sym_uri_autolink] = ACTIONS(2524), + [sym_email_autolink] = ACTIONS(2524), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2530), + [anon_sym_LT_QMARK] = ACTIONS(2533), + [aux_sym__declaration_token1] = ACTIONS(2317), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2536), + [sym__whitespace_ge_2] = ACTIONS(2323), + [aux_sym__whitespace_token1] = ACTIONS(2326), + [sym__word_no_digit] = ACTIONS(2524), + [sym__digits] = ACTIONS(2524), + [sym__code_span_start] = ACTIONS(2539), + [sym__emphasis_open_star] = ACTIONS(2291), + [sym__emphasis_open_underscore] = ACTIONS(2291), + [sym__strikethrough_open] = ACTIONS(2291), + [sym__strikethrough_close] = ACTIONS(2291), + }, + [161] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(164), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__text_base] = STATE(164), + [aux_sym__inline_base_repeat1] = STATE(164), + [sym__backslash_escape] = ACTIONS(653), + [sym_entity_reference] = ACTIONS(2542), + [sym_numeric_character_reference] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PERCENT] = ACTIONS(663), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(663), + [anon_sym_STAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_DOT] = ACTIONS(663), + [anon_sym_SLASH] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(663), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym_BSLASH] = ACTIONS(669), + [anon_sym_CARET] = ACTIONS(663), + [anon_sym__] = ACTIONS(663), + [anon_sym_BQUOTE] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_PIPE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(663), + [anon_sym_RPAREN] = ACTIONS(663), + [sym__newline_token] = ACTIONS(671), + [sym_uri_autolink] = ACTIONS(2542), + [sym_email_autolink] = ACTIONS(2542), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1945), + [anon_sym_LT_QMARK] = ACTIONS(1947), + [aux_sym__declaration_token1] = ACTIONS(677), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(681), + [aux_sym__whitespace_token1] = ACTIONS(683), + [sym__word_no_digit] = ACTIONS(2542), + [sym__digits] = ACTIONS(2542), + [sym__code_span_start] = ACTIONS(1951), + [sym__emphasis_open_star] = ACTIONS(2283), + [sym__emphasis_open_underscore] = ACTIONS(2283), + [sym__emphasis_close_underscore] = ACTIONS(2283), + [sym__strikethrough_open] = ACTIONS(2283), + }, + [162] = { + [sym_backslash_escape] = STATE(162), + [sym_code_span] = STATE(162), + [sym_image] = STATE(162), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(162), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(162), + [sym__whitespace] = STATE(162), + [sym__word] = STATE(162), + [sym__soft_line_break] = STATE(162), + [sym__text_base] = STATE(162), + [aux_sym__inline_base_repeat1] = STATE(162), + [sym__backslash_escape] = ACTIONS(2377), + [sym_entity_reference] = ACTIONS(2544), + [sym_numeric_character_reference] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_POUND] = ACTIONS(2386), + [anon_sym_DOLLAR] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_DOT] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_COLON] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_EQ] = ACTIONS(2386), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_BSLASH] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2386), + [anon_sym__] = ACTIONS(2386), + [anon_sym_BQUOTE] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [sym__newline_token] = ACTIONS(2398), + [sym_uri_autolink] = ACTIONS(2544), + [sym_email_autolink] = ACTIONS(2544), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2550), + [anon_sym_LT_QMARK] = ACTIONS(2553), + [aux_sym__declaration_token1] = ACTIONS(2407), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2556), + [sym__whitespace_ge_2] = ACTIONS(2413), + [aux_sym__whitespace_token1] = ACTIONS(2416), + [sym__word_no_digit] = ACTIONS(2544), + [sym__digits] = ACTIONS(2544), + [sym__code_span_start] = ACTIONS(2559), + [sym__emphasis_open_star] = ACTIONS(2291), + [sym__emphasis_open_underscore] = ACTIONS(2291), + [sym__emphasis_close_star] = ACTIONS(2291), + [sym__strikethrough_open] = ACTIONS(2291), + }, + [163] = { + [sym_backslash_escape] = STATE(162), + [sym_code_span] = STATE(162), + [sym_image] = STATE(162), + [sym__image_inline_link] = STATE(344), + [sym__image_shortcut_link] = STATE(344), + [sym__image_full_reference_link] = STATE(344), + [sym__image_collapsed_reference_link] = STATE(344), + [sym__image_description] = STATE(1003), + [sym__image_description_non_empty] = STATE(538), + [sym_html_tag] = STATE(162), + [sym__open_tag] = STATE(346), + [sym__closing_tag] = STATE(346), + [sym__html_comment] = STATE(346), + [sym__processing_instruction] = STATE(346), + [sym__declaration] = STATE(346), + [sym__cdata_section] = STATE(346), + [sym_hard_line_break] = STATE(162), + [sym__whitespace] = STATE(162), + [sym__word] = STATE(162), + [sym__soft_line_break] = STATE(162), + [sym__text_base] = STATE(162), + [aux_sym__inline_base_repeat1] = STATE(162), + [sym__backslash_escape] = ACTIONS(611), + [sym_entity_reference] = ACTIONS(2562), + [sym_numeric_character_reference] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_SQUOTE] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_BSLASH] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym__] = ACTIONS(621), + [anon_sym_BQUOTE] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [sym__newline_token] = ACTIONS(629), + [sym_uri_autolink] = ACTIONS(2562), + [sym_email_autolink] = ACTIONS(2562), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1973), + [aux_sym__declaration_token1] = ACTIONS(635), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1975), + [sym__whitespace_ge_2] = ACTIONS(639), + [aux_sym__whitespace_token1] = ACTIONS(641), + [sym__word_no_digit] = ACTIONS(2562), + [sym__digits] = ACTIONS(2562), + [sym__code_span_start] = ACTIONS(1977), + [sym__emphasis_open_star] = ACTIONS(2283), + [sym__emphasis_open_underscore] = ACTIONS(2283), + [sym__emphasis_close_star] = ACTIONS(2283), + [sym__strikethrough_open] = ACTIONS(2283), + }, + [164] = { + [sym_backslash_escape] = STATE(164), + [sym_code_span] = STATE(164), + [sym_image] = STATE(164), + [sym__image_inline_link] = STATE(429), + [sym__image_shortcut_link] = STATE(429), + [sym__image_full_reference_link] = STATE(429), + [sym__image_collapsed_reference_link] = STATE(429), + [sym__image_description] = STATE(1006), + [sym__image_description_non_empty] = STATE(535), + [sym_html_tag] = STATE(164), + [sym__open_tag] = STATE(431), + [sym__closing_tag] = STATE(431), + [sym__html_comment] = STATE(431), + [sym__processing_instruction] = STATE(431), + [sym__declaration] = STATE(431), + [sym__cdata_section] = STATE(431), + [sym_hard_line_break] = STATE(164), + [sym__whitespace] = STATE(164), + [sym__word] = STATE(164), + [sym__soft_line_break] = STATE(164), + [sym__text_base] = STATE(164), + [aux_sym__inline_base_repeat1] = STATE(164), + [sym__backslash_escape] = ACTIONS(2332), + [sym_entity_reference] = ACTIONS(2564), + [sym_numeric_character_reference] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_GT] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_PERCENT] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_COMMA] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_DOT] = ACTIONS(2341), + [anon_sym_SLASH] = ACTIONS(2341), + [anon_sym_COLON] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(2341), + [anon_sym_QMARK] = ACTIONS(2341), + [anon_sym_AT] = ACTIONS(2341), + [anon_sym_BSLASH] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2341), + [anon_sym__] = ACTIONS(2341), + [anon_sym_BQUOTE] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_TILDE] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_RPAREN] = ACTIONS(2341), + [sym__newline_token] = ACTIONS(2353), + [sym_uri_autolink] = ACTIONS(2564), + [sym_email_autolink] = ACTIONS(2564), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2570), + [anon_sym_LT_QMARK] = ACTIONS(2573), + [aux_sym__declaration_token1] = ACTIONS(2362), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2576), + [sym__whitespace_ge_2] = ACTIONS(2368), + [aux_sym__whitespace_token1] = ACTIONS(2371), + [sym__word_no_digit] = ACTIONS(2564), + [sym__digits] = ACTIONS(2564), + [sym__code_span_start] = ACTIONS(2579), + [sym__emphasis_open_star] = ACTIONS(2291), + [sym__emphasis_open_underscore] = ACTIONS(2291), + [sym__emphasis_close_underscore] = ACTIONS(2291), + [sym__strikethrough_open] = ACTIONS(2291), + }, + [165] = { + [sym_backslash_escape] = STATE(165), + [sym_code_span] = STATE(165), + [sym_image] = STATE(165), + [sym__image_inline_link] = STATE(554), + [sym__image_shortcut_link] = STATE(554), + [sym__image_full_reference_link] = STATE(554), + [sym__image_collapsed_reference_link] = STATE(554), + [sym__image_description] = STATE(1008), + [sym__image_description_non_empty] = STATE(553), + [sym_html_tag] = STATE(165), + [sym__open_tag] = STATE(552), + [sym__closing_tag] = STATE(552), + [sym__html_comment] = STATE(552), + [sym__processing_instruction] = STATE(552), + [sym__declaration] = STATE(552), + [sym__cdata_section] = STATE(552), + [sym_hard_line_break] = STATE(165), + [sym__whitespace] = STATE(165), + [sym__word] = STATE(165), + [sym__soft_line_break] = STATE(165), + [sym__text_base] = STATE(165), + [aux_sym__inline_base_repeat1] = STATE(165), + [sym__backslash_escape] = ACTIONS(2475), + [sym_entity_reference] = ACTIONS(2582), + [sym_numeric_character_reference] = ACTIONS(2582), + [anon_sym_RBRACK] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2484), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2484), + [anon_sym_PERCENT] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2484), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_DOT] = ACTIONS(2484), + [anon_sym_SLASH] = ACTIONS(2484), + [anon_sym_COLON] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_EQ] = ACTIONS(2484), + [anon_sym_QMARK] = ACTIONS(2484), + [anon_sym_AT] = ACTIONS(2484), + [anon_sym_BSLASH] = ACTIONS(2493), + [anon_sym_CARET] = ACTIONS(2484), + [anon_sym__] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_TILDE] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2484), + [sym__newline_token] = ACTIONS(2496), + [sym_uri_autolink] = ACTIONS(2582), + [sym_email_autolink] = ACTIONS(2582), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2588), + [anon_sym_LT_QMARK] = ACTIONS(2591), + [aux_sym__declaration_token1] = ACTIONS(2505), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2594), + [sym__whitespace_ge_2] = ACTIONS(2511), + [aux_sym__whitespace_token1] = ACTIONS(2514), + [sym__word_no_digit] = ACTIONS(2582), + [sym__digits] = ACTIONS(2582), + [sym__code_span_start] = ACTIONS(2597), + [sym__emphasis_open_star] = ACTIONS(2291), + [sym__emphasis_open_underscore] = ACTIONS(2291), + [sym__strikethrough_open] = ACTIONS(2291), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 10, + ACTIONS(2608), 1, + sym__newline_token, + ACTIONS(2613), 1, + sym__whitespace_ge_2, + ACTIONS(2616), 1, + aux_sym__whitespace_token1, + ACTIONS(2622), 1, + sym__code_span_close, + ACTIONS(2619), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2605), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(679), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2602), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [78] = 11, + ACTIONS(2608), 1, + sym__newline_token, + ACTIONS(2613), 1, + sym__whitespace_ge_2, + ACTIONS(2616), 1, + aux_sym__whitespace_token1, + ACTIONS(2629), 1, + sym__code_span_close, + ACTIONS(2624), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2626), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2605), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(681), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2602), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [158] = 10, + ACTIONS(2608), 1, + sym__newline_token, + ACTIONS(2613), 1, + sym__whitespace_ge_2, + ACTIONS(2616), 1, + aux_sym__whitespace_token1, + ACTIONS(2634), 1, + sym__code_span_close, + ACTIONS(2631), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2605), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(666), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2602), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [236] = 10, + ACTIONS(2608), 1, + sym__newline_token, + ACTIONS(2613), 1, + sym__whitespace_ge_2, + ACTIONS(2616), 1, + aux_sym__whitespace_token1, + ACTIONS(2639), 1, + sym__code_span_close, + ACTIONS(2636), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2605), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(668), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2602), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [314] = 11, + ACTIONS(2608), 1, + sym__newline_token, + ACTIONS(2613), 1, + sym__whitespace_ge_2, + ACTIONS(2616), 1, + aux_sym__whitespace_token1, + ACTIONS(2639), 1, + sym__code_span_close, + ACTIONS(2624), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2636), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2605), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(668), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2602), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [394] = 10, + ACTIONS(2608), 1, + sym__newline_token, + ACTIONS(2613), 1, + sym__whitespace_ge_2, + ACTIONS(2616), 1, + aux_sym__whitespace_token1, + ACTIONS(2629), 1, + sym__code_span_close, + ACTIONS(2626), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2605), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(681), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2602), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [472] = 11, + ACTIONS(2608), 1, + sym__newline_token, + ACTIONS(2613), 1, + sym__whitespace_ge_2, + ACTIONS(2616), 1, + aux_sym__whitespace_token1, + ACTIONS(2634), 1, + sym__code_span_close, + ACTIONS(2624), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2631), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2605), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(666), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2602), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [552] = 10, + ACTIONS(2647), 1, + sym__newline_token, + ACTIONS(2650), 1, + anon_sym_QMARK_GT, + ACTIONS(2652), 1, + sym__whitespace_ge_2, + ACTIONS(2655), 1, + aux_sym__whitespace_token1, + ACTIONS(2658), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2644), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(688), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2641), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [629] = 10, + ACTIONS(2608), 1, + sym__newline_token, + ACTIONS(2613), 1, + sym__whitespace_ge_2, + ACTIONS(2616), 1, + aux_sym__whitespace_token1, + ACTIONS(2664), 1, + sym__code_span_close, + ACTIONS(2661), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2605), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(673), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2600), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2602), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [706] = 10, + ACTIONS(2672), 1, + sym__newline_token, + ACTIONS(2675), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2677), 1, + sym__whitespace_ge_2, + ACTIONS(2680), 1, + aux_sym__whitespace_token1, + ACTIONS(2683), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2669), 4, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(726), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2666), 28, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [783] = 10, + ACTIONS(2672), 1, + sym__newline_token, + ACTIONS(2677), 1, + sym__whitespace_ge_2, + ACTIONS(2680), 1, + aux_sym__whitespace_token1, + ACTIONS(2686), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2688), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2669), 4, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(701), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2666), 28, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [860] = 11, + ACTIONS(2647), 1, + sym__newline_token, + ACTIONS(2650), 1, + anon_sym_QMARK_GT, + ACTIONS(2652), 1, + sym__whitespace_ge_2, + ACTIONS(2655), 1, + aux_sym__whitespace_token1, + ACTIONS(2658), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2691), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2644), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(688), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2641), 26, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [939] = 10, + ACTIONS(2647), 1, + sym__newline_token, + ACTIONS(2652), 1, + sym__whitespace_ge_2, + ACTIONS(2655), 1, + aux_sym__whitespace_token1, + ACTIONS(2693), 1, + anon_sym_QMARK_GT, + ACTIONS(2695), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2644), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(718), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2641), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1016] = 12, + ACTIONS(2672), 1, + sym__newline_token, + ACTIONS(2677), 1, + sym__whitespace_ge_2, + ACTIONS(2680), 1, + aux_sym__whitespace_token1, + ACTIONS(2698), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_RBRACK, + ACTIONS(2702), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2704), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2669), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(720), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2666), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1097] = 10, + ACTIONS(2647), 1, + sym__newline_token, + ACTIONS(2652), 1, + sym__whitespace_ge_2, + ACTIONS(2655), 1, + aux_sym__whitespace_token1, + ACTIONS(2707), 1, + anon_sym_QMARK_GT, + ACTIONS(2709), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2644), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(722), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2641), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1174] = 10, + ACTIONS(2672), 1, + sym__newline_token, + ACTIONS(2677), 1, + sym__whitespace_ge_2, + ACTIONS(2680), 1, + aux_sym__whitespace_token1, + ACTIONS(2702), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2704), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2669), 4, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(720), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2666), 28, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1251] = 10, + ACTIONS(2672), 1, + sym__newline_token, + ACTIONS(2677), 1, + sym__whitespace_ge_2, + ACTIONS(2680), 1, + aux_sym__whitespace_token1, + ACTIONS(2712), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2714), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2669), 4, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(691), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2666), 28, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1328] = 12, + ACTIONS(2672), 1, + sym__newline_token, + ACTIONS(2677), 1, + sym__whitespace_ge_2, + ACTIONS(2680), 1, + aux_sym__whitespace_token1, + ACTIONS(2686), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2698), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_RBRACK, + ACTIONS(2688), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2669), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(701), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2666), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1409] = 11, + ACTIONS(2647), 1, + sym__newline_token, + ACTIONS(2652), 1, + sym__whitespace_ge_2, + ACTIONS(2655), 1, + aux_sym__whitespace_token1, + ACTIONS(2717), 1, + anon_sym_QMARK_GT, + ACTIONS(2691), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2719), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2644), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(703), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2641), 26, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1488] = 11, + ACTIONS(2608), 1, + sym__newline_token, + ACTIONS(2613), 1, + sym__whitespace_ge_2, + ACTIONS(2616), 1, + aux_sym__whitespace_token1, + ACTIONS(2624), 1, + anon_sym_LBRACK, + ACTIONS(2664), 1, + sym__code_span_close, + ACTIONS(2661), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2605), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + STATE(673), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2600), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2602), 28, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1567] = 12, + ACTIONS(2672), 1, + sym__newline_token, + ACTIONS(2677), 1, + sym__whitespace_ge_2, + ACTIONS(2680), 1, + aux_sym__whitespace_token1, + ACTIONS(2698), 1, + anon_sym_LBRACK, + ACTIONS(2700), 1, + anon_sym_RBRACK, + ACTIONS(2712), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2714), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2669), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(691), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2666), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1648] = 11, + ACTIONS(2647), 1, + sym__newline_token, + ACTIONS(2652), 1, + sym__whitespace_ge_2, + ACTIONS(2655), 1, + aux_sym__whitespace_token1, + ACTIONS(2693), 1, + anon_sym_QMARK_GT, + ACTIONS(2691), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2695), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2644), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(718), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2641), 26, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1727] = 10, + ACTIONS(2647), 1, + sym__newline_token, + ACTIONS(2652), 1, + sym__whitespace_ge_2, + ACTIONS(2655), 1, + aux_sym__whitespace_token1, + ACTIONS(2717), 1, + anon_sym_QMARK_GT, + ACTIONS(2719), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2644), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(703), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2641), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1804] = 11, + ACTIONS(2728), 1, + anon_sym_DASH, + ACTIONS(2731), 1, + sym__newline_token, + ACTIONS(2734), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2736), 1, + sym__whitespace_ge_2, + ACTIONS(2739), 1, + aux_sym__whitespace_token1, + ACTIONS(2742), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2725), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(687), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2600), 12, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2722), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1882] = 12, + ACTIONS(2731), 1, + sym__newline_token, + ACTIONS(2736), 1, + sym__whitespace_ge_2, + ACTIONS(2739), 1, + aux_sym__whitespace_token1, + ACTIONS(2753), 1, + anon_sym_DASH, + ACTIONS(2756), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2745), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2758), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2747), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(685), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2600), 12, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2750), 25, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [1962] = 12, + ACTIONS(2731), 1, + sym__newline_token, + ACTIONS(2736), 1, + sym__whitespace_ge_2, + ACTIONS(2739), 1, + aux_sym__whitespace_token1, + ACTIONS(2769), 1, + anon_sym_DASH, + ACTIONS(2772), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2761), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2774), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2763), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(704), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2600), 12, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2766), 25, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2042] = 10, + ACTIONS(2647), 1, + sym__newline_token, + ACTIONS(2652), 1, + sym__whitespace_ge_2, + ACTIONS(2655), 1, + aux_sym__whitespace_token1, + ACTIONS(2777), 1, + anon_sym_QMARK_GT, + ACTIONS(2779), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2644), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(710), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2641), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2118] = 10, + ACTIONS(2672), 1, + sym__newline_token, + ACTIONS(2677), 1, + sym__whitespace_ge_2, + ACTIONS(2680), 1, + aux_sym__whitespace_token1, + ACTIONS(2782), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2784), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2669), 4, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(709), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2666), 28, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2194] = 11, + ACTIONS(2647), 1, + sym__newline_token, + ACTIONS(2652), 1, + sym__whitespace_ge_2, + ACTIONS(2655), 1, + aux_sym__whitespace_token1, + ACTIONS(2691), 1, + anon_sym_LBRACK, + ACTIONS(2777), 1, + anon_sym_QMARK_GT, + ACTIONS(2779), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2644), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(710), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2641), 27, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2272] = 11, + ACTIONS(2731), 1, + sym__newline_token, + ACTIONS(2736), 1, + sym__whitespace_ge_2, + ACTIONS(2739), 1, + aux_sym__whitespace_token1, + ACTIONS(2793), 1, + anon_sym_DASH, + ACTIONS(2796), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2798), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2790), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(716), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2600), 12, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2787), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2350] = 12, + ACTIONS(2728), 1, + anon_sym_DASH, + ACTIONS(2731), 1, + sym__newline_token, + ACTIONS(2734), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2736), 1, + sym__whitespace_ge_2, + ACTIONS(2739), 1, + aux_sym__whitespace_token1, + ACTIONS(2742), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2801), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2725), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(687), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2600), 12, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2722), 25, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2430] = 11, + ACTIONS(2672), 1, + sym__newline_token, + ACTIONS(2677), 1, + sym__whitespace_ge_2, + ACTIONS(2680), 1, + aux_sym__whitespace_token1, + ACTIONS(2698), 1, + anon_sym_LBRACK, + ACTIONS(2782), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2784), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2669), 4, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(709), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2600), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2666), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2508] = 11, + ACTIONS(2731), 1, + sym__newline_token, + ACTIONS(2736), 1, + sym__whitespace_ge_2, + ACTIONS(2739), 1, + aux_sym__whitespace_token1, + ACTIONS(2769), 1, + anon_sym_DASH, + ACTIONS(2772), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2774), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2763), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(704), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2600), 12, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2766), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2586] = 11, + ACTIONS(2731), 1, + sym__newline_token, + ACTIONS(2736), 1, + sym__whitespace_ge_2, + ACTIONS(2739), 1, + aux_sym__whitespace_token1, + ACTIONS(2753), 1, + anon_sym_DASH, + ACTIONS(2756), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2758), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2747), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(685), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2600), 12, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2750), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2664] = 11, + ACTIONS(2731), 1, + sym__newline_token, + ACTIONS(2736), 1, + sym__whitespace_ge_2, + ACTIONS(2739), 1, + aux_sym__whitespace_token1, + ACTIONS(2809), 1, + anon_sym_DASH, + ACTIONS(2812), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2814), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2806), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(684), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2803), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2741] = 12, + ACTIONS(2731), 1, + sym__newline_token, + ACTIONS(2736), 1, + sym__whitespace_ge_2, + ACTIONS(2739), 1, + aux_sym__whitespace_token1, + ACTIONS(2809), 1, + anon_sym_DASH, + ACTIONS(2812), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2817), 1, + anon_sym_LBRACK, + ACTIONS(2814), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2611), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2806), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(684), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(2600), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(2803), 26, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [2820] = 6, + ACTIONS(2819), 1, + anon_sym_SLASH, + ACTIONS(2822), 1, + sym__word_no_digit, + ACTIONS(2825), 1, + sym__last_token_punctuation, + STATE(846), 1, + sym__tag_name, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__digits, + [2886] = 5, + ACTIONS(21), 1, + sym__newline_token, + ACTIONS(2827), 1, + sym__last_token_punctuation, + STATE(285), 1, + sym__soft_line_break, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [2950] = 6, + ACTIONS(2829), 1, + sym__newline_token, + ACTIONS(2832), 1, + sym__whitespace_ge_2, + ACTIONS(2835), 1, + aux_sym__whitespace_token1, + STATE(744), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2611), 6, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + [3016] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2842), 1, + anon_sym_RBRACK, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(207), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2840), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3088] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2856), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(226), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2854), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3160] = 9, + ACTIONS(2858), 1, + sym__backslash_escape, + ACTIONS(2864), 1, + anon_sym_RBRACK, + ACTIONS(2872), 1, + sym__newline_token, + ACTIONS(2875), 1, + sym__whitespace_ge_2, + ACTIONS(2878), 1, + aux_sym__whitespace_token1, + ACTIONS(2866), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(207), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2861), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2869), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3232] = 5, + ACTIONS(713), 1, + sym__newline_token, + ACTIONS(2825), 1, + sym__last_token_punctuation, + STATE(504), 1, + sym__soft_line_break, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [3296] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2881), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(226), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2854), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3368] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2885), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(205), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2883), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3440] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2887), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(207), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2840), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3512] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2891), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(211), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2889), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3584] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2895), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(221), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2893), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3656] = 6, + ACTIONS(2822), 1, + sym__word_no_digit, + ACTIONS(2827), 1, + sym__last_token_punctuation, + ACTIONS(2897), 1, + anon_sym_SLASH, + STATE(852), 1, + sym__tag_name, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__digits, + [3722] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2900), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(211), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2889), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3794] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2904), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(222), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2902), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3866] = 5, + ACTIONS(21), 1, + sym__newline_token, + ACTIONS(2910), 1, + sym__last_token_whitespace, + STATE(285), 1, + sym__soft_line_break, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [3930] = 5, + ACTIONS(671), 1, + sym__newline_token, + ACTIONS(2912), 1, + sym__last_token_whitespace, + STATE(435), 1, + sym__soft_line_break, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [3994] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2914), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(222), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2902), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4066] = 6, + ACTIONS(2829), 1, + sym__newline_token, + ACTIONS(2832), 1, + sym__whitespace_ge_2, + ACTIONS(2835), 1, + aux_sym__whitespace_token1, + STATE(730), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2611), 6, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + [4132] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2916), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(207), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2840), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4204] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2918), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(207), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2840), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4276] = 6, + ACTIONS(2829), 1, + sym__newline_token, + ACTIONS(2832), 1, + sym__whitespace_ge_2, + ACTIONS(2835), 1, + aux_sym__whitespace_token1, + STATE(738), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2611), 6, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + [4342] = 5, + ACTIONS(671), 1, + sym__newline_token, + ACTIONS(2920), 1, + sym__last_token_punctuation, + STATE(435), 1, + sym__soft_line_break, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [4406] = 6, + ACTIONS(2822), 1, + sym__word_no_digit, + ACTIONS(2922), 1, + anon_sym_SLASH, + ACTIONS(2925), 1, + sym__last_token_punctuation, + STATE(854), 1, + sym__tag_name, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__digits, + [4472] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2927), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(207), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2840), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4544] = 6, + ACTIONS(2822), 1, + sym__word_no_digit, + ACTIONS(2920), 1, + sym__last_token_punctuation, + ACTIONS(2929), 1, + anon_sym_SLASH, + STATE(856), 1, + sym__tag_name, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__digits, + [4610] = 5, + ACTIONS(629), 1, + sym__newline_token, + ACTIONS(2925), 1, + sym__last_token_punctuation, + STATE(353), 1, + sym__soft_line_break, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [4674] = 6, + ACTIONS(2829), 1, + sym__newline_token, + ACTIONS(2832), 1, + sym__whitespace_ge_2, + ACTIONS(2835), 1, + aux_sym__whitespace_token1, + STATE(734), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2611), 6, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + [4740] = 5, + ACTIONS(629), 1, + sym__newline_token, + ACTIONS(2932), 1, + sym__last_token_whitespace, + STATE(353), 1, + sym__soft_line_break, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [4804] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2934), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(205), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2883), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4876] = 9, + ACTIONS(2838), 1, + sym__backslash_escape, + ACTIONS(2848), 1, + sym__newline_token, + ACTIONS(2850), 1, + sym__whitespace_ge_2, + ACTIONS(2852), 1, + aux_sym__whitespace_token1, + ACTIONS(2936), 1, + anon_sym_RBRACK, + ACTIONS(2844), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(221), 7, + sym_backslash_escape, + sym__whitespace, + sym__word, + sym__soft_line_break, + sym__text_base, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(2893), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + ACTIONS(2846), 27, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [4948] = 5, + ACTIONS(713), 1, + sym__newline_token, + ACTIONS(2938), 1, + sym__last_token_whitespace, + STATE(504), 1, + sym__soft_line_break, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5012] = 3, + ACTIONS(2910), 1, + sym__last_token_whitespace, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5071] = 3, + ACTIONS(2944), 1, + sym__last_token_whitespace, + ACTIONS(2942), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2940), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5130] = 6, + ACTIONS(2822), 1, + sym__word_no_digit, + ACTIONS(2946), 1, + anon_sym_SLASH, + ACTIONS(2949), 1, + sym__last_token_punctuation, + STATE(845), 1, + sym__tag_name, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__digits, + [5195] = 5, + ACTIONS(1073), 1, + sym__newline_token, + ACTIONS(2949), 1, + sym__last_token_punctuation, + STATE(512), 1, + sym__soft_line_break, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5258] = 3, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(2953), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2951), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5317] = 3, + ACTIONS(2955), 1, + sym__last_token_whitespace, + ACTIONS(2942), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2940), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5376] = 6, + ACTIONS(2829), 1, + sym__newline_token, + ACTIONS(2832), 1, + sym__whitespace_ge_2, + ACTIONS(2835), 1, + aux_sym__whitespace_token1, + STATE(753), 2, + sym__whitespace, + sym__soft_line_break, + ACTIONS(2611), 6, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + ACTIONS(2600), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__word_no_digit, + sym__digits, + [5441] = 3, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(2953), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2951), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5500] = 3, + ACTIONS(1284), 1, + sym__last_token_punctuation, + ACTIONS(2957), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(354), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5559] = 4, + ACTIONS(2925), 1, + sym__last_token_punctuation, + ACTIONS(2959), 1, + anon_sym_LBRACK, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5620] = 3, + ACTIONS(2925), 1, + sym__last_token_punctuation, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5679] = 3, + ACTIONS(2920), 1, + sym__last_token_punctuation, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5738] = 5, + ACTIONS(1073), 1, + sym__newline_token, + ACTIONS(2962), 1, + sym__last_token_whitespace, + STATE(512), 1, + sym__soft_line_break, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5801] = 4, + ACTIONS(2920), 1, + sym__last_token_punctuation, + ACTIONS(2964), 1, + anon_sym_LBRACK, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5862] = 3, + ACTIONS(1343), 1, + sym__last_token_punctuation, + ACTIONS(2967), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(107), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5921] = 3, + ACTIONS(2938), 1, + sym__last_token_whitespace, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [5980] = 4, + ACTIONS(171), 1, + anon_sym_RBRACK, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(2953), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2951), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6041] = 3, + ACTIONS(2969), 1, + sym__last_token_whitespace, + ACTIONS(2942), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2940), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6100] = 3, + ACTIONS(2971), 1, + sym__last_token_whitespace, + ACTIONS(2942), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2940), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6159] = 4, + ACTIONS(171), 1, + anon_sym_RBRACK, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(2953), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2951), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6220] = 3, + ACTIONS(1225), 1, + sym__last_token_punctuation, + ACTIONS(2973), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(542), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6279] = 3, + ACTIONS(2932), 1, + sym__last_token_whitespace, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6338] = 3, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(2953), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2951), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6397] = 4, + ACTIONS(2827), 1, + sym__last_token_punctuation, + ACTIONS(2975), 1, + anon_sym_LBRACK, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6458] = 3, + ACTIONS(2827), 1, + sym__last_token_punctuation, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6517] = 4, + ACTIONS(171), 1, + anon_sym_RBRACK, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(2953), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2951), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6578] = 3, + ACTIONS(1402), 1, + sym__last_token_punctuation, + ACTIONS(2978), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(171), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6637] = 3, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(2953), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2951), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6696] = 3, + ACTIONS(2912), 1, + sym__last_token_whitespace, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6755] = 3, + ACTIONS(2825), 1, + sym__last_token_punctuation, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6814] = 4, + ACTIONS(2825), 1, + sym__last_token_punctuation, + ACTIONS(2980), 1, + anon_sym_LBRACK, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6875] = 2, + ACTIONS(2985), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2983), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6931] = 2, + ACTIONS(2989), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2987), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [6987] = 3, + ACTIONS(2993), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(2996), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2991), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7045] = 2, + ACTIONS(3000), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2998), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7101] = 3, + ACTIONS(3006), 1, + sym__emphasis_close_underscore, + ACTIONS(3004), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3002), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7159] = 3, + ACTIONS(3011), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3014), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3009), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7217] = 3, + ACTIONS(3020), 1, + sym__emphasis_close_star, + ACTIONS(3018), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3016), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7275] = 2, + ACTIONS(3025), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3023), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7331] = 2, + ACTIONS(3029), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3027), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7387] = 2, + ACTIONS(3033), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3031), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7443] = 2, + ACTIONS(3037), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3035), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7499] = 3, + ACTIONS(3039), 1, + sym__emphasis_close_star, + ACTIONS(3018), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3016), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7557] = 2, + ACTIONS(3018), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3016), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7613] = 2, + ACTIONS(3004), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3002), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7669] = 3, + ACTIONS(3042), 1, + sym__emphasis_close_underscore, + ACTIONS(3004), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3002), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7727] = 2, + ACTIONS(3047), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3045), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7783] = 2, + ACTIONS(3051), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3049), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7839] = 2, + ACTIONS(3055), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3053), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7895] = 2, + ACTIONS(3059), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3057), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [7951] = 2, + ACTIONS(3063), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3061), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8007] = 2, + ACTIONS(3067), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3065), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8063] = 2, + ACTIONS(3071), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3069), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8119] = 2, + ACTIONS(3075), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3073), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8175] = 2, + ACTIONS(3079), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3077), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8231] = 2, + ACTIONS(3083), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3081), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8287] = 2, + ACTIONS(3087), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3085), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8343] = 2, + ACTIONS(3091), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3089), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8399] = 3, + ACTIONS(3093), 1, + sym__emphasis_close_underscore, + ACTIONS(3004), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3002), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8457] = 2, + ACTIONS(3098), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3096), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8513] = 2, + ACTIONS(3102), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3100), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8569] = 3, + ACTIONS(3104), 1, + sym__emphasis_close_underscore, + ACTIONS(3004), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3002), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8627] = 3, + ACTIONS(3107), 1, + sym__emphasis_close_star, + ACTIONS(3018), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3016), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8685] = 2, + ACTIONS(3112), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3110), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8741] = 2, + ACTIONS(3116), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3114), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8797] = 3, + ACTIONS(3118), 1, + sym__emphasis_close_star, + ACTIONS(3018), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3016), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8855] = 2, + ACTIONS(3123), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3121), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8911] = 3, + ACTIONS(3125), 1, + sym__emphasis_close_star, + ACTIONS(3018), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3016), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [8969] = 3, + ACTIONS(3128), 1, + sym__emphasis_close_underscore, + ACTIONS(3004), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3002), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9027] = 2, + ACTIONS(3133), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3131), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9083] = 2, + ACTIONS(3137), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3135), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9139] = 2, + ACTIONS(3141), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3139), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9195] = 2, + ACTIONS(3145), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3143), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9251] = 2, + ACTIONS(3149), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3147), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9307] = 2, + ACTIONS(3153), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3151), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9363] = 2, + ACTIONS(3157), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3155), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9419] = 2, + ACTIONS(3161), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3159), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9475] = 2, + ACTIONS(3165), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3163), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9531] = 4, + ACTIONS(2949), 1, + sym__last_token_punctuation, + ACTIONS(3167), 1, + anon_sym_LBRACK, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9591] = 2, + ACTIONS(3172), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3170), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9647] = 2, + ACTIONS(2989), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2987), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9703] = 2, + ACTIONS(3176), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3174), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9759] = 2, + ACTIONS(3180), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3178), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9815] = 2, + ACTIONS(3184), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3182), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9871] = 4, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(3186), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(2978), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(171), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9931] = 2, + ACTIONS(3190), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3188), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [9987] = 4, + ACTIONS(2825), 1, + sym__last_token_punctuation, + ACTIONS(3192), 1, + anon_sym_LBRACK, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10047] = 2, + ACTIONS(3196), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3194), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10103] = 2, + ACTIONS(3200), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3198), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10159] = 2, + ACTIONS(3204), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3202), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10215] = 2, + ACTIONS(3208), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3206), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10271] = 2, + ACTIONS(3212), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3210), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10327] = 2, + ACTIONS(3216), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3214), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10383] = 4, + ACTIONS(2920), 1, + sym__last_token_punctuation, + ACTIONS(3218), 1, + anon_sym_LBRACK, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10443] = 2, + ACTIONS(3222), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3220), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10499] = 2, + ACTIONS(3180), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3178), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10555] = 2, + ACTIONS(3226), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3224), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10611] = 3, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(2978), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(171), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10669] = 3, + ACTIONS(2962), 1, + sym__last_token_whitespace, + ACTIONS(2908), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2906), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10727] = 2, + ACTIONS(3230), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3228), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10783] = 3, + ACTIONS(3232), 1, + sym__last_token_whitespace, + ACTIONS(2942), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2940), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10841] = 4, + ACTIONS(2925), 1, + sym__last_token_punctuation, + ACTIONS(3234), 1, + anon_sym_LBRACK, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10901] = 3, + ACTIONS(1407), 1, + sym__last_token_punctuation, + ACTIONS(2953), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2951), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [10959] = 2, + ACTIONS(3238), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3236), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11015] = 2, + ACTIONS(3087), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3085), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11071] = 2, + ACTIONS(3242), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3240), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11127] = 2, + ACTIONS(3071), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3069), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11183] = 2, + ACTIONS(3246), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3244), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11239] = 2, + ACTIONS(3250), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3248), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11295] = 3, + ACTIONS(2993), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(2996), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2991), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11353] = 2, + ACTIONS(3000), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2998), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11409] = 3, + ACTIONS(3011), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3014), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3009), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11467] = 2, + ACTIONS(3025), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3023), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11523] = 2, + ACTIONS(3254), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3252), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11579] = 2, + ACTIONS(3258), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3256), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11635] = 4, + ACTIONS(2949), 1, + sym__last_token_punctuation, + ACTIONS(3260), 1, + anon_sym_LBRACK, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11695] = 2, + ACTIONS(3037), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3035), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11751] = 3, + ACTIONS(2949), 1, + sym__last_token_punctuation, + ACTIONS(2611), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2600), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11809] = 2, + ACTIONS(3059), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3057), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11865] = 2, + ACTIONS(3067), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3065), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11921] = 2, + ACTIONS(3264), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3262), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [11977] = 2, + ACTIONS(3075), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3073), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12033] = 2, + ACTIONS(3208), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3206), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12089] = 2, + ACTIONS(3079), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3077), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12145] = 2, + ACTIONS(3083), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3081), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12201] = 2, + ACTIONS(3268), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3266), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12257] = 2, + ACTIONS(3091), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3089), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12313] = 2, + ACTIONS(3112), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3110), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12369] = 2, + ACTIONS(3204), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3202), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12425] = 2, + ACTIONS(3176), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3174), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12481] = 2, + ACTIONS(3116), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3114), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12537] = 2, + ACTIONS(3141), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3139), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12593] = 2, + ACTIONS(3145), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3143), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12649] = 2, + ACTIONS(3153), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3151), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12705] = 2, + ACTIONS(3157), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3155), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12761] = 2, + ACTIONS(3165), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3163), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12817] = 2, + ACTIONS(2989), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2987), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12873] = 2, + ACTIONS(3200), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3198), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12929] = 2, + ACTIONS(3190), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3188), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [12985] = 2, + ACTIONS(3172), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3170), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13041] = 2, + ACTIONS(3196), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3194), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13097] = 2, + ACTIONS(3133), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3131), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13153] = 2, + ACTIONS(3272), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3270), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13209] = 2, + ACTIONS(3212), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3210), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13265] = 2, + ACTIONS(3216), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3214), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13321] = 2, + ACTIONS(3230), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3228), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13377] = 2, + ACTIONS(3238), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3236), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13433] = 2, + ACTIONS(3246), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3244), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13489] = 2, + ACTIONS(3250), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3248), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13545] = 2, + ACTIONS(3254), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3252), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13601] = 2, + ACTIONS(3258), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3256), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13657] = 2, + ACTIONS(3123), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3121), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13713] = 2, + ACTIONS(3102), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3100), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13769] = 2, + ACTIONS(3098), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3096), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13825] = 2, + ACTIONS(3063), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3061), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13881] = 2, + ACTIONS(3047), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3045), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13937] = 2, + ACTIONS(3264), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3262), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13993] = 2, + ACTIONS(3276), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3274), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14049] = 2, + ACTIONS(3184), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3182), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14105] = 2, + ACTIONS(3222), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3220), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14161] = 2, + ACTIONS(3280), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3278), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14217] = 2, + ACTIONS(3284), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3282), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14273] = 2, + ACTIONS(3226), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3224), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14329] = 2, + ACTIONS(3268), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3266), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14385] = 2, + ACTIONS(3242), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3240), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14441] = 2, + ACTIONS(3242), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3240), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14497] = 2, + ACTIONS(3268), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3266), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14553] = 2, + ACTIONS(2985), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2983), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14609] = 2, + ACTIONS(3226), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3224), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14665] = 2, + ACTIONS(3222), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3220), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14721] = 2, + ACTIONS(3184), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3182), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14777] = 2, + ACTIONS(3047), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3045), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14833] = 2, + ACTIONS(3063), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3061), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14889] = 2, + ACTIONS(3098), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3096), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [14945] = 2, + ACTIONS(3102), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3100), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15001] = 2, + ACTIONS(3123), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3121), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15057] = 2, + ACTIONS(3133), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3131), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15113] = 2, + ACTIONS(3172), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3170), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15169] = 2, + ACTIONS(3176), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3174), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15225] = 2, + ACTIONS(3204), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3202), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15281] = 2, + ACTIONS(3208), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3206), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15337] = 2, + ACTIONS(3276), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3274), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15393] = 2, + ACTIONS(3180), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3178), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15449] = 2, + ACTIONS(3284), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3282), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15505] = 2, + ACTIONS(3280), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3278), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15561] = 2, + ACTIONS(3272), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3270), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15617] = 2, + ACTIONS(3276), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3274), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15673] = 2, + ACTIONS(3264), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3262), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15729] = 2, + ACTIONS(3258), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3256), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15785] = 2, + ACTIONS(3254), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3252), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15841] = 2, + ACTIONS(3250), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3248), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15897] = 2, + ACTIONS(3246), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3244), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [15953] = 2, + ACTIONS(3238), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3236), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16009] = 2, + ACTIONS(3230), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3228), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16065] = 3, + ACTIONS(2993), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(2996), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2991), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16123] = 2, + ACTIONS(3000), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2998), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16179] = 3, + ACTIONS(3011), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3014), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3009), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16237] = 2, + ACTIONS(3025), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3023), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16293] = 2, + ACTIONS(3216), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3214), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16349] = 2, + ACTIONS(3037), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3035), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16405] = 2, + ACTIONS(3059), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3057), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16461] = 2, + ACTIONS(3067), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3065), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16517] = 2, + ACTIONS(3071), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3069), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16573] = 2, + ACTIONS(3075), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3073), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16629] = 2, + ACTIONS(3079), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3077), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16685] = 2, + ACTIONS(3083), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3081), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16741] = 2, + ACTIONS(3087), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3085), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16797] = 2, + ACTIONS(3091), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3089), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16853] = 2, + ACTIONS(3112), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3110), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16909] = 2, + ACTIONS(3212), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3210), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [16965] = 2, + ACTIONS(3116), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3114), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17021] = 2, + ACTIONS(3141), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3139), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17077] = 2, + ACTIONS(3145), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3143), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17133] = 2, + ACTIONS(3153), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3151), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17189] = 2, + ACTIONS(3157), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3155), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17245] = 2, + ACTIONS(3165), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3163), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17301] = 2, + ACTIONS(2989), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2987), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17357] = 2, + ACTIONS(3200), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3198), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17413] = 2, + ACTIONS(3190), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3188), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17469] = 2, + ACTIONS(3196), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3194), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17525] = 2, + ACTIONS(3272), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3270), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17581] = 2, + ACTIONS(3212), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3210), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17637] = 2, + ACTIONS(3216), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3214), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17693] = 2, + ACTIONS(3230), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3228), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17749] = 2, + ACTIONS(3238), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3236), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17805] = 2, + ACTIONS(3246), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3244), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17861] = 2, + ACTIONS(3250), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3248), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17917] = 2, + ACTIONS(3254), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3252), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [17973] = 2, + ACTIONS(3258), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3256), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18029] = 2, + ACTIONS(3272), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3270), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18085] = 2, + ACTIONS(3196), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3194), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18141] = 2, + ACTIONS(3190), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3188), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18197] = 2, + ACTIONS(3200), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3198), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18253] = 2, + ACTIONS(3165), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3163), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18309] = 2, + ACTIONS(3264), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3262), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18365] = 2, + ACTIONS(3276), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3274), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18421] = 2, + ACTIONS(3157), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3155), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18477] = 2, + ACTIONS(3153), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3151), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18533] = 2, + ACTIONS(3280), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3278), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18589] = 2, + ACTIONS(3284), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3282), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18645] = 2, + ACTIONS(2985), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2983), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18701] = 2, + ACTIONS(3268), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3266), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18757] = 2, + ACTIONS(3242), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3240), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18813] = 2, + ACTIONS(3145), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3143), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18869] = 2, + ACTIONS(3141), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3139), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18925] = 2, + ACTIONS(3116), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3114), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [18981] = 2, + ACTIONS(3226), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3224), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19037] = 2, + ACTIONS(3222), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3220), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19093] = 2, + ACTIONS(3184), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3182), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19149] = 2, + ACTIONS(3047), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3045), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19205] = 2, + ACTIONS(3063), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3061), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19261] = 2, + ACTIONS(3098), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3096), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19317] = 2, + ACTIONS(3102), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3100), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19373] = 2, + ACTIONS(3123), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3121), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19429] = 2, + ACTIONS(3133), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3131), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19485] = 2, + ACTIONS(3172), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3170), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19541] = 2, + ACTIONS(3176), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3174), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19597] = 2, + ACTIONS(3204), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3202), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19653] = 2, + ACTIONS(3208), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3206), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19709] = 2, + ACTIONS(3280), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3278), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19765] = 2, + ACTIONS(3180), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3178), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19821] = 2, + ACTIONS(3112), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3110), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19877] = 2, + ACTIONS(3091), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3089), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19933] = 2, + ACTIONS(3087), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3085), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [19989] = 2, + ACTIONS(3083), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3081), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20045] = 2, + ACTIONS(3079), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3077), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20101] = 2, + ACTIONS(2985), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2983), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20157] = 2, + ACTIONS(3075), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3073), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20213] = 2, + ACTIONS(3284), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3282), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + ts_builtin_sym_end, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20269] = 2, + ACTIONS(3071), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3069), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20325] = 2, + ACTIONS(3067), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3065), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20381] = 2, + ACTIONS(3059), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3057), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20437] = 3, + ACTIONS(2993), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(2996), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2991), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20495] = 2, + ACTIONS(3000), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2998), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20551] = 3, + ACTIONS(3011), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3014), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3009), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20609] = 2, + ACTIONS(3025), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3023), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20665] = 2, + ACTIONS(3037), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3035), 44, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20721] = 2, + ACTIONS(3059), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3057), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20776] = 2, + ACTIONS(3067), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3065), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20831] = 2, + ACTIONS(3242), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3240), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20886] = 2, + ACTIONS(3254), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3252), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20941] = 2, + ACTIONS(3250), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3248), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [20996] = 2, + ACTIONS(3246), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3244), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21051] = 2, + ACTIONS(3238), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3236), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21106] = 3, + ACTIONS(3011), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(3014), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3009), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21163] = 2, + ACTIONS(3230), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3228), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21218] = 2, + ACTIONS(3212), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3210), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21273] = 2, + ACTIONS(3272), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3270), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21328] = 2, + ACTIONS(3196), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3194), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21383] = 2, + ACTIONS(3190), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3188), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21438] = 2, + ACTIONS(3200), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3198), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21493] = 2, + ACTIONS(2989), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2987), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21548] = 2, + ACTIONS(3165), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3163), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21603] = 2, + ACTIONS(3157), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3155), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21658] = 2, + ACTIONS(3153), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3151), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21713] = 2, + ACTIONS(3145), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3143), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21768] = 2, + ACTIONS(3141), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3139), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21823] = 2, + ACTIONS(3116), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3114), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21878] = 2, + ACTIONS(3204), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3202), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21933] = 4, + ACTIONS(3011), 1, + anon_sym_LPAREN, + ACTIONS(3286), 1, + anon_sym_LBRACK, + ACTIONS(3014), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3009), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [21992] = 2, + ACTIONS(3112), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3110), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22047] = 4, + ACTIONS(3011), 1, + anon_sym_LPAREN, + ACTIONS(3286), 1, + anon_sym_LBRACK, + ACTIONS(3014), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3009), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22106] = 2, + ACTIONS(3087), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3085), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22161] = 2, + ACTIONS(3071), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3069), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22216] = 4, + ACTIONS(3011), 1, + anon_sym_LPAREN, + ACTIONS(3286), 1, + anon_sym_LBRACK, + ACTIONS(3014), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3009), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22275] = 2, + ACTIONS(3091), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3089), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22330] = 2, + ACTIONS(3176), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3174), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22385] = 2, + ACTIONS(3083), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3081), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22440] = 2, + ACTIONS(3079), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3077), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22495] = 2, + ACTIONS(3075), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3073), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22550] = 2, + ACTIONS(3172), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3170), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22605] = 2, + ACTIONS(3258), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3256), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22660] = 2, + ACTIONS(3037), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3035), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22715] = 2, + ACTIONS(3264), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3262), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22770] = 2, + ACTIONS(3276), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3274), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22825] = 2, + ACTIONS(3208), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3206), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22880] = 2, + ACTIONS(3280), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3278), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22935] = 2, + ACTIONS(3133), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3131), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [22990] = 2, + ACTIONS(3025), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3023), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23045] = 4, + ACTIONS(3011), 1, + anon_sym_LPAREN, + ACTIONS(3286), 1, + anon_sym_LBRACK, + ACTIONS(3014), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3009), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23104] = 2, + ACTIONS(3000), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2998), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23159] = 3, + ACTIONS(2993), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(2996), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2991), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23216] = 2, + ACTIONS(3123), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3121), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23271] = 2, + ACTIONS(3284), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3282), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23326] = 2, + ACTIONS(2985), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(2983), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23381] = 2, + ACTIONS(3268), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3266), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23436] = 2, + ACTIONS(3102), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3100), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23491] = 2, + ACTIONS(3029), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3027), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23546] = 2, + ACTIONS(3033), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3031), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23601] = 2, + ACTIONS(3216), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3214), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23656] = 2, + ACTIONS(3098), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3096), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23711] = 2, + ACTIONS(3055), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3053), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23766] = 2, + ACTIONS(3226), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3224), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23821] = 2, + ACTIONS(3222), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3220), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23876] = 2, + ACTIONS(3184), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3182), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23931] = 2, + ACTIONS(3047), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3045), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23986] = 2, + ACTIONS(3063), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3061), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24041] = 2, + ACTIONS(3180), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3178), 43, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24096] = 2, + ACTIONS(3290), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3288), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24150] = 2, + ACTIONS(3294), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3292), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24204] = 2, + ACTIONS(3298), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3296), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24258] = 2, + ACTIONS(3302), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3300), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24312] = 2, + ACTIONS(3306), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3304), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24366] = 2, + ACTIONS(3306), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3304), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24420] = 2, + ACTIONS(3306), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3304), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24474] = 2, + ACTIONS(3310), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3308), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24528] = 2, + ACTIONS(3302), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3300), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24582] = 2, + ACTIONS(3314), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3312), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24636] = 2, + ACTIONS(3310), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3308), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24690] = 2, + ACTIONS(3318), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3316), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24744] = 2, + ACTIONS(3318), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3316), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24798] = 2, + ACTIONS(3318), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3316), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24852] = 2, + ACTIONS(3294), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3292), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24906] = 2, + ACTIONS(3310), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3308), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [24960] = 2, + ACTIONS(3318), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3316), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25014] = 2, + ACTIONS(3314), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3312), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25068] = 3, + ACTIONS(3324), 1, + sym__emphasis_close_star, + ACTIONS(3322), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3320), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25124] = 2, + ACTIONS(3302), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3300), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25178] = 2, + ACTIONS(3298), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3296), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25232] = 2, + ACTIONS(3328), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3326), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25286] = 2, + ACTIONS(3290), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3288), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25340] = 3, + ACTIONS(3334), 1, + sym__emphasis_close_underscore, + ACTIONS(3332), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3330), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25396] = 2, + ACTIONS(3298), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3296), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25450] = 3, + ACTIONS(3336), 1, + sym__emphasis_close_star, + ACTIONS(3322), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3320), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25506] = 2, + ACTIONS(3306), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3304), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25560] = 2, + ACTIONS(3290), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3288), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25614] = 2, + ACTIONS(3298), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3296), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25668] = 2, + ACTIONS(3302), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3300), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25722] = 2, + ACTIONS(3340), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3338), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__strikethrough_close, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25776] = 2, + ACTIONS(3314), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3312), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25830] = 3, + ACTIONS(3342), 1, + sym__emphasis_close_underscore, + ACTIONS(3332), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3330), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25886] = 3, + ACTIONS(3344), 1, + sym__emphasis_close_underscore, + ACTIONS(3332), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3330), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25942] = 2, + ACTIONS(3294), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3292), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [25996] = 2, + ACTIONS(3294), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3292), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26050] = 2, + ACTIONS(3310), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3308), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26104] = 2, + ACTIONS(3332), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3330), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26158] = 2, + ACTIONS(3322), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3320), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26212] = 2, + ACTIONS(3290), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3288), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26266] = 3, + ACTIONS(3346), 1, + sym__emphasis_close_star, + ACTIONS(3322), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3320), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26322] = 3, + ACTIONS(3348), 1, + sym__emphasis_close_star, + ACTIONS(3322), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3320), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26378] = 3, + ACTIONS(3350), 1, + sym__emphasis_close_underscore, + ACTIONS(3332), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3330), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26434] = 2, + ACTIONS(3314), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3312), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26488] = 2, + ACTIONS(3354), 7, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + aux_sym__whitespace_token1, + ACTIONS(3352), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__strikethrough_open, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym_uri_autolink, + sym_email_autolink, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [26542] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3372), 1, + anon_sym_RPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + STATE(967), 1, + sym_link_title, + STATE(970), 1, + sym_link_destination, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [26623] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3380), 1, + anon_sym_RPAREN, + STATE(985), 1, + sym_link_destination, + STATE(986), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [26704] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3382), 1, + anon_sym_RPAREN, + STATE(897), 1, + sym_link_destination, + STATE(901), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(635), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [26785] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3384), 1, + anon_sym_RPAREN, + STATE(960), 1, + sym_link_destination, + STATE(961), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(632), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [26866] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3386), 1, + anon_sym_RPAREN, + STATE(971), 1, + sym_link_destination, + STATE(972), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(618), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [26947] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3388), 1, + anon_sym_RPAREN, + STATE(962), 1, + sym_link_destination, + STATE(977), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(638), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27028] = 15, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3394), 1, + anon_sym_DQUOTE, + ACTIONS(3398), 1, + anon_sym_LPAREN, + ACTIONS(3400), 1, + anon_sym_RPAREN, + ACTIONS(3403), 1, + sym__newline_token, + ACTIONS(3406), 1, + sym__whitespace_ge_2, + ACTIONS(3409), 1, + aux_sym__whitespace_token1, + ACTIONS(3412), 1, + sym__last_token_punctuation, + STATE(750), 1, + sym__soft_line_break, + ACTIONS(3396), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(652), 2, + sym__whitespace, + aux_sym_link_title_repeat1, + STATE(658), 2, + sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(770), 2, + sym_backslash_escape, + sym__word, + ACTIONS(3390), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3392), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27107] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3414), 1, + anon_sym_RPAREN, + STATE(923), 1, + sym_link_title, + STATE(925), 1, + sym_link_destination, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27188] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3416), 1, + anon_sym_RPAREN, + STATE(920), 1, + sym_link_destination, + STATE(921), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27269] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3418), 1, + anon_sym_RPAREN, + STATE(968), 1, + sym_link_destination, + STATE(969), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(637), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27350] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3420), 1, + anon_sym_RPAREN, + STATE(979), 1, + sym_link_title, + STATE(983), 1, + sym_link_destination, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(633), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27431] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3422), 1, + anon_sym_RPAREN, + STATE(916), 1, + sym_link_destination, + STATE(917), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27512] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3424), 1, + anon_sym_RPAREN, + STATE(966), 1, + sym_link_title, + STATE(976), 1, + sym_link_destination, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(624), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27593] = 15, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3394), 1, + anon_sym_SQUOTE, + ACTIONS(3403), 1, + sym__newline_token, + ACTIONS(3406), 1, + sym__whitespace_ge_2, + ACTIONS(3409), 1, + aux_sym__whitespace_token1, + ACTIONS(3412), 1, + sym__last_token_punctuation, + ACTIONS(3432), 1, + anon_sym_LPAREN, + ACTIONS(3434), 1, + anon_sym_RPAREN, + STATE(745), 1, + sym__soft_line_break, + ACTIONS(3430), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(655), 2, + sym__whitespace, + aux_sym_link_title_repeat2, + STATE(658), 2, + sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(766), 2, + sym_backslash_escape, + sym__word, + ACTIONS(3426), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3428), 27, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27672] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3437), 1, + anon_sym_RPAREN, + STATE(904), 1, + sym_link_destination, + STATE(905), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(628), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27753] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3439), 1, + anon_sym_RPAREN, + STATE(937), 1, + sym_link_title, + STATE(942), 1, + sym_link_destination, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27834] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3441), 1, + anon_sym_RPAREN, + STATE(943), 1, + sym_link_title, + STATE(944), 1, + sym_link_destination, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27915] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3443), 1, + anon_sym_RPAREN, + STATE(906), 1, + sym_link_destination, + STATE(907), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(625), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [27996] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3445), 1, + anon_sym_RPAREN, + STATE(978), 1, + sym_link_title, + STATE(988), 1, + sym_link_destination, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [28077] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3447), 1, + anon_sym_RPAREN, + STATE(902), 1, + sym_link_destination, + STATE(903), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(617), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [28158] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3449), 1, + anon_sym_RPAREN, + STATE(981), 1, + sym_link_destination, + STATE(982), 1, + sym_link_title, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [28239] = 16, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3362), 1, + anon_sym_LT, + ACTIONS(3364), 1, + anon_sym_DQUOTE, + ACTIONS(3368), 1, + anon_sym_SQUOTE, + ACTIONS(3370), 1, + anon_sym_LPAREN, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3451), 1, + anon_sym_RPAREN, + STATE(912), 1, + sym_link_title, + STATE(922), 1, + sym_link_destination, + ACTIONS(3366), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(662), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3358), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3360), 25, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [28320] = 3, + ACTIONS(3453), 1, + sym__last_token_punctuation, + ACTIONS(2611), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2600), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [28374] = 13, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3463), 1, + anon_sym_RPAREN, + STATE(772), 1, + sym__soft_line_break, + ACTIONS(3459), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(660), 2, + sym__whitespace, + aux_sym_link_title_repeat3, + STATE(731), 2, + sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + STATE(760), 2, + sym_backslash_escape, + sym__word, + ACTIONS(3455), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(3457), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [28448] = 3, + ACTIONS(3465), 1, + sym__last_token_whitespace, + ACTIONS(2908), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2906), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [28502] = 3, + ACTIONS(3467), 1, + sym__last_token_whitespace, + ACTIONS(2942), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2940), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [28556] = 2, + ACTIONS(3087), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3085), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [28607] = 2, + ACTIONS(3180), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3178), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [28658] = 2, + ACTIONS(3071), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3069), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [28709] = 2, + ACTIONS(3059), 4, + anon_sym_LT, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3057), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__declaration_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [28760] = 10, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3475), 1, + anon_sym_SQUOTE, + STATE(745), 1, + sym__soft_line_break, + ACTIONS(3473), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3469), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(655), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(3471), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [28826] = 10, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3475), 1, + anon_sym_DQUOTE, + STATE(750), 1, + sym__soft_line_break, + ACTIONS(3481), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3477), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(652), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(3479), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [28892] = 10, + ACTIONS(3483), 1, + sym__backslash_escape, + ACTIONS(3495), 1, + anon_sym_LPAREN, + ACTIONS(3498), 1, + anon_sym_RPAREN, + ACTIONS(3503), 1, + aux_sym__whitespace_token1, + ACTIONS(3505), 1, + sym__last_token_punctuation, + ACTIONS(3492), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3501), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3486), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(731), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3489), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [28958] = 10, + ACTIONS(3507), 1, + sym__backslash_escape, + ACTIONS(3519), 1, + anon_sym_LPAREN, + ACTIONS(3522), 1, + anon_sym_RPAREN, + ACTIONS(3527), 1, + aux_sym__whitespace_token1, + ACTIONS(3529), 1, + sym__last_token_punctuation, + ACTIONS(3516), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3525), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3510), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(731), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3513), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29024] = 10, + ACTIONS(3531), 1, + sym__backslash_escape, + ACTIONS(3543), 1, + anon_sym_SQUOTE, + ACTIONS(3545), 1, + sym__newline_token, + ACTIONS(3548), 1, + sym__whitespace_ge_2, + ACTIONS(3551), 1, + aux_sym__whitespace_token1, + STATE(745), 1, + sym__soft_line_break, + ACTIONS(3540), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3534), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(651), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(3537), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [29090] = 10, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3556), 1, + anon_sym_DQUOTE, + STATE(750), 1, + sym__soft_line_break, + ACTIONS(3481), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3554), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(654), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(3479), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [29156] = 9, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3412), 1, + sym__last_token_punctuation, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + aux_sym__whitespace_token1, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3564), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3558), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(658), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3560), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29220] = 10, + ACTIONS(3568), 1, + sym__backslash_escape, + ACTIONS(3577), 1, + anon_sym_DQUOTE, + ACTIONS(3582), 1, + sym__newline_token, + ACTIONS(3585), 1, + sym__whitespace_ge_2, + ACTIONS(3588), 1, + aux_sym__whitespace_token1, + STATE(750), 1, + sym__soft_line_break, + ACTIONS(3579), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3571), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(654), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(3574), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [29286] = 10, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3556), 1, + anon_sym_SQUOTE, + STATE(745), 1, + sym__soft_line_break, + ACTIONS(3473), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3591), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(651), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(3471), 29, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [29352] = 10, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3475), 1, + anon_sym_RPAREN, + STATE(772), 1, + sym__soft_line_break, + ACTIONS(3597), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3593), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(660), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(3595), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29417] = 8, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3603), 1, + aux_sym__whitespace_token1, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3601), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3599), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(663), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3560), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29478] = 8, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3607), 1, + aux_sym__whitespace_token1, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3605), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3599), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(663), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3560), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29539] = 8, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3607), 1, + aux_sym__whitespace_token1, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3605), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3609), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(657), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3560), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29600] = 10, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3374), 1, + sym__newline_token, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3556), 1, + anon_sym_RPAREN, + STATE(772), 1, + sym__soft_line_break, + ACTIONS(3597), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3611), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(661), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(3595), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29665] = 10, + ACTIONS(3613), 1, + sym__backslash_escape, + ACTIONS(3625), 1, + anon_sym_RPAREN, + ACTIONS(3627), 1, + sym__newline_token, + ACTIONS(3630), 1, + sym__whitespace_ge_2, + ACTIONS(3633), 1, + aux_sym__whitespace_token1, + STATE(772), 1, + sym__soft_line_break, + ACTIONS(3622), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3616), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(661), 4, + sym_backslash_escape, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(3619), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29730] = 8, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3566), 1, + aux_sym__whitespace_token1, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3564), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3558), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(658), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3560), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29791] = 8, + ACTIONS(3636), 1, + sym__backslash_escape, + ACTIONS(3648), 1, + anon_sym_LPAREN, + ACTIONS(3653), 1, + aux_sym__whitespace_token1, + ACTIONS(3645), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3651), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3639), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(663), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3642), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29852] = 8, + ACTIONS(3655), 1, + sym__backslash_escape, + ACTIONS(3664), 1, + anon_sym_GT, + ACTIONS(3669), 1, + sym__whitespace_ge_2, + ACTIONS(3672), 1, + aux_sym__whitespace_token1, + ACTIONS(3666), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3658), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(664), 5, + sym_backslash_escape, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(3661), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [29912] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3681), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3689), 1, + sym__last_token_punctuation, + ACTIONS(3687), 2, + sym__word_no_digit, + sym__digits, + STATE(724), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [29974] = 7, + ACTIONS(3691), 1, + sym__newline_token, + ACTIONS(3693), 1, + sym__whitespace_ge_2, + ACTIONS(3695), 1, + aux_sym__whitespace_token1, + ACTIONS(3699), 1, + sym__code_span_close, + ACTIONS(3697), 2, + sym__word_no_digit, + sym__digits, + STATE(671), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2624), 32, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30032] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3701), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3705), 1, + sym__last_token_punctuation, + ACTIONS(3703), 2, + sym__word_no_digit, + sym__digits, + STATE(708), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30094] = 7, + ACTIONS(3691), 1, + sym__newline_token, + ACTIONS(3693), 1, + sym__whitespace_ge_2, + ACTIONS(3695), 1, + aux_sym__whitespace_token1, + ACTIONS(3707), 1, + sym__code_span_close, + ACTIONS(3697), 2, + sym__word_no_digit, + sym__digits, + STATE(671), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2624), 32, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30152] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3709), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3713), 1, + sym__last_token_punctuation, + ACTIONS(3711), 2, + sym__word_no_digit, + sym__digits, + STATE(696), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30214] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3715), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3719), 1, + sym__last_token_punctuation, + ACTIONS(3717), 2, + sym__word_no_digit, + sym__digits, + STATE(697), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30276] = 7, + ACTIONS(3724), 1, + sym__newline_token, + ACTIONS(3727), 1, + sym__whitespace_ge_2, + ACTIONS(3730), 1, + aux_sym__whitespace_token1, + ACTIONS(3736), 1, + sym__code_span_close, + ACTIONS(3733), 2, + sym__word_no_digit, + sym__digits, + STATE(671), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(3721), 32, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30334] = 8, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3742), 1, + anon_sym_GT, + ACTIONS(3744), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3738), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(676), 5, + sym_backslash_escape, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(3740), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30394] = 7, + ACTIONS(3691), 1, + sym__newline_token, + ACTIONS(3693), 1, + sym__whitespace_ge_2, + ACTIONS(3695), 1, + aux_sym__whitespace_token1, + ACTIONS(3746), 1, + sym__code_span_close, + ACTIONS(3697), 2, + sym__word_no_digit, + sym__digits, + STATE(671), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2624), 32, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30452] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3748), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3752), 1, + sym__last_token_punctuation, + ACTIONS(3750), 2, + sym__word_no_digit, + sym__digits, + STATE(723), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30514] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3754), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3758), 1, + sym__last_token_punctuation, + ACTIONS(3756), 2, + sym__word_no_digit, + sym__digits, + STATE(706), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30576] = 8, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3376), 1, + sym__whitespace_ge_2, + ACTIONS(3378), 1, + aux_sym__whitespace_token1, + ACTIONS(3762), 1, + anon_sym_GT, + ACTIONS(3744), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3760), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(664), 5, + sym_backslash_escape, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(3740), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30636] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3764), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3768), 1, + sym__last_token_punctuation, + ACTIONS(3766), 2, + sym__word_no_digit, + sym__digits, + STATE(714), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30698] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3770), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3774), 1, + sym__last_token_punctuation, + ACTIONS(3772), 2, + sym__word_no_digit, + sym__digits, + STATE(702), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30760] = 7, + ACTIONS(3691), 1, + sym__newline_token, + ACTIONS(3693), 1, + sym__whitespace_ge_2, + ACTIONS(3695), 1, + aux_sym__whitespace_token1, + ACTIONS(3776), 1, + sym__code_span_close, + ACTIONS(3697), 2, + sym__word_no_digit, + sym__digits, + STATE(671), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2624), 32, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30818] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3778), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3782), 1, + sym__last_token_punctuation, + ACTIONS(3780), 2, + sym__word_no_digit, + sym__digits, + STATE(712), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30880] = 7, + ACTIONS(3691), 1, + sym__newline_token, + ACTIONS(3693), 1, + sym__whitespace_ge_2, + ACTIONS(3695), 1, + aux_sym__whitespace_token1, + ACTIONS(3784), 1, + sym__code_span_close, + ACTIONS(3697), 2, + sym__word_no_digit, + sym__digits, + STATE(671), 5, + sym__text, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym_code_span_repeat1, + ACTIONS(2624), 32, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [30938] = 9, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3786), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3790), 1, + sym__last_token_punctuation, + ACTIONS(3788), 2, + sym__word_no_digit, + sym__digits, + STATE(717), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31000] = 6, + ACTIONS(3796), 1, + sym__newline_token, + ACTIONS(3799), 1, + sym__whitespace_ge_2, + ACTIONS(3802), 1, + aux_sym__whitespace_token1, + ACTIONS(3794), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(683), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3792), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__word_no_digit, + sym__digits, + [31056] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3681), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3687), 2, + sym__word_no_digit, + sym__digits, + STATE(724), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31115] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3778), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3780), 2, + sym__word_no_digit, + sym__digits, + STATE(712), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31174] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3709), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3711), 2, + sym__word_no_digit, + sym__digits, + STATE(696), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31233] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3701), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3703), 2, + sym__word_no_digit, + sym__digits, + STATE(708), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31292] = 8, + ACTIONS(3805), 1, + anon_sym_QMARK, + ACTIONS(3807), 1, + sym__newline_token, + ACTIONS(3809), 1, + anon_sym_QMARK_GT, + ACTIONS(3811), 1, + sym__whitespace_ge_2, + ACTIONS(3813), 1, + aux_sym__whitespace_token1, + ACTIONS(3815), 2, + sym__word_no_digit, + sym__digits, + STATE(721), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2691), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31351] = 8, + ACTIONS(3820), 1, + anon_sym_RBRACK, + ACTIONS(3823), 1, + sym__newline_token, + ACTIONS(3826), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3828), 1, + sym__whitespace_ge_2, + ACTIONS(3831), 1, + aux_sym__whitespace_token1, + ACTIONS(3834), 2, + sym__word_no_digit, + sym__digits, + STATE(689), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(3817), 31, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31410] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3837), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31469] = 8, + ACTIONS(2700), 1, + anon_sym_RBRACK, + ACTIONS(3841), 1, + sym__newline_token, + ACTIONS(3843), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3845), 1, + sym__whitespace_ge_2, + ACTIONS(3847), 1, + aux_sym__whitespace_token1, + ACTIONS(3849), 2, + sym__word_no_digit, + sym__digits, + STATE(689), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 31, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31528] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3715), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3717), 2, + sym__word_no_digit, + sym__digits, + STATE(697), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31587] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3851), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31646] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3853), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31705] = 8, + ACTIONS(3858), 1, + anon_sym_DASH, + ACTIONS(3861), 1, + sym__newline_token, + ACTIONS(3864), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3866), 1, + sym__whitespace_ge_2, + ACTIONS(3869), 1, + aux_sym__whitespace_token1, + ACTIONS(3872), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3855), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31764] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3875), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31823] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3877), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31882] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3875), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3879), 2, + sym__word_no_digit, + sym__digits, + STATE(690), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [31941] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3881), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3883), 2, + sym__word_no_digit, + sym__digits, + STATE(694), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32000] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3877), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3885), 2, + sym__word_no_digit, + sym__digits, + STATE(711), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32059] = 8, + ACTIONS(2700), 1, + anon_sym_RBRACK, + ACTIONS(3841), 1, + sym__newline_token, + ACTIONS(3845), 1, + sym__whitespace_ge_2, + ACTIONS(3847), 1, + aux_sym__whitespace_token1, + ACTIONS(3887), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3849), 2, + sym__word_no_digit, + sym__digits, + STATE(689), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 31, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32118] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3881), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32177] = 8, + ACTIONS(3805), 1, + anon_sym_QMARK, + ACTIONS(3807), 1, + sym__newline_token, + ACTIONS(3811), 1, + sym__whitespace_ge_2, + ACTIONS(3813), 1, + aux_sym__whitespace_token1, + ACTIONS(3889), 1, + anon_sym_QMARK_GT, + ACTIONS(3815), 2, + sym__word_no_digit, + sym__digits, + STATE(721), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2691), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32236] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3748), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3750), 2, + sym__word_no_digit, + sym__digits, + STATE(723), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32295] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3891), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3893), 2, + sym__word_no_digit, + sym__digits, + STATE(693), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32354] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3891), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32413] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3764), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3766), 2, + sym__word_no_digit, + sym__digits, + STATE(714), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32472] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3764), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32531] = 8, + ACTIONS(2700), 1, + anon_sym_RBRACK, + ACTIONS(3841), 1, + sym__newline_token, + ACTIONS(3845), 1, + sym__whitespace_ge_2, + ACTIONS(3847), 1, + aux_sym__whitespace_token1, + ACTIONS(3895), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3849), 2, + sym__word_no_digit, + sym__digits, + STATE(689), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 31, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32590] = 8, + ACTIONS(3805), 1, + anon_sym_QMARK, + ACTIONS(3807), 1, + sym__newline_token, + ACTIONS(3811), 1, + sym__whitespace_ge_2, + ACTIONS(3813), 1, + aux_sym__whitespace_token1, + ACTIONS(3897), 1, + anon_sym_QMARK_GT, + ACTIONS(3815), 2, + sym__word_no_digit, + sym__digits, + STATE(721), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2691), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32649] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3899), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32708] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3754), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32767] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3754), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3756), 2, + sym__word_no_digit, + sym__digits, + STATE(706), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32826] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3901), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32885] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3901), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3903), 2, + sym__word_no_digit, + sym__digits, + STATE(725), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [32944] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3786), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3788), 2, + sym__word_no_digit, + sym__digits, + STATE(717), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33003] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3709), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33062] = 8, + ACTIONS(3805), 1, + anon_sym_QMARK, + ACTIONS(3807), 1, + sym__newline_token, + ACTIONS(3811), 1, + sym__whitespace_ge_2, + ACTIONS(3813), 1, + aux_sym__whitespace_token1, + ACTIONS(3905), 1, + anon_sym_QMARK_GT, + ACTIONS(3815), 2, + sym__word_no_digit, + sym__digits, + STATE(721), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2691), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33121] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3770), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3772), 2, + sym__word_no_digit, + sym__digits, + STATE(702), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33180] = 8, + ACTIONS(2700), 1, + anon_sym_RBRACK, + ACTIONS(3841), 1, + sym__newline_token, + ACTIONS(3845), 1, + sym__whitespace_ge_2, + ACTIONS(3847), 1, + aux_sym__whitespace_token1, + ACTIONS(3907), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3849), 2, + sym__word_no_digit, + sym__digits, + STATE(689), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 31, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33239] = 8, + ACTIONS(3826), 1, + anon_sym_QMARK_GT, + ACTIONS(3912), 1, + anon_sym_QMARK, + ACTIONS(3915), 1, + sym__newline_token, + ACTIONS(3918), 1, + sym__whitespace_ge_2, + ACTIONS(3921), 1, + aux_sym__whitespace_token1, + ACTIONS(3924), 2, + sym__word_no_digit, + sym__digits, + STATE(721), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(3909), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33298] = 8, + ACTIONS(3805), 1, + anon_sym_QMARK, + ACTIONS(3807), 1, + sym__newline_token, + ACTIONS(3811), 1, + sym__whitespace_ge_2, + ACTIONS(3813), 1, + aux_sym__whitespace_token1, + ACTIONS(3927), 1, + anon_sym_QMARK_GT, + ACTIONS(3815), 2, + sym__word_no_digit, + sym__digits, + STATE(721), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2691), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33357] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3715), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33416] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3770), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33475] = 8, + ACTIONS(3677), 1, + anon_sym_DASH, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(3929), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3839), 2, + sym__word_no_digit, + sym__digits, + STATE(695), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__html_comment_repeat1, + ACTIONS(3675), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33534] = 8, + ACTIONS(2700), 1, + anon_sym_RBRACK, + ACTIONS(3841), 1, + sym__newline_token, + ACTIONS(3845), 1, + sym__whitespace_ge_2, + ACTIONS(3847), 1, + aux_sym__whitespace_token1, + ACTIONS(3931), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3849), 2, + sym__word_no_digit, + sym__digits, + STATE(689), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__processing_instruction_repeat1, + ACTIONS(2698), 31, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33593] = 7, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(3943), 2, + sym__word_no_digit, + sym__digits, + STATE(743), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__attribute_value_repeat2, + ACTIONS(3933), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33649] = 3, + ACTIONS(3949), 1, + sym__last_token_punctuation, + ACTIONS(3947), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3945), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [33697] = 3, + ACTIONS(3957), 1, + sym__last_token_punctuation, + ACTIONS(3954), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3951), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [33745] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(3961), 1, + anon_sym_GT, + ACTIONS(3963), 2, + sym__word_no_digit, + sym__digits, + STATE(752), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33801] = 7, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3965), 1, + anon_sym_RPAREN, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3599), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(663), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3560), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [33857] = 3, + ACTIONS(3529), 1, + sym__last_token_punctuation, + ACTIONS(3527), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3525), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [33905] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(3969), 1, + anon_sym_SQUOTE, + ACTIONS(3971), 2, + sym__word_no_digit, + sym__digits, + STATE(740), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__attribute_value_repeat1, + ACTIONS(3967), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [33961] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(3973), 1, + anon_sym_GT, + ACTIONS(3975), 2, + sym__word_no_digit, + sym__digits, + STATE(751), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34017] = 6, + ACTIONS(3945), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + aux_sym__whitespace_token1, + ACTIONS(3987), 1, + sym__last_token_punctuation, + ACTIONS(3980), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3983), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3977), 34, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__word_no_digit, + sym__digits, + [34071] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(3989), 1, + anon_sym_GT, + ACTIONS(3991), 2, + sym__word_no_digit, + sym__digits, + STATE(755), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34127] = 7, + ACTIONS(3935), 1, + anon_sym_SQUOTE, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(3993), 2, + sym__word_no_digit, + sym__digits, + STATE(733), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__attribute_value_repeat1, + ACTIONS(3967), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34183] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(3995), 1, + anon_sym_GT, + ACTIONS(3997), 2, + sym__word_no_digit, + sym__digits, + STATE(736), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34239] = 5, + ACTIONS(3949), 1, + sym__last_token_punctuation, + ACTIONS(4002), 1, + aux_sym__whitespace_token1, + ACTIONS(3947), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3999), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3945), 34, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + sym__word_no_digit, + sym__digits, + [34291] = 7, + ACTIONS(4008), 1, + anon_sym_SQUOTE, + ACTIONS(4010), 1, + sym__newline_token, + ACTIONS(4013), 1, + sym__whitespace_ge_2, + ACTIONS(4016), 1, + aux_sym__whitespace_token1, + ACTIONS(4019), 2, + sym__word_no_digit, + sym__digits, + STATE(740), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__attribute_value_repeat1, + ACTIONS(4005), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34347] = 7, + ACTIONS(3356), 1, + sym__backslash_escape, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(4024), 1, + anon_sym_RPAREN, + ACTIONS(3562), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4022), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + STATE(731), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(3560), 28, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [34403] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(4026), 1, + anon_sym_GT, + ACTIONS(3991), 2, + sym__word_no_digit, + sym__digits, + STATE(755), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34459] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(3969), 1, + anon_sym_DQUOTE, + ACTIONS(4028), 2, + sym__word_no_digit, + sym__digits, + STATE(748), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__attribute_value_repeat2, + ACTIONS(3933), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34515] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(4030), 1, + anon_sym_GT, + ACTIONS(4032), 2, + sym__word_no_digit, + sym__digits, + STATE(742), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34571] = 4, + ACTIONS(4034), 1, + sym__newline_token, + STATE(1031), 1, + sym__soft_line_break, + ACTIONS(3503), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3501), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [34621] = 3, + ACTIONS(4037), 1, + sym__last_token_whitespace, + ACTIONS(2942), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2940), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [34669] = 3, + ACTIONS(3505), 1, + sym__last_token_punctuation, + ACTIONS(3503), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3501), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [34717] = 7, + ACTIONS(4042), 1, + anon_sym_DQUOTE, + ACTIONS(4044), 1, + sym__newline_token, + ACTIONS(4047), 1, + sym__whitespace_ge_2, + ACTIONS(4050), 1, + aux_sym__whitespace_token1, + ACTIONS(4053), 2, + sym__word_no_digit, + sym__digits, + STATE(748), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__attribute_value_repeat2, + ACTIONS(4039), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34773] = 3, + ACTIONS(4056), 1, + sym__last_token_whitespace, + ACTIONS(2908), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2906), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [34821] = 4, + ACTIONS(4058), 1, + sym__newline_token, + STATE(1033), 1, + sym__soft_line_break, + ACTIONS(3527), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3525), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [34871] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(4061), 1, + anon_sym_GT, + ACTIONS(3991), 2, + sym__word_no_digit, + sym__digits, + STATE(755), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34927] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(4063), 1, + anon_sym_GT, + ACTIONS(3991), 2, + sym__word_no_digit, + sym__digits, + STATE(755), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [34983] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(4065), 1, + anon_sym_GT, + ACTIONS(4067), 2, + sym__word_no_digit, + sym__digits, + STATE(754), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [35039] = 7, + ACTIONS(3937), 1, + sym__newline_token, + ACTIONS(3939), 1, + sym__whitespace_ge_2, + ACTIONS(3941), 1, + aux_sym__whitespace_token1, + ACTIONS(4069), 1, + anon_sym_GT, + ACTIONS(3991), 2, + sym__word_no_digit, + sym__digits, + STATE(755), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(3959), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [35095] = 7, + ACTIONS(4074), 1, + anon_sym_GT, + ACTIONS(4076), 1, + sym__newline_token, + ACTIONS(4079), 1, + sym__whitespace_ge_2, + ACTIONS(4082), 1, + aux_sym__whitespace_token1, + ACTIONS(4085), 2, + sym__word_no_digit, + sym__digits, + STATE(755), 4, + sym__whitespace, + sym__word, + sym__soft_line_break, + aux_sym__declaration_repeat1, + ACTIONS(4071), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [35151] = 3, + ACTIONS(4094), 1, + sym__last_token_punctuation, + ACTIONS(4091), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4088), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35199] = 3, + ACTIONS(4096), 1, + sym__last_token_punctuation, + ACTIONS(3985), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3983), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35246] = 2, + ACTIONS(3653), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3651), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35291] = 2, + ACTIONS(4100), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4098), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35336] = 5, + ACTIONS(3945), 1, + anon_sym_LPAREN, + ACTIONS(3985), 1, + aux_sym__whitespace_token1, + ACTIONS(3980), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(3983), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(3977), 34, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__word_no_digit, + sym__digits, + [35387] = 2, + ACTIONS(4105), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4102), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35432] = 2, + ACTIONS(4108), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3577), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35477] = 4, + ACTIONS(4117), 1, + aux_sym__whitespace_token1, + ACTIONS(4112), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4114), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(4110), 34, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + sym__word_no_digit, + sym__digits, + [35526] = 2, + ACTIONS(3087), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3085), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35571] = 2, + ACTIONS(3071), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3069), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35616] = 2, + ACTIONS(4091), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4088), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35661] = 2, + ACTIONS(4123), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4120), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35706] = 2, + ACTIONS(3180), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3178), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35751] = 2, + ACTIONS(4126), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3543), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35796] = 2, + ACTIONS(3954), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3951), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35841] = 5, + ACTIONS(3651), 1, + anon_sym_LPAREN, + ACTIONS(4134), 1, + aux_sym__whitespace_token1, + ACTIONS(3625), 2, + sym__newline_token, + sym__whitespace_ge_2, + ACTIONS(4131), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4128), 34, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__word_no_digit, + sym__digits, + [35892] = 4, + ACTIONS(4136), 1, + sym__newline_token, + STATE(1030), 1, + sym__soft_line_break, + ACTIONS(3985), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3983), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35941] = 2, + ACTIONS(4141), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4139), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [35986] = 2, + ACTIONS(4112), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4110), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36031] = 2, + ACTIONS(4145), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4143), 37, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36076] = 3, + ACTIONS(4151), 1, + sym__last_token_punctuation, + ACTIONS(4149), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(4147), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36122] = 3, + ACTIONS(4157), 1, + sym__last_token_punctuation, + ACTIONS(4155), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(4153), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36168] = 2, + ACTIONS(4134), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3625), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36212] = 3, + ACTIONS(4161), 1, + sym__last_token_punctuation, + ACTIONS(4159), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(3864), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36258] = 3, + ACTIONS(4163), 1, + sym__last_token_punctuation, + ACTIONS(4155), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(4153), 36, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36304] = 3, + ACTIONS(4165), 1, + sym__last_token_whitespace, + ACTIONS(2908), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(2906), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36350] = 3, + ACTIONS(4171), 1, + sym__last_token_punctuation, + ACTIONS(4169), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4167), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36396] = 3, + ACTIONS(4175), 1, + aux_sym__whitespace_token1, + ACTIONS(4177), 1, + sym__last_token_punctuation, + ACTIONS(4173), 37, + sym__code_span_close, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36442] = 3, + ACTIONS(2908), 1, + aux_sym__whitespace_token1, + ACTIONS(4179), 1, + sym__last_token_whitespace, + ACTIONS(2906), 37, + sym__code_span_close, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36488] = 3, + ACTIONS(4181), 1, + sym__last_token_whitespace, + ACTIONS(2942), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(2940), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36534] = 3, + ACTIONS(4183), 1, + sym__last_token_whitespace, + ACTIONS(2942), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(2940), 36, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36580] = 3, + ACTIONS(4185), 1, + sym__last_token_whitespace, + ACTIONS(2908), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(2906), 36, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36626] = 3, + ACTIONS(4187), 1, + sym__last_token_whitespace, + ACTIONS(2942), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(2940), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36672] = 6, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4151), 2, + sym__word_no_digit, + sym__digits, + STATE(794), 3, + sym__whitespace, + sym__word, + sym__soft_line_break, + ACTIONS(4189), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [36724] = 3, + ACTIONS(2942), 1, + aux_sym__whitespace_token1, + ACTIONS(4191), 1, + sym__last_token_whitespace, + ACTIONS(2940), 37, + sym__code_span_close, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36770] = 2, + ACTIONS(4195), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4193), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36814] = 3, + ACTIONS(4197), 1, + sym__last_token_whitespace, + ACTIONS(2908), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(2906), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36860] = 2, + ACTIONS(4201), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4199), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36903] = 2, + ACTIONS(4159), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(3864), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36946] = 2, + ACTIONS(4203), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(3826), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [36989] = 3, + ACTIONS(4207), 1, + aux_sym__whitespace_token1, + ACTIONS(4209), 1, + sym__last_token_punctuation, + ACTIONS(4205), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37034] = 2, + ACTIONS(3087), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(3085), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37077] = 3, + ACTIONS(4213), 1, + aux_sym__whitespace_token1, + ACTIONS(4215), 1, + sym__last_token_punctuation, + ACTIONS(4211), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37122] = 2, + ACTIONS(3071), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(3069), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37165] = 2, + ACTIONS(4219), 1, + aux_sym__whitespace_token1, + ACTIONS(4217), 37, + sym__code_span_close, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37208] = 2, + ACTIONS(3087), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(3085), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37251] = 2, + ACTIONS(3087), 1, + aux_sym__whitespace_token1, + ACTIONS(3085), 37, + sym__code_span_close, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37294] = 2, + ACTIONS(3071), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(3069), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37337] = 3, + ACTIONS(2942), 1, + aux_sym__whitespace_token1, + ACTIONS(4221), 1, + sym__last_token_whitespace, + ACTIONS(2940), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37382] = 3, + ACTIONS(2908), 1, + aux_sym__whitespace_token1, + ACTIONS(4223), 1, + sym__last_token_whitespace, + ACTIONS(2906), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37427] = 2, + ACTIONS(3071), 1, + aux_sym__whitespace_token1, + ACTIONS(3069), 37, + sym__code_span_close, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37470] = 3, + ACTIONS(4227), 1, + aux_sym__whitespace_token1, + ACTIONS(4229), 1, + sym__last_token_punctuation, + ACTIONS(4225), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37515] = 2, + ACTIONS(4233), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(4231), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37558] = 2, + ACTIONS(3071), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(3069), 36, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37601] = 2, + ACTIONS(3087), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(3085), 36, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37644] = 2, + ACTIONS(4203), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(3826), 36, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37687] = 2, + ACTIONS(3087), 1, + aux_sym__whitespace_token1, + ACTIONS(3085), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37729] = 2, + ACTIONS(4235), 1, + aux_sym__whitespace_token1, + ACTIONS(4008), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37771] = 2, + ACTIONS(4237), 1, + aux_sym__whitespace_token1, + ACTIONS(4042), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37813] = 2, + ACTIONS(4239), 1, + aux_sym__whitespace_token1, + ACTIONS(4074), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37855] = 2, + ACTIONS(3071), 1, + aux_sym__whitespace_token1, + ACTIONS(3069), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [37897] = 1, + ACTIONS(4241), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [37931] = 1, + ACTIONS(4243), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [37965] = 1, + ACTIONS(4245), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [37999] = 1, + ACTIONS(4247), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [38033] = 1, + ACTIONS(4249), 31, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [38067] = 5, + ACTIONS(4251), 1, + sym__newline_token, + ACTIONS(4254), 1, + sym__whitespace_ge_2, + ACTIONS(4257), 1, + aux_sym__whitespace_token1, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + ACTIONS(3792), 6, + anon_sym_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + [38090] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4266), 1, + anon_sym_RPAREN, + STATE(893), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38120] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4268), 1, + anon_sym_RPAREN, + STATE(927), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38150] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4270), 1, + anon_sym_RPAREN, + STATE(924), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38180] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4272), 1, + anon_sym_RPAREN, + STATE(956), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38210] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4274), 1, + anon_sym_RPAREN, + STATE(964), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38240] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4276), 1, + anon_sym_RPAREN, + STATE(989), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38270] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4278), 1, + anon_sym_RPAREN, + STATE(949), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38300] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4280), 1, + anon_sym_RPAREN, + STATE(918), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38330] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, + anon_sym_RPAREN, + STATE(890), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38360] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_RPAREN, + STATE(883), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38390] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4286), 1, + anon_sym_RPAREN, + STATE(881), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38420] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4288), 1, + anon_sym_RPAREN, + STATE(913), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38450] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4290), 1, + anon_sym_RPAREN, + STATE(896), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38480] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4292), 1, + anon_sym_RPAREN, + STATE(940), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38510] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4294), 1, + anon_sym_RPAREN, + STATE(938), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38540] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4296), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38570] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4298), 1, + anon_sym_RPAREN, + STATE(931), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38600] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4300), 1, + anon_sym_RPAREN, + STATE(873), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38630] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4302), 1, + anon_sym_RPAREN, + STATE(876), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38660] = 9, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4260), 1, + anon_sym_DQUOTE, + ACTIONS(4262), 1, + anon_sym_SQUOTE, + ACTIONS(4264), 1, + anon_sym_LPAREN, + ACTIONS(4304), 1, + anon_sym_RPAREN, + STATE(933), 1, + sym_link_title, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38690] = 8, + ACTIONS(4306), 1, + anon_sym_DQUOTE, + ACTIONS(4308), 1, + anon_sym_SQUOTE, + ACTIONS(4310), 1, + sym__newline_token, + ACTIONS(4312), 1, + aux_sym__attribute_value_token1, + ACTIONS(4314), 1, + sym__whitespace_ge_2, + ACTIONS(4316), 1, + aux_sym__whitespace_token1, + STATE(998), 1, + sym__attribute_value, + STATE(844), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38717] = 8, + ACTIONS(4306), 1, + anon_sym_DQUOTE, + ACTIONS(4308), 1, + anon_sym_SQUOTE, + ACTIONS(4310), 1, + sym__newline_token, + ACTIONS(4314), 1, + sym__whitespace_ge_2, + ACTIONS(4316), 1, + aux_sym__whitespace_token1, + ACTIONS(4318), 1, + aux_sym__attribute_value_token1, + STATE(997), 1, + sym__attribute_value, + STATE(866), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38744] = 7, + ACTIONS(4320), 1, + anon_sym_GT, + ACTIONS(4322), 1, + anon_sym_SLASH, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + STATE(855), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(868), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38769] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4330), 1, + anon_sym_GT, + ACTIONS(4332), 1, + anon_sym_SLASH, + STATE(847), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(870), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38794] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4334), 1, + anon_sym_GT, + ACTIONS(4336), 1, + anon_sym_SLASH, + STATE(853), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(867), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38819] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4338), 1, + anon_sym_GT, + ACTIONS(4340), 1, + anon_sym_SLASH, + STATE(853), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(869), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38844] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4342), 1, + anon_sym_GT, + ACTIONS(4344), 1, + anon_sym_SLASH, + STATE(853), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(872), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38869] = 8, + ACTIONS(4306), 1, + anon_sym_DQUOTE, + ACTIONS(4308), 1, + anon_sym_SQUOTE, + ACTIONS(4310), 1, + sym__newline_token, + ACTIONS(4314), 1, + sym__whitespace_ge_2, + ACTIONS(4316), 1, + aux_sym__whitespace_token1, + ACTIONS(4318), 1, + aux_sym__attribute_value_token1, + STATE(997), 1, + sym__attribute_value, + STATE(851), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38896] = 8, + ACTIONS(4306), 1, + anon_sym_DQUOTE, + ACTIONS(4308), 1, + anon_sym_SQUOTE, + ACTIONS(4310), 1, + sym__newline_token, + ACTIONS(4314), 1, + sym__whitespace_ge_2, + ACTIONS(4316), 1, + aux_sym__whitespace_token1, + ACTIONS(4346), 1, + aux_sym__attribute_value_token1, + STATE(996), 1, + sym__attribute_value, + STATE(866), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38923] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4348), 1, + anon_sym_GT, + ACTIONS(4350), 1, + anon_sym_SLASH, + STATE(857), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(862), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38948] = 6, + ACTIONS(4354), 1, + sym__newline_token, + ACTIONS(4357), 1, + sym__whitespace_ge_2, + ACTIONS(4360), 1, + aux_sym__whitespace_token1, + ACTIONS(4352), 2, + anon_sym_GT, + anon_sym_SLASH, + STATE(853), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(963), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38971] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4363), 1, + anon_sym_GT, + ACTIONS(4365), 1, + anon_sym_SLASH, + STATE(848), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(859), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [38996] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4367), 1, + anon_sym_GT, + ACTIONS(4369), 1, + anon_sym_SLASH, + STATE(853), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(861), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39021] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4371), 1, + anon_sym_GT, + ACTIONS(4373), 1, + anon_sym_SLASH, + STATE(849), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(858), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39046] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4375), 1, + anon_sym_GT, + ACTIONS(4377), 1, + anon_sym_SLASH, + STATE(853), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(865), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39071] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4342), 1, + anon_sym_GT, + ACTIONS(4344), 1, + anon_sym_SLASH, + ACTIONS(4379), 1, + sym__attribute_name, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39095] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4338), 1, + anon_sym_GT, + ACTIONS(4340), 1, + anon_sym_SLASH, + ACTIONS(4379), 1, + sym__attribute_name, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39119] = 4, + ACTIONS(4386), 1, + aux_sym__whitespace_token1, + STATE(860), 1, + aux_sym__tag_name_repeat1, + ACTIONS(4383), 3, + anon_sym_DASH, + sym__word_no_digit, + sym__digits, + ACTIONS(4381), 4, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__whitespace_ge_2, + [39137] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4379), 1, + sym__attribute_name, + ACTIONS(4388), 1, + anon_sym_GT, + ACTIONS(4390), 1, + anon_sym_SLASH, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39161] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4375), 1, + anon_sym_GT, + ACTIONS(4377), 1, + anon_sym_SLASH, + ACTIONS(4379), 1, + sym__attribute_name, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39185] = 4, + ACTIONS(4396), 1, + aux_sym__whitespace_token1, + STATE(860), 1, + aux_sym__tag_name_repeat1, + ACTIONS(4394), 3, + anon_sym_DASH, + sym__word_no_digit, + sym__digits, + ACTIONS(4392), 4, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__whitespace_ge_2, + [39203] = 5, + ACTIONS(4398), 1, + sym__newline_token, + ACTIONS(4401), 1, + sym__whitespace_ge_2, + ACTIONS(4404), 1, + aux_sym__whitespace_token1, + ACTIONS(3792), 3, + anon_sym_GT, + anon_sym_SLASH, + sym__attribute_name, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39223] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4379), 1, + sym__attribute_name, + ACTIONS(4407), 1, + anon_sym_GT, + ACTIONS(4409), 1, + anon_sym_SLASH, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39247] = 5, + ACTIONS(4411), 1, + sym__newline_token, + ACTIONS(4414), 1, + sym__whitespace_ge_2, + ACTIONS(4417), 1, + aux_sym__whitespace_token1, + ACTIONS(3792), 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + STATE(866), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39267] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4379), 1, + sym__attribute_name, + ACTIONS(4420), 1, + anon_sym_GT, + ACTIONS(4422), 1, + anon_sym_SLASH, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39291] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4367), 1, + anon_sym_GT, + ACTIONS(4369), 1, + anon_sym_SLASH, + ACTIONS(4379), 1, + sym__attribute_name, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39315] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4379), 1, + sym__attribute_name, + ACTIONS(4424), 1, + anon_sym_GT, + ACTIONS(4426), 1, + anon_sym_SLASH, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39339] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4334), 1, + anon_sym_GT, + ACTIONS(4336), 1, + anon_sym_SLASH, + ACTIONS(4379), 1, + sym__attribute_name, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39363] = 4, + ACTIONS(4432), 1, + aux_sym__whitespace_token1, + STATE(863), 1, + aux_sym__tag_name_repeat1, + ACTIONS(4430), 3, + anon_sym_DASH, + sym__word_no_digit, + sym__digits, + ACTIONS(4428), 4, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__whitespace_ge_2, + [39381] = 7, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4379), 1, + sym__attribute_name, + ACTIONS(4434), 1, + anon_sym_GT, + ACTIONS(4436), 1, + anon_sym_SLASH, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39405] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4284), 1, + anon_sym_RPAREN, + STATE(882), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39423] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4438), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39441] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4440), 1, + anon_sym_GT, + STATE(987), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39459] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4286), 1, + anon_sym_RPAREN, + STATE(880), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39477] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4286), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39495] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4442), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39513] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4284), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39531] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4444), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39549] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4444), 1, + anon_sym_RPAREN, + STATE(884), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39567] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4446), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39585] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4446), 1, + anon_sym_RPAREN, + STATE(885), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39603] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4448), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39621] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4450), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39639] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4452), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39657] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4454), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39675] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4456), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39693] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4458), 1, + anon_sym_GT, + STATE(910), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39711] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4456), 1, + anon_sym_RPAREN, + STATE(886), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39729] = 3, + ACTIONS(2942), 1, + aux_sym__whitespace_token1, + ACTIONS(4460), 1, + sym__last_token_whitespace, + ACTIONS(2940), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym__newline_token, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + [39743] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4280), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39761] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4280), 1, + anon_sym_RPAREN, + STATE(878), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39779] = 3, + ACTIONS(2908), 1, + aux_sym__whitespace_token1, + ACTIONS(4462), 1, + sym__last_token_whitespace, + ACTIONS(2906), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym__newline_token, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + [39793] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4282), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39811] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4282), 1, + anon_sym_RPAREN, + STATE(888), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39829] = 5, + ACTIONS(3445), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(834), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39847] = 3, + ACTIONS(2908), 1, + aux_sym__whitespace_token1, + ACTIONS(4464), 1, + sym__last_token_whitespace, + ACTIONS(2906), 5, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__attribute_name, + sym__whitespace_ge_2, + [39861] = 3, + ACTIONS(2942), 1, + aux_sym__whitespace_token1, + ACTIONS(4466), 1, + sym__last_token_whitespace, + ACTIONS(2940), 5, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__attribute_name, + sym__whitespace_ge_2, + [39875] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4468), 1, + anon_sym_GT, + STATE(911), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39893] = 5, + ACTIONS(3445), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(951), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39911] = 5, + ACTIONS(3372), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(829), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39929] = 5, + ACTIONS(3372), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(973), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39947] = 5, + ACTIONS(3422), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(825), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39965] = 5, + ACTIONS(3422), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(915), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [39983] = 5, + ACTIONS(3416), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(824), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40001] = 5, + ACTIONS(3416), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(919), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40019] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4470), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40037] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4472), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40055] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4474), 1, + anon_sym_GT, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40073] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4476), 1, + anon_sym_GT, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40091] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4266), 1, + anon_sym_RPAREN, + STATE(892), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40109] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4292), 1, + anon_sym_RPAREN, + STATE(941), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40127] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4478), 1, + anon_sym_EQ, + STATE(965), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40145] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4270), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40163] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4270), 1, + anon_sym_RPAREN, + STATE(839), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40181] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4270), 1, + anon_sym_RPAREN, + STATE(926), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40199] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4442), 1, + anon_sym_RPAREN, + STATE(887), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40217] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4268), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40235] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4268), 1, + anon_sym_RPAREN, + STATE(842), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40253] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4268), 1, + anon_sym_RPAREN, + STATE(929), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40271] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4266), 1, + anon_sym_RPAREN, + STATE(830), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40289] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4300), 1, + anon_sym_RPAREN, + STATE(879), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40307] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4298), 1, + anon_sym_RPAREN, + STATE(930), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40325] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4300), 1, + anon_sym_RPAREN, + STATE(832), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40343] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4298), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40361] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4304), 1, + anon_sym_RPAREN, + STATE(932), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40379] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4300), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40397] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4304), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40415] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4480), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40433] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4480), 1, + anon_sym_RPAREN, + STATE(934), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40451] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4482), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40469] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4482), 1, + anon_sym_RPAREN, + STATE(935), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40487] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4484), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40505] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4486), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40523] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4266), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40541] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4290), 1, + anon_sym_RPAREN, + STATE(895), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40559] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4488), 1, + anon_sym_RPAREN, + STATE(908), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40577] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4488), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40595] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4490), 1, + anon_sym_RPAREN, + STATE(909), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40613] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4490), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40631] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4290), 1, + anon_sym_RPAREN, + STATE(831), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40649] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4302), 1, + anon_sym_RPAREN, + STATE(877), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40667] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4302), 1, + anon_sym_RPAREN, + STATE(833), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40685] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4302), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40703] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4492), 1, + anon_sym_GT, + STATE(952), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40721] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4294), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40739] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4290), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40757] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4294), 1, + anon_sym_RPAREN, + STATE(939), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40775] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4292), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40793] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4288), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40811] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4494), 1, + anon_sym_GT, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40829] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4496), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40847] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4498), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40865] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4438), 1, + anon_sym_RPAREN, + STATE(953), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40883] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4500), 1, + anon_sym_RPAREN, + STATE(954), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40901] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4500), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40919] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4502), 1, + anon_sym_GT, + STATE(974), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40937] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4296), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40955] = 5, + ACTIONS(3439), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(835), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40973] = 5, + ACTIONS(3439), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(948), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [40991] = 5, + ACTIONS(3451), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(823), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41009] = 5, + ACTIONS(4324), 1, + sym__newline_token, + ACTIONS(4326), 1, + sym__whitespace_ge_2, + ACTIONS(4328), 1, + aux_sym__whitespace_token1, + ACTIONS(4379), 1, + sym__attribute_name, + STATE(864), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41027] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4296), 1, + anon_sym_RPAREN, + STATE(874), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41045] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4504), 1, + anon_sym_EQ, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41063] = 5, + ACTIONS(3414), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(928), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41081] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4278), 1, + anon_sym_RPAREN, + STATE(947), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41099] = 5, + ACTIONS(3449), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(828), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41117] = 5, + ACTIONS(3449), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(980), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41135] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4278), 1, + anon_sym_RPAREN, + STATE(837), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41153] = 5, + ACTIONS(3380), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(827), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41171] = 5, + ACTIONS(3380), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(984), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41189] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4278), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41207] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4506), 1, + anon_sym_GT, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41225] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4272), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41243] = 5, + ACTIONS(3414), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(840), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41261] = 5, + ACTIONS(3451), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(936), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41279] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4288), 1, + anon_sym_RPAREN, + STATE(950), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41297] = 5, + ACTIONS(3441), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(945), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41315] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4276), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41333] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4276), 1, + anon_sym_RPAREN, + STATE(826), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41351] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4276), 1, + anon_sym_RPAREN, + STATE(975), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41369] = 5, + ACTIONS(3441), 1, + anon_sym_RPAREN, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + STATE(841), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41387] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4274), 1, + anon_sym_RPAREN, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41405] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4274), 1, + anon_sym_RPAREN, + STATE(838), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41423] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4274), 1, + anon_sym_RPAREN, + STATE(959), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41441] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4508), 1, + anon_sym_GT, + STATE(822), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41459] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4288), 1, + anon_sym_RPAREN, + STATE(836), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41477] = 5, + ACTIONS(3679), 1, + sym__newline_token, + ACTIONS(3683), 1, + sym__whitespace_ge_2, + ACTIONS(3685), 1, + aux_sym__whitespace_token1, + ACTIONS(4272), 1, + anon_sym_RPAREN, + STATE(957), 3, + sym__whitespace, + sym__soft_line_break, + aux_sym_inline_link_repeat1, + [41495] = 2, + ACTIONS(3071), 1, + aux_sym__whitespace_token1, + ACTIONS(3069), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym__newline_token, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + [41506] = 2, + ACTIONS(3071), 1, + aux_sym__whitespace_token1, + ACTIONS(3069), 5, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__attribute_name, + sym__whitespace_ge_2, + [41517] = 2, + ACTIONS(3087), 1, + aux_sym__whitespace_token1, + ACTIONS(3085), 5, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__attribute_name, + sym__whitespace_ge_2, + [41528] = 2, + ACTIONS(3087), 1, + aux_sym__whitespace_token1, + ACTIONS(3085), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym__newline_token, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + [41539] = 2, + ACTIONS(4512), 1, + aux_sym__whitespace_token1, + ACTIONS(4510), 4, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__whitespace_ge_2, + [41549] = 2, + ACTIONS(4516), 1, + aux_sym__whitespace_token1, + ACTIONS(4514), 4, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__whitespace_ge_2, + [41559] = 2, + ACTIONS(4520), 1, + aux_sym__whitespace_token1, + ACTIONS(4518), 4, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__whitespace_ge_2, + [41569] = 2, + ACTIONS(4524), 1, + aux_sym__whitespace_token1, + ACTIONS(4522), 4, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__whitespace_ge_2, + [41579] = 2, + ACTIONS(4528), 1, + aux_sym__whitespace_token1, + ACTIONS(4526), 4, + anon_sym_GT, + anon_sym_SLASH, + sym__newline_token, + sym__whitespace_ge_2, + [41589] = 2, + ACTIONS(3603), 1, + aux_sym__whitespace_token1, + ACTIONS(3601), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + [41598] = 2, + ACTIONS(3607), 1, + aux_sym__whitespace_token1, + ACTIONS(3605), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + [41607] = 2, + ACTIONS(4532), 1, + aux_sym__whitespace_token1, + ACTIONS(4530), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + [41616] = 2, + ACTIONS(4536), 1, + aux_sym__whitespace_token1, + ACTIONS(4534), 3, + anon_sym_RPAREN, + sym__newline_token, + sym__whitespace_ge_2, + [41625] = 3, + ACTIONS(4538), 1, + anon_sym_LBRACK, + ACTIONS(4540), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym_link_label, + [41635] = 3, + ACTIONS(4542), 1, + anon_sym_LBRACK, + ACTIONS(4544), 1, + anon_sym_LPAREN, + STATE(360), 1, + sym_link_label, + [41645] = 3, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4548), 1, + anon_sym_LPAREN, + STATE(291), 1, + sym_link_label, + [41655] = 3, + ACTIONS(4550), 1, + anon_sym_LBRACK, + ACTIONS(4552), 1, + anon_sym_LPAREN, + STATE(442), 1, + sym_link_label, + [41665] = 3, + ACTIONS(4554), 1, + anon_sym_LBRACK, + ACTIONS(4556), 1, + anon_sym_LPAREN, + STATE(441), 1, + sym_link_label, + [41675] = 3, + ACTIONS(4558), 1, + anon_sym_LBRACK, + ACTIONS(4560), 1, + anon_sym_LPAREN, + STATE(534), 1, + sym_link_label, + [41685] = 3, + ACTIONS(4562), 1, + anon_sym_LBRACK, + ACTIONS(4564), 1, + anon_sym_LPAREN, + STATE(539), 1, + sym_link_label, + [41695] = 3, + ACTIONS(4566), 1, + anon_sym_LBRACK, + ACTIONS(4568), 1, + anon_sym_LPAREN, + STATE(495), 1, + sym_link_label, + [41705] = 3, + ACTIONS(4570), 1, + anon_sym_LBRACK, + ACTIONS(4572), 1, + anon_sym_LPAREN, + STATE(496), 1, + sym_link_label, + [41715] = 3, + ACTIONS(4574), 1, + anon_sym_LBRACK, + ACTIONS(4576), 1, + anon_sym_LPAREN, + STATE(297), 1, + sym_link_label, + [41725] = 2, + ACTIONS(4578), 1, + sym__word_no_digit, + STATE(900), 1, + sym__tag_name, + [41732] = 2, + ACTIONS(2940), 1, + sym__trigger_error, + ACTIONS(4580), 1, + sym__last_token_whitespace, + [41739] = 1, + ACTIONS(4582), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + [41744] = 2, + ACTIONS(4578), 1, + sym__word_no_digit, + STATE(946), 1, + sym__tag_name, + [41751] = 2, + ACTIONS(4578), 1, + sym__word_no_digit, + STATE(889), 1, + sym__tag_name, + [41758] = 2, + ACTIONS(4578), 1, + sym__word_no_digit, + STATE(958), 1, + sym__tag_name, + [41765] = 2, + ACTIONS(4578), 1, + sym__word_no_digit, + STATE(875), 1, + sym__tag_name, + [41772] = 1, + ACTIONS(4375), 1, + anon_sym_GT, + [41776] = 1, + ACTIONS(4334), 1, + anon_sym_GT, + [41780] = 1, + ACTIONS(4584), 1, + anon_sym_GT, + [41784] = 1, + ACTIONS(4586), 1, + ts_builtin_sym_end, + [41788] = 1, + ACTIONS(3069), 1, + sym__trigger_error, + [41792] = 1, + ACTIONS(4588), 1, + anon_sym_GT, + [41796] = 1, + ACTIONS(4420), 1, + anon_sym_GT, + [41800] = 1, + ACTIONS(4342), 1, + anon_sym_GT, + [41804] = 1, + ACTIONS(4338), 1, + anon_sym_GT, + [41808] = 1, + ACTIONS(4434), 1, + anon_sym_GT, + [41812] = 1, + ACTIONS(4590), 1, + sym__trigger_error, + [41816] = 1, + ACTIONS(4592), 1, + sym__trigger_error, + [41820] = 1, + ACTIONS(4594), 1, + anon_sym_GT, + [41824] = 1, + ACTIONS(4596), 1, + sym__trigger_error, + [41828] = 1, + ACTIONS(4388), 1, + anon_sym_GT, + [41832] = 1, + ACTIONS(4598), 1, + anon_sym_GT, + [41836] = 1, + ACTIONS(4367), 1, + anon_sym_GT, + [41840] = 1, + ACTIONS(4407), 1, + anon_sym_GT, + [41844] = 1, + ACTIONS(4424), 1, + anon_sym_GT, + [41848] = 1, + ACTIONS(4600), 1, + anon_sym_GT, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(166)] = 0, + [SMALL_STATE(167)] = 78, + [SMALL_STATE(168)] = 158, + [SMALL_STATE(169)] = 236, + [SMALL_STATE(170)] = 314, + [SMALL_STATE(171)] = 394, + [SMALL_STATE(172)] = 472, + [SMALL_STATE(173)] = 552, + [SMALL_STATE(174)] = 629, + [SMALL_STATE(175)] = 706, + [SMALL_STATE(176)] = 783, + [SMALL_STATE(177)] = 860, + [SMALL_STATE(178)] = 939, + [SMALL_STATE(179)] = 1016, + [SMALL_STATE(180)] = 1097, + [SMALL_STATE(181)] = 1174, + [SMALL_STATE(182)] = 1251, + [SMALL_STATE(183)] = 1328, + [SMALL_STATE(184)] = 1409, + [SMALL_STATE(185)] = 1488, + [SMALL_STATE(186)] = 1567, + [SMALL_STATE(187)] = 1648, + [SMALL_STATE(188)] = 1727, + [SMALL_STATE(189)] = 1804, + [SMALL_STATE(190)] = 1882, + [SMALL_STATE(191)] = 1962, + [SMALL_STATE(192)] = 2042, + [SMALL_STATE(193)] = 2118, + [SMALL_STATE(194)] = 2194, + [SMALL_STATE(195)] = 2272, + [SMALL_STATE(196)] = 2350, + [SMALL_STATE(197)] = 2430, + [SMALL_STATE(198)] = 2508, + [SMALL_STATE(199)] = 2586, + [SMALL_STATE(200)] = 2664, + [SMALL_STATE(201)] = 2741, + [SMALL_STATE(202)] = 2820, + [SMALL_STATE(203)] = 2886, + [SMALL_STATE(204)] = 2950, + [SMALL_STATE(205)] = 3016, + [SMALL_STATE(206)] = 3088, + [SMALL_STATE(207)] = 3160, + [SMALL_STATE(208)] = 3232, + [SMALL_STATE(209)] = 3296, + [SMALL_STATE(210)] = 3368, + [SMALL_STATE(211)] = 3440, + [SMALL_STATE(212)] = 3512, + [SMALL_STATE(213)] = 3584, + [SMALL_STATE(214)] = 3656, + [SMALL_STATE(215)] = 3722, + [SMALL_STATE(216)] = 3794, + [SMALL_STATE(217)] = 3866, + [SMALL_STATE(218)] = 3930, + [SMALL_STATE(219)] = 3994, + [SMALL_STATE(220)] = 4066, + [SMALL_STATE(221)] = 4132, + [SMALL_STATE(222)] = 4204, + [SMALL_STATE(223)] = 4276, + [SMALL_STATE(224)] = 4342, + [SMALL_STATE(225)] = 4406, + [SMALL_STATE(226)] = 4472, + [SMALL_STATE(227)] = 4544, + [SMALL_STATE(228)] = 4610, + [SMALL_STATE(229)] = 4674, + [SMALL_STATE(230)] = 4740, + [SMALL_STATE(231)] = 4804, + [SMALL_STATE(232)] = 4876, + [SMALL_STATE(233)] = 4948, + [SMALL_STATE(234)] = 5012, + [SMALL_STATE(235)] = 5071, + [SMALL_STATE(236)] = 5130, + [SMALL_STATE(237)] = 5195, + [SMALL_STATE(238)] = 5258, + [SMALL_STATE(239)] = 5317, + [SMALL_STATE(240)] = 5376, + [SMALL_STATE(241)] = 5441, + [SMALL_STATE(242)] = 5500, + [SMALL_STATE(243)] = 5559, + [SMALL_STATE(244)] = 5620, + [SMALL_STATE(245)] = 5679, + [SMALL_STATE(246)] = 5738, + [SMALL_STATE(247)] = 5801, + [SMALL_STATE(248)] = 5862, + [SMALL_STATE(249)] = 5921, + [SMALL_STATE(250)] = 5980, + [SMALL_STATE(251)] = 6041, + [SMALL_STATE(252)] = 6100, + [SMALL_STATE(253)] = 6159, + [SMALL_STATE(254)] = 6220, + [SMALL_STATE(255)] = 6279, + [SMALL_STATE(256)] = 6338, + [SMALL_STATE(257)] = 6397, + [SMALL_STATE(258)] = 6458, + [SMALL_STATE(259)] = 6517, + [SMALL_STATE(260)] = 6578, + [SMALL_STATE(261)] = 6637, + [SMALL_STATE(262)] = 6696, + [SMALL_STATE(263)] = 6755, + [SMALL_STATE(264)] = 6814, + [SMALL_STATE(265)] = 6875, + [SMALL_STATE(266)] = 6931, + [SMALL_STATE(267)] = 6987, + [SMALL_STATE(268)] = 7045, + [SMALL_STATE(269)] = 7101, + [SMALL_STATE(270)] = 7159, + [SMALL_STATE(271)] = 7217, + [SMALL_STATE(272)] = 7275, + [SMALL_STATE(273)] = 7331, + [SMALL_STATE(274)] = 7387, + [SMALL_STATE(275)] = 7443, + [SMALL_STATE(276)] = 7499, + [SMALL_STATE(277)] = 7557, + [SMALL_STATE(278)] = 7613, + [SMALL_STATE(279)] = 7669, + [SMALL_STATE(280)] = 7727, + [SMALL_STATE(281)] = 7783, + [SMALL_STATE(282)] = 7839, + [SMALL_STATE(283)] = 7895, + [SMALL_STATE(284)] = 7951, + [SMALL_STATE(285)] = 8007, + [SMALL_STATE(286)] = 8063, + [SMALL_STATE(287)] = 8119, + [SMALL_STATE(288)] = 8175, + [SMALL_STATE(289)] = 8231, + [SMALL_STATE(290)] = 8287, + [SMALL_STATE(291)] = 8343, + [SMALL_STATE(292)] = 8399, + [SMALL_STATE(293)] = 8457, + [SMALL_STATE(294)] = 8513, + [SMALL_STATE(295)] = 8569, + [SMALL_STATE(296)] = 8627, + [SMALL_STATE(297)] = 8685, + [SMALL_STATE(298)] = 8741, + [SMALL_STATE(299)] = 8797, + [SMALL_STATE(300)] = 8855, + [SMALL_STATE(301)] = 8911, + [SMALL_STATE(302)] = 8969, + [SMALL_STATE(303)] = 9027, + [SMALL_STATE(304)] = 9083, + [SMALL_STATE(305)] = 9139, + [SMALL_STATE(306)] = 9195, + [SMALL_STATE(307)] = 9251, + [SMALL_STATE(308)] = 9307, + [SMALL_STATE(309)] = 9363, + [SMALL_STATE(310)] = 9419, + [SMALL_STATE(311)] = 9475, + [SMALL_STATE(312)] = 9531, + [SMALL_STATE(313)] = 9591, + [SMALL_STATE(314)] = 9647, + [SMALL_STATE(315)] = 9703, + [SMALL_STATE(316)] = 9759, + [SMALL_STATE(317)] = 9815, + [SMALL_STATE(318)] = 9871, + [SMALL_STATE(319)] = 9931, + [SMALL_STATE(320)] = 9987, + [SMALL_STATE(321)] = 10047, + [SMALL_STATE(322)] = 10103, + [SMALL_STATE(323)] = 10159, + [SMALL_STATE(324)] = 10215, + [SMALL_STATE(325)] = 10271, + [SMALL_STATE(326)] = 10327, + [SMALL_STATE(327)] = 10383, + [SMALL_STATE(328)] = 10443, + [SMALL_STATE(329)] = 10499, + [SMALL_STATE(330)] = 10555, + [SMALL_STATE(331)] = 10611, + [SMALL_STATE(332)] = 10669, + [SMALL_STATE(333)] = 10727, + [SMALL_STATE(334)] = 10783, + [SMALL_STATE(335)] = 10841, + [SMALL_STATE(336)] = 10901, + [SMALL_STATE(337)] = 10959, + [SMALL_STATE(338)] = 11015, + [SMALL_STATE(339)] = 11071, + [SMALL_STATE(340)] = 11127, + [SMALL_STATE(341)] = 11183, + [SMALL_STATE(342)] = 11239, + [SMALL_STATE(343)] = 11295, + [SMALL_STATE(344)] = 11353, + [SMALL_STATE(345)] = 11409, + [SMALL_STATE(346)] = 11467, + [SMALL_STATE(347)] = 11523, + [SMALL_STATE(348)] = 11579, + [SMALL_STATE(349)] = 11635, + [SMALL_STATE(350)] = 11695, + [SMALL_STATE(351)] = 11751, + [SMALL_STATE(352)] = 11809, + [SMALL_STATE(353)] = 11865, + [SMALL_STATE(354)] = 11921, + [SMALL_STATE(355)] = 11977, + [SMALL_STATE(356)] = 12033, + [SMALL_STATE(357)] = 12089, + [SMALL_STATE(358)] = 12145, + [SMALL_STATE(359)] = 12201, + [SMALL_STATE(360)] = 12257, + [SMALL_STATE(361)] = 12313, + [SMALL_STATE(362)] = 12369, + [SMALL_STATE(363)] = 12425, + [SMALL_STATE(364)] = 12481, + [SMALL_STATE(365)] = 12537, + [SMALL_STATE(366)] = 12593, + [SMALL_STATE(367)] = 12649, + [SMALL_STATE(368)] = 12705, + [SMALL_STATE(369)] = 12761, + [SMALL_STATE(370)] = 12817, + [SMALL_STATE(371)] = 12873, + [SMALL_STATE(372)] = 12929, + [SMALL_STATE(373)] = 12985, + [SMALL_STATE(374)] = 13041, + [SMALL_STATE(375)] = 13097, + [SMALL_STATE(376)] = 13153, + [SMALL_STATE(377)] = 13209, + [SMALL_STATE(378)] = 13265, + [SMALL_STATE(379)] = 13321, + [SMALL_STATE(380)] = 13377, + [SMALL_STATE(381)] = 13433, + [SMALL_STATE(382)] = 13489, + [SMALL_STATE(383)] = 13545, + [SMALL_STATE(384)] = 13601, + [SMALL_STATE(385)] = 13657, + [SMALL_STATE(386)] = 13713, + [SMALL_STATE(387)] = 13769, + [SMALL_STATE(388)] = 13825, + [SMALL_STATE(389)] = 13881, + [SMALL_STATE(390)] = 13937, + [SMALL_STATE(391)] = 13993, + [SMALL_STATE(392)] = 14049, + [SMALL_STATE(393)] = 14105, + [SMALL_STATE(394)] = 14161, + [SMALL_STATE(395)] = 14217, + [SMALL_STATE(396)] = 14273, + [SMALL_STATE(397)] = 14329, + [SMALL_STATE(398)] = 14385, + [SMALL_STATE(399)] = 14441, + [SMALL_STATE(400)] = 14497, + [SMALL_STATE(401)] = 14553, + [SMALL_STATE(402)] = 14609, + [SMALL_STATE(403)] = 14665, + [SMALL_STATE(404)] = 14721, + [SMALL_STATE(405)] = 14777, + [SMALL_STATE(406)] = 14833, + [SMALL_STATE(407)] = 14889, + [SMALL_STATE(408)] = 14945, + [SMALL_STATE(409)] = 15001, + [SMALL_STATE(410)] = 15057, + [SMALL_STATE(411)] = 15113, + [SMALL_STATE(412)] = 15169, + [SMALL_STATE(413)] = 15225, + [SMALL_STATE(414)] = 15281, + [SMALL_STATE(415)] = 15337, + [SMALL_STATE(416)] = 15393, + [SMALL_STATE(417)] = 15449, + [SMALL_STATE(418)] = 15505, + [SMALL_STATE(419)] = 15561, + [SMALL_STATE(420)] = 15617, + [SMALL_STATE(421)] = 15673, + [SMALL_STATE(422)] = 15729, + [SMALL_STATE(423)] = 15785, + [SMALL_STATE(424)] = 15841, + [SMALL_STATE(425)] = 15897, + [SMALL_STATE(426)] = 15953, + [SMALL_STATE(427)] = 16009, + [SMALL_STATE(428)] = 16065, + [SMALL_STATE(429)] = 16123, + [SMALL_STATE(430)] = 16179, + [SMALL_STATE(431)] = 16237, + [SMALL_STATE(432)] = 16293, + [SMALL_STATE(433)] = 16349, + [SMALL_STATE(434)] = 16405, + [SMALL_STATE(435)] = 16461, + [SMALL_STATE(436)] = 16517, + [SMALL_STATE(437)] = 16573, + [SMALL_STATE(438)] = 16629, + [SMALL_STATE(439)] = 16685, + [SMALL_STATE(440)] = 16741, + [SMALL_STATE(441)] = 16797, + [SMALL_STATE(442)] = 16853, + [SMALL_STATE(443)] = 16909, + [SMALL_STATE(444)] = 16965, + [SMALL_STATE(445)] = 17021, + [SMALL_STATE(446)] = 17077, + [SMALL_STATE(447)] = 17133, + [SMALL_STATE(448)] = 17189, + [SMALL_STATE(449)] = 17245, + [SMALL_STATE(450)] = 17301, + [SMALL_STATE(451)] = 17357, + [SMALL_STATE(452)] = 17413, + [SMALL_STATE(453)] = 17469, + [SMALL_STATE(454)] = 17525, + [SMALL_STATE(455)] = 17581, + [SMALL_STATE(456)] = 17637, + [SMALL_STATE(457)] = 17693, + [SMALL_STATE(458)] = 17749, + [SMALL_STATE(459)] = 17805, + [SMALL_STATE(460)] = 17861, + [SMALL_STATE(461)] = 17917, + [SMALL_STATE(462)] = 17973, + [SMALL_STATE(463)] = 18029, + [SMALL_STATE(464)] = 18085, + [SMALL_STATE(465)] = 18141, + [SMALL_STATE(466)] = 18197, + [SMALL_STATE(467)] = 18253, + [SMALL_STATE(468)] = 18309, + [SMALL_STATE(469)] = 18365, + [SMALL_STATE(470)] = 18421, + [SMALL_STATE(471)] = 18477, + [SMALL_STATE(472)] = 18533, + [SMALL_STATE(473)] = 18589, + [SMALL_STATE(474)] = 18645, + [SMALL_STATE(475)] = 18701, + [SMALL_STATE(476)] = 18757, + [SMALL_STATE(477)] = 18813, + [SMALL_STATE(478)] = 18869, + [SMALL_STATE(479)] = 18925, + [SMALL_STATE(480)] = 18981, + [SMALL_STATE(481)] = 19037, + [SMALL_STATE(482)] = 19093, + [SMALL_STATE(483)] = 19149, + [SMALL_STATE(484)] = 19205, + [SMALL_STATE(485)] = 19261, + [SMALL_STATE(486)] = 19317, + [SMALL_STATE(487)] = 19373, + [SMALL_STATE(488)] = 19429, + [SMALL_STATE(489)] = 19485, + [SMALL_STATE(490)] = 19541, + [SMALL_STATE(491)] = 19597, + [SMALL_STATE(492)] = 19653, + [SMALL_STATE(493)] = 19709, + [SMALL_STATE(494)] = 19765, + [SMALL_STATE(495)] = 19821, + [SMALL_STATE(496)] = 19877, + [SMALL_STATE(497)] = 19933, + [SMALL_STATE(498)] = 19989, + [SMALL_STATE(499)] = 20045, + [SMALL_STATE(500)] = 20101, + [SMALL_STATE(501)] = 20157, + [SMALL_STATE(502)] = 20213, + [SMALL_STATE(503)] = 20269, + [SMALL_STATE(504)] = 20325, + [SMALL_STATE(505)] = 20381, + [SMALL_STATE(506)] = 20437, + [SMALL_STATE(507)] = 20495, + [SMALL_STATE(508)] = 20551, + [SMALL_STATE(509)] = 20609, + [SMALL_STATE(510)] = 20665, + [SMALL_STATE(511)] = 20721, + [SMALL_STATE(512)] = 20776, + [SMALL_STATE(513)] = 20831, + [SMALL_STATE(514)] = 20886, + [SMALL_STATE(515)] = 20941, + [SMALL_STATE(516)] = 20996, + [SMALL_STATE(517)] = 21051, + [SMALL_STATE(518)] = 21106, + [SMALL_STATE(519)] = 21163, + [SMALL_STATE(520)] = 21218, + [SMALL_STATE(521)] = 21273, + [SMALL_STATE(522)] = 21328, + [SMALL_STATE(523)] = 21383, + [SMALL_STATE(524)] = 21438, + [SMALL_STATE(525)] = 21493, + [SMALL_STATE(526)] = 21548, + [SMALL_STATE(527)] = 21603, + [SMALL_STATE(528)] = 21658, + [SMALL_STATE(529)] = 21713, + [SMALL_STATE(530)] = 21768, + [SMALL_STATE(531)] = 21823, + [SMALL_STATE(532)] = 21878, + [SMALL_STATE(533)] = 21933, + [SMALL_STATE(534)] = 21992, + [SMALL_STATE(535)] = 22047, + [SMALL_STATE(536)] = 22106, + [SMALL_STATE(537)] = 22161, + [SMALL_STATE(538)] = 22216, + [SMALL_STATE(539)] = 22275, + [SMALL_STATE(540)] = 22330, + [SMALL_STATE(541)] = 22385, + [SMALL_STATE(542)] = 22440, + [SMALL_STATE(543)] = 22495, + [SMALL_STATE(544)] = 22550, + [SMALL_STATE(545)] = 22605, + [SMALL_STATE(546)] = 22660, + [SMALL_STATE(547)] = 22715, + [SMALL_STATE(548)] = 22770, + [SMALL_STATE(549)] = 22825, + [SMALL_STATE(550)] = 22880, + [SMALL_STATE(551)] = 22935, + [SMALL_STATE(552)] = 22990, + [SMALL_STATE(553)] = 23045, + [SMALL_STATE(554)] = 23104, + [SMALL_STATE(555)] = 23159, + [SMALL_STATE(556)] = 23216, + [SMALL_STATE(557)] = 23271, + [SMALL_STATE(558)] = 23326, + [SMALL_STATE(559)] = 23381, + [SMALL_STATE(560)] = 23436, + [SMALL_STATE(561)] = 23491, + [SMALL_STATE(562)] = 23546, + [SMALL_STATE(563)] = 23601, + [SMALL_STATE(564)] = 23656, + [SMALL_STATE(565)] = 23711, + [SMALL_STATE(566)] = 23766, + [SMALL_STATE(567)] = 23821, + [SMALL_STATE(568)] = 23876, + [SMALL_STATE(569)] = 23931, + [SMALL_STATE(570)] = 23986, + [SMALL_STATE(571)] = 24041, + [SMALL_STATE(572)] = 24096, + [SMALL_STATE(573)] = 24150, + [SMALL_STATE(574)] = 24204, + [SMALL_STATE(575)] = 24258, + [SMALL_STATE(576)] = 24312, + [SMALL_STATE(577)] = 24366, + [SMALL_STATE(578)] = 24420, + [SMALL_STATE(579)] = 24474, + [SMALL_STATE(580)] = 24528, + [SMALL_STATE(581)] = 24582, + [SMALL_STATE(582)] = 24636, + [SMALL_STATE(583)] = 24690, + [SMALL_STATE(584)] = 24744, + [SMALL_STATE(585)] = 24798, + [SMALL_STATE(586)] = 24852, + [SMALL_STATE(587)] = 24906, + [SMALL_STATE(588)] = 24960, + [SMALL_STATE(589)] = 25014, + [SMALL_STATE(590)] = 25068, + [SMALL_STATE(591)] = 25124, + [SMALL_STATE(592)] = 25178, + [SMALL_STATE(593)] = 25232, + [SMALL_STATE(594)] = 25286, + [SMALL_STATE(595)] = 25340, + [SMALL_STATE(596)] = 25396, + [SMALL_STATE(597)] = 25450, + [SMALL_STATE(598)] = 25506, + [SMALL_STATE(599)] = 25560, + [SMALL_STATE(600)] = 25614, + [SMALL_STATE(601)] = 25668, + [SMALL_STATE(602)] = 25722, + [SMALL_STATE(603)] = 25776, + [SMALL_STATE(604)] = 25830, + [SMALL_STATE(605)] = 25886, + [SMALL_STATE(606)] = 25942, + [SMALL_STATE(607)] = 25996, + [SMALL_STATE(608)] = 26050, + [SMALL_STATE(609)] = 26104, + [SMALL_STATE(610)] = 26158, + [SMALL_STATE(611)] = 26212, + [SMALL_STATE(612)] = 26266, + [SMALL_STATE(613)] = 26322, + [SMALL_STATE(614)] = 26378, + [SMALL_STATE(615)] = 26434, + [SMALL_STATE(616)] = 26488, + [SMALL_STATE(617)] = 26542, + [SMALL_STATE(618)] = 26623, + [SMALL_STATE(619)] = 26704, + [SMALL_STATE(620)] = 26785, + [SMALL_STATE(621)] = 26866, + [SMALL_STATE(622)] = 26947, + [SMALL_STATE(623)] = 27028, + [SMALL_STATE(624)] = 27107, + [SMALL_STATE(625)] = 27188, + [SMALL_STATE(626)] = 27269, + [SMALL_STATE(627)] = 27350, + [SMALL_STATE(628)] = 27431, + [SMALL_STATE(629)] = 27512, + [SMALL_STATE(630)] = 27593, + [SMALL_STATE(631)] = 27672, + [SMALL_STATE(632)] = 27753, + [SMALL_STATE(633)] = 27834, + [SMALL_STATE(634)] = 27915, + [SMALL_STATE(635)] = 27996, + [SMALL_STATE(636)] = 28077, + [SMALL_STATE(637)] = 28158, + [SMALL_STATE(638)] = 28239, + [SMALL_STATE(639)] = 28320, + [SMALL_STATE(640)] = 28374, + [SMALL_STATE(641)] = 28448, + [SMALL_STATE(642)] = 28502, + [SMALL_STATE(643)] = 28556, + [SMALL_STATE(644)] = 28607, + [SMALL_STATE(645)] = 28658, + [SMALL_STATE(646)] = 28709, + [SMALL_STATE(647)] = 28760, + [SMALL_STATE(648)] = 28826, + [SMALL_STATE(649)] = 28892, + [SMALL_STATE(650)] = 28958, + [SMALL_STATE(651)] = 29024, + [SMALL_STATE(652)] = 29090, + [SMALL_STATE(653)] = 29156, + [SMALL_STATE(654)] = 29220, + [SMALL_STATE(655)] = 29286, + [SMALL_STATE(656)] = 29352, + [SMALL_STATE(657)] = 29417, + [SMALL_STATE(658)] = 29478, + [SMALL_STATE(659)] = 29539, + [SMALL_STATE(660)] = 29600, + [SMALL_STATE(661)] = 29665, + [SMALL_STATE(662)] = 29730, + [SMALL_STATE(663)] = 29791, + [SMALL_STATE(664)] = 29852, + [SMALL_STATE(665)] = 29912, + [SMALL_STATE(666)] = 29974, + [SMALL_STATE(667)] = 30032, + [SMALL_STATE(668)] = 30094, + [SMALL_STATE(669)] = 30152, + [SMALL_STATE(670)] = 30214, + [SMALL_STATE(671)] = 30276, + [SMALL_STATE(672)] = 30334, + [SMALL_STATE(673)] = 30394, + [SMALL_STATE(674)] = 30452, + [SMALL_STATE(675)] = 30514, + [SMALL_STATE(676)] = 30576, + [SMALL_STATE(677)] = 30636, + [SMALL_STATE(678)] = 30698, + [SMALL_STATE(679)] = 30760, + [SMALL_STATE(680)] = 30818, + [SMALL_STATE(681)] = 30880, + [SMALL_STATE(682)] = 30938, + [SMALL_STATE(683)] = 31000, + [SMALL_STATE(684)] = 31056, + [SMALL_STATE(685)] = 31115, + [SMALL_STATE(686)] = 31174, + [SMALL_STATE(687)] = 31233, + [SMALL_STATE(688)] = 31292, + [SMALL_STATE(689)] = 31351, + [SMALL_STATE(690)] = 31410, + [SMALL_STATE(691)] = 31469, + [SMALL_STATE(692)] = 31528, + [SMALL_STATE(693)] = 31587, + [SMALL_STATE(694)] = 31646, + [SMALL_STATE(695)] = 31705, + [SMALL_STATE(696)] = 31764, + [SMALL_STATE(697)] = 31823, + [SMALL_STATE(698)] = 31882, + [SMALL_STATE(699)] = 31941, + [SMALL_STATE(700)] = 32000, + [SMALL_STATE(701)] = 32059, + [SMALL_STATE(702)] = 32118, + [SMALL_STATE(703)] = 32177, + [SMALL_STATE(704)] = 32236, + [SMALL_STATE(705)] = 32295, + [SMALL_STATE(706)] = 32354, + [SMALL_STATE(707)] = 32413, + [SMALL_STATE(708)] = 32472, + [SMALL_STATE(709)] = 32531, + [SMALL_STATE(710)] = 32590, + [SMALL_STATE(711)] = 32649, + [SMALL_STATE(712)] = 32708, + [SMALL_STATE(713)] = 32767, + [SMALL_STATE(714)] = 32826, + [SMALL_STATE(715)] = 32885, + [SMALL_STATE(716)] = 32944, + [SMALL_STATE(717)] = 33003, + [SMALL_STATE(718)] = 33062, + [SMALL_STATE(719)] = 33121, + [SMALL_STATE(720)] = 33180, + [SMALL_STATE(721)] = 33239, + [SMALL_STATE(722)] = 33298, + [SMALL_STATE(723)] = 33357, + [SMALL_STATE(724)] = 33416, + [SMALL_STATE(725)] = 33475, + [SMALL_STATE(726)] = 33534, + [SMALL_STATE(727)] = 33593, + [SMALL_STATE(728)] = 33649, + [SMALL_STATE(729)] = 33697, + [SMALL_STATE(730)] = 33745, + [SMALL_STATE(731)] = 33801, + [SMALL_STATE(732)] = 33857, + [SMALL_STATE(733)] = 33905, + [SMALL_STATE(734)] = 33961, + [SMALL_STATE(735)] = 34017, + [SMALL_STATE(736)] = 34071, + [SMALL_STATE(737)] = 34127, + [SMALL_STATE(738)] = 34183, + [SMALL_STATE(739)] = 34239, + [SMALL_STATE(740)] = 34291, + [SMALL_STATE(741)] = 34347, + [SMALL_STATE(742)] = 34403, + [SMALL_STATE(743)] = 34459, + [SMALL_STATE(744)] = 34515, + [SMALL_STATE(745)] = 34571, + [SMALL_STATE(746)] = 34621, + [SMALL_STATE(747)] = 34669, + [SMALL_STATE(748)] = 34717, + [SMALL_STATE(749)] = 34773, + [SMALL_STATE(750)] = 34821, + [SMALL_STATE(751)] = 34871, + [SMALL_STATE(752)] = 34927, + [SMALL_STATE(753)] = 34983, + [SMALL_STATE(754)] = 35039, + [SMALL_STATE(755)] = 35095, + [SMALL_STATE(756)] = 35151, + [SMALL_STATE(757)] = 35199, + [SMALL_STATE(758)] = 35246, + [SMALL_STATE(759)] = 35291, + [SMALL_STATE(760)] = 35336, + [SMALL_STATE(761)] = 35387, + [SMALL_STATE(762)] = 35432, + [SMALL_STATE(763)] = 35477, + [SMALL_STATE(764)] = 35526, + [SMALL_STATE(765)] = 35571, + [SMALL_STATE(766)] = 35616, + [SMALL_STATE(767)] = 35661, + [SMALL_STATE(768)] = 35706, + [SMALL_STATE(769)] = 35751, + [SMALL_STATE(770)] = 35796, + [SMALL_STATE(771)] = 35841, + [SMALL_STATE(772)] = 35892, + [SMALL_STATE(773)] = 35941, + [SMALL_STATE(774)] = 35986, + [SMALL_STATE(775)] = 36031, + [SMALL_STATE(776)] = 36076, + [SMALL_STATE(777)] = 36122, + [SMALL_STATE(778)] = 36168, + [SMALL_STATE(779)] = 36212, + [SMALL_STATE(780)] = 36258, + [SMALL_STATE(781)] = 36304, + [SMALL_STATE(782)] = 36350, + [SMALL_STATE(783)] = 36396, + [SMALL_STATE(784)] = 36442, + [SMALL_STATE(785)] = 36488, + [SMALL_STATE(786)] = 36534, + [SMALL_STATE(787)] = 36580, + [SMALL_STATE(788)] = 36626, + [SMALL_STATE(789)] = 36672, + [SMALL_STATE(790)] = 36724, + [SMALL_STATE(791)] = 36770, + [SMALL_STATE(792)] = 36814, + [SMALL_STATE(793)] = 36860, + [SMALL_STATE(794)] = 36903, + [SMALL_STATE(795)] = 36946, + [SMALL_STATE(796)] = 36989, + [SMALL_STATE(797)] = 37034, + [SMALL_STATE(798)] = 37077, + [SMALL_STATE(799)] = 37122, + [SMALL_STATE(800)] = 37165, + [SMALL_STATE(801)] = 37208, + [SMALL_STATE(802)] = 37251, + [SMALL_STATE(803)] = 37294, + [SMALL_STATE(804)] = 37337, + [SMALL_STATE(805)] = 37382, + [SMALL_STATE(806)] = 37427, + [SMALL_STATE(807)] = 37470, + [SMALL_STATE(808)] = 37515, + [SMALL_STATE(809)] = 37558, + [SMALL_STATE(810)] = 37601, + [SMALL_STATE(811)] = 37644, + [SMALL_STATE(812)] = 37687, + [SMALL_STATE(813)] = 37729, + [SMALL_STATE(814)] = 37771, + [SMALL_STATE(815)] = 37813, + [SMALL_STATE(816)] = 37855, + [SMALL_STATE(817)] = 37897, + [SMALL_STATE(818)] = 37931, + [SMALL_STATE(819)] = 37965, + [SMALL_STATE(820)] = 37999, + [SMALL_STATE(821)] = 38033, + [SMALL_STATE(822)] = 38067, + [SMALL_STATE(823)] = 38090, + [SMALL_STATE(824)] = 38120, + [SMALL_STATE(825)] = 38150, + [SMALL_STATE(826)] = 38180, + [SMALL_STATE(827)] = 38210, + [SMALL_STATE(828)] = 38240, + [SMALL_STATE(829)] = 38270, + [SMALL_STATE(830)] = 38300, + [SMALL_STATE(831)] = 38330, + [SMALL_STATE(832)] = 38360, + [SMALL_STATE(833)] = 38390, + [SMALL_STATE(834)] = 38420, + [SMALL_STATE(835)] = 38450, + [SMALL_STATE(836)] = 38480, + [SMALL_STATE(837)] = 38510, + [SMALL_STATE(838)] = 38540, + [SMALL_STATE(839)] = 38570, + [SMALL_STATE(840)] = 38600, + [SMALL_STATE(841)] = 38630, + [SMALL_STATE(842)] = 38660, + [SMALL_STATE(843)] = 38690, + [SMALL_STATE(844)] = 38717, + [SMALL_STATE(845)] = 38744, + [SMALL_STATE(846)] = 38769, + [SMALL_STATE(847)] = 38794, + [SMALL_STATE(848)] = 38819, + [SMALL_STATE(849)] = 38844, + [SMALL_STATE(850)] = 38869, + [SMALL_STATE(851)] = 38896, + [SMALL_STATE(852)] = 38923, + [SMALL_STATE(853)] = 38948, + [SMALL_STATE(854)] = 38971, + [SMALL_STATE(855)] = 38996, + [SMALL_STATE(856)] = 39021, + [SMALL_STATE(857)] = 39046, + [SMALL_STATE(858)] = 39071, + [SMALL_STATE(859)] = 39095, + [SMALL_STATE(860)] = 39119, + [SMALL_STATE(861)] = 39137, + [SMALL_STATE(862)] = 39161, + [SMALL_STATE(863)] = 39185, + [SMALL_STATE(864)] = 39203, + [SMALL_STATE(865)] = 39223, + [SMALL_STATE(866)] = 39247, + [SMALL_STATE(867)] = 39267, + [SMALL_STATE(868)] = 39291, + [SMALL_STATE(869)] = 39315, + [SMALL_STATE(870)] = 39339, + [SMALL_STATE(871)] = 39363, + [SMALL_STATE(872)] = 39381, + [SMALL_STATE(873)] = 39405, + [SMALL_STATE(874)] = 39423, + [SMALL_STATE(875)] = 39441, + [SMALL_STATE(876)] = 39459, + [SMALL_STATE(877)] = 39477, + [SMALL_STATE(878)] = 39495, + [SMALL_STATE(879)] = 39513, + [SMALL_STATE(880)] = 39531, + [SMALL_STATE(881)] = 39549, + [SMALL_STATE(882)] = 39567, + [SMALL_STATE(883)] = 39585, + [SMALL_STATE(884)] = 39603, + [SMALL_STATE(885)] = 39621, + [SMALL_STATE(886)] = 39639, + [SMALL_STATE(887)] = 39657, + [SMALL_STATE(888)] = 39675, + [SMALL_STATE(889)] = 39693, + [SMALL_STATE(890)] = 39711, + [SMALL_STATE(891)] = 39729, + [SMALL_STATE(892)] = 39743, + [SMALL_STATE(893)] = 39761, + [SMALL_STATE(894)] = 39779, + [SMALL_STATE(895)] = 39793, + [SMALL_STATE(896)] = 39811, + [SMALL_STATE(897)] = 39829, + [SMALL_STATE(898)] = 39847, + [SMALL_STATE(899)] = 39861, + [SMALL_STATE(900)] = 39875, + [SMALL_STATE(901)] = 39893, + [SMALL_STATE(902)] = 39911, + [SMALL_STATE(903)] = 39929, + [SMALL_STATE(904)] = 39947, + [SMALL_STATE(905)] = 39965, + [SMALL_STATE(906)] = 39983, + [SMALL_STATE(907)] = 40001, + [SMALL_STATE(908)] = 40019, + [SMALL_STATE(909)] = 40037, + [SMALL_STATE(910)] = 40055, + [SMALL_STATE(911)] = 40073, + [SMALL_STATE(912)] = 40091, + [SMALL_STATE(913)] = 40109, + [SMALL_STATE(914)] = 40127, + [SMALL_STATE(915)] = 40145, + [SMALL_STATE(916)] = 40163, + [SMALL_STATE(917)] = 40181, + [SMALL_STATE(918)] = 40199, + [SMALL_STATE(919)] = 40217, + [SMALL_STATE(920)] = 40235, + [SMALL_STATE(921)] = 40253, + [SMALL_STATE(922)] = 40271, + [SMALL_STATE(923)] = 40289, + [SMALL_STATE(924)] = 40307, + [SMALL_STATE(925)] = 40325, + [SMALL_STATE(926)] = 40343, + [SMALL_STATE(927)] = 40361, + [SMALL_STATE(928)] = 40379, + [SMALL_STATE(929)] = 40397, + [SMALL_STATE(930)] = 40415, + [SMALL_STATE(931)] = 40433, + [SMALL_STATE(932)] = 40451, + [SMALL_STATE(933)] = 40469, + [SMALL_STATE(934)] = 40487, + [SMALL_STATE(935)] = 40505, + [SMALL_STATE(936)] = 40523, + [SMALL_STATE(937)] = 40541, + [SMALL_STATE(938)] = 40559, + [SMALL_STATE(939)] = 40577, + [SMALL_STATE(940)] = 40595, + [SMALL_STATE(941)] = 40613, + [SMALL_STATE(942)] = 40631, + [SMALL_STATE(943)] = 40649, + [SMALL_STATE(944)] = 40667, + [SMALL_STATE(945)] = 40685, + [SMALL_STATE(946)] = 40703, + [SMALL_STATE(947)] = 40721, + [SMALL_STATE(948)] = 40739, + [SMALL_STATE(949)] = 40757, + [SMALL_STATE(950)] = 40775, + [SMALL_STATE(951)] = 40793, + [SMALL_STATE(952)] = 40811, + [SMALL_STATE(953)] = 40829, + [SMALL_STATE(954)] = 40847, + [SMALL_STATE(955)] = 40865, + [SMALL_STATE(956)] = 40883, + [SMALL_STATE(957)] = 40901, + [SMALL_STATE(958)] = 40919, + [SMALL_STATE(959)] = 40937, + [SMALL_STATE(960)] = 40955, + [SMALL_STATE(961)] = 40973, + [SMALL_STATE(962)] = 40991, + [SMALL_STATE(963)] = 41009, + [SMALL_STATE(964)] = 41027, + [SMALL_STATE(965)] = 41045, + [SMALL_STATE(966)] = 41063, + [SMALL_STATE(967)] = 41081, + [SMALL_STATE(968)] = 41099, + [SMALL_STATE(969)] = 41117, + [SMALL_STATE(970)] = 41135, + [SMALL_STATE(971)] = 41153, + [SMALL_STATE(972)] = 41171, + [SMALL_STATE(973)] = 41189, + [SMALL_STATE(974)] = 41207, + [SMALL_STATE(975)] = 41225, + [SMALL_STATE(976)] = 41243, + [SMALL_STATE(977)] = 41261, + [SMALL_STATE(978)] = 41279, + [SMALL_STATE(979)] = 41297, + [SMALL_STATE(980)] = 41315, + [SMALL_STATE(981)] = 41333, + [SMALL_STATE(982)] = 41351, + [SMALL_STATE(983)] = 41369, + [SMALL_STATE(984)] = 41387, + [SMALL_STATE(985)] = 41405, + [SMALL_STATE(986)] = 41423, + [SMALL_STATE(987)] = 41441, + [SMALL_STATE(988)] = 41459, + [SMALL_STATE(989)] = 41477, + [SMALL_STATE(990)] = 41495, + [SMALL_STATE(991)] = 41506, + [SMALL_STATE(992)] = 41517, + [SMALL_STATE(993)] = 41528, + [SMALL_STATE(994)] = 41539, + [SMALL_STATE(995)] = 41549, + [SMALL_STATE(996)] = 41559, + [SMALL_STATE(997)] = 41569, + [SMALL_STATE(998)] = 41579, + [SMALL_STATE(999)] = 41589, + [SMALL_STATE(1000)] = 41598, + [SMALL_STATE(1001)] = 41607, + [SMALL_STATE(1002)] = 41616, + [SMALL_STATE(1003)] = 41625, + [SMALL_STATE(1004)] = 41635, + [SMALL_STATE(1005)] = 41645, + [SMALL_STATE(1006)] = 41655, + [SMALL_STATE(1007)] = 41665, + [SMALL_STATE(1008)] = 41675, + [SMALL_STATE(1009)] = 41685, + [SMALL_STATE(1010)] = 41695, + [SMALL_STATE(1011)] = 41705, + [SMALL_STATE(1012)] = 41715, + [SMALL_STATE(1013)] = 41725, + [SMALL_STATE(1014)] = 41732, + [SMALL_STATE(1015)] = 41739, + [SMALL_STATE(1016)] = 41744, + [SMALL_STATE(1017)] = 41751, + [SMALL_STATE(1018)] = 41758, + [SMALL_STATE(1019)] = 41765, + [SMALL_STATE(1020)] = 41772, + [SMALL_STATE(1021)] = 41776, + [SMALL_STATE(1022)] = 41780, + [SMALL_STATE(1023)] = 41784, + [SMALL_STATE(1024)] = 41788, + [SMALL_STATE(1025)] = 41792, + [SMALL_STATE(1026)] = 41796, + [SMALL_STATE(1027)] = 41800, + [SMALL_STATE(1028)] = 41804, + [SMALL_STATE(1029)] = 41808, + [SMALL_STATE(1030)] = 41812, + [SMALL_STATE(1031)] = 41816, + [SMALL_STATE(1032)] = 41820, + [SMALL_STATE(1033)] = 41824, + [SMALL_STATE(1034)] = 41828, + [SMALL_STATE(1035)] = 41832, + [SMALL_STATE(1036)] = 41836, + [SMALL_STATE(1037)] = 41840, + [SMALL_STATE(1038)] = 41844, + [SMALL_STATE(1039)] = 41848, +}; + +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(316), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [45] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(329), + [48] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(153), + [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(86), + [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(254), + [57] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(225), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(244), + [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(243), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(244), + [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(228), + [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(251), + [75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(199), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(178), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(229), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(181), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(230), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(255), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(168), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(35), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(10), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(9), + [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(416), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(148), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(87), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(242), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(227), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(245), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(247), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(245), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(224), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(235), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(189), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(173), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(220), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(182), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(218), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(262), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(171), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(8), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(45), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(6), + [171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(329), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(153), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(86), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(254), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(225), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(244), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(243), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(244), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(228), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(251), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(199), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(178), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(229), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(181), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(230), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(255), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(168), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(35), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(10), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(9), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(416), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(148), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(87), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(242), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(227), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(245), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(247), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(245), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(224), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(235), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(189), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(173), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(220), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(182), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(218), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(262), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(171), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(8), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(45), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(6), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(494), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(154), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(88), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(248), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(202), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(263), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(264), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(263), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(208), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(239), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(198), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(188), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(204), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(176), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(233), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(249), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(169), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(2), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(3), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(49), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(494), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(154), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(88), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(248), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(202), + [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(263), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(264), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(263), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(208), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(239), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(198), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(188), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(204), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(176), + [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(233), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(249), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(169), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(2), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(3), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(49), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(329), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(153), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(86), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(254), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(225), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(244), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(243), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(244), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(228), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(251), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(199), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(178), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(229), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(181), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(230), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(255), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(168), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(35), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(10), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(9), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(494), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(154), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(88), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(248), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(202), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(263), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(264), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(263), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(208), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(239), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(198), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(188), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(204), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(176), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(233), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(249), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(169), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(2), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(3), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(49), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(416), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(148), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(87), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(242), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(227), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(245), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(247), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(245), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(224), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(235), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(189), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(173), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(220), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(182), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(218), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(262), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(171), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(8), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(45), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(6), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(494), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(154), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(88), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(248), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(202), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(263), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(264), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(263), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(208), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(239), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(198), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(188), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(204), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(176), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(233), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(249), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(169), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(2), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(3), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), SHIFT_REPEAT(49), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde, 2), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 2), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(316), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(152), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(89), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(260), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(214), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(258), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(257), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(258), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(203), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(252), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(195), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(180), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(223), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(175), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(217), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(234), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(166), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(4), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(5), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(7), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 1), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(416), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(148), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(87), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(242), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(227), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(245), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(247), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(245), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(224), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(235), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(189), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(173), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(220), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(182), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(218), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(262), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(171), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(8), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(45), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(6), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(329), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(153), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(86), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(254), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(225), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(244), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(243), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(244), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(228), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(251), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(199), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(178), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(229), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(181), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(230), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(255), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(168), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(35), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(10), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(9), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline, 2), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(571), + [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(156), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(90), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(331), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(236), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(351), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(312), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(351), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(237), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(334), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(200), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(192), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(240), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(193), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(246), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(332), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(174), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(15), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(16), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(17), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(571), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(159), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(1015), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(236), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(351), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(349), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(351), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(237), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(334), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(201), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(194), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(240), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(197), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(246), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(332), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(185), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(98), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(97), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1), SHIFT(96), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(571), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(159), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(1015), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(236), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(351), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(349), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(351), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(237), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(334), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(201), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(194), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(240), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(197), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(246), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(332), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(185), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(98), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(97), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1), SHIFT(96), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(571), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(159), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(1015), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(236), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(351), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(349), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(351), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(237), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(334), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(201), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(194), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(240), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(197), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(246), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(332), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(185), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(98), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(97), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1), SHIFT(96), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(571), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(159), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(1015), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(236), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(351), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(349), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(351), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(237), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(334), + [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(201), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(194), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(240), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(197), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(246), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element, 1), SHIFT(332), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(185), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(98), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(97), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element, 1), SHIFT(96), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(329), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(163), + [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(225), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(244), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(335), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(244), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(228), + [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(251), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(190), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(187), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(229), + [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(179), + [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(230), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(255), + [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(172), + [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(120), + [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(94), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(92), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(494), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(158), + [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(202), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(263), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(320), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(263), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(208), + [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(239), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(191), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(184), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(204), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(183), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(233), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(249), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(170), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(91), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(93), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(130), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(416), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(161), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(227), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(245), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(327), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(245), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(224), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(235), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(196), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(177), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(220), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(186), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(218), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(262), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(167), + [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(99), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(124), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1), SHIFT(95), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(416), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(161), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(227), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(245), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(327), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(245), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(224), + [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(235), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(196), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(177), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(220), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(186), + [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(218), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(262), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(167), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(99), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(124), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1), SHIFT(95), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(494), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(158), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(202), + [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(263), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(320), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(263), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(208), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(239), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(191), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(184), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(204), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(183), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(233), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(249), + [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(170), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(91), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(93), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(130), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(494), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(158), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(202), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(263), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(320), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(263), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(208), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(239), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(191), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(184), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(204), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(183), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(233), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(249), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(170), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(91), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(93), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(130), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(416), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(161), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(227), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(245), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(327), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(245), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(224), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(235), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(196), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(177), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(220), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(186), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(218), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(262), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(167), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(99), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(124), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(95), + [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(329), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(163), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(225), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(244), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(335), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(244), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(228), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(251), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(190), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(187), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(229), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(179), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(230), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(255), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(172), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(120), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(94), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), SHIFT(92), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(329), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(163), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(225), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(244), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(335), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(244), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(228), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(251), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(190), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(187), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(229), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(179), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(230), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(255), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(172), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(120), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(94), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1), SHIFT(92), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(416), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(161), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(227), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(245), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(327), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(245), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(224), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(235), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(196), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(177), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(220), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(186), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(218), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(262), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(167), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(99), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(124), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(95), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(329), + [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(163), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(225), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(244), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(335), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(244), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(228), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(251), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(190), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(187), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(229), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(179), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(230), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(255), + [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(172), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(120), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(94), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(92), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(494), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(158), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(202), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(263), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(320), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(263), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(208), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(239), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(191), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(184), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(204), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(183), + [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(233), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(249), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(170), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(91), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(93), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), SHIFT_REPEAT(130), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_tilde_no_link, 2), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(571), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(159), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(236), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(351), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(349), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(351), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(237), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(334), + [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(201), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(194), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(240), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(197), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(246), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(332), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(185), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(98), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(97), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(96), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_base, 1), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(494), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(149), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(202), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(263), + [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(264), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(263), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(208), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(239), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(198), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(188), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(204), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(176), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(233), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(249), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(169), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(416), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(150), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(227), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(245), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(247), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(245), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(224), + [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(235), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(189), + [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(173), + [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(220), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(182), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(218), + [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(262), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(171), + [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(329), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(151), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(225), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(244), + [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(243), + [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(244), + [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(228), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(251), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(199), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(178), + [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(229), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(181), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(230), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(255), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(168), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(316), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(155), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(214), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(258), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(257), + [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(258), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(203), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(252), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(195), + [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(180), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(223), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(175), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(217), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(234), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(166), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(571), + [2478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(157), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(236), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(351), + [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(312), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(351), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(237), + [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(334), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(200), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(192), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(240), + [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(193), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(246), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(332), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(174), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(160), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(320), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(191), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(184), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(183), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(170), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(162), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(335), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(190), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(187), + [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(179), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(172), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(164), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(327), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(196), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(177), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(186), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(167), + [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(165), + [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(349), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(201), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(194), + [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(197), + [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_base_repeat1, 2), SHIFT_REPEAT(185), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 1), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(783), + [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(783), + [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(790), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 1), + [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(784), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(784), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(679), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(681), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(666), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(668), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(777), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(777), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(785), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(792), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(792), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(688), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(673), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(780), + [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(780), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(786), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(787), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(787), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(726), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(701), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(718), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(720), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(722), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(691), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(703), + [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(667), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(667), + [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(817), + [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(788), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(781), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(781), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(687), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(680), + [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(680), + [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(818), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(685), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(674), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(674), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(820), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(704), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(710), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(709), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(682), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(682), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(821), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(716), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(665), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(665), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(819), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(684), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1013), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(871), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(804), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(805), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_base, 1), SHIFT(805), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(644), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(207), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), + [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(639), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(639), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(642), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(641), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(641), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1017), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1019), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1016), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(1018), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 5), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 5), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(80), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(59), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(74), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(69), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_label, 3), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 4), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 4), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_text, 1, .dynamic_precedence = 10), REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), SHIFT(448), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), SHIFT(446), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_tag, 1), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_tag, 1), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, .production_id = 1), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, .production_id = 1), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 2, .dynamic_precedence = 100, .production_id = 2), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 2, .dynamic_precedence = 100, .production_id = 2), + [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), SHIFT(306), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), SHIFT(309), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 1, .production_id = 1), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 1, .production_id = 1), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 2), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 2), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_base, 2), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_base, 2), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), SHIFT(527), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), SHIFT(368), + [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), SHIFT(366), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_span, 3, .dynamic_precedence = 100, .production_id = 2), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_code_span, 3, .dynamic_precedence = 100, .production_id = 2), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), SHIFT(477), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), SHIFT(529), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), SHIFT(470), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 2), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 2), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 3), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 3), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 3), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 3), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 2), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 2), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 3), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 3), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 3), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 3), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde, 2), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde, 2), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough, 3, .dynamic_precedence = 1, .production_id = 3), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough, 3, .dynamic_precedence = 1, .production_id = 3), + [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_base, 1), SHIFT(66), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 30), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 3), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 4, .dynamic_precedence = 1, .production_id = 3), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 3), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 4, .dynamic_precedence = 1, .production_id = 3), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough, 4, .dynamic_precedence = 1, .production_id = 3), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough, 4, .dynamic_precedence = 1, .production_id = 3), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 3), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 3), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 3), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 3), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strikethrough_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strikethrough_no_link, 3, .dynamic_precedence = 1, .production_id = 3), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 4, .dynamic_precedence = 1, .production_id = 3), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_tilde_no_link, 1, .production_id = 1), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_tilde_no_link, 1, .production_id = 1), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(732), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(746), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(749), + [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(749), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(747), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(768), + [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(731), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(728), + [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(728), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(741), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(774), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(768), + [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(731), + [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(728), + [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(728), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(741), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(774), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(768), + [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(651), + [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(747), + [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(747), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(746), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(749), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(749), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(768), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(654), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(732), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), + [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(732), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(746), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(749), + [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(749), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(768), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(661), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(757), + [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(757), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), + [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(746), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(749), + [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(749), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(768), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(663), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(728), + [3645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(728), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(741), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(768), + [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(664), + [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(782), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), + [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(782), + [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(749), + [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(749), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(783), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(790), + [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(784), + [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(784), + [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), SHIFT_REPEAT(671), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_span_repeat1, 2), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(746), + [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(749), + [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(749), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(780), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(780), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(786), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(787), + [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(787), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(689), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(776), + [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(789), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(788), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(781), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(781), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(695), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(777), + [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(777), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(785), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(792), + [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(792), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(721), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat3, 1), + [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat3, 1), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), + [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(796), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), + [4010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(804), + [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(805), + [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(805), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(740), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT_REPEAT(1014), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(798), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(804), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(805), + [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(805), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(748), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT_REPEAT(1014), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(807), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), + [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(804), + [4079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(805), + [4082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(805), + [4085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(755), + [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [4091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), + [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), + [4114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat3, 2), + [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat3, 2), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), SHIFT_REPEAT(1014), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), + [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 1), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 1), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), + [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 2), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 2), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 1), + [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 1), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 3), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 3), + [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(788), + [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(781), + [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(781), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), + [4354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(899), + [4357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(898), + [4360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(898), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), SHIFT_REPEAT(860), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 2), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 2), + [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(899), + [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(898), + [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(898), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(891), + [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(894), + [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(894), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 1), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 1), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 3), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 3), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 2), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 2), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 6), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 6), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5), + [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), + [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, .dynamic_precedence = 10), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4586] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_markdown_inline_external_scanner_create(void); +void tree_sitter_markdown_inline_external_scanner_destroy(void *); +bool tree_sitter_markdown_inline_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_markdown_inline_external_scanner_serialize(void *, char *); +void tree_sitter_markdown_inline_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_markdown_inline(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .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, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_markdown_inline_external_scanner_create, + tree_sitter_markdown_inline_external_scanner_destroy, + tree_sitter_markdown_inline_external_scanner_scan, + tree_sitter_markdown_inline_external_scanner_serialize, + tree_sitter_markdown_inline_external_scanner_deserialize, + }, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/src/scanner.cc b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/src/scanner.cc new file mode 100644 index 0000000000..545d504188 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/src/scanner.cc @@ -0,0 +1,357 @@ +#include +#include +#include +#include +#include +#include + +using std::vector; +using std::memcpy; + +namespace TreeSitterMarkdownInline { + // For explanation of the tokens see grammar.js + enum TokenType { + ERROR, + TRIGGER_ERROR, + CODE_SPAN_START, + CODE_SPAN_CLOSE, + EMPHASIS_OPEN_STAR, + EMPHASIS_OPEN_UNDERSCORE, + EMPHASIS_CLOSE_STAR, + EMPHASIS_CLOSE_UNDERSCORE, + LAST_TOKEN_WHITESPACE, + LAST_TOKEN_PUNCTUATION, + STRIKETHROUGH_OPEN, + STRIKETHROUGH_CLOSE, + }; + + // Determines if a character is punctuation as defined by the markdown spec. + bool is_punctuation(char c) { + return + (c >= '!' && c <= '/') || + (c >= ':' && c <= '@') || + (c >= '[' && c <= '`') || + (c >= '{' && c <= '~'); + } + + // Determines if a character is ascii whitespace as defined by the markdown spec. + bool is_whitespace(char c) { + return c == ' ' || c == '\t' || c == '\n' || c == '\r'; + } + + // State bitflags used with `Scanner.state` + + // TODO + const uint8_t STATE_EMPHASIS_DELIMITER_MOD_3 = 0x3; + // Current delimiter run is opening + const uint8_t STATE_EMPHASIS_DELIMITER_IS_OPEN = 0x1 << 2; + + struct Scanner { + + // Parser state flags + uint8_t state; + uint8_t code_span_delimiter_length; + // The number of characters remaining in the currrent emphasis delimiter run. + uint8_t num_emphasis_delimiters_left; + + Scanner() { + deserialize(NULL, 0); + } + + // Write the whole state of a Scanner to a byte buffer + unsigned serialize(char *buffer) { + size_t i = 0; + buffer[i++] = state; + buffer[i++] = code_span_delimiter_length; + buffer[i++] = num_emphasis_delimiters_left; + return i; + } + + // Read the whole state of a Scanner from a byte buffer + // `serizalize` and `deserialize` should be fully symmetric. + void deserialize(const char *buffer, unsigned length) { + state = 0; + code_span_delimiter_length = 0; + num_emphasis_delimiters_left = 0; + if (length > 0) { + size_t i = 0; + state = buffer[i++]; + code_span_delimiter_length = buffer[i++]; + num_emphasis_delimiters_left = buffer[i++]; + } + } + + // Convenience function to emit the error token. This is done to stop invalid parse branches. + // Specifically: + // 1. When encountering a newline after a line break that ended a paragraph, and no new block + // has been opened. + // 2. When encountering a new block after a soft line break. + // 3. When a `$._trigger_error` token is valid, which is used to stop parse branches through + // normal tree-sitter grammar rules. + // + // See also the `$._soft_line_break` and `$._paragraph_end_newline` tokens in grammar.js + bool error(TSLexer *lexer) { + lexer->result_symbol = ERROR; + return true; + } + + bool scan(TSLexer *lexer, const bool *valid_symbols) { + // A normal tree-sitter rule decided that the current branch is invalid and now "requests" + // an error to stop the branch + if (valid_symbols[TRIGGER_ERROR]) { + return error(lexer); + } + + // Decide which tokens to consider based on the first non-whitespace character + switch (lexer->lookahead) { + case '`': + // A backtick could mark the beginning or ending of a code span or a fenced + // code block. + return parse_backtick(lexer, valid_symbols); + break; + case '*': + // A star could either mark the beginning or ending of emphasis, a list item or + // thematic break. + // This code is similar to the code for '_' and '+'. + return parse_star(lexer, valid_symbols); + break; + case '_': + return parse_underscore(lexer, valid_symbols); + break; + case '~': + return parse_tilde(lexer, valid_symbols); + break; + } + return false; + } + + bool parse_backtick(TSLexer *lexer, const bool *valid_symbols) { + size_t level = 0; + while (lexer->lookahead == '`') { + lexer->advance(lexer, false); + level++; + } + lexer->mark_end(lexer); + if (level == code_span_delimiter_length && valid_symbols[CODE_SPAN_CLOSE]) { + code_span_delimiter_length = 0; + lexer->result_symbol = CODE_SPAN_CLOSE; + return true; + } else if (valid_symbols[CODE_SPAN_START]) { + code_span_delimiter_length = level; + lexer->result_symbol = CODE_SPAN_START; + return true; + } + return false; + } + + bool parse_star(TSLexer *lexer, const bool *valid_symbols) { + lexer->advance(lexer, false); + // If `num_emphasis_delimiters_left` is not zero then we already decided that this should be + // part of an emphasis delimiter run, so interpret it as such. + if (num_emphasis_delimiters_left > 0) { + // The `STATE_EMPHASIS_DELIMITER_IS_OPEN` state flag tells us wether it should be open + // or close. + if ((state & STATE_EMPHASIS_DELIMITER_IS_OPEN) && valid_symbols[EMPHASIS_OPEN_STAR]) { + state &= (~STATE_EMPHASIS_DELIMITER_IS_OPEN); + lexer->result_symbol = EMPHASIS_OPEN_STAR; + num_emphasis_delimiters_left--; + return true; + } else if (valid_symbols[EMPHASIS_CLOSE_STAR]) { + lexer->result_symbol = EMPHASIS_CLOSE_STAR; + num_emphasis_delimiters_left--; + return true; + } + } + lexer->mark_end(lexer); + // Otherwise count the number of stars + size_t star_count = 1; + while (lexer->lookahead == '*') { + star_count++; + lexer->advance(lexer, false); + } + bool line_end = lexer->lookahead == '\n' || lexer->lookahead == '\r' || lexer->eof(lexer); + if (valid_symbols[EMPHASIS_OPEN_STAR] || valid_symbols[EMPHASIS_CLOSE_STAR]) { + // The desicion made for the first star also counts for all the following stars in the + // delimiter run. Rembemer how many there are. + num_emphasis_delimiters_left = star_count - 1; + // Look ahead to the next symbol (after the last star) to find out if it is whitespace + // punctuation or other. + bool next_symbol_whitespace = line_end || lexer->lookahead == ' ' || lexer->lookahead == '\t'; + bool next_symbol_punctuation = is_punctuation(lexer->lookahead); + // Information about the last token is in valid_symbols. See grammar.js for these + // tokens for how this is done. + if ( + valid_symbols[EMPHASIS_CLOSE_STAR] && + !valid_symbols[LAST_TOKEN_WHITESPACE] && ( + !valid_symbols[LAST_TOKEN_PUNCTUATION] || + next_symbol_punctuation || + next_symbol_whitespace + ) + ) { + // Closing delimiters take precedence + state &= ~STATE_EMPHASIS_DELIMITER_IS_OPEN; + lexer->result_symbol = EMPHASIS_CLOSE_STAR; + return true; + } else if ( + !next_symbol_whitespace && ( + !next_symbol_punctuation || + valid_symbols[LAST_TOKEN_PUNCTUATION] || + valid_symbols[LAST_TOKEN_WHITESPACE] + ) + ) { + state |= STATE_EMPHASIS_DELIMITER_IS_OPEN; + lexer->result_symbol = EMPHASIS_OPEN_STAR; + return true; + } + } + return false; + } + + bool parse_tilde(TSLexer *lexer, const bool *valid_symbols) { + lexer->advance(lexer, false); + // If `num_emphasis_delimiters_left` is not zero then we already decided that this should be + // part of an emphasis delimiter run, so interpret it as such. + if (num_emphasis_delimiters_left > 0) { + // The `STATE_EMPHASIS_DELIMITER_IS_OPEN` state flag tells us wether it should be open + // or close. + if ((state & STATE_EMPHASIS_DELIMITER_IS_OPEN) && valid_symbols[STRIKETHROUGH_OPEN]) { + state &= (~STATE_EMPHASIS_DELIMITER_IS_OPEN); + lexer->result_symbol = STRIKETHROUGH_OPEN; + num_emphasis_delimiters_left--; + return true; + } else if (valid_symbols[STRIKETHROUGH_CLOSE]) { + lexer->result_symbol = STRIKETHROUGH_CLOSE; + num_emphasis_delimiters_left--; + return true; + } + } + lexer->mark_end(lexer); + // Otherwise count the number of tildes + size_t star_count = 1; + while (lexer->lookahead == '~') { + star_count++; + lexer->advance(lexer, false); + } + bool line_end = lexer->lookahead == '\n' || lexer->lookahead == '\r' || lexer->eof(lexer); + if (valid_symbols[STRIKETHROUGH_OPEN] || valid_symbols[STRIKETHROUGH_CLOSE]) { + // The desicion made for the first star also counts for all the following stars in the + // delimiter run. Rembemer how many there are. + num_emphasis_delimiters_left = star_count - 1; + // Look ahead to the next symbol (after the last star) to find out if it is whitespace + // punctuation or other. + bool next_symbol_whitespace = line_end || lexer->lookahead == ' ' || lexer->lookahead == '\t'; + bool next_symbol_punctuation = is_punctuation(lexer->lookahead); + // Information about the last token is in valid_symbols. See grammar.js for these + // tokens for how this is done. + if ( + valid_symbols[STRIKETHROUGH_CLOSE] && + !valid_symbols[LAST_TOKEN_WHITESPACE] && ( + !valid_symbols[LAST_TOKEN_PUNCTUATION] || + next_symbol_punctuation || + next_symbol_whitespace + ) + ) { + // Closing delimiters take precedence + state &= ~STATE_EMPHASIS_DELIMITER_IS_OPEN; + lexer->result_symbol = STRIKETHROUGH_CLOSE; + return true; + } else if ( + !next_symbol_whitespace && ( + !next_symbol_punctuation || + valid_symbols[LAST_TOKEN_PUNCTUATION] || + valid_symbols[LAST_TOKEN_WHITESPACE] + ) + ) { + state |= STATE_EMPHASIS_DELIMITER_IS_OPEN; + lexer->result_symbol = STRIKETHROUGH_OPEN; + return true; + } + } + return false; + } + + + bool parse_underscore(TSLexer *lexer, const bool *valid_symbols) { + lexer->advance(lexer, false); + // If `num_emphasis_delimiters_left` is not zero then we already decided that this should be + // part of an emphasis delimiter run, so interpret it as such. + if (num_emphasis_delimiters_left > 0) { + // The `STATE_EMPHASIS_DELIMITER_IS_OPEN` state flag tells us wether it should be open + // or close. + if ((state & STATE_EMPHASIS_DELIMITER_IS_OPEN) && valid_symbols[EMPHASIS_OPEN_UNDERSCORE]) { + lexer->result_symbol = EMPHASIS_OPEN_UNDERSCORE; + num_emphasis_delimiters_left--; + return true; + } else if (valid_symbols[EMPHASIS_CLOSE_UNDERSCORE]) { + lexer->result_symbol = EMPHASIS_CLOSE_UNDERSCORE; + num_emphasis_delimiters_left--; + return true; + } + } + lexer->mark_end(lexer); + // Otherwise count the number of stars + size_t underscore_count = 1; + while (lexer->lookahead == '_') { + underscore_count++; + lexer->advance(lexer, false); + } + bool line_end = lexer->lookahead == '\n' || lexer->lookahead == '\r' || lexer->eof(lexer); + if (valid_symbols[EMPHASIS_OPEN_UNDERSCORE] || valid_symbols[EMPHASIS_CLOSE_UNDERSCORE]) { + num_emphasis_delimiters_left = underscore_count - 1; + bool next_symbol_whitespace = line_end || lexer->lookahead == ' ' || lexer->lookahead == '\t'; + bool next_symbol_punctuation = is_punctuation(lexer->lookahead); + bool right_flanking = !valid_symbols[LAST_TOKEN_WHITESPACE] && + (!valid_symbols[LAST_TOKEN_PUNCTUATION] || next_symbol_punctuation || next_symbol_whitespace); + bool left_flanking = !next_symbol_whitespace && + (!next_symbol_punctuation || valid_symbols[LAST_TOKEN_PUNCTUATION] || valid_symbols[LAST_TOKEN_WHITESPACE]); + if (valid_symbols[EMPHASIS_CLOSE_UNDERSCORE] && right_flanking && (!left_flanking || next_symbol_punctuation)) { + state &= ~STATE_EMPHASIS_DELIMITER_IS_OPEN; + lexer->result_symbol = EMPHASIS_CLOSE_UNDERSCORE; + return true; + } else if (left_flanking && (!right_flanking || valid_symbols[LAST_TOKEN_PUNCTUATION])) { + state |= STATE_EMPHASIS_DELIMITER_IS_OPEN; + lexer->result_symbol = EMPHASIS_OPEN_UNDERSCORE; + return true; + } + } + return false; + } + }; +} + +extern "C" { + void *tree_sitter_markdown_inline_external_scanner_create() { + return new TreeSitterMarkdownInline::Scanner(); + } + + bool tree_sitter_markdown_inline_external_scanner_scan( + void *payload, + TSLexer *lexer, + const bool *valid_symbols + ) { + TreeSitterMarkdownInline::Scanner *scanner = static_cast(payload); + return scanner->scan(lexer, valid_symbols); + } + + unsigned tree_sitter_markdown_inline_external_scanner_serialize( + void *payload, + char* buffer + ) { + TreeSitterMarkdownInline::Scanner *scanner = static_cast(payload); + return scanner->serialize(buffer); + } + + void tree_sitter_markdown_inline_external_scanner_deserialize( + void *payload, + char* buffer, + unsigned length + ) { + TreeSitterMarkdownInline::Scanner *scanner = static_cast(payload); + scanner->deserialize(buffer, length); + } + + void tree_sitter_markdown_inline_external_scanner_destroy(void *payload) { + TreeSitterMarkdownInline::Scanner *scanner = static_cast(payload); + delete scanner; + } +} diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/src/tree_sitter/parser.h b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/src/tree_sitter/parser.h new file mode 100644 index 0000000000..2b14ac1046 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown-inline/src/tree_sitter/parser.h @@ -0,0 +1,224 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus-failing/spec.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus-failing/spec.txt new file mode 100644 index 0000000000..ddd1281b60 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus-failing/spec.txt @@ -0,0 +1,17 @@ +================================================================================ +Example 107 - https://github.github.com/gfm/#example-107 +================================================================================ +``` +aaa + ``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation))))) + diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_minus_metadata.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_minus_metadata.txt new file mode 100644 index 0000000000..7fde4527a9 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_minus_metadata.txt @@ -0,0 +1,19 @@ +================================================================================ +EXTENSION_MINUS_METADATA - https://pandoc.org/MANUAL.html#extension-yaml_metadata_block +================================================================================ +--- +title: 'This is the title: it contains a colon' +author: +- Author One +- Author Two +keywords: [nothing, nothingness] +abstract: | + This is the abstract. + + It consists of two paragraphs. +--- + +-------------------------------------------------------------------------------- + +(document + (minus_metadata)) diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_pipe_table.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_pipe_table.txt new file mode 100644 index 0000000000..3d1a02f0d8 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_pipe_table.txt @@ -0,0 +1,182 @@ +================================================================================ +Example 198 - https://github.github.com/gfm/#example-198 +================================================================================ +| foo | bar | +| --- | --- | +| baz | bim | + +-------------------------------------------------------------------------------- + +(document + (section + (pipe_table + (pipe_table_header + (pipe_table_cell) + (pipe_table_cell)) + (pipe_table_delimiter_row + (pipe_table_delimiter_cell) + (pipe_table_delimiter_cell)) + (pipe_table_row + (pipe_table_cell) + (pipe_table_cell))))) + +================================================================================ +Example 199 - https://github.github.com/gfm/#example-199 +================================================================================ +| abc | defghi | +:-: | -----------: +bar | baz + +-------------------------------------------------------------------------------- + +(document + (section + (pipe_table + (pipe_table_header + (pipe_table_cell) + (pipe_table_cell)) + (pipe_table_delimiter_row + (pipe_table_delimiter_cell + (pipe_table_align_left) + (pipe_table_align_right)) + (pipe_table_delimiter_cell + (pipe_table_align_right))) + (pipe_table_row + (pipe_table_cell) + (pipe_table_cell))))) + +================================================================================ +Example 200 - https://github.github.com/gfm/#example-200 +================================================================================ +| f\|oo | +| ------ | +| b `\|` az | +| b **\|** im | + +-------------------------------------------------------------------------------- + +(document + (section + (pipe_table + (pipe_table_header + (pipe_table_cell)) + (pipe_table_delimiter_row + (pipe_table_delimiter_cell)) + (pipe_table_row + (pipe_table_cell)) + (pipe_table_row + (pipe_table_cell))))) + +================================================================================ +Example 201 - https://github.github.com/gfm/#example-201 +================================================================================ +| abc | def | +| --- | --- | +| bar | baz | +> bar + +-------------------------------------------------------------------------------- + +(document + (section + (pipe_table + (pipe_table_header + (pipe_table_cell) + (pipe_table_cell)) + (pipe_table_delimiter_row + (pipe_table_delimiter_cell) + (pipe_table_delimiter_cell)) + (pipe_table_row + (pipe_table_cell) + (pipe_table_cell))) + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 202 - https://github.github.com/gfm/#example-202 +================================================================================ +| abc | def | +| --- | --- | +| bar | baz | +bar + +bar + +-------------------------------------------------------------------------------- + +(document + (section + (pipe_table + (pipe_table_header + (pipe_table_cell) + (pipe_table_cell)) + (pipe_table_delimiter_row + (pipe_table_delimiter_cell) + (pipe_table_delimiter_cell)) + (pipe_table_row + (pipe_table_cell) + (pipe_table_cell)) + (pipe_table_row + (pipe_table_cell))) + (paragraph + (inline)))) + +================================================================================ +Example 203 - https://github.github.com/gfm/#example-203 +================================================================================ +| abc | def | +| --- | +| bar | + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 204 - https://github.github.com/gfm/#example-204 +================================================================================ +| abc | def | +| --- | --- | +| bar | +| bar | baz | boo | + +-------------------------------------------------------------------------------- + +(document + (section + (pipe_table + (pipe_table_header + (pipe_table_cell) + (pipe_table_cell)) + (pipe_table_delimiter_row + (pipe_table_delimiter_cell) + (pipe_table_delimiter_cell)) + (pipe_table_row + (pipe_table_cell)) + (pipe_table_row + (pipe_table_cell) + (pipe_table_cell) + (pipe_table_cell))))) + +================================================================================ +Example 205 - https://github.github.com/gfm/#example-205 +================================================================================ +| abc | def | +| --- | --- | + +-------------------------------------------------------------------------------- + +(document + (section + (pipe_table + (pipe_table_header + (pipe_table_cell) + (pipe_table_cell)) + (pipe_table_delimiter_row + (pipe_table_delimiter_cell) + (pipe_table_delimiter_cell))))) diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_plus_metadata.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_plus_metadata.txt new file mode 100644 index 0000000000..84d1e0ea91 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_plus_metadata.txt @@ -0,0 +1,19 @@ +================================================================================ +EXTENSION_PLUS_METADATA +================================================================================ ++++ +title: 'This is the title: it contains a colon' +author: +- Author One +- Author Two +keywords: [nothing, nothingness] +abstract: | + This is the abstract. + + It consists of two paragraphs. ++++ + +-------------------------------------------------------------------------------- + +(document + (plus_metadata)) diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_task_list.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_task_list.txt new file mode 100644 index 0000000000..e934fc2784 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/extension_task_list.txt @@ -0,0 +1,58 @@ +================================================================================ +Example 279 - https://github.github.com/gfm/#example-279 +================================================================================ +- [ ] foo +- [x] bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (task_list_marker_unchecked) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (task_list_marker_checked) + (paragraph + (inline)))))) + +================================================================================ +Example 280 - https://github.github.com/gfm/#example-280 +================================================================================ +- [x] foo + - [ ] bar + - [x] baz +- [ ] bim + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (task_list_marker_checked) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (task_list_marker_unchecked) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_minus) + (task_list_marker_checked) + (paragraph + (inline))))) + (list_item + (list_marker_minus) + (task_list_marker_unchecked) + (paragraph + (inline)))))) diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/issues.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/issues.txt new file mode 100644 index 0000000000..0577595dc2 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/issues.txt @@ -0,0 +1,65 @@ +================================================================================ +#17 - Titles not detected after an empty inner list item (bullet point) +================================================================================ +* a + * b + * + + +# C + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_star) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_star) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_star) + (block_continuation) + (block_continuation)))))) + (section + (atx_heading + (atx_h1_marker) + (inline)))) + +================================================================================ +#33 - Fenced code block attributes +================================================================================ +```{R} +1 + 1 +``` + +```{} +1 + 1 +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (info_string + (language)) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)) + (fenced_code_block + (fenced_code_block_delimiter) + (info_string) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)))) diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/spec.txt b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/spec.txt new file mode 100644 index 0000000000..515e20bd7e --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/corpus/spec.txt @@ -0,0 +1,5845 @@ +================================================================================ +Example 1 - https://github.github.com/gfm/#example-1 +================================================================================ + foo baz bim + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 2 - https://github.github.com/gfm/#example-2 +================================================================================ + foo baz bim + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 3 - https://github.github.com/gfm/#example-3 +================================================================================ + a a + ὐ a + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block + (block_continuation)))) + +================================================================================ +Example 4 - https://github.github.com/gfm/#example-4 +================================================================================ + - foo + + bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline)))))) + +================================================================================ +Example 5 - https://github.github.com/gfm/#example-5 +================================================================================ +- foo + + bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (indented_code_block))))) + +================================================================================ +Example 6 - https://github.github.com/gfm/#example-6 +================================================================================ +> foo + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (indented_code_block)))) + +================================================================================ +Example 7 - https://github.github.com/gfm/#example-7 +================================================================================ +- foo + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (indented_code_block))))) + +================================================================================ +Example 8 - https://github.github.com/gfm/#example-8 +================================================================================ + foo + bar + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block + (block_continuation)))) + +================================================================================ +Example 9 - https://github.github.com/gfm/#example-9 +================================================================================ + - foo + - bar + - baz + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))))))) + +================================================================================ +Example 10 - https://github.github.com/gfm/#example-10 +================================================================================ +# Foo + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h1_marker) + (inline)))) + +================================================================================ +Example 11 - https://github.github.com/gfm/#example-11 +================================================================================ +* * * + +-------------------------------------------------------------------------------- + +(document + (section + (thematic_break))) + +================================================================================ +Example 12 - https://github.github.com/gfm/#example-12 +================================================================================ +- `one +- two` + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 13 - https://github.github.com/gfm/#example-13 +================================================================================ +*** +--- +___ + +-------------------------------------------------------------------------------- + +(document + (section + (thematic_break) + (thematic_break) + (thematic_break))) + +================================================================================ +Example 14 - https://github.github.com/gfm/#example-14 +================================================================================ ++++ + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 15 - https://github.github.com/gfm/#example-15 +================================================================================ += + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 16 - https://github.github.com/gfm/#example-16 +================================================================================ +-- +** +__ + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 17 - https://github.github.com/gfm/#example-17 +================================================================================ + *** + *** + *** + +-------------------------------------------------------------------------------- + +(document + (section + (thematic_break) + (thematic_break) + (thematic_break))) + +================================================================================ +Example 18 - https://github.github.com/gfm/#example-18 +================================================================================ + *** + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 19 - https://github.github.com/gfm/#example-19 +================================================================================ +Foo + *** + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 20 - https://github.github.com/gfm/#example-20 +================================================================================ +_____________________________________ + +-------------------------------------------------------------------------------- + +(document + (section + (thematic_break))) + +================================================================================ +Example 21 - https://github.github.com/gfm/#example-21 +================================================================================ + - - - + +-------------------------------------------------------------------------------- + +(document + (section + (thematic_break))) + +================================================================================ +Example 22 - https://github.github.com/gfm/#example-22 +================================================================================ + ** * ** * ** * ** + +-------------------------------------------------------------------------------- + +(document + (section + (thematic_break))) + +================================================================================ +Example 23 - https://github.github.com/gfm/#example-23 +================================================================================ +- - - - + +-------------------------------------------------------------------------------- + +(document + (section + (thematic_break))) + +================================================================================ +Example 24 - https://github.github.com/gfm/#example-24 +================================================================================ +- - - - + +-------------------------------------------------------------------------------- + +(document + (section + (thematic_break))) + +================================================================================ +Example 25 - https://github.github.com/gfm/#example-25 +================================================================================ +_ _ _ _ a + +a------ + +---a--- + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 26 - https://github.github.com/gfm/#example-26 +================================================================================ + *-* + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 27 - https://github.github.com/gfm/#example-27 +================================================================================ +- foo +*** +- bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))) + (thematic_break) + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 28 - https://github.github.com/gfm/#example-28 +================================================================================ +Foo +*** +bar + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (thematic_break) + (paragraph + (inline)))) + +================================================================================ +Example 29 - https://github.github.com/gfm/#example-29 +================================================================================ +Foo +--- +bar + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)) + (paragraph + (inline)))) + +================================================================================ +Example 30 - https://github.github.com/gfm/#example-30 +================================================================================ +* Foo +* * * +* Bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_star) + (paragraph + (inline)))) + (thematic_break) + (list + (list_item + (list_marker_star) + (paragraph + (inline)))))) + +================================================================================ +Example 31 - https://github.github.com/gfm/#example-31 +================================================================================ +- Foo +- * * * + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (thematic_break))))) + +================================================================================ +Example 32 - https://github.github.com/gfm/#example-32 +================================================================================ +# foo +## foo +### foo +#### foo +##### foo +###### foo + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h1_marker) + (inline)) + (section + (atx_heading + (atx_h2_marker) + (inline)) + (section + (atx_heading + (atx_h3_marker) + (inline)) + (section + (atx_heading + (atx_h4_marker) + (inline)) + (section + (atx_heading + (atx_h5_marker) + (inline)) + (section + (atx_heading + (atx_h6_marker) + (inline))))))))) + +================================================================================ +Example 33 - https://github.github.com/gfm/#example-33 +================================================================================ +####### foo + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 34 - https://github.github.com/gfm/#example-34 +================================================================================ +#5 bolt + +#hashtag + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 35 - https://github.github.com/gfm/#example-35 +================================================================================ +\## foo + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 36 - https://github.github.com/gfm/#example-36 +================================================================================ +# foo *bar* \*baz\* + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h1_marker) + (inline)))) + +================================================================================ +Example 37 - https://github.github.com/gfm/#example-37 +================================================================================ +# foo + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h1_marker) + (inline)))) + +================================================================================ +Example 38 - https://github.github.com/gfm/#example-38 +================================================================================ + ### foo + ## foo + # foo + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h3_marker) + (inline))) + (section + (atx_heading + (atx_h2_marker) + (inline))) + (section + (atx_heading + (atx_h1_marker) + (inline)))) + +================================================================================ +Example 39 - https://github.github.com/gfm/#example-39 +================================================================================ + # foo + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 40 - https://github.github.com/gfm/#example-40 +================================================================================ +foo + # bar + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 41 - https://github.github.com/gfm/#example-41 +================================================================================ +## foo ## + ### bar ### + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h2_marker) + (inline)) + (section + (atx_heading + (atx_h3_marker) + (inline))))) + +================================================================================ +Example 42 - https://github.github.com/gfm/#example-42 +================================================================================ +# foo ################################## +##### foo ## + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h1_marker) + (inline)) + (section + (atx_heading + (atx_h5_marker) + (inline))))) + +================================================================================ +Example 43 - https://github.github.com/gfm/#example-43 +================================================================================ +### foo ### + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h3_marker) + (inline)))) + +================================================================================ +Example 44 - https://github.github.com/gfm/#example-44 +================================================================================ +### foo ### b + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h3_marker) + (inline)))) + +================================================================================ +Example 45 - https://github.github.com/gfm/#example-45 +================================================================================ +# foo# + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h1_marker) + (inline)))) + +================================================================================ +Example 46 - https://github.github.com/gfm/#example-46 +================================================================================ +### foo \### +## foo #\## +# foo \# + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h3_marker) + (inline))) + (section + (atx_heading + (atx_h2_marker) + (inline))) + (section + (atx_heading + (atx_h1_marker) + (inline)))) + +================================================================================ +Example 47 - https://github.github.com/gfm/#example-47 +================================================================================ +**** +## foo +**** + +-------------------------------------------------------------------------------- + +(document + (section + (thematic_break)) + (section + (atx_heading + (atx_h2_marker) + (inline)) + (thematic_break))) + +================================================================================ +Example 48 - https://github.github.com/gfm/#example-48 +================================================================================ +Foo bar +# baz +Bar foo + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline))) + (section + (atx_heading + (atx_h1_marker) + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 49 - https://github.github.com/gfm/#example-49 +================================================================================ +## +# +### ### + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h2_marker))) + (section + (atx_heading + (atx_h1_marker)) + (section + (atx_heading + (atx_h3_marker) + (inline))))) + +================================================================================ +Example 50 - https://github.github.com/gfm/#example-50 +================================================================================ +Foo *bar* += + +Foo *bar* +--------- + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h1_underline)) + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline))))) + +================================================================================ +Example 51 - https://github.github.com/gfm/#example-51 +================================================================================ +Foo *bar +baz* += + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h1_underline)))) + +================================================================================ +Example 52 - https://github.github.com/gfm/#example-52 +================================================================================ + Foo *bar +baz* += + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h1_underline)))) + +================================================================================ +Example 53 - https://github.github.com/gfm/#example-53 +================================================================================ +Foo +------------------------- + +Foo += + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)) + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 54 - https://github.github.com/gfm/#example-54 +================================================================================ + Foo +--- + + Foo +----- + + Foo + === + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)) + (paragraph + (inline)) + (thematic_break) + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 55 - https://github.github.com/gfm/#example-55 +================================================================================ + Foo + --- + + Foo +--- + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block + (block_continuation)) + (thematic_break))) + +================================================================================ +Example 56 - https://github.github.com/gfm/#example-56 +================================================================================ +Foo + ---- + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)))) + +================================================================================ +Example 57 - https://github.github.com/gfm/#example-57 +================================================================================ +Foo + --- + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 58 - https://github.github.com/gfm/#example-58 +================================================================================ +Foo += = + +Foo +--- - + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)) + (thematic_break))) + +================================================================================ +Example 59 - https://github.github.com/gfm/#example-59 +================================================================================ +Foo +----- + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)))) + +================================================================================ +Example 60 - https://github.github.com/gfm/#example-60 +================================================================================ +Foo\ +---- + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)))) + +================================================================================ +Example 61 - https://github.github.com/gfm/#example-61 +================================================================================ +`Foo +---- +` + + + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)) + (paragraph + (inline)) + (paragraph + (inline)) + (thematic_break) + (paragraph + (inline)))) + +================================================================================ +Example 62 - https://github.github.com/gfm/#example-62 +================================================================================ +> Foo +--- + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline))) + (thematic_break))) + +================================================================================ +Example 63 - https://github.github.com/gfm/#example-63 +================================================================================ +> foo +bar += + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 64 - https://github.github.com/gfm/#example-64 +================================================================================ +- Foo +--- + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))) + (thematic_break))) + +================================================================================ +Example 65 - https://github.github.com/gfm/#example-65 +================================================================================ +Foo +Bar +--- + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)))) + +================================================================================ +Example 66 - https://github.github.com/gfm/#example-66 +================================================================================ +Extra text so this is not parsed as metadata. + +--- +Foo +--- +Bar +--- +Baz + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (thematic_break)) + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)) + (paragraph + (inline)) + (thematic_break) + (paragraph + (inline)))) + +================================================================================ +Example 67 - https://github.github.com/gfm/#example-67 +================================================================================ + += + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 68 - https://github.github.com/gfm/#example-68 +================================================================================ +Extra text so this is not parsed as metadata. + +--- +--- + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (thematic_break) + (thematic_break))) + +================================================================================ +Example 69 - https://github.github.com/gfm/#example-69 +================================================================================ +- foo +----- + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))) + (thematic_break))) + +================================================================================ +Example 70 - https://github.github.com/gfm/#example-70 +================================================================================ + foo +--- + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block) + (thematic_break))) + +================================================================================ +Example 71 - https://github.github.com/gfm/#example-71 +================================================================================ +> foo +----- + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline))) + (thematic_break))) + +================================================================================ +Example 72 - https://github.github.com/gfm/#example-72 +================================================================================ +\> foo +------ + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)))) + +================================================================================ +Example 73 - https://github.github.com/gfm/#example-73 +================================================================================ +Foo + +bar +--- +baz + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline))) + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)) + (paragraph + (inline)))) + +================================================================================ +Example 74 - https://github.github.com/gfm/#example-74 +================================================================================ +Foo +bar + +--- + +baz + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (thematic_break) + (paragraph + (inline)))) + +================================================================================ +Example 75 - https://github.github.com/gfm/#example-75 +================================================================================ +Foo +bar +* * * +baz + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (thematic_break) + (paragraph + (inline)))) + +================================================================================ +Example 76 - https://github.github.com/gfm/#example-76 +================================================================================ +Foo +bar +\--- +baz + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 77 - https://github.github.com/gfm/#example-77 +================================================================================ + a simple + indented code block + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block + (block_continuation)))) + +================================================================================ +Example 78 - https://github.github.com/gfm/#example-78 +================================================================================ + - foo + + bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline)))))) + +================================================================================ +Example 79 - https://github.github.com/gfm/#example-79 +================================================================================ +1. foo + + - bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))))) + +================================================================================ +Example 80 - https://github.github.com/gfm/#example-80 +================================================================================ + + *hi* + + - one + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block + (block_continuation)))) + +================================================================================ +Example 81 - https://github.github.com/gfm/#example-81 +================================================================================ + chunk1 + + chunk2 + + + + chunk3 + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 82 - https://github.github.com/gfm/#example-82 +================================================================================ + chunk1 + + chunk2 + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 83 - https://github.github.com/gfm/#example-83 +================================================================================ +Foo + bar + + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 84 - https://github.github.com/gfm/#example-84 +================================================================================ + foo +bar + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block) + (paragraph + (inline)))) + +================================================================================ +Example 85 - https://github.github.com/gfm/#example-85 +================================================================================ +# Heading + foo +Heading +------ + foo +---- + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h1_marker) + (inline)) + (indented_code_block) + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)) + (indented_code_block) + (thematic_break)))) + +================================================================================ +Example 86 - https://github.github.com/gfm/#example-86 +================================================================================ + foo + bar + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block + (block_continuation)))) + +================================================================================ +Example 87 - https://github.github.com/gfm/#example-87 +================================================================================ + + + foo + + + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 88 - https://github.github.com/gfm/#example-88 +================================================================================ + foo + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 89 - https://github.github.com/gfm/#example-89 +================================================================================ +``` +< + > +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 90 - https://github.github.com/gfm/#example-90 +================================================================================ +~~~ +< + > +~~~ + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 91 - https://github.github.com/gfm/#example-91 +================================================================================ +`` +foo +`` + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 92 - https://github.github.com/gfm/#example-92 +================================================================================ +``` +aaa +~~~ +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 93 - https://github.github.com/gfm/#example-93 +================================================================================ +~~~ +aaa +``` +~~~ + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 94 - https://github.github.com/gfm/#example-94 +================================================================================ +```` +aaa +``` +`````` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 95 - https://github.github.com/gfm/#example-95 +================================================================================ +~~~~ +aaa +~~~ +~~~~ + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 96 - https://github.github.com/gfm/#example-96 +================================================================================ +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter)))) + +================================================================================ +Example 97 - https://github.github.com/gfm/#example-97 +================================================================================ +````` + +``` +aaa + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation))))) + +================================================================================ +Example 98 - https://github.github.com/gfm/#example-98 +================================================================================ +> ``` +> aaa + +bbb + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content))) + (paragraph + (inline)))) + +================================================================================ +Example 99 - https://github.github.com/gfm/#example-99 +================================================================================ +``` + + +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 100 - https://github.github.com/gfm/#example-100 +================================================================================ +``` +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 101 - https://github.github.com/gfm/#example-101 +================================================================================ + ``` + aaa +aaa +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 102 - https://github.github.com/gfm/#example-102 +================================================================================ + ``` +aaa + aaa +aaa + ``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 103 - https://github.github.com/gfm/#example-103 +================================================================================ + ``` + aaa + aaa + aaa + ``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 104 - https://github.github.com/gfm/#example-104 +================================================================================ + ``` + aaa + ``` + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 105 - https://github.github.com/gfm/#example-105 +================================================================================ +``` +aaa + ``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 106 - https://github.github.com/gfm/#example-106 +================================================================================ + ``` +aaa + ``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 108 - https://github.github.com/gfm/#example-108 +================================================================================ +``` ``` +aaa + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 109 - https://github.github.com/gfm/#example-109 +================================================================================ +~~~~~~ +aaa +~~~ ~~ + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation))))) + +================================================================================ +Example 110 - https://github.github.com/gfm/#example-110 +================================================================================ +foo +``` +bar +``` +baz + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)) + (paragraph + (inline)))) + +================================================================================ +Example 111 - https://github.github.com/gfm/#example-111 +================================================================================ +foo +--- +~~~ +bar +~~~ +# baz + +-------------------------------------------------------------------------------- + +(document + (section + (setext_heading + (paragraph + (inline)) + (setext_h2_underline)) + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter))) + (section + (atx_heading + (atx_h1_marker) + (inline)))) + +================================================================================ +Example 112 - https://github.github.com/gfm/#example-112 +================================================================================ +```ruby +def foo(x) + return 3 +end +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (info_string + (language)) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 113 - https://github.github.com/gfm/#example-113 +================================================================================ +~~~~ ruby startline=3 $%@#$ +def foo(x) + return 3 +end +~~~~~~~ + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (info_string + (language)) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 114 - https://github.github.com/gfm/#example-114 +================================================================================ +````; +```` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (info_string + (language)) + (block_continuation) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 115 - https://github.github.com/gfm/#example-115 +================================================================================ +``` aa ``` +foo + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 116 - https://github.github.com/gfm/#example-116 +================================================================================ +~~~ aa ``` ~~~ +foo +~~~ + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (info_string + (language)) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 117 - https://github.github.com/gfm/#example-117 +================================================================================ +``` +``` aaa +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 118 - https://github.github.com/gfm/#example-118 +================================================================================ +
+
+**Hello**,
+
+_world_.
+
+
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation)) + (paragraph + (inline)) + (html_block))) + +================================================================================ +Example 119 - https://github.github.com/gfm/#example-119 +================================================================================ + + + + +
+ hi +
+ +okay. + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation)) + (paragraph + (inline)))) + +================================================================================ +Example 120 - https://github.github.com/gfm/#example-120 +================================================================================ +
+*foo* + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation)))) + +================================================================================ +Example 122 - https://github.github.com/gfm/#example-122 +================================================================================ +
+ +*Markdown* + +
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation)) + (paragraph + (inline)) + (html_block))) + +================================================================================ +Example 123 - https://github.github.com/gfm/#example-123 +================================================================================ +
+
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 124 - https://github.github.com/gfm/#example-124 +================================================================================ +
+
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 125 - https://github.github.com/gfm/#example-125 +================================================================================ +
+*foo* + +*bar* + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)) + (paragraph + (inline)))) + +================================================================================ +Example 126 - https://github.github.com/gfm/#example-126 +================================================================================ + + +-------------------------------------------------------------------------------- + +(document + (section + (html_block))) + +================================================================================ +Example 130 - https://github.github.com/gfm/#example-130 +================================================================================ +
+foo +
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 131 - https://github.github.com/gfm/#example-131 +================================================================================ +
+``` c +int x = 33; +``` + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 132 - https://github.github.com/gfm/#example-132 +================================================================================ + +*bar* + + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 133 - https://github.github.com/gfm/#example-133 +================================================================================ + +*bar* + + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 134 - https://github.github.com/gfm/#example-134 +================================================================================ + +*bar* + + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 135 - https://github.github.com/gfm/#example-135 +================================================================================ + +*bar* + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation)))) + +================================================================================ +Example 136 - https://github.github.com/gfm/#example-136 +================================================================================ + +*foo* + + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 137 - https://github.github.com/gfm/#example-137 +================================================================================ + + +*foo* + + + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation)) + (paragraph + (inline)) + (html_block))) + +================================================================================ +Example 138 - https://github.github.com/gfm/#example-138 +================================================================================ +*foo* + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 139 - https://github.github.com/gfm/#example-139 +================================================================================ +

+import Text.HTML.TagSoup
+
+main :: IO ()
+main = print $ parseTags tags
+
+okay + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation)) + (paragraph + (inline)))) + +================================================================================ +Example 140 - https://github.github.com/gfm/#example-140 +================================================================================ + +okay + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation)) + (paragraph + (inline)))) + +================================================================================ +Example 141 - https://github.github.com/gfm/#example-141 +================================================================================ + +okay + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation)) + (paragraph + (inline)))) + +================================================================================ +Example 142 - https://github.github.com/gfm/#example-142 +================================================================================ + +*foo* + +-------------------------------------------------------------------------------- + +(document + (section + (html_block) + (paragraph + (inline)))) + +================================================================================ +Example 146 - https://github.github.com/gfm/#example-146 +================================================================================ +*bar* +*baz* + +-------------------------------------------------------------------------------- + +(document + (section + (html_block) + (paragraph + (inline)))) + +================================================================================ +Example 147 - https://github.github.com/gfm/#example-147 +================================================================================ +1. *bar* + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 148 - https://github.github.com/gfm/#example-148 +================================================================================ + +okay + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation)) + (paragraph + (inline)))) + +================================================================================ +Example 149 - https://github.github.com/gfm/#example-149 +================================================================================ +'; + +?> +okay + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation)) + (paragraph + (inline)))) + +================================================================================ +Example 150 - https://github.github.com/gfm/#example-150 +================================================================================ + + +-------------------------------------------------------------------------------- + +(document + (section + (html_block))) + +================================================================================ +Example 151 - https://github.github.com/gfm/#example-151 +================================================================================ + +okay + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation) + (block_continuation)) + (paragraph + (inline)))) + +================================================================================ +Example 152 - https://github.github.com/gfm/#example-152 +================================================================================ + + + + +-------------------------------------------------------------------------------- + +(document + (section + (html_block) + (indented_code_block))) + +================================================================================ +Example 153 - https://github.github.com/gfm/#example-153 +================================================================================ +
+ +
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation)) + (indented_code_block))) + +================================================================================ +Example 154 - https://github.github.com/gfm/#example-154 +================================================================================ +Foo +
+bar +
+ +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 155 - https://github.github.com/gfm/#example-155 +================================================================================ +
+bar +
+*foo* + +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 156 - https://github.github.com/gfm/#example-156 +================================================================================ +Foo + +baz + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 157 - https://github.github.com/gfm/#example-157 +================================================================================ +
+ +*Emphasized* text. + +
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation)) + (paragraph + (inline)) + (html_block))) + +================================================================================ +Example 158 - https://github.github.com/gfm/#example-158 +================================================================================ +
+*Emphasized* text. +
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 159 - https://github.github.com/gfm/#example-159 +================================================================================ + + + + + + + + +
+Hi +
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation)) + (html_block + (block_continuation)) + (html_block + (block_continuation) + (block_continuation) + (block_continuation)) + (html_block + (block_continuation)) + (html_block))) + +================================================================================ +Example 160 - https://github.github.com/gfm/#example-160 +================================================================================ + + + + + + + + +
+ Hi +
+ +-------------------------------------------------------------------------------- + +(document + (section + (html_block + (block_continuation)) + (html_block + (block_continuation)) + (indented_code_block + (block_continuation) + (block_continuation)) + (html_block + (block_continuation)) + (html_block))) + +================================================================================ +Example 161 - https://github.github.com/gfm/#example-161 +================================================================================ +[foo]: /url "title" + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination) + (link_title)) + (paragraph + (inline)))) + +================================================================================ +Example 162 - https://github.github.com/gfm/#example-162 +================================================================================ + [foo]: + /url + 'the title' + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination) + (link_title)) + (paragraph + (inline)))) + +================================================================================ +Example 163 - https://github.github.com/gfm/#example-163 +================================================================================ +[Foo*bar\]]:my_(url) 'title (with parens)' + +[Foo*bar\]] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label + (backslash_escape)) + (link_destination) + (link_title)) + (paragraph + (inline)))) + +================================================================================ +Example 164 - https://github.github.com/gfm/#example-164 +================================================================================ +[Foo bar]: + +'title' + +[Foo bar] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination) + (link_title)) + (paragraph + (inline)))) + +================================================================================ +Example 165 - https://github.github.com/gfm/#example-165 +================================================================================ +[foo]: /url ' +title +line1 +line2 +' + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination) + (link_title)) + (paragraph + (inline)))) + +================================================================================ +Example 166 - https://github.github.com/gfm/#example-166 +================================================================================ +[foo]: /url 'title + +with blank line' + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 167 - https://github.github.com/gfm/#example-167 +================================================================================ +[foo]: +/url + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination)) + (paragraph + (inline)))) + +================================================================================ +Example 168 - https://github.github.com/gfm/#example-168 +================================================================================ +[foo]: + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 169 - https://github.github.com/gfm/#example-169 +================================================================================ +[foo]: <> + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination)) + (paragraph + (inline)))) + +================================================================================ +Example 170 - https://github.github.com/gfm/#example-170 +================================================================================ +[foo]: (baz) + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 171 - https://github.github.com/gfm/#example-171 +================================================================================ +[foo]: /url\bar\*baz "foo\"bar\baz" + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination + (backslash_escape)) + (link_title + (backslash_escape))) + (paragraph + (inline)))) + +================================================================================ +Example 172 - https://github.github.com/gfm/#example-172 +================================================================================ +[foo] + +[foo]: url + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (link_reference_definition + (link_label) + (link_destination)))) + +================================================================================ +Example 173 - https://github.github.com/gfm/#example-173 +================================================================================ +[foo] + +[foo]: first +[foo]: second + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (link_reference_definition + (link_label) + (link_destination)) + (link_reference_definition + (link_label) + (link_destination)))) + +================================================================================ +Example 174 - https://github.github.com/gfm/#example-174 +================================================================================ +[FOO]: /url + +[Foo] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination)) + (paragraph + (inline)))) + +================================================================================ +Example 175 - https://github.github.com/gfm/#example-175 +================================================================================ +[ΑΓΩ]: /φου + +[αγω] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination)) + (paragraph + (inline)))) + +================================================================================ +Example 176 - https://github.github.com/gfm/#example-176 +================================================================================ +[foo]: /url + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination)))) + +================================================================================ +Example 177 - https://github.github.com/gfm/#example-177 +================================================================================ +[ +foo +]: /url +bar + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination)) + (paragraph + (inline)))) + +================================================================================ +Example 178 - https://github.github.com/gfm/#example-178 +================================================================================ +[foo]: /url "title" ok + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 179 - https://github.github.com/gfm/#example-179 +================================================================================ +[foo]: /url +"title" ok + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination)) + (paragraph + (inline)))) + +================================================================================ +Example 180 - https://github.github.com/gfm/#example-180 +================================================================================ + [foo]: /url "title" + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block) + (paragraph + (inline)))) + +================================================================================ +Example 181 - https://github.github.com/gfm/#example-181 +================================================================================ +``` +[foo]: /url +``` + +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)) + (paragraph + (inline)))) + +================================================================================ +Example 182 - https://github.github.com/gfm/#example-182 +================================================================================ +Foo +[bar]: /baz + +[bar] + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 183 - https://github.github.com/gfm/#example-183 +================================================================================ +# [Foo] +[foo]: /url +> bar + +-------------------------------------------------------------------------------- + +(document + (section + (atx_heading + (atx_h1_marker) + (inline)) + (link_reference_definition + (link_label) + (link_destination)) + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 184 - https://github.github.com/gfm/#example-184 +================================================================================ +[foo]: /url +bar += +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination))) + (section + (setext_heading + (paragraph + (inline)) + (setext_h1_underline)) + (paragraph + (inline)))) + +================================================================================ +Example 185 - https://github.github.com/gfm/#example-185 +================================================================================ +[foo]: /url += +[foo] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination)) + (paragraph + (inline)))) + +================================================================================ +Example 186 - https://github.github.com/gfm/#example-186 +================================================================================ +[foo]: /foo-url "foo" +[bar]: /bar-url + "bar" +[baz]: /baz-url + +[foo], +[bar], +[baz] + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination) + (link_title)) + (link_reference_definition + (link_label) + (link_destination) + (link_title)) + (link_reference_definition + (link_label) + (link_destination)) + (paragraph + (inline)))) + +================================================================================ +Example 187 - https://github.github.com/gfm/#example-187 +================================================================================ +[foo] + +> [foo]: /url + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (block_quote + (block_quote_marker) + (link_reference_definition + (link_label) + (link_destination))))) + +================================================================================ +Example 188 - https://github.github.com/gfm/#example-188 +================================================================================ +[foo]: /url + +-------------------------------------------------------------------------------- + +(document + (section + (link_reference_definition + (link_label) + (link_destination)))) + +================================================================================ +Example 189 - https://github.github.com/gfm/#example-189 +================================================================================ +aaa + +bbb + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 190 - https://github.github.com/gfm/#example-190 +================================================================================ +aaa +bbb + +ccc +ddd + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 191 - https://github.github.com/gfm/#example-191 +================================================================================ +aaa + + +bbb + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 192 - https://github.github.com/gfm/#example-192 +================================================================================ + aaa + bbb + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 193 - https://github.github.com/gfm/#example-193 +================================================================================ +aaa + bbb + ccc + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 194 - https://github.github.com/gfm/#example-194 +================================================================================ + aaa +bbb + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 195 - https://github.github.com/gfm/#example-195 +================================================================================ + aaa +bbb + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block) + (paragraph + (inline)))) + +================================================================================ +Example 196 - https://github.github.com/gfm/#example-196 +================================================================================ +aaa +bbb + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 197 - https://github.github.com/gfm/#example-197 +================================================================================ + + +aaa + + +# aaa + + + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline))) + (section + (atx_heading + (atx_h1_marker) + (inline)))) + +================================================================================ +Example 206 - https://github.github.com/gfm/#example-206 +================================================================================ +> # Foo +> bar +> baz + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (section + (atx_heading + (atx_h1_marker) + (inline) + (block_continuation)) + (paragraph + (inline + (block_continuation))))))) + +================================================================================ +Example 207 - https://github.github.com/gfm/#example-207 +================================================================================ +># Foo +>bar +> baz + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (section + (atx_heading + (atx_h1_marker) + (inline) + (block_continuation)) + (paragraph + (inline + (block_continuation))))))) + +================================================================================ +Example 208 - https://github.github.com/gfm/#example-208 +================================================================================ + > # Foo + > bar + > baz + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (section + (atx_heading + (atx_h1_marker) + (inline) + (block_continuation)) + (paragraph + (inline + (block_continuation))))))) + +================================================================================ +Example 209 - https://github.github.com/gfm/#example-209 +================================================================================ + > # Foo + > bar + > baz + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 210 - https://github.github.com/gfm/#example-210 +================================================================================ +> # Foo +> bar +baz + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (section + (atx_heading + (atx_h1_marker) + (inline) + (block_continuation)) + (paragraph + (inline)))))) + +================================================================================ +Example 211 - https://github.github.com/gfm/#example-211 +================================================================================ +> bar +baz +> foo + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline + (block_continuation)))))) + +================================================================================ +Example 212 - https://github.github.com/gfm/#example-212 +================================================================================ +> foo +--- + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline))) + (thematic_break))) + +================================================================================ +Example 213 - https://github.github.com/gfm/#example-213 +================================================================================ +> - foo +- bar + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (list + (list_item + (list_marker_minus) + (paragraph + (inline))))) + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 214 - https://github.github.com/gfm/#example-214 +================================================================================ +> foo + bar + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (indented_code_block)) + (indented_code_block))) + +================================================================================ +Example 215 - https://github.github.com/gfm/#example-215 +================================================================================ +> ``` +foo +``` + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (fenced_code_block + (fenced_code_block_delimiter))) + (paragraph + (inline)) + (fenced_code_block + (fenced_code_block_delimiter)))) + +================================================================================ +Example 216 - https://github.github.com/gfm/#example-216 +================================================================================ +> foo + - bar + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 217 - https://github.github.com/gfm/#example-217 +================================================================================ +> + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker)))) + +================================================================================ +Example 218 - https://github.github.com/gfm/#example-218 +================================================================================ +> +> +> + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (block_continuation) + (block_continuation)))) + +================================================================================ +Example 219 - https://github.github.com/gfm/#example-219 +================================================================================ +> +> foo +> + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (block_continuation) + (paragraph + (inline) + (block_continuation))))) + +================================================================================ +Example 220 - https://github.github.com/gfm/#example-220 +================================================================================ +> foo + +> bar + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline))) + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 221 - https://github.github.com/gfm/#example-221 +================================================================================ +> foo +> bar + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline + (block_continuation)))))) + +================================================================================ +Example 222 - https://github.github.com/gfm/#example-222 +================================================================================ +> foo +> +> bar + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline))))) + +================================================================================ +Example 223 - https://github.github.com/gfm/#example-223 +================================================================================ +foo +> bar + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 224 - https://github.github.com/gfm/#example-224 +================================================================================ +> aaa +*** +> bbb + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline))) + (thematic_break) + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 225 - https://github.github.com/gfm/#example-225 +================================================================================ +> bar +baz + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 226 - https://github.github.com/gfm/#example-226 +================================================================================ +> bar + +baz + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline))) + (paragraph + (inline)))) + +================================================================================ +Example 227 - https://github.github.com/gfm/#example-227 +================================================================================ +> bar +> +baz + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (paragraph + (inline) + (block_continuation))) + (paragraph + (inline)))) + +================================================================================ +Example 228 - https://github.github.com/gfm/#example-228 +================================================================================ +> > > foo +bar + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (block_quote + (block_quote_marker) + (block_quote + (block_quote_marker) + (paragraph + (inline))))))) + +================================================================================ +Example 229 - https://github.github.com/gfm/#example-229 +================================================================================ +>>> foo +> bar +>>baz + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (block_quote + (block_quote_marker) + (block_quote + (block_quote_marker) + (paragraph + (inline + (block_continuation) + (block_continuation)))))))) + +================================================================================ +Example 230 - https://github.github.com/gfm/#example-230 +================================================================================ +> code + +> not code + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (indented_code_block)) + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 231 - https://github.github.com/gfm/#example-231 +================================================================================ +A paragraph +with two lines. + + indented code + +> A block quote. + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (indented_code_block) + (block_quote + (block_quote_marker) + (paragraph + (inline))))) + +================================================================================ +Example 232 - https://github.github.com/gfm/#example-232 +================================================================================ +1. A paragraph + with two lines. + + indented code + + > A block quote. + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline + (block_continuation)) + (block_continuation)) + (block_continuation) + (indented_code_block + (block_continuation) + (block_continuation)) + (block_quote + (block_quote_marker) + (paragraph + (inline))))))) + +================================================================================ +Example 233 - https://github.github.com/gfm/#example-233 +================================================================================ +- one + + two + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)))) + (paragraph + (inline)))) + +================================================================================ +Example 234 - https://github.github.com/gfm/#example-234 +================================================================================ +- one + + two + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline)))))) + +================================================================================ +Example 235 - https://github.github.com/gfm/#example-235 +================================================================================ + - one + + two + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)))) + (indented_code_block))) + +================================================================================ +Example 236 - https://github.github.com/gfm/#example-236 +================================================================================ + - one + + two + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline)))))) + +================================================================================ +Example 237 - https://github.github.com/gfm/#example-237 +================================================================================ + > > 1. one +>> +>> two + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (block_quote + (block_quote_marker) + (list + (list_item + (list_marker_dot) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline)))))))) + +================================================================================ +Example 238 - https://github.github.com/gfm/#example-238 +================================================================================ +>>- one +>> + > > two + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (block_quote + (block_quote_marker) + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation))) + (paragraph + (inline)))))) + +================================================================================ +Example 239 - https://github.github.com/gfm/#example-239 +================================================================================ +-one + +2.two + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 240 - https://github.github.com/gfm/#example-240 +================================================================================ +- foo + + + bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (block_continuation) + (paragraph + (inline)))))) + +================================================================================ +Example 241 - https://github.github.com/gfm/#example-241 +================================================================================ +1. foo + + ``` + bar + ``` + + baz + + > bam + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter) + (block_continuation)) + (block_continuation) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (block_quote + (block_quote_marker) + (paragraph + (inline))))))) + +================================================================================ +Example 242 - https://github.github.com/gfm/#example-242 +================================================================================ +- Foo + + bar + + + baz + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (indented_code_block + (block_continuation) + (block_continuation) + (block_continuation)))))) + +================================================================================ +Example 243 - https://github.github.com/gfm/#example-243 +================================================================================ +123456789. ok + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline)))))) + +================================================================================ +Example 244 - https://github.github.com/gfm/#example-244 +================================================================================ +1234567890. not ok + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 245 - https://github.github.com/gfm/#example-245 +================================================================================ +0. ok + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline)))))) + +================================================================================ +Example 246 - https://github.github.com/gfm/#example-246 +================================================================================ +003. ok + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline)))))) + +================================================================================ +Example 247 - https://github.github.com/gfm/#example-247 +================================================================================ +-1. not ok + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 248 - https://github.github.com/gfm/#example-248 +================================================================================ +- foo + + bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (indented_code_block))))) + +================================================================================ +Example 249 - https://github.github.com/gfm/#example-249 +================================================================================ + 10. foo + + bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (indented_code_block))))) + +================================================================================ +Example 250 - https://github.github.com/gfm/#example-250 +================================================================================ + indented code + +paragraph + + more code + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block) + (paragraph + (inline)) + (indented_code_block))) + +================================================================================ +Example 251 - https://github.github.com/gfm/#example-251 +================================================================================ +1. indented code + + paragraph + + more code + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (indented_code_block + (block_continuation) + (block_continuation)) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (indented_code_block))))) + +================================================================================ +Example 252 - https://github.github.com/gfm/#example-252 +================================================================================ +1. indented code + + paragraph + + more code + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (indented_code_block + (block_continuation) + (block_continuation)) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (indented_code_block))))) + +================================================================================ +Example 253 - https://github.github.com/gfm/#example-253 +================================================================================ + foo + +bar + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 254 - https://github.github.com/gfm/#example-254 +================================================================================ +- foo + + bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)))) + (paragraph + (inline)))) + +================================================================================ +Example 255 - https://github.github.com/gfm/#example-255 +================================================================================ +- foo + + bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline)))))) + +================================================================================ +Example 256 - https://github.github.com/gfm/#example-256 +================================================================================ +- + foo +- + ``` + bar + ``` +- + baz + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (block_continuation) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (block_continuation) + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter))) + (list_item + (list_marker_minus) + (block_continuation) + (indented_code_block))))) + +================================================================================ +Example 257 - https://github.github.com/gfm/#example-257 +================================================================================ +- + foo + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (block_continuation) + (paragraph + (inline)))))) + +================================================================================ +Example 258 - https://github.github.com/gfm/#example-258 +================================================================================ +- + + foo + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (block_continuation))) + (paragraph + (inline)))) + +================================================================================ +Example 259 - https://github.github.com/gfm/#example-259 +================================================================================ +- foo +- +- bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus)) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 260 - https://github.github.com/gfm/#example-260 +================================================================================ +- foo +- +- bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus)) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 261 - https://github.github.com/gfm/#example-261 +================================================================================ +1. foo +2. +3. bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline))) + (list_item + (list_marker_dot)) + (list_item + (list_marker_dot) + (paragraph + (inline)))))) + +================================================================================ +Example 262 - https://github.github.com/gfm/#example-262 +================================================================================ +* + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_star))))) + +================================================================================ +Example 263 - https://github.github.com/gfm/#example-263 +================================================================================ +foo +* + +foo +1. + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (paragraph + (inline)))) + +================================================================================ +Example 264 - https://github.github.com/gfm/#example-264 +================================================================================ + 1. A paragraph + with two lines. + + indented code + + > A block quote. + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline + (block_continuation)) + (block_continuation)) + (block_continuation) + (indented_code_block + (block_continuation) + (block_continuation)) + (block_quote + (block_quote_marker) + (paragraph + (inline))))))) + +================================================================================ +Example 265 - https://github.github.com/gfm/#example-265 +================================================================================ + 1. A paragraph + with two lines. + + indented code + + > A block quote. + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline + (block_continuation)) + (block_continuation)) + (block_continuation) + (indented_code_block + (block_continuation) + (block_continuation)) + (block_quote + (block_quote_marker) + (paragraph + (inline))))))) + +================================================================================ +Example 266 - https://github.github.com/gfm/#example-266 +================================================================================ + 1. A paragraph + with two lines. + + indented code + + > A block quote. + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline + (block_continuation)) + (block_continuation)) + (block_continuation) + (indented_code_block + (block_continuation) + (block_continuation)) + (block_quote + (block_quote_marker) + (paragraph + (inline))))))) + +================================================================================ +Example 267 - https://github.github.com/gfm/#example-267 +================================================================================ + 1. A paragraph + with two lines. + + indented code + + > A block quote. + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block + (block_continuation)))) + +================================================================================ +Example 268 - https://github.github.com/gfm/#example-268 +================================================================================ + 1. A paragraph +with two lines. + + indented code + + > A block quote. + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (indented_code_block + (block_continuation) + (block_continuation)) + (block_quote + (block_quote_marker) + (paragraph + (inline))))))) + +================================================================================ +Example 269 - https://github.github.com/gfm/#example-269 +================================================================================ + 1. A paragraph + with two lines. + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline)))))) + +================================================================================ +Example 270 - https://github.github.com/gfm/#example-270 +================================================================================ +> 1. > Blockquote +continued here. + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (list + (list_item + (list_marker_dot) + (block_quote + (block_quote_marker) + (paragraph + (inline)))))))) + +================================================================================ +Example 271 - https://github.github.com/gfm/#example-271 +================================================================================ +> 1. > Blockquote +> continued here. + +-------------------------------------------------------------------------------- + +(document + (section + (block_quote + (block_quote_marker) + (list + (list_item + (list_marker_dot) + (block_quote + (block_quote_marker) + (paragraph + (inline + (block_continuation))))))))) + +================================================================================ +Example 272 - https://github.github.com/gfm/#example-272 +================================================================================ +- foo + - bar + - baz + - boo + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))))))))) + +================================================================================ +Example 273 - https://github.github.com/gfm/#example-273 +================================================================================ +- foo + - bar + - baz + - boo + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 274 - https://github.github.com/gfm/#example-274 +================================================================================ +10) foo + - bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_parenthesis) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))))) + +================================================================================ +Example 275 - https://github.github.com/gfm/#example-275 +================================================================================ +10) foo + - bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_parenthesis) + (paragraph + (inline)))) + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 276 - https://github.github.com/gfm/#example-276 +================================================================================ +- - foo + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))))) + +================================================================================ +Example 277 - https://github.github.com/gfm/#example-277 +================================================================================ +1. - 2. foo + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (list + (list_item + (list_marker_minus) + (list + (list_item + (list_marker_dot) + (paragraph + (inline)))))))))) + +================================================================================ +Example 278 - https://github.github.com/gfm/#example-278 +================================================================================ +- # Foo +- Bar + --- + baz + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (section + (atx_heading + (atx_h1_marker) + (inline)))) + (list_item + (list_marker_minus) + (section + (setext_heading + (paragraph + (inline) + (block_continuation)) + (setext_h2_underline) + (block_continuation)) + (paragraph + (inline))))))) + +================================================================================ +Example 281 - https://github.github.com/gfm/#example-281 +================================================================================ +- foo +- bar ++ baz + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline)))) + (list + (list_item + (list_marker_plus) + (paragraph + (inline)))))) + +================================================================================ +Example 282 - https://github.github.com/gfm/#example-282 +================================================================================ +1. foo +2. bar +3) baz + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline))) + (list_item + (list_marker_dot) + (paragraph + (inline)))) + (list + (list_item + (list_marker_parenthesis) + (paragraph + (inline)))))) + +================================================================================ +Example 283 - https://github.github.com/gfm/#example-283 +================================================================================ +Foo +- bar +- baz + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 284 - https://github.github.com/gfm/#example-284 +================================================================================ +The number of windows in my house is +14. The number of doors is 6. + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)))) + +================================================================================ +Example 285 - https://github.github.com/gfm/#example-285 +================================================================================ +The number of windows in my house is +1. The number of doors is 6. + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (list + (list_item + (list_marker_dot) + (paragraph + (inline)))))) + +================================================================================ +Example 286 - https://github.github.com/gfm/#example-286 +================================================================================ +- foo + +- bar + + +- baz + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation)) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 287 - https://github.github.com/gfm/#example-287 +================================================================================ +- foo + - bar + - baz + + + bim + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (block_continuation) + (paragraph + (inline)))))))))) + +================================================================================ +Example 288 - https://github.github.com/gfm/#example-288 +================================================================================ +- foo +- bar + + + +- baz +- bim + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)))) + (html_block) + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 289 - https://github.github.com/gfm/#example-289 +================================================================================ +- foo + + notcode + +- foo + + + + code + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)))) + (html_block) + (indented_code_block))) + +================================================================================ +Example 290 - https://github.github.com/gfm/#example-290 +================================================================================ +- a + - b + - c + - d + - e + - f +- g + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 291 - https://github.github.com/gfm/#example-291 +================================================================================ +1. a + + 2. b + + 3. c + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_dot) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_dot) + (paragraph + (inline)))))) + +================================================================================ +Example 292 - https://github.github.com/gfm/#example-292 +================================================================================ +- a + - b + - c + - d + - e + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 293 - https://github.github.com/gfm/#example-293 +================================================================================ +1. a + + 2. b + + 3. c + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_dot) + (paragraph + (inline) + (block_continuation)))) + (indented_code_block))) + +================================================================================ +Example 294 - https://github.github.com/gfm/#example-294 +================================================================================ +- a +- b + +- c + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 295 - https://github.github.com/gfm/#example-295 +================================================================================ +* a +* + +* c + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_star) + (paragraph + (inline))) + (list_item + (list_marker_star) + (block_continuation)) + (list_item + (list_marker_star) + (paragraph + (inline)))))) + +================================================================================ +Example 296 - https://github.github.com/gfm/#example-296 +================================================================================ +- a +- b + + c +- d + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 297 - https://github.github.com/gfm/#example-297 +================================================================================ +- a +- b + + [ref]: /url +- d + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (link_reference_definition + (link_label) + (link_destination))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 298 - https://github.github.com/gfm/#example-298 +================================================================================ +- a +- ``` + b + + + ``` +- c + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline))) + (list_item + (list_marker_minus) + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation) + (block_continuation) + (block_continuation)) + (fenced_code_block_delimiter))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 299 - https://github.github.com/gfm/#example-299 +================================================================================ +- a + - b + + c +- d + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_continuation) + (paragraph + (inline))))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 300 - https://github.github.com/gfm/#example-300 +================================================================================ +* a + > b + > +* c + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_star) + (paragraph + (inline) + (block_continuation)) + (block_quote + (block_quote_marker) + (paragraph + (inline) + (block_continuation)))) + (list_item + (list_marker_star) + (paragraph + (inline)))))) + +================================================================================ +Example 301 - https://github.github.com/gfm/#example-301 +================================================================================ +- a + > b + ``` + c + ``` +- d + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (block_quote + (block_quote_marker) + (paragraph + (inline) + (block_continuation))) + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 302 - https://github.github.com/gfm/#example-302 +================================================================================ +- a + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))) + +================================================================================ +Example 303 - https://github.github.com/gfm/#example-303 +================================================================================ +- a + - b + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline)))))))) + +================================================================================ +Example 304 - https://github.github.com/gfm/#example-304 +================================================================================ +1. ``` + foo + ``` + + bar + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_dot) + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter) + (block_continuation)) + (block_continuation) + (paragraph + (inline)))))) + +================================================================================ +Example 305 - https://github.github.com/gfm/#example-305 +================================================================================ +* foo + * bar + + baz + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_star) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_star) + (paragraph + (inline) + (block_continuation)) + (block_continuation))) + (paragraph + (inline)))))) + +================================================================================ +Example 306 - https://github.github.com/gfm/#example-306 +================================================================================ +- a + - b + - c + +- d + - e + - f + +-------------------------------------------------------------------------------- + +(document + (section + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation))))) + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation)) + (list + (list_item + (list_marker_minus) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_minus) + (paragraph + (inline)))))))) + +================================================================================ +Example 314 - https://github.github.com/gfm/#example-314 +================================================================================ + \[\] + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 315 - https://github.github.com/gfm/#example-315 +================================================================================ +~~~ +\[\] +~~~ + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 319 - https://github.github.com/gfm/#example-319 +================================================================================ +[foo] + +[foo]: /bar\* "ti\*tle" + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (link_reference_definition + (link_label) + (link_destination + (backslash_escape)) + (link_title + (backslash_escape))))) + +================================================================================ +Example 320 - https://github.github.com/gfm/#example-320 +================================================================================ +``` foo\+bar +foo +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (info_string + (language + (backslash_escape))) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 329 - https://github.github.com/gfm/#example-329 +================================================================================ +[foo] + +[foo]: /föö "föö" + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (link_reference_definition + (link_label) + (link_destination + (entity_reference) + (entity_reference)) + (link_title + (entity_reference) + (entity_reference))))) + +================================================================================ +Example 330 - https://github.github.com/gfm/#example-330 +================================================================================ +``` föö +foo +``` + +-------------------------------------------------------------------------------- + +(document + (section + (fenced_code_block + (fenced_code_block_delimiter) + (info_string + (language + (entity_reference) + (entity_reference))) + (block_continuation) + (code_fence_content + (block_continuation)) + (fenced_code_block_delimiter)))) + +================================================================================ +Example 332 - https://github.github.com/gfm/#example-332 +================================================================================ + föfö + +-------------------------------------------------------------------------------- + +(document + (section + (indented_code_block))) + +================================================================================ +Example 334 - https://github.github.com/gfm/#example-334 +================================================================================ +* foo + +* foo + +-------------------------------------------------------------------------------- + +(document + (section + (paragraph + (inline)) + (list + (list_item + (list_marker_star) + (paragraph + (inline)))))) diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/grammar.js b/vendor/tree-sitter-markdown/tree-sitter-markdown/grammar.js new file mode 100644 index 0000000000..925ea90d2c --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/grammar.js @@ -0,0 +1,608 @@ +// This grammar only concerns the block structure according to the CommonMark Spec +// (https://spec.commonmark.org/0.30/#blocks-and-inlines) +// For more information see README.md + +const common = require('../common/grammar.js'); + +const PRECEDENCE_LEVEL_LINK = common.PRECEDENCE_LEVEL_LINK; + +const PUNCTUATION_CHARACTERS_REGEX = '!-/:-@\\[-`\\{-~'; +const PUNCTUATION_CHARACTERS_ARRAY = [ + '!', '"', '#', '$', '%', '&', "'", '(', ')', '*', '+', ',', '-', '.', '/', ':', ';', '<', + '=', '>', '?', '@', '[', '\\', ']', '^', '_', '`', '{', '|', '}', '~' +]; + +module.exports = grammar({ + name: 'markdown', + + rules: { + document: $ => seq( + optional(choice( + common.EXTENSION_MINUS_METADATA ? $.minus_metadata : choice(), + common.EXTENSION_PLUS_METADATA ? $.plus_metadata : choice(), + )), + alias(prec.right(repeat($._block_not_section)), $.section), + repeat($.section), + ), + + ...common.rules, + _last_token_punctuation: $ => choice(), // needed for compatability wiht common rules + + // BLOCK STRUCTURE + + // All blocks. Every block contains a trailing newline. + _block: $ => choice( + $._block_not_section, + $.section, + ), + _block_not_section: $ => choice( + $.paragraph, + $.indented_code_block, + $.block_quote, + $.thematic_break, + $.list, + $.fenced_code_block, + $._blank_line, + $.html_block, + $.link_reference_definition, + common.EXTENSION_PIPE_TABLE ? $.pipe_table : choice(), + ), + section: $ => choice($._section1, $._section2, $._section3, $._section4, $._section5, $._section6), + _section1: $ => prec.right(seq( + choice( + alias($._atx_heading1, $.atx_heading), + alias($._setext_heading1, $.setext_heading), + ), + repeat(choice( + alias(choice($._section6, $._section5, $._section4, $._section3, $._section2), $.section), + $._block_not_section + )) + )), + _section2: $ => prec.right(seq( + choice( + alias($._atx_heading2, $.atx_heading), + alias($._setext_heading2, $.setext_heading), + ), + repeat(choice( + alias(choice($._section6, $._section5, $._section4, $._section3), $.section), + $._block_not_section + )) + )), + _section3: $ => prec.right(seq( + alias($._atx_heading3, $.atx_heading), + repeat(choice( + alias(choice($._section6, $._section5, $._section4), $.section), + $._block_not_section + )) + )), + _section4: $ => prec.right(seq( + alias($._atx_heading4, $.atx_heading), + repeat(choice( + alias(choice($._section6, $._section5), $.section), + $._block_not_section + )) + )), + _section5: $ => prec.right(seq( + alias($._atx_heading5, $.atx_heading), + repeat(choice( + alias($._section6, $.section), + $._block_not_section + )) + )), + _section6: $ => prec.right(seq( + alias($._atx_heading6, $.atx_heading), + repeat($._block_not_section) + )), + + // LEAF BLOCKS + + // A thematic break. This is currently handled by the external scanner but maybe could be + // parsed using normal tree-sitter rules. + // + // https://github.github.com/gfm/#thematic-breaks + thematic_break: $ => seq($._thematic_break, choice($._newline, $._eof)), + + // An ATX heading. This is currently handled by the external scanner but maybe could be + // parsed using normal tree-sitter rules. + // + // https://github.github.com/gfm/#atx-headings + _atx_heading1: $ => prec(1, seq( + $.atx_h1_marker, + optional(field('heading_content', alias($._line, $.inline))), + $._newline + )), + _atx_heading2: $ => prec(1, seq( + $.atx_h2_marker, + optional(field('heading_content', alias($._line, $.inline))), + $._newline + )), + _atx_heading3: $ => prec(1, seq( + $.atx_h3_marker, + optional(field('heading_content', alias($._line, $.inline))), + $._newline + )), + _atx_heading4: $ => prec(1, seq( + $.atx_h4_marker, + optional(field('heading_content', alias($._line, $.inline))), + $._newline + )), + _atx_heading5: $ => prec(1, seq( + $.atx_h5_marker, + optional(field('heading_content', alias($._line, $.inline))), + $._newline + )), + _atx_heading6: $ => prec(1, seq( + $.atx_h6_marker, + optional(field('heading_content', alias($._line, $.inline))), + $._newline + )), + + // A setext heading. The underlines are currently handled by the external scanner but maybe + // could be parsed using normal tree-sitter rules. + // + // https://github.github.com/gfm/#setext-headings + _setext_heading1: $ => seq( + field('heading_content', $.paragraph), + $.setext_h1_underline, + choice($._newline, $._eof), + ), + _setext_heading2: $ => seq( + field('heading_content', $.paragraph), + $.setext_h2_underline, + choice($._newline, $._eof), + ), + + // An indented code block. An indented code block is made up of indented chunks and blank + // lines. The indented chunks are handeled by the external scanner. + // + // https://github.github.com/gfm/#indented-code-blocks + indented_code_block: $ => prec.right(seq($._indented_chunk, repeat(choice($._indented_chunk, $._blank_line)))), + _indented_chunk: $ => seq($._indented_chunk_start, repeat(choice($._line, $._newline)), $._block_close, optional($.block_continuation)), + + // A fenced code block. Fenced code blocks are mainly handled by the external scanner. In + // case of backtick code blocks the external scanner also checks that the info string is + // proper. + // + // https://github.github.com/gfm/#fenced-code-blocks + fenced_code_block: $ => prec.right(choice( + seq( + alias($._fenced_code_block_start_backtick, $.fenced_code_block_delimiter), + optional($._whitespace), + optional($.info_string), + $._newline, + optional($.code_fence_content), + optional(seq(alias($._fenced_code_block_end_backtick, $.fenced_code_block_delimiter), $._close_block, $._newline)), + $._block_close, + ), + seq( + alias($._fenced_code_block_start_tilde, $.fenced_code_block_delimiter), + optional($._whitespace), + optional($.info_string), + $._newline, + optional($.code_fence_content), + optional(seq(alias($._fenced_code_block_end_tilde, $.fenced_code_block_delimiter), $._close_block, $._newline)), + $._block_close, + ), + )), + code_fence_content: $ => repeat1(choice($._newline, $._line)), + info_string: $ => choice( + seq($.language, repeat(choice($._line, $.backslash_escape, $.entity_reference, $.numeric_character_reference))), + seq( + repeat1(choice('{', '}')), + optional(choice( + seq($.language, repeat(choice($._line, $.backslash_escape, $.entity_reference, $.numeric_character_reference))), + seq($._whitespace, repeat(choice($._line, $.backslash_escape, $.entity_reference, $.numeric_character_reference))), + )) + ) + ), + language: $ => prec.right(repeat1(choice($._word, common.punctuation_without($, ['{', '}']), $.backslash_escape, $.entity_reference, $.numeric_character_reference))), + + // An HTML block. We do not emit addition nodes relating to the kind or structure or of the + // html block as this is best done using language injections and a proper html parsers. + // + // See the `build_html_block` function for more information. + // See the spec for the different kinds of html blocks. + // + // https://github.github.com/gfm/#html-blocks + html_block: $ => prec(1, seq(optional($._whitespace), choice( + $._html_block_1, + $._html_block_2, + $._html_block_3, + $._html_block_4, + $._html_block_5, + $._html_block_6, + $._html_block_7, + ))), + _html_block_1: $ => build_html_block($, + // new RegExp( + // '[ \t]*<' + regex_case_insensitive_list(HTML_TAG_NAMES_RULE_1) + '([\\r\\n]|[ \\t>][^<\\r\\n]*(\\n|\\r\\n?)?)' + // ), + $._html_block_1_start, + $._html_block_1_end, + true + ), + _html_block_2: $ => build_html_block($, $._html_block_2_start, '-->', true), + _html_block_3: $ => build_html_block($, $._html_block_3_start, '?>', true), + _html_block_4: $ => build_html_block($, $._html_block_4_start, '>', true), + _html_block_5: $ => build_html_block($, $._html_block_5_start, ']]>', true), + _html_block_6: $ => build_html_block( + $, + $._html_block_6_start, + seq($._newline, $._blank_line), + true + ), + _html_block_7: $ => build_html_block( + $, + $._html_block_7_start, + seq($._newline, $._blank_line), + false + ), + + // A link reference definition. We need to make sure that this is not mistaken for a + // paragraph or indented chunk. The `$._no_indented_chunk` token is used to tell the + // external scanner not to allow indented chunks when the `$.link_title` of the link + // reference definition would be valid. + // + // https://github.github.com/gfm/#link-reference-definitions + link_reference_definition: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq( + optional($._whitespace), + $.link_label, + ':', + optional(seq(optional($._whitespace), optional(seq($._soft_line_break, optional($._whitespace))))), + $.link_destination, + optional(prec.dynamic(2 * PRECEDENCE_LEVEL_LINK, seq( + choice( + seq($._whitespace, optional(seq($._soft_line_break, optional($._whitespace)))), + seq($._soft_line_break, optional($._whitespace)), + ), + optional($._no_indented_chunk), + $.link_title + ))), + choice($._newline, $._soft_line_break, $._eof), + )), + _text_inline_no_link: $ => choice($._word, $._whitespace, common.punctuation_without($, ['[', ']'])), + + // A paragraph. The parsing tactic for deciding when a paragraph ends is as follows: + // on every newline inside a paragraph a conflict is triggered manually using + // `$._split_token` to split the parse state into two branches. + // + // One of them - the one that also contains a `$._soft_line_break_marker` will try to + // continue the paragraph, but we make sure that the beginning of a new block that can + // interrupt a paragraph can also be parsed. If this is the case we know that the paragraph + // should have been closed and the external parser will emit an `$._error` to kill the parse + // branch. + // + // The other parse branch consideres the paragraph to be over. It will be killed if no valid new + // block is detected before the next newline. (For example it will also be killed if a indented + // code block is detected, which cannot interrupt paragraphs). + // + // Either way, after the next newline only one branch will exist, so the ammount of branches + // related to paragraphs ending does not grow. + // + // https://github.github.com/gfm/#paragraphs + paragraph: $ => seq(alias(repeat1(choice($._line, $._soft_line_break)), $.inline), choice($._newline, $._eof)), + + // A blank line including the following newline. + // + // https://github.github.com/gfm/#blank-lines + _blank_line: $ => seq($._blank_line_start, choice($._newline, $._eof)), + + + // CONTAINER BLOCKS + + // A block quote. This is the most basic example of a container block handled by the + // external scanner. + // + // https://github.github.com/gfm/#block-quotes + block_quote: $ => seq( + alias($._block_quote_start, $.block_quote_marker), + optional($.block_continuation), + repeat($._block), + $._block_close, + optional($.block_continuation) + ), + + // A list. This grammar does not differentiate between loose and tight lists for efficiency + // reasons. + // + // Lists can only contain list items with list markers of the same type. List items are + // handled by the external scanner. + // + // https://github.github.com/gfm/#lists + list: $ => prec.right(choice( + $._list_plus, + $._list_minus, + $._list_star, + $._list_dot, + $._list_parenthesis + )), + _list_plus: $ => prec.right(repeat1(alias($._list_item_plus, $.list_item))), + _list_minus: $ => prec.right(repeat1(alias($._list_item_minus, $.list_item))), + _list_star: $ => prec.right(repeat1(alias($._list_item_star, $.list_item))), + _list_dot: $ => prec.right(repeat1(alias($._list_item_dot, $.list_item))), + _list_parenthesis: $ => prec.right(repeat1(alias($._list_item_parenthesis, $.list_item))), + // Some list items can not interrupt a paragraph and are marked as such by the external + // scanner. + list_marker_plus: $ => choice($._list_marker_plus, $._list_marker_plus_dont_interrupt), + list_marker_minus: $ => choice($._list_marker_minus, $._list_marker_minus_dont_interrupt), + list_marker_star: $ => choice($._list_marker_star, $._list_marker_star_dont_interrupt), + list_marker_dot: $ => choice($._list_marker_dot, $._list_marker_dot_dont_interrupt), + list_marker_parenthesis: $ => choice($._list_marker_parenthesis, $._list_marker_parenthesis_dont_interrupt), + _list_item_plus: $ => seq( + $.list_marker_plus, + optional($.block_continuation), + $._list_item_content, + $._block_close, + optional($.block_continuation) + ), + _list_item_minus: $ => seq( + $.list_marker_minus, + optional($.block_continuation), + $._list_item_content, + $._block_close, + optional($.block_continuation) + ), + _list_item_star: $ => seq( + $.list_marker_star, + optional($.block_continuation), + $._list_item_content, + $._block_close, + optional($.block_continuation) + ), + _list_item_dot: $ => seq( + $.list_marker_dot, + optional($.block_continuation), + $._list_item_content, + $._block_close, + optional($.block_continuation) + ), + _list_item_parenthesis: $ => seq( + $.list_marker_parenthesis, + optional($.block_continuation), + $._list_item_content, + $._block_close, + optional($.block_continuation) + ), + // List items are closed after two consecutive blank lines + _list_item_content: $ => choice( + prec(1, seq( + $._blank_line, + $._blank_line, + $._close_block, + optional($.block_continuation) + )), + repeat1($._block), + common.EXTENSION_TASK_LIST ? prec(1, seq( + choice($.task_list_marker_checked, $.task_list_marker_unchecked), + $._whitespace, + $.paragraph, + repeat($._block) + )) : choice() + ), + + // Newlines as in the spec. Parsing a newline triggers the matching process by making + // the external parser emit a `$._line_ending`. + _newline: $ => seq( + $._line_ending, + optional($.block_continuation) + ), + _soft_line_break: $ => seq( + $._soft_line_ending, + optional($.block_continuation) + ), + // Some symbols get parsed as single tokens so that html blocks get detected properly + _line: $ => prec.right(repeat1(choice($._word, $._whitespace, common.punctuation_without($, [])))), + _word: $ => choice( + new RegExp('[^' + PUNCTUATION_CHARACTERS_REGEX + ' \\t\\n\\r]+'), + common.EXTENSION_TASK_LIST ? choice( + '[x]', + /\[[ \t]\]/, + ) : choice() + ), + // The external scanner emits some characters that should just be ignored. + _whitespace: $ => /[ \t]+/, + + ...(common.EXTENSION_TASK_LIST ? { + task_list_marker_checked: $ => prec(1, '[x]'), + task_list_marker_unchecked: $ => prec(1, /\[[ \t]\]/), + } : {}), + + ...(common.EXTENSION_PIPE_TABLE ? { + pipe_table: $ => prec.right(seq( + $._pipe_table_start, + alias($.pipe_table_row, $.pipe_table_header), + $._newline, + $.pipe_table_delimiter_row, + repeat(seq($._pipe_table_newline, optional($.pipe_table_row))), + choice($._newline, $._eof), + )), + + _pipe_table_newline: $ => seq( + $._pipe_table_line_ending, + optional($.block_continuation) + ), + + pipe_table_delimiter_row: $ => seq( + optional(seq( + optional($._whitespace), + '|', + )), + repeat1(prec.right(seq( + optional($._whitespace), + $.pipe_table_delimiter_cell, + optional($._whitespace), + '|', + ))), + optional($._whitespace), + optional(seq( + $.pipe_table_delimiter_cell, + optional($._whitespace) + )), + ), + + pipe_table_delimiter_cell: $ => seq( + optional(alias(':', $.pipe_table_align_left)), + repeat1('-'), + optional(alias(':', $.pipe_table_align_right)), + ), + + pipe_table_row: $ => seq( + optional(seq( + optional($._whitespace), + '|', + )), + choice( + seq( + repeat1(prec.right(seq( + optional($._whitespace), + optional($.pipe_table_cell), + optional($._whitespace), + '|', + ))), + optional($._whitespace), + optional(seq( + $.pipe_table_cell, + optional($._whitespace) + )), + ), + seq( + optional($._whitespace), + $.pipe_table_cell, + optional($._whitespace) + ) + ), + ), + + pipe_table_cell: $ => prec.right(seq( + choice( + $._word, + $._backslash_escape, + common.punctuation_without($, ['|']), + ), + repeat(choice( + $._word, + $._whitespace, + $._backslash_escape, + common.punctuation_without($, ['|']), + )), + )), + } : {}), + }, + + externals: $ => [ + // Quite a few of these tokens could maybe be implemented without use of the external parser. + // For this the `$._open_block` and `$._close_block` tokens should be used to tell the external + // parser to put a new anonymous block on the block stack. + + // Block structure gets parsed as follows: After every newline (`$._line_ending`) we try to match + // as many open blocks as possible. For example if the last line was part of a block quote we look + // for a `>` at the beginning of the next line. We emit a `$.block_continuation` for each matched + // block. For this process the external scanner keeps a stack of currently open blocks. + // + // If we are not able to match all blocks that does not necessarily mean that all unmatched blocks + // have to be closed. It could also mean that the line is a lazy continuation line + // (https://github.github.com/gfm/#lazy-continuation-line, see also `$._split_token` and + // `$._soft_line_break_marker` below) + // + // If a block does get closed (because it was not matched or because some closing token was + // encountered) we emit a `$._block_close` token + + $._line_ending, // this token does not contain the actual newline characters. see `$._newline` + $._soft_line_ending, + $._block_close, + $.block_continuation, + + // Tokens signifying the start of a block. Blocks that do not need a `$._block_close` because they + // always span one line are marked as such. + + $._block_quote_start, + $._indented_chunk_start, + $.atx_h1_marker, // atx headings do not need a `$._block_close` + $.atx_h2_marker, + $.atx_h3_marker, + $.atx_h4_marker, + $.atx_h5_marker, + $.atx_h6_marker, + $.setext_h1_underline, // setext headings do not need a `$._block_close` + $.setext_h2_underline, + $._thematic_break, // thematic breaks do not need a `$._block_close` + $._list_marker_minus, + $._list_marker_plus, + $._list_marker_star, + $._list_marker_parenthesis, + $._list_marker_dot, + $._list_marker_minus_dont_interrupt, // list items that do not interrupt an ongoing paragraph + $._list_marker_plus_dont_interrupt, + $._list_marker_star_dont_interrupt, + $._list_marker_parenthesis_dont_interrupt, + $._list_marker_dot_dont_interrupt, + $._fenced_code_block_start_backtick, + $._fenced_code_block_start_tilde, + $._blank_line_start, // Does not contain the newline characters. Blank lines do not need a `$._block_close` + + // Special tokens for block structure + + // Closing backticks or tildas for a fenced code block. They are used to trigger a `$._close_block` + // which in turn will trigger a `$._block_close` at the beginning the following line. + $._fenced_code_block_end_backtick, + $._fenced_code_block_end_tilde, + + $._html_block_1_start, + $._html_block_1_end, + $._html_block_2_start, + $._html_block_3_start, + $._html_block_4_start, + $._html_block_5_start, + $._html_block_6_start, + $._html_block_7_start, + + // Similarly this is used if the closing of a block is not decided by the external parser. + // A `$._block_close` will be emitted at the beginning of the next line. Notice that a + // `$._block_close` can also get emitted if the parent block closes. + $._close_block, + + // This is a workaround so the external parser does not try to open indented blocks when + // parsing a link reference definition. + $._no_indented_chunk, + + // An `$._error` token is never valid and gets emmited to kill invalid parse branches. Concretely + // this is used to decide wether a newline closes a paragraph and together and it gets emitted + // when trying to parse the `$._trigger_error` token in `$.link_title`. + $._error, + $._trigger_error, + $._eof, + + $.minus_metadata, + $.plus_metadata, + + $._pipe_table_start, + $._pipe_table_line_ending, + ], + precedences: $ => [ + [$._setext_heading1, $._block], + [$._setext_heading2, $._block], + [$.indented_code_block, $._block], + ], + conflicts: $ => [ + [$.link_reference_definition], + [$.link_label, $._line], + [$.link_reference_definition, $._line], + ], + extras: $ => [], +}); + +// General purpose structure for html blocks. The different kinds mostly work the same but have +// different openling and closing conditions. Some html blocks may not interrupt a paragraph and +// have to be marked as such. +function build_html_block($, open, close, interrupt_paragraph) { + return seq( + open, + repeat(choice( + $._line, + $._newline, + seq(close, $._close_block), + )), + $._block_close, + optional($.block_continuation), + ); +} diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/queries/highlights.scm b/vendor/tree-sitter-markdown/tree-sitter-markdown/queries/highlights.scm new file mode 100644 index 0000000000..3c2a896581 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/queries/highlights.scm @@ -0,0 +1,52 @@ +;From nvim-treesitter/nvim-treesitter +(atx_heading (inline) @text.title) +(setext_heading (paragraph) @text.title) + +[ + (atx_h1_marker) + (atx_h2_marker) + (atx_h3_marker) + (atx_h4_marker) + (atx_h5_marker) + (atx_h6_marker) + (setext_h1_underline) + (setext_h2_underline) +] @punctuation.special + +[ + (link_title) + (indented_code_block) + (fenced_code_block) +] @text.literal + +[ + (fenced_code_block_delimiter) +] @punctuation.delimiter + +(code_fence_content) @none + +[ + (link_destination) +] @text.uri + +[ + (link_label) +] @text.reference + +[ + (list_marker_plus) + (list_marker_minus) + (list_marker_star) + (list_marker_dot) + (list_marker_parenthesis) + (thematic_break) +] @punctuation.special + +[ + (block_continuation) + (block_quote_marker) +] @punctuation.special + +[ + (backslash_escape) +] @string.escape diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/queries/injections.scm b/vendor/tree-sitter-markdown/tree-sitter-markdown/queries/injections.scm new file mode 100644 index 0000000000..6da6ee0f47 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/queries/injections.scm @@ -0,0 +1,12 @@ +; From nvim-treesitter/nvim-treesitter + +(fenced_code_block + (info_string + (language) @injection.language) + (code_fence_content) @injection.content) + +((html_block) @injction.content (#set! injection.language "html")) + +(document . (section . (thematic_break) (_) @injection.content (thematic_break)) (#set! injection.language "yaml")) +((inline) @injection.content (#set! injection.language "markdown_inline")) + diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/src/grammar.json b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/grammar.json new file mode 100644 index 0000000000..f60dce461f --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/grammar.json @@ -0,0 +1,5404 @@ +{ + "name": "markdown", + "rules": { + "document": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "minus_metadata" + }, + { + "type": "SYMBOL", + "name": "plus_metadata" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_not_section" + } + } + }, + "named": true, + "value": "section" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "section" + } + } + ] + }, + "backslash_escape": { + "type": "SYMBOL", + "name": "_backslash_escape" + }, + "_backslash_escape": { + "type": "PATTERN", + "value": "\\\\[!-/:-@\\[-`\\{-~]" + }, + "entity_reference": { + "type": "PATTERN", + "value": "&(AEli|AElig|AM|AMP|Aacut|Aacute|Abreve|Acir|Acirc|Acy|Afr|Agrav|Agrave|Alpha|Amacr|And|Aogon|Aopf|ApplyFunction|Arin|Aring|Ascr|Assign|Atild|Atilde|Aum|Auml|Backslash|Barv|Barwed|Bcy|Because|Bernoullis|Beta|Bfr|Bopf|Breve|Bscr|Bumpeq|CHcy|COP|COPY|Cacute|Cap|CapitalDifferentialD|Cayleys|Ccaron|Ccedi|Ccedil|Ccirc|Cconint|Cdot|Cedilla|CenterDot|Cfr|Chi|CircleDot|CircleMinus|CirclePlus|CircleTimes|ClockwiseContourIntegral|CloseCurlyDoubleQuote|CloseCurlyQuote|Colon|Colone|Congruent|Conint|ContourIntegral|Copf|Coproduct|CounterClockwiseContourIntegral|Cross|Cscr|Cup|CupCap|DD|DDotrahd|DJcy|DScy|DZcy|Dagger|Darr|Dashv|Dcaron|Dcy|Del|Delta|Dfr|DiacriticalAcute|DiacriticalDot|DiacriticalDoubleAcute|DiacriticalGrave|DiacriticalTilde|Diamond|DifferentialD|Dopf|Dot|DotDot|DotEqual|DoubleContourIntegral|DoubleDot|DoubleDownArrow|DoubleLeftArrow|DoubleLeftRightArrow|DoubleLeftTee|DoubleLongLeftArrow|DoubleLongLeftRightArrow|DoubleLongRightArrow|DoubleRightArrow|DoubleRightTee|DoubleUpArrow|DoubleUpDownArrow|DoubleVerticalBar|DownArrow|DownArrowBar|DownArrowUpArrow|DownBreve|DownLeftRightVector|DownLeftTeeVector|DownLeftVector|DownLeftVectorBar|DownRightTeeVector|DownRightVector|DownRightVectorBar|DownTee|DownTeeArrow|Downarrow|Dscr|Dstrok|ENG|ET|ETH|Eacut|Eacute|Ecaron|Ecir|Ecirc|Ecy|Edot|Efr|Egrav|Egrave|Element|Emacr|EmptySmallSquare|EmptyVerySmallSquare|Eogon|Eopf|Epsilon|Equal|EqualTilde|Equilibrium|Escr|Esim|Eta|Eum|Euml|Exists|ExponentialE|Fcy|Ffr|FilledSmallSquare|FilledVerySmallSquare|Fopf|ForAll|Fouriertrf|Fscr|GJcy|G|GT|Gamma|Gammad|Gbreve|Gcedil|Gcirc|Gcy|Gdot|Gfr|Gg|Gopf|GreaterEqual|GreaterEqualLess|GreaterFullEqual|GreaterGreater|GreaterLess|GreaterSlantEqual|GreaterTilde|Gscr|Gt|HARDcy|Hacek|Hat|Hcirc|Hfr|HilbertSpace|Hopf|HorizontalLine|Hscr|Hstrok|HumpDownHump|HumpEqual|IEcy|IJlig|IOcy|Iacut|Iacute|Icir|Icirc|Icy|Idot|Ifr|Igrav|Igrave|Im|Imacr|ImaginaryI|Implies|Int|Integral|Intersection|InvisibleComma|InvisibleTimes|Iogon|Iopf|Iota|Iscr|Itilde|Iukcy|Ium|Iuml|Jcirc|Jcy|Jfr|Jopf|Jscr|Jsercy|Jukcy|KHcy|KJcy|Kappa|Kcedil|Kcy|Kfr|Kopf|Kscr|LJcy|L|LT|Lacute|Lambda|Lang|Laplacetrf|Larr|Lcaron|Lcedil|Lcy|LeftAngleBracket|LeftArrow|LeftArrowBar|LeftArrowRightArrow|LeftCeiling|LeftDoubleBracket|LeftDownTeeVector|LeftDownVector|LeftDownVectorBar|LeftFloor|LeftRightArrow|LeftRightVector|LeftTee|LeftTeeArrow|LeftTeeVector|LeftTriangle|LeftTriangleBar|LeftTriangleEqual|LeftUpDownVector|LeftUpTeeVector|LeftUpVector|LeftUpVectorBar|LeftVector|LeftVectorBar|Leftarrow|Leftrightarrow|LessEqualGreater|LessFullEqual|LessGreater|LessLess|LessSlantEqual|LessTilde|Lfr|Ll|Lleftarrow|Lmidot|LongLeftArrow|LongLeftRightArrow|LongRightArrow|Longleftarrow|Longleftrightarrow|Longrightarrow|Lopf|LowerLeftArrow|LowerRightArrow|Lscr|Lsh|Lstrok|Lt|Map|Mcy|MediumSpace|Mellintrf|Mfr|MinusPlus|Mopf|Mscr|Mu|NJcy|Nacute|Ncaron|Ncedil|Ncy|NegativeMediumSpace|NegativeThickSpace|NegativeThinSpace|NegativeVeryThinSpace|NestedGreaterGreater|NestedLessLess|NewLine|Nfr|NoBreak|NonBreakingSpace|Nopf|Not|NotCongruent|NotCupCap|NotDoubleVerticalBar|NotElement|NotEqual|NotEqualTilde|NotExists|NotGreater|NotGreaterEqual|NotGreaterFullEqual|NotGreaterGreater|NotGreaterLess|NotGreaterSlantEqual|NotGreaterTilde|NotHumpDownHump|NotHumpEqual|NotLeftTriangle|NotLeftTriangleBar|NotLeftTriangleEqual|NotLess|NotLessEqual|NotLessGreater|NotLessLess|NotLessSlantEqual|NotLessTilde|NotNestedGreaterGreater|NotNestedLessLess|NotPrecedes|NotPrecedesEqual|NotPrecedesSlantEqual|NotReverseElement|NotRightTriangle|NotRightTriangleBar|NotRightTriangleEqual|NotSquareSubset|NotSquareSubsetEqual|NotSquareSuperset|NotSquareSupersetEqual|NotSubset|NotSubsetEqual|NotSucceeds|NotSucceedsEqual|NotSucceedsSlantEqual|NotSucceedsTilde|NotSuperset|NotSupersetEqual|NotTilde|NotTildeEqual|NotTildeFullEqual|NotTildeTilde|NotVerticalBar|Nscr|Ntild|Ntilde|Nu|OElig|Oacut|Oacute|Ocir|Ocirc|Ocy|Odblac|Ofr|Ograv|Ograve|Omacr|Omega|Omicron|Oopf|OpenCurlyDoubleQuote|OpenCurlyQuote|Or|Oscr|Oslas|Oslash|Otild|Otilde|Otimes|Oum|Ouml|OverBar|OverBrace|OverBracket|OverParenthesis|PartialD|Pcy|Pfr|Phi|Pi|PlusMinus|Poincareplane|Popf|Pr|Precedes|PrecedesEqual|PrecedesSlantEqual|PrecedesTilde|Prime|Product|Proportion|Proportional|Pscr|Psi|QUO|QUOT|Qfr|Qopf|Qscr|RBarr|RE|REG|Racute|Rang|Rarr|Rarrtl|Rcaron|Rcedil|Rcy|Re|ReverseElement|ReverseEquilibrium|ReverseUpEquilibrium|Rfr|Rho|RightAngleBracket|RightArrow|RightArrowBar|RightArrowLeftArrow|RightCeiling|RightDoubleBracket|RightDownTeeVector|RightDownVector|RightDownVectorBar|RightFloor|RightTee|RightTeeArrow|RightTeeVector|RightTriangle|RightTriangleBar|RightTriangleEqual|RightUpDownVector|RightUpTeeVector|RightUpVector|RightUpVectorBar|RightVector|RightVectorBar|Rightarrow|Ropf|RoundImplies|Rrightarrow|Rscr|Rsh|RuleDelayed|SHCHcy|SHcy|SOFTcy|Sacute|Sc|Scaron|Scedil|Scirc|Scy|Sfr|ShortDownArrow|ShortLeftArrow|ShortRightArrow|ShortUpArrow|Sigma|SmallCircle|Sopf|Sqrt|Square|SquareIntersection|SquareSubset|SquareSubsetEqual|SquareSuperset|SquareSupersetEqual|SquareUnion|Sscr|Star|Sub|Subset|SubsetEqual|Succeeds|SucceedsEqual|SucceedsSlantEqual|SucceedsTilde|SuchThat|Sum|Sup|Superset|SupersetEqual|Supset|THOR|THORN|TRADE|TSHcy|TScy|Tab|Tau|Tcaron|Tcedil|Tcy|Tfr|Therefore|Theta|ThickSpace|ThinSpace|Tilde|TildeEqual|TildeFullEqual|TildeTilde|Topf|TripleDot|Tscr|Tstrok|Uacut|Uacute|Uarr|Uarrocir|Ubrcy|Ubreve|Ucir|Ucirc|Ucy|Udblac|Ufr|Ugrav|Ugrave|Umacr|UnderBar|UnderBrace|UnderBracket|UnderParenthesis|Union|UnionPlus|Uogon|Uopf|UpArrow|UpArrowBar|UpArrowDownArrow|UpDownArrow|UpEquilibrium|UpTee|UpTeeArrow|Uparrow|Updownarrow|UpperLeftArrow|UpperRightArrow|Upsi|Upsilon|Uring|Uscr|Utilde|Uum|Uuml|VDash|Vbar|Vcy|Vdash|Vdashl|Vee|Verbar|Vert|VerticalBar|VerticalLine|VerticalSeparator|VerticalTilde|VeryThinSpace|Vfr|Vopf|Vscr|Vvdash|Wcirc|Wedge|Wfr|Wopf|Wscr|Xfr|Xi|Xopf|Xscr|YAcy|YIcy|YUcy|Yacut|Yacute|Ycirc|Ycy|Yfr|Yopf|Yscr|Yuml|ZHcy|Zacute|Zcaron|Zcy|Zdot|ZeroWidthSpace|Zeta|Zfr|Zopf|Zscr|aacut|aacute|abreve|ac|acE|acd|acir|acirc|acut|acute|acy|aeli|aelig|af|afr|agrav|agrave|alefsym|aleph|alpha|amacr|amalg|am|amp|and|andand|andd|andslope|andv|ang|ange|angle|angmsd|angmsdaa|angmsdab|angmsdac|angmsdad|angmsdae|angmsdaf|angmsdag|angmsdah|angrt|angrtvb|angrtvbd|angsph|angst|angzarr|aogon|aopf|ap|apE|apacir|ape|apid|apos|approx|approxeq|arin|aring|ascr|ast|asymp|asympeq|atild|atilde|aum|auml|awconint|awint|bNot|backcong|backepsilon|backprime|backsim|backsimeq|barvee|barwed|barwedge|bbrk|bbrktbrk|bcong|bcy|bdquo|becaus|because|bemptyv|bepsi|bernou|beta|beth|between|bfr|bigcap|bigcirc|bigcup|bigodot|bigoplus|bigotimes|bigsqcup|bigstar|bigtriangledown|bigtriangleup|biguplus|bigvee|bigwedge|bkarow|blacklozenge|blacksquare|blacktriangle|blacktriangledown|blacktriangleleft|blacktriangleright|blank|blk12|blk14|blk34|block|bne|bnequiv|bnot|bopf|bot|bottom|bowtie|boxDL|boxDR|boxDl|boxDr|boxH|boxHD|boxHU|boxHd|boxHu|boxUL|boxUR|boxUl|boxUr|boxV|boxVH|boxVL|boxVR|boxVh|boxVl|boxVr|boxbox|boxdL|boxdR|boxdl|boxdr|boxh|boxhD|boxhU|boxhd|boxhu|boxminus|boxplus|boxtimes|boxuL|boxuR|boxul|boxur|boxv|boxvH|boxvL|boxvR|boxvh|boxvl|boxvr|bprime|breve|brvba|brvbar|bscr|bsemi|bsim|bsime|bsol|bsolb|bsolhsub|bull|bullet|bump|bumpE|bumpe|bumpeq|cacute|cap|capand|capbrcup|capcap|capcup|capdot|caps|caret|caron|ccaps|ccaron|ccedi|ccedil|ccirc|ccups|ccupssm|cdot|cedi|cedil|cemptyv|cen|cent|centerdot|cfr|chcy|check|checkmark|chi|cir|cirE|circ|circeq|circlearrowleft|circlearrowright|circledR|circledS|circledast|circledcirc|circleddash|cire|cirfnint|cirmid|cirscir|clubs|clubsuit|colon|colone|coloneq|comma|commat|comp|compfn|complement|complexes|cong|congdot|conint|copf|coprod|cop|copy|copysr|crarr|cross|cscr|csub|csube|csup|csupe|ctdot|cudarrl|cudarrr|cuepr|cuesc|cularr|cularrp|cup|cupbrcap|cupcap|cupcup|cupdot|cupor|cups|curarr|curarrm|curlyeqprec|curlyeqsucc|curlyvee|curlywedge|curre|curren|curvearrowleft|curvearrowright|cuvee|cuwed|cwconint|cwint|cylcty|dArr|dHar|dagger|daleth|darr|dash|dashv|dbkarow|dblac|dcaron|dcy|dd|ddagger|ddarr|ddotseq|de|deg|delta|demptyv|dfisht|dfr|dharl|dharr|diam|diamond|diamondsuit|diams|die|digamma|disin|div|divid|divide|divideontimes|divonx|djcy|dlcorn|dlcrop|dollar|dopf|dot|doteq|doteqdot|dotminus|dotplus|dotsquare|doublebarwedge|downarrow|downdownarrows|downharpoonleft|downharpoonright|drbkarow|drcorn|drcrop|dscr|dscy|dsol|dstrok|dtdot|dtri|dtrif|duarr|duhar|dwangle|dzcy|dzigrarr|eDDot|eDot|eacut|eacute|easter|ecaron|ecir|ecir|ecirc|ecolon|ecy|edot|ee|efDot|efr|eg|egrav|egrave|egs|egsdot|el|elinters|ell|els|elsdot|emacr|empty|emptyset|emptyv|emsp13|emsp14|emsp|eng|ensp|eogon|eopf|epar|eparsl|eplus|epsi|epsilon|epsiv|eqcirc|eqcolon|eqsim|eqslantgtr|eqslantless|equals|equest|equiv|equivDD|eqvparsl|erDot|erarr|escr|esdot|esim|eta|et|eth|eum|euml|euro|excl|exist|expectation|exponentiale|fallingdotseq|fcy|female|ffilig|fflig|ffllig|ffr|filig|fjlig|flat|fllig|fltns|fnof|fopf|forall|fork|forkv|fpartint|frac1|frac12|frac13|frac1|frac14|frac15|frac16|frac18|frac23|frac25|frac3|frac34|frac35|frac38|frac45|frac56|frac58|frac78|frasl|frown|fscr|gE|gEl|gacute|gamma|gammad|gap|gbreve|gcirc|gcy|gdot|ge|gel|geq|geqq|geqslant|ges|gescc|gesdot|gesdoto|gesdotol|gesl|gesles|gfr|gg|ggg|gimel|gjcy|gl|glE|gla|glj|gnE|gnap|gnapprox|gne|gneq|gneqq|gnsim|gopf|grave|gscr|gsim|gsime|gsiml|g|gt|gtcc|gtcir|gtdot|gtlPar|gtquest|gtrapprox|gtrarr|gtrdot|gtreqless|gtreqqless|gtrless|gtrsim|gvertneqq|gvnE|hArr|hairsp|half|hamilt|hardcy|harr|harrcir|harrw|hbar|hcirc|hearts|heartsuit|hellip|hercon|hfr|hksearow|hkswarow|hoarr|homtht|hookleftarrow|hookrightarrow|hopf|horbar|hscr|hslash|hstrok|hybull|hyphen|iacut|iacute|ic|icir|icirc|icy|iecy|iexc|iexcl|iff|ifr|igrav|igrave|ii|iiiint|iiint|iinfin|iiota|ijlig|imacr|image|imagline|imagpart|imath|imof|imped|in|incare|infin|infintie|inodot|int|intcal|integers|intercal|intlarhk|intprod|iocy|iogon|iopf|iota|iprod|iques|iquest|iscr|isin|isinE|isindot|isins|isinsv|isinv|it|itilde|iukcy|ium|iuml|jcirc|jcy|jfr|jmath|jopf|jscr|jsercy|jukcy|kappa|kappav|kcedil|kcy|kfr|kgreen|khcy|kjcy|kopf|kscr|lAarr|lArr|lAtail|lBarr|lE|lEg|lHar|lacute|laemptyv|lagran|lambda|lang|langd|langle|lap|laqu|laquo|larr|larrb|larrbfs|larrfs|larrhk|larrlp|larrpl|larrsim|larrtl|lat|latail|late|lates|lbarr|lbbrk|lbrace|lbrack|lbrke|lbrksld|lbrkslu|lcaron|lcedil|lceil|lcub|lcy|ldca|ldquo|ldquor|ldrdhar|ldrushar|ldsh|le|leftarrow|leftarrowtail|leftharpoondown|leftharpoonup|leftleftarrows|leftrightarrow|leftrightarrows|leftrightharpoons|leftrightsquigarrow|leftthreetimes|leg|leq|leqq|leqslant|les|lescc|lesdot|lesdoto|lesdotor|lesg|lesges|lessapprox|lessdot|lesseqgtr|lesseqqgtr|lessgtr|lesssim|lfisht|lfloor|lfr|lg|lgE|lhard|lharu|lharul|lhblk|ljcy|ll|llarr|llcorner|llhard|lltri|lmidot|lmoust|lmoustache|lnE|lnap|lnapprox|lne|lneq|lneqq|lnsim|loang|loarr|lobrk|longleftarrow|longleftrightarrow|longmapsto|longrightarrow|looparrowleft|looparrowright|lopar|lopf|loplus|lotimes|lowast|lowbar|loz|lozenge|lozf|lpar|lparlt|lrarr|lrcorner|lrhar|lrhard|lrm|lrtri|lsaquo|lscr|lsh|lsim|lsime|lsimg|lsqb|lsquo|lsquor|lstrok|l|lt|ltcc|ltcir|ltdot|lthree|ltimes|ltlarr|ltquest|ltrPar|ltri|ltrie|ltrif|lurdshar|luruhar|lvertneqq|lvnE|mDDot|mac|macr|male|malt|maltese|map|mapsto|mapstodown|mapstoleft|mapstoup|marker|mcomma|mcy|mdash|measuredangle|mfr|mho|micr|micro|mid|midast|midcir|middo|middot|minus|minusb|minusd|minusdu|mlcp|mldr|mnplus|models|mopf|mp|mscr|mstpos|mu|multimap|mumap|nGg|nGt|nGtv|nLeftarrow|nLeftrightarrow|nLl|nLt|nLtv|nRightarrow|nVDash|nVdash|nabla|nacute|nang|nap|napE|napid|napos|napprox|natur|natural|naturals|nbs|nbsp|nbump|nbumpe|ncap|ncaron|ncedil|ncong|ncongdot|ncup|ncy|ndash|ne|neArr|nearhk|nearr|nearrow|nedot|nequiv|nesear|nesim|nexist|nexists|nfr|ngE|nge|ngeq|ngeqq|ngeqslant|nges|ngsim|ngt|ngtr|nhArr|nharr|nhpar|ni|nis|nisd|niv|njcy|nlArr|nlE|nlarr|nldr|nle|nleftarrow|nleftrightarrow|nleq|nleqq|nleqslant|nles|nless|nlsim|nlt|nltri|nltrie|nmid|nopf|no|not|notin|notinE|notindot|notinva|notinvb|notinvc|notni|notniva|notnivb|notnivc|npar|nparallel|nparsl|npart|npolint|npr|nprcue|npre|nprec|npreceq|nrArr|nrarr|nrarrc|nrarrw|nrightarrow|nrtri|nrtrie|nsc|nsccue|nsce|nscr|nshortmid|nshortparallel|nsim|nsime|nsimeq|nsmid|nspar|nsqsube|nsqsupe|nsub|nsubE|nsube|nsubset|nsubseteq|nsubseteqq|nsucc|nsucceq|nsup|nsupE|nsupe|nsupset|nsupseteq|nsupseteqq|ntgl|ntild|ntilde|ntlg|ntriangleleft|ntrianglelefteq|ntriangleright|ntrianglerighteq|nu|num|numero|numsp|nvDash|nvHarr|nvap|nvdash|nvge|nvgt|nvinfin|nvlArr|nvle|nvlt|nvltrie|nvrArr|nvrtrie|nvsim|nwArr|nwarhk|nwarr|nwarrow|nwnear|oS|oacut|oacute|oast|ocir|ocir|ocirc|ocy|odash|odblac|odiv|odot|odsold|oelig|ofcir|ofr|ogon|ograv|ograve|ogt|ohbar|ohm|oint|olarr|olcir|olcross|oline|olt|omacr|omega|omicron|omid|ominus|oopf|opar|operp|oplus|or|orarr|ord|order|orderof|ord|ordf|ord|ordm|origof|oror|orslope|orv|oscr|oslas|oslash|osol|otild|otilde|otimes|otimesas|oum|ouml|ovbar|par|par|para|parallel|parsim|parsl|part|pcy|percnt|period|permil|perp|pertenk|pfr|phi|phiv|phmmat|phone|pi|pitchfork|piv|planck|planckh|plankv|plus|plusacir|plusb|pluscir|plusdo|plusdu|pluse|plusm|plusmn|plussim|plustwo|pm|pointint|popf|poun|pound|pr|prE|prap|prcue|pre|prec|precapprox|preccurlyeq|preceq|precnapprox|precneqq|precnsim|precsim|prime|primes|prnE|prnap|prnsim|prod|profalar|profline|profsurf|prop|propto|prsim|prurel|pscr|psi|puncsp|qfr|qint|qopf|qprime|qscr|quaternions|quatint|quest|questeq|quo|quot|rAarr|rArr|rAtail|rBarr|rHar|race|racute|radic|raemptyv|rang|rangd|range|rangle|raqu|raquo|rarr|rarrap|rarrb|rarrbfs|rarrc|rarrfs|rarrhk|rarrlp|rarrpl|rarrsim|rarrtl|rarrw|ratail|ratio|rationals|rbarr|rbbrk|rbrace|rbrack|rbrke|rbrksld|rbrkslu|rcaron|rcedil|rceil|rcub|rcy|rdca|rdldhar|rdquo|rdquor|rdsh|real|realine|realpart|reals|rect|re|reg|rfisht|rfloor|rfr|rhard|rharu|rharul|rho|rhov|rightarrow|rightarrowtail|rightharpoondown|rightharpoonup|rightleftarrows|rightleftharpoons|rightrightarrows|rightsquigarrow|rightthreetimes|ring|risingdotseq|rlarr|rlhar|rlm|rmoust|rmoustache|rnmid|roang|roarr|robrk|ropar|ropf|roplus|rotimes|rpar|rpargt|rppolint|rrarr|rsaquo|rscr|rsh|rsqb|rsquo|rsquor|rthree|rtimes|rtri|rtrie|rtrif|rtriltri|ruluhar|rx|sacute|sbquo|sc|scE|scap|scaron|sccue|sce|scedil|scirc|scnE|scnap|scnsim|scpolint|scsim|scy|sdot|sdotb|sdote|seArr|searhk|searr|searrow|sec|sect|semi|seswar|setminus|setmn|sext|sfr|sfrown|sharp|shchcy|shcy|shortmid|shortparallel|sh|shy|sigma|sigmaf|sigmav|sim|simdot|sime|simeq|simg|simgE|siml|simlE|simne|simplus|simrarr|slarr|smallsetminus|smashp|smeparsl|smid|smile|smt|smte|smtes|softcy|sol|solb|solbar|sopf|spades|spadesuit|spar|sqcap|sqcaps|sqcup|sqcups|sqsub|sqsube|sqsubset|sqsubseteq|sqsup|sqsupe|sqsupset|sqsupseteq|squ|square|squarf|squf|srarr|sscr|ssetmn|ssmile|sstarf|star|starf|straightepsilon|straightphi|strns|sub|subE|subdot|sube|subedot|submult|subnE|subne|subplus|subrarr|subset|subseteq|subseteqq|subsetneq|subsetneqq|subsim|subsub|subsup|succ|succapprox|succcurlyeq|succeq|succnapprox|succneqq|succnsim|succsim|sum|sung|sup|sup1|sup|sup2|sup|sup3|sup|supE|supdot|supdsub|supe|supedot|suphsol|suphsub|suplarr|supmult|supnE|supne|supplus|supset|supseteq|supseteqq|supsetneq|supsetneqq|supsim|supsub|supsup|swArr|swarhk|swarr|swarrow|swnwar|szli|szlig|target|tau|tbrk|tcaron|tcedil|tcy|tdot|telrec|tfr|there4|therefore|theta|thetasym|thetav|thickapprox|thicksim|thinsp|thkap|thksim|thor|thorn|tilde|time|times|timesb|timesbar|timesd|tint|toea|top|topbot|topcir|topf|topfork|tosa|tprime|trade|triangle|triangledown|triangleleft|trianglelefteq|triangleq|triangleright|trianglerighteq|tridot|trie|triminus|triplus|trisb|tritime|trpezium|tscr|tscy|tshcy|tstrok|twixt|twoheadleftarrow|twoheadrightarrow|uArr|uHar|uacut|uacute|uarr|ubrcy|ubreve|ucir|ucirc|ucy|udarr|udblac|udhar|ufisht|ufr|ugrav|ugrave|uharl|uharr|uhblk|ulcorn|ulcorner|ulcrop|ultri|umacr|um|uml|uogon|uopf|uparrow|updownarrow|upharpoonleft|upharpoonright|uplus|upsi|upsih|upsilon|upuparrows|urcorn|urcorner|urcrop|uring|urtri|uscr|utdot|utilde|utri|utrif|uuarr|uum|uuml|uwangle|vArr|vBar|vBarv|vDash|vangrt|varepsilon|varkappa|varnothing|varphi|varpi|varpropto|varr|varrho|varsigma|varsubsetneq|varsubsetneqq|varsupsetneq|varsupsetneqq|vartheta|vartriangleleft|vartriangleright|vcy|vdash|vee|veebar|veeeq|vellip|verbar|vert|vfr|vltri|vnsub|vnsup|vopf|vprop|vrtri|vscr|vsubnE|vsubne|vsupnE|vsupne|vzigzag|wcirc|wedbar|wedge|wedgeq|weierp|wfr|wopf|wp|wr|wreath|wscr|xcap|xcirc|xcup|xdtri|xfr|xhArr|xharr|xi|xlArr|xlarr|xmap|xnis|xodot|xopf|xoplus|xotime|xrArr|xrarr|xscr|xsqcup|xuplus|xutri|xvee|xwedge|yacut|yacute|yacy|ycirc|ycy|ye|yen|yfr|yicy|yopf|yscr|yucy|yum|yuml|zacute|zcaron|zcy|zdot|zeetrf|zeta|zfr|zhcy|zigrarr|zopf|zscr|zwj|zwnj);" + }, + "numeric_character_reference": { + "type": "PATTERN", + "value": "&#([0-9]{1,7}|[xX][0-9a-fA-F]{1,6});" + }, + "link_label": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_text_inline_no_link" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "link_destination": { + "type": "PREC_DYNAMIC", + "value": 10, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_text_no_angle" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + } + ] + } + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": "?" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + }, + { + "type": "SYMBOL", + "name": "_link_destination_parenthesis" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": ">" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + }, + { + "type": "SYMBOL", + "name": "_link_destination_parenthesis" + } + ] + } + } + ] + } + ] + } + }, + "_link_destination_parenthesis": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": ">" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + }, + { + "type": "SYMBOL", + "name": "_link_destination_parenthesis" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_text_no_angle": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": "=" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_whitespace" + } + ] + }, + "link_title": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": "=" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "SYMBOL", + "name": "_trigger_error" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": "=" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "SYMBOL", + "name": "_trigger_error" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": ">" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "SYMBOL", + "name": "_trigger_error" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "_newline_token": { + "type": "PATTERN", + "value": "\\n|\\r\\n?" + }, + "_last_token_punctuation": { + "type": "CHOICE", + "members": [] + }, + "_block": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_block_not_section" + }, + { + "type": "SYMBOL", + "name": "section" + } + ] + }, + "_block_not_section": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "paragraph" + }, + { + "type": "SYMBOL", + "name": "indented_code_block" + }, + { + "type": "SYMBOL", + "name": "block_quote" + }, + { + "type": "SYMBOL", + "name": "thematic_break" + }, + { + "type": "SYMBOL", + "name": "list" + }, + { + "type": "SYMBOL", + "name": "fenced_code_block" + }, + { + "type": "SYMBOL", + "name": "_blank_line" + }, + { + "type": "SYMBOL", + "name": "html_block" + }, + { + "type": "SYMBOL", + "name": "link_reference_definition" + }, + { + "type": "SYMBOL", + "name": "pipe_table" + } + ] + }, + "section": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_section1" + }, + { + "type": "SYMBOL", + "name": "_section2" + }, + { + "type": "SYMBOL", + "name": "_section3" + }, + { + "type": "SYMBOL", + "name": "_section4" + }, + { + "type": "SYMBOL", + "name": "_section5" + }, + { + "type": "SYMBOL", + "name": "_section6" + } + ] + }, + "_section1": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atx_heading1" + }, + "named": true, + "value": "atx_heading" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_setext_heading1" + }, + "named": true, + "value": "setext_heading" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_section6" + }, + { + "type": "SYMBOL", + "name": "_section5" + }, + { + "type": "SYMBOL", + "name": "_section4" + }, + { + "type": "SYMBOL", + "name": "_section3" + }, + { + "type": "SYMBOL", + "name": "_section2" + } + ] + }, + "named": true, + "value": "section" + }, + { + "type": "SYMBOL", + "name": "_block_not_section" + } + ] + } + } + ] + } + }, + "_section2": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atx_heading2" + }, + "named": true, + "value": "atx_heading" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_setext_heading2" + }, + "named": true, + "value": "setext_heading" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_section6" + }, + { + "type": "SYMBOL", + "name": "_section5" + }, + { + "type": "SYMBOL", + "name": "_section4" + }, + { + "type": "SYMBOL", + "name": "_section3" + } + ] + }, + "named": true, + "value": "section" + }, + { + "type": "SYMBOL", + "name": "_block_not_section" + } + ] + } + } + ] + } + }, + "_section3": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atx_heading3" + }, + "named": true, + "value": "atx_heading" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_section6" + }, + { + "type": "SYMBOL", + "name": "_section5" + }, + { + "type": "SYMBOL", + "name": "_section4" + } + ] + }, + "named": true, + "value": "section" + }, + { + "type": "SYMBOL", + "name": "_block_not_section" + } + ] + } + } + ] + } + }, + "_section4": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atx_heading4" + }, + "named": true, + "value": "atx_heading" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_section6" + }, + { + "type": "SYMBOL", + "name": "_section5" + } + ] + }, + "named": true, + "value": "section" + }, + { + "type": "SYMBOL", + "name": "_block_not_section" + } + ] + } + } + ] + } + }, + "_section5": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atx_heading5" + }, + "named": true, + "value": "atx_heading" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_section6" + }, + "named": true, + "value": "section" + }, + { + "type": "SYMBOL", + "name": "_block_not_section" + } + ] + } + } + ] + } + }, + "_section6": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atx_heading6" + }, + "named": true, + "value": "atx_heading" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block_not_section" + } + } + ] + } + }, + "thematic_break": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_thematic_break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + }, + "_atx_heading1": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "atx_h1_marker" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "heading_content", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_line" + }, + "named": true, + "value": "inline" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "_atx_heading2": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "atx_h2_marker" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "heading_content", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_line" + }, + "named": true, + "value": "inline" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "_atx_heading3": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "atx_h3_marker" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "heading_content", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_line" + }, + "named": true, + "value": "inline" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "_atx_heading4": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "atx_h4_marker" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "heading_content", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_line" + }, + "named": true, + "value": "inline" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "_atx_heading5": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "atx_h5_marker" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "heading_content", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_line" + }, + "named": true, + "value": "inline" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "_atx_heading6": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "atx_h6_marker" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "heading_content", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_line" + }, + "named": true, + "value": "inline" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + "_setext_heading1": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "heading_content", + "content": { + "type": "SYMBOL", + "name": "paragraph" + } + }, + { + "type": "SYMBOL", + "name": "setext_h1_underline" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + }, + "_setext_heading2": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "heading_content", + "content": { + "type": "SYMBOL", + "name": "paragraph" + } + }, + { + "type": "SYMBOL", + "name": "setext_h2_underline" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + }, + "indented_code_block": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_indented_chunk" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_indented_chunk" + }, + { + "type": "SYMBOL", + "name": "_blank_line" + } + ] + } + } + ] + } + }, + "_indented_chunk": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_indented_chunk_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "fenced_code_block": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_fenced_code_block_start_backtick" + }, + "named": true, + "value": "fenced_code_block_delimiter" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "info_string" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "code_fence_content" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_fenced_code_block_end_backtick" + }, + "named": true, + "value": "fenced_code_block_delimiter" + }, + { + "type": "SYMBOL", + "name": "_close_block" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_block_close" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_fenced_code_block_start_tilde" + }, + "named": true, + "value": "fenced_code_block_delimiter" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "info_string" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "code_fence_content" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_fenced_code_block_end_tilde" + }, + "named": true, + "value": "fenced_code_block_delimiter" + }, + { + "type": "SYMBOL", + "name": "_close_block" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_block_close" + } + ] + } + ] + } + }, + "code_fence_content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_line" + } + ] + } + }, + "info_string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "language" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "language" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "language": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SEQ", + "members": [ + { + "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": "<" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "backslash_escape" + }, + { + "type": "SYMBOL", + "name": "entity_reference" + }, + { + "type": "SYMBOL", + "name": "numeric_character_reference" + } + ] + } + } + }, + "html_block": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_html_block_1" + }, + { + "type": "SYMBOL", + "name": "_html_block_2" + }, + { + "type": "SYMBOL", + "name": "_html_block_3" + }, + { + "type": "SYMBOL", + "name": "_html_block_4" + }, + { + "type": "SYMBOL", + "name": "_html_block_5" + }, + { + "type": "SYMBOL", + "name": "_html_block_6" + }, + { + "type": "SYMBOL", + "name": "_html_block_7" + } + ] + } + ] + } + }, + "_html_block_1": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_html_block_1_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_html_block_1_end" + }, + { + "type": "SYMBOL", + "name": "_close_block" + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_html_block_2": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_html_block_2_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "-->" + }, + { + "type": "SYMBOL", + "name": "_close_block" + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_html_block_3": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_html_block_3_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "?>" + }, + { + "type": "SYMBOL", + "name": "_close_block" + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_html_block_4": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_html_block_4_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ">" + }, + { + "type": "SYMBOL", + "name": "_close_block" + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_html_block_5": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_html_block_5_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "]]>" + }, + { + "type": "SYMBOL", + "name": "_close_block" + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_html_block_6": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_html_block_6_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_blank_line" + } + ] + }, + { + "type": "SYMBOL", + "name": "_close_block" + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_html_block_7": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_html_block_7_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_blank_line" + } + ] + }, + { + "type": "SYMBOL", + "name": "_close_block" + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "link_reference_definition": { + "type": "PREC_DYNAMIC", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "link_label" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "link_destination" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_no_indented_chunk" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "link_title" + } + ] + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + } + }, + "_text_inline_no_link": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SEQ", + "members": [ + { + "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": "<" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "paragraph": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_line" + }, + { + "type": "SYMBOL", + "name": "_soft_line_break" + } + ] + } + }, + "named": true, + "value": "inline" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + }, + "_blank_line": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_blank_line_start" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + }, + "block_quote": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_block_quote_start" + }, + "named": true, + "value": "block_quote_marker" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block" + } + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "list": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_list_plus" + }, + { + "type": "SYMBOL", + "name": "_list_minus" + }, + { + "type": "SYMBOL", + "name": "_list_star" + }, + { + "type": "SYMBOL", + "name": "_list_dot" + }, + { + "type": "SYMBOL", + "name": "_list_parenthesis" + } + ] + } + }, + "_list_plus": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_plus" + }, + "named": true, + "value": "list_item" + } + } + }, + "_list_minus": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_minus" + }, + "named": true, + "value": "list_item" + } + } + }, + "_list_star": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_star" + }, + "named": true, + "value": "list_item" + } + } + }, + "_list_dot": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_dot" + }, + "named": true, + "value": "list_item" + } + } + }, + "_list_parenthesis": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_parenthesis" + }, + "named": true, + "value": "list_item" + } + } + }, + "list_marker_plus": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_list_marker_plus" + }, + { + "type": "SYMBOL", + "name": "_list_marker_plus_dont_interrupt" + } + ] + }, + "list_marker_minus": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_list_marker_minus" + }, + { + "type": "SYMBOL", + "name": "_list_marker_minus_dont_interrupt" + } + ] + }, + "list_marker_star": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_list_marker_star" + }, + { + "type": "SYMBOL", + "name": "_list_marker_star_dont_interrupt" + } + ] + }, + "list_marker_dot": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_list_marker_dot" + }, + { + "type": "SYMBOL", + "name": "_list_marker_dot_dont_interrupt" + } + ] + }, + "list_marker_parenthesis": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_list_marker_parenthesis" + }, + { + "type": "SYMBOL", + "name": "_list_marker_parenthesis_dont_interrupt" + } + ] + }, + "_list_item_plus": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "list_marker_plus" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_content" + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_list_item_minus": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "list_marker_minus" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_content" + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_list_item_star": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "list_marker_star" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_content" + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_list_item_dot": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "list_marker_dot" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_content" + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_list_item_parenthesis": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "list_marker_parenthesis" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_content" + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_list_item_content": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_blank_line" + }, + { + "type": "SYMBOL", + "name": "_blank_line" + }, + { + "type": "SYMBOL", + "name": "_close_block" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_block" + } + }, + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "task_list_marker_checked" + }, + { + "type": "SYMBOL", + "name": "task_list_marker_unchecked" + } + ] + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "paragraph" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_block" + } + } + ] + } + } + ] + }, + "_newline": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_line_ending" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_soft_line_break": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_soft_line_ending" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_line": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SEQ", + "members": [ + { + "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": "<" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + }, + "_word": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^!-/:-@\\[-`\\{-~ \\t\\n\\r]+" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "[x]" + }, + { + "type": "PATTERN", + "value": "\\[[ \\t]\\]" + } + ] + } + ] + }, + "_whitespace": { + "type": "PATTERN", + "value": "[ \\t]+" + }, + "task_list_marker_checked": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "[x]" + } + }, + "task_list_marker_unchecked": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "\\[[ \\t]\\]" + } + }, + "pipe_table": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pipe_table_start" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "pipe_table_row" + }, + "named": true, + "value": "pipe_table_header" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "pipe_table_delimiter_row" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pipe_table_newline" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pipe_table_row" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + } + }, + "_pipe_table_newline": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pipe_table_line_ending" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "pipe_table_delimiter_row": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "|" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "pipe_table_delimiter_cell" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "|" + } + ] + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pipe_table_delimiter_cell" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "pipe_table_delimiter_cell": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": ":" + }, + "named": true, + "value": "pipe_table_align_left" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": ":" + }, + "named": true, + "value": "pipe_table_align_right" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "pipe_table_row": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "|" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pipe_table_cell" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "|" + } + ] + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pipe_table_cell" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "pipe_table_cell" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + "pipe_table_cell": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SYMBOL", + "name": "_backslash_escape" + }, + { + "type": "SEQ", + "members": [ + { + "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": "<" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "_backslash_escape" + }, + { + "type": "SEQ", + "members": [ + { + "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": "<" + }, + { + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + } + } + }, + "extras": [], + "conflicts": [ + [ + "link_reference_definition" + ], + [ + "link_label", + "_line" + ], + [ + "link_reference_definition", + "_line" + ] + ], + "precedences": [ + [ + { + "type": "SYMBOL", + "name": "_setext_heading1" + }, + { + "type": "SYMBOL", + "name": "_block" + } + ], + [ + { + "type": "SYMBOL", + "name": "_setext_heading2" + }, + { + "type": "SYMBOL", + "name": "_block" + } + ], + [ + { + "type": "SYMBOL", + "name": "indented_code_block" + }, + { + "type": "SYMBOL", + "name": "_block" + } + ] + ], + "externals": [ + { + "type": "SYMBOL", + "name": "_line_ending" + }, + { + "type": "SYMBOL", + "name": "_soft_line_ending" + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "SYMBOL", + "name": "_block_quote_start" + }, + { + "type": "SYMBOL", + "name": "_indented_chunk_start" + }, + { + "type": "SYMBOL", + "name": "atx_h1_marker" + }, + { + "type": "SYMBOL", + "name": "atx_h2_marker" + }, + { + "type": "SYMBOL", + "name": "atx_h3_marker" + }, + { + "type": "SYMBOL", + "name": "atx_h4_marker" + }, + { + "type": "SYMBOL", + "name": "atx_h5_marker" + }, + { + "type": "SYMBOL", + "name": "atx_h6_marker" + }, + { + "type": "SYMBOL", + "name": "setext_h1_underline" + }, + { + "type": "SYMBOL", + "name": "setext_h2_underline" + }, + { + "type": "SYMBOL", + "name": "_thematic_break" + }, + { + "type": "SYMBOL", + "name": "_list_marker_minus" + }, + { + "type": "SYMBOL", + "name": "_list_marker_plus" + }, + { + "type": "SYMBOL", + "name": "_list_marker_star" + }, + { + "type": "SYMBOL", + "name": "_list_marker_parenthesis" + }, + { + "type": "SYMBOL", + "name": "_list_marker_dot" + }, + { + "type": "SYMBOL", + "name": "_list_marker_minus_dont_interrupt" + }, + { + "type": "SYMBOL", + "name": "_list_marker_plus_dont_interrupt" + }, + { + "type": "SYMBOL", + "name": "_list_marker_star_dont_interrupt" + }, + { + "type": "SYMBOL", + "name": "_list_marker_parenthesis_dont_interrupt" + }, + { + "type": "SYMBOL", + "name": "_list_marker_dot_dont_interrupt" + }, + { + "type": "SYMBOL", + "name": "_fenced_code_block_start_backtick" + }, + { + "type": "SYMBOL", + "name": "_fenced_code_block_start_tilde" + }, + { + "type": "SYMBOL", + "name": "_blank_line_start" + }, + { + "type": "SYMBOL", + "name": "_fenced_code_block_end_backtick" + }, + { + "type": "SYMBOL", + "name": "_fenced_code_block_end_tilde" + }, + { + "type": "SYMBOL", + "name": "_html_block_1_start" + }, + { + "type": "SYMBOL", + "name": "_html_block_1_end" + }, + { + "type": "SYMBOL", + "name": "_html_block_2_start" + }, + { + "type": "SYMBOL", + "name": "_html_block_3_start" + }, + { + "type": "SYMBOL", + "name": "_html_block_4_start" + }, + { + "type": "SYMBOL", + "name": "_html_block_5_start" + }, + { + "type": "SYMBOL", + "name": "_html_block_6_start" + }, + { + "type": "SYMBOL", + "name": "_html_block_7_start" + }, + { + "type": "SYMBOL", + "name": "_close_block" + }, + { + "type": "SYMBOL", + "name": "_no_indented_chunk" + }, + { + "type": "SYMBOL", + "name": "_error" + }, + { + "type": "SYMBOL", + "name": "_trigger_error" + }, + { + "type": "SYMBOL", + "name": "_eof" + }, + { + "type": "SYMBOL", + "name": "minus_metadata" + }, + { + "type": "SYMBOL", + "name": "plus_metadata" + }, + { + "type": "SYMBOL", + "name": "_pipe_table_start" + }, + { + "type": "SYMBOL", + "name": "_pipe_table_line_ending" + } + ], + "inline": [], + "supertypes": [] +} + diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/src/node-types.json b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/node-types.json new file mode 100644 index 0000000000..50207db09d --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/node-types.json @@ -0,0 +1,952 @@ +[ + { + "type": "atx_heading", + "named": true, + "fields": { + "heading_content": { + "multiple": false, + "required": false, + "types": [ + { + "type": "inline", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "atx_h1_marker", + "named": true + }, + { + "type": "atx_h2_marker", + "named": true + }, + { + "type": "atx_h3_marker", + "named": true + }, + { + "type": "atx_h4_marker", + "named": true + }, + { + "type": "atx_h5_marker", + "named": true + }, + { + "type": "atx_h6_marker", + "named": true + }, + { + "type": "block_continuation", + "named": true + } + ] + } + }, + { + "type": "backslash_escape", + "named": true, + "fields": {} + }, + { + "type": "block_quote", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block_continuation", + "named": true + }, + { + "type": "block_quote", + "named": true + }, + { + "type": "block_quote_marker", + "named": true + }, + { + "type": "fenced_code_block", + "named": true + }, + { + "type": "html_block", + "named": true + }, + { + "type": "indented_code_block", + "named": true + }, + { + "type": "link_reference_definition", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "pipe_table", + "named": true + }, + { + "type": "section", + "named": true + }, + { + "type": "thematic_break", + "named": true + } + ] + } + }, + { + "type": "code_fence_content", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "block_continuation", + "named": true + } + ] + } + }, + { + "type": "document", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "minus_metadata", + "named": true + }, + { + "type": "plus_metadata", + "named": true + }, + { + "type": "section", + "named": true + } + ] + } + }, + { + "type": "fenced_code_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block_continuation", + "named": true + }, + { + "type": "code_fence_content", + "named": true + }, + { + "type": "fenced_code_block_delimiter", + "named": true + }, + { + "type": "info_string", + "named": true + } + ] + } + }, + { + "type": "html_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "block_continuation", + "named": true + } + ] + } + }, + { + "type": "indented_code_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "block_continuation", + "named": true + } + ] + } + }, + { + "type": "info_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "backslash_escape", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "language", + "named": true + }, + { + "type": "numeric_character_reference", + "named": true + } + ] + } + }, + { + "type": "inline", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "block_continuation", + "named": true + } + ] + } + }, + { + "type": "language", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "backslash_escape", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "numeric_character_reference", + "named": true + } + ] + } + }, + { + "type": "link_destination", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "backslash_escape", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "numeric_character_reference", + "named": true + } + ] + } + }, + { + "type": "link_label", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "backslash_escape", + "named": true + }, + { + "type": "block_continuation", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "numeric_character_reference", + "named": true + } + ] + } + }, + { + "type": "link_reference_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block_continuation", + "named": true + }, + { + "type": "link_destination", + "named": true + }, + { + "type": "link_label", + "named": true + }, + { + "type": "link_title", + "named": true + } + ] + } + }, + { + "type": "link_title", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "backslash_escape", + "named": true + }, + { + "type": "block_continuation", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "numeric_character_reference", + "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_continuation", + "named": true + }, + { + "type": "block_quote", + "named": true + }, + { + "type": "fenced_code_block", + "named": true + }, + { + "type": "html_block", + "named": true + }, + { + "type": "indented_code_block", + "named": true + }, + { + "type": "link_reference_definition", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "list_marker_dot", + "named": true + }, + { + "type": "list_marker_minus", + "named": true + }, + { + "type": "list_marker_parenthesis", + "named": true + }, + { + "type": "list_marker_plus", + "named": true + }, + { + "type": "list_marker_star", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "pipe_table", + "named": true + }, + { + "type": "section", + "named": true + }, + { + "type": "task_list_marker_checked", + "named": true + }, + { + "type": "task_list_marker_unchecked", + "named": true + }, + { + "type": "thematic_break", + "named": true + } + ] + } + }, + { + "type": "list_marker_dot", + "named": true, + "fields": {} + }, + { + "type": "list_marker_minus", + "named": true, + "fields": {} + }, + { + "type": "list_marker_parenthesis", + "named": true, + "fields": {} + }, + { + "type": "list_marker_plus", + "named": true, + "fields": {} + }, + { + "type": "list_marker_star", + "named": true, + "fields": {} + }, + { + "type": "paragraph", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block_continuation", + "named": true + }, + { + "type": "inline", + "named": true + } + ] + } + }, + { + "type": "pipe_table", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block_continuation", + "named": true + }, + { + "type": "pipe_table_delimiter_row", + "named": true + }, + { + "type": "pipe_table_header", + "named": true + }, + { + "type": "pipe_table_row", + "named": true + } + ] + } + }, + { + "type": "pipe_table_cell", + "named": true, + "fields": {} + }, + { + "type": "pipe_table_delimiter_cell", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "pipe_table_align_left", + "named": true + }, + { + "type": "pipe_table_align_right", + "named": true + } + ] + } + }, + { + "type": "pipe_table_delimiter_row", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "pipe_table_delimiter_cell", + "named": true + } + ] + } + }, + { + "type": "pipe_table_header", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "pipe_table_cell", + "named": true + } + ] + } + }, + { + "type": "pipe_table_row", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "pipe_table_cell", + "named": true + } + ] + } + }, + { + "type": "section", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "atx_heading", + "named": true + }, + { + "type": "block_continuation", + "named": true + }, + { + "type": "block_quote", + "named": true + }, + { + "type": "fenced_code_block", + "named": true + }, + { + "type": "html_block", + "named": true + }, + { + "type": "indented_code_block", + "named": true + }, + { + "type": "link_reference_definition", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "pipe_table", + "named": true + }, + { + "type": "section", + "named": true + }, + { + "type": "setext_heading", + "named": true + }, + { + "type": "thematic_break", + "named": true + } + ] + } + }, + { + "type": "setext_heading", + "named": true, + "fields": { + "heading_content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "paragraph", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block_continuation", + "named": true + }, + { + "type": "setext_h1_underline", + "named": true + }, + { + "type": "setext_h2_underline", + "named": true + } + ] + } + }, + { + "type": "task_list_marker_checked", + "named": true, + "fields": {} + }, + { + "type": "task_list_marker_unchecked", + "named": true, + "fields": {} + }, + { + "type": "thematic_break", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "block_continuation", + "named": true + } + ] + } + }, + { + "type": "!", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "#", + "named": false + }, + { + "type": "$", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "-->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "?>", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "[x]", + "named": false + }, + { + "type": "\\", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "]]>", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "_", + "named": false + }, + { + "type": "`", + "named": false + }, + { + "type": "atx_h1_marker", + "named": true + }, + { + "type": "atx_h2_marker", + "named": true + }, + { + "type": "atx_h3_marker", + "named": true + }, + { + "type": "atx_h4_marker", + "named": true + }, + { + "type": "atx_h5_marker", + "named": true + }, + { + "type": "atx_h6_marker", + "named": true + }, + { + "type": "block_continuation", + "named": true + }, + { + "type": "block_quote_marker", + "named": true + }, + { + "type": "entity_reference", + "named": true + }, + { + "type": "fenced_code_block_delimiter", + "named": true + }, + { + "type": "minus_metadata", + "named": true + }, + { + "type": "numeric_character_reference", + "named": true + }, + { + "type": "pipe_table_align_left", + "named": true + }, + { + "type": "pipe_table_align_right", + "named": true + }, + { + "type": "plus_metadata", + "named": true + }, + { + "type": "setext_h1_underline", + "named": true + }, + { + "type": "setext_h2_underline", + "named": true + }, + { + "type": "{", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + } +] \ No newline at end of file diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/src/parser.c b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/parser.c new file mode 100644 index 0000000000..05134ab199 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/parser.c @@ -0,0 +1,60508 @@ +#include + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#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 13 +#define STATE_COUNT 941 +#define LARGE_STATE_COUNT 369 +#define SYMBOL_COUNT 203 +#define ALIAS_COUNT 4 +#define TOKEN_COUNT 91 +#define EXTERNAL_TOKEN_COUNT 47 +#define FIELD_COUNT 1 +#define MAX_ALIAS_SEQUENCE_LENGTH 13 +#define PRODUCTION_ID_COUNT 11 + +enum { + sym__backslash_escape = 1, + sym_entity_reference = 2, + sym_numeric_character_reference = 3, + anon_sym_LBRACK = 4, + anon_sym_RBRACK = 5, + anon_sym_LT = 6, + anon_sym_GT = 7, + anon_sym_BANG = 8, + anon_sym_DQUOTE = 9, + anon_sym_POUND = 10, + anon_sym_DOLLAR = 11, + anon_sym_PERCENT = 12, + anon_sym_AMP = 13, + anon_sym_SQUOTE = 14, + anon_sym_STAR = 15, + anon_sym_PLUS = 16, + anon_sym_COMMA = 17, + anon_sym_DASH = 18, + anon_sym_DOT = 19, + anon_sym_SLASH = 20, + anon_sym_COLON = 21, + anon_sym_SEMI = 22, + anon_sym_EQ = 23, + anon_sym_QMARK = 24, + anon_sym_AT = 25, + anon_sym_BSLASH = 26, + anon_sym_CARET = 27, + anon_sym__ = 28, + anon_sym_BQUOTE = 29, + anon_sym_LBRACE = 30, + anon_sym_PIPE = 31, + anon_sym_RBRACE = 32, + anon_sym_TILDE = 33, + anon_sym_LPAREN = 34, + anon_sym_RPAREN = 35, + sym__newline_token = 36, + anon_sym_DASH_DASH_GT = 37, + anon_sym_QMARK_GT = 38, + anon_sym_RBRACK_RBRACK_GT = 39, + aux_sym__word_token1 = 40, + anon_sym_LBRACKx_RBRACK = 41, + aux_sym__word_token2 = 42, + sym__whitespace = 43, + sym__line_ending = 44, + sym__soft_line_ending = 45, + sym__block_close = 46, + sym_block_continuation = 47, + sym__block_quote_start = 48, + sym__indented_chunk_start = 49, + sym_atx_h1_marker = 50, + sym_atx_h2_marker = 51, + sym_atx_h3_marker = 52, + sym_atx_h4_marker = 53, + sym_atx_h5_marker = 54, + sym_atx_h6_marker = 55, + sym_setext_h1_underline = 56, + sym_setext_h2_underline = 57, + sym__thematic_break = 58, + sym__list_marker_minus = 59, + sym__list_marker_plus = 60, + sym__list_marker_star = 61, + sym__list_marker_parenthesis = 62, + sym__list_marker_dot = 63, + sym__list_marker_minus_dont_interrupt = 64, + sym__list_marker_plus_dont_interrupt = 65, + sym__list_marker_star_dont_interrupt = 66, + sym__list_marker_parenthesis_dont_interrupt = 67, + sym__list_marker_dot_dont_interrupt = 68, + sym__fenced_code_block_start_backtick = 69, + sym__fenced_code_block_start_tilde = 70, + sym__blank_line_start = 71, + sym__fenced_code_block_end_backtick = 72, + sym__fenced_code_block_end_tilde = 73, + sym__html_block_1_start = 74, + sym__html_block_1_end = 75, + sym__html_block_2_start = 76, + sym__html_block_3_start = 77, + sym__html_block_4_start = 78, + sym__html_block_5_start = 79, + sym__html_block_6_start = 80, + sym__html_block_7_start = 81, + sym__close_block = 82, + sym__no_indented_chunk = 83, + sym__error = 84, + sym__trigger_error = 85, + sym__eof = 86, + sym_minus_metadata = 87, + sym_plus_metadata = 88, + sym__pipe_table_start = 89, + sym__pipe_table_line_ending = 90, + sym_document = 91, + sym_backslash_escape = 92, + sym_link_label = 93, + sym_link_destination = 94, + sym__link_destination_parenthesis = 95, + sym__text_no_angle = 96, + sym_link_title = 97, + sym__last_token_punctuation = 98, + sym__block = 99, + sym__block_not_section = 100, + sym_section = 101, + sym__section1 = 102, + sym__section2 = 103, + sym__section3 = 104, + sym__section4 = 105, + sym__section5 = 106, + sym__section6 = 107, + sym_thematic_break = 108, + sym__atx_heading1 = 109, + sym__atx_heading2 = 110, + sym__atx_heading3 = 111, + sym__atx_heading4 = 112, + sym__atx_heading5 = 113, + sym__atx_heading6 = 114, + sym__setext_heading1 = 115, + sym__setext_heading2 = 116, + sym_indented_code_block = 117, + sym__indented_chunk = 118, + sym_fenced_code_block = 119, + sym_code_fence_content = 120, + sym_info_string = 121, + sym_language = 122, + sym_html_block = 123, + sym__html_block_1 = 124, + sym__html_block_2 = 125, + sym__html_block_3 = 126, + sym__html_block_4 = 127, + sym__html_block_5 = 128, + sym__html_block_6 = 129, + sym__html_block_7 = 130, + sym_link_reference_definition = 131, + sym__text_inline_no_link = 132, + sym_paragraph = 133, + sym__blank_line = 134, + sym_block_quote = 135, + sym_list = 136, + sym__list_plus = 137, + sym__list_minus = 138, + sym__list_star = 139, + sym__list_dot = 140, + sym__list_parenthesis = 141, + sym_list_marker_plus = 142, + sym_list_marker_minus = 143, + sym_list_marker_star = 144, + sym_list_marker_dot = 145, + sym_list_marker_parenthesis = 146, + sym__list_item_plus = 147, + sym__list_item_minus = 148, + sym__list_item_star = 149, + sym__list_item_dot = 150, + sym__list_item_parenthesis = 151, + sym__list_item_content = 152, + sym__newline = 153, + sym__soft_line_break = 154, + sym__line = 155, + sym__word = 156, + sym_task_list_marker_checked = 157, + sym_task_list_marker_unchecked = 158, + sym_pipe_table = 159, + sym__pipe_table_newline = 160, + sym_pipe_table_delimiter_row = 161, + sym_pipe_table_delimiter_cell = 162, + sym_pipe_table_row = 163, + sym_pipe_table_cell = 164, + aux_sym_document_repeat1 = 165, + aux_sym_document_repeat2 = 166, + aux_sym_link_label_repeat1 = 167, + aux_sym_link_destination_repeat1 = 168, + aux_sym_link_destination_repeat2 = 169, + aux_sym_link_title_repeat1 = 170, + aux_sym_link_title_repeat2 = 171, + aux_sym_link_title_repeat3 = 172, + aux_sym__section1_repeat1 = 173, + aux_sym__section2_repeat1 = 174, + aux_sym__section3_repeat1 = 175, + aux_sym__section4_repeat1 = 176, + aux_sym__section5_repeat1 = 177, + aux_sym_indented_code_block_repeat1 = 178, + aux_sym__indented_chunk_repeat1 = 179, + aux_sym_code_fence_content_repeat1 = 180, + aux_sym_info_string_repeat1 = 181, + aux_sym_info_string_repeat2 = 182, + aux_sym_language_repeat1 = 183, + aux_sym__html_block_1_repeat1 = 184, + aux_sym__html_block_2_repeat1 = 185, + aux_sym__html_block_3_repeat1 = 186, + aux_sym__html_block_4_repeat1 = 187, + aux_sym__html_block_5_repeat1 = 188, + aux_sym__html_block_6_repeat1 = 189, + aux_sym_paragraph_repeat1 = 190, + aux_sym_block_quote_repeat1 = 191, + aux_sym__list_plus_repeat1 = 192, + aux_sym__list_minus_repeat1 = 193, + aux_sym__list_star_repeat1 = 194, + aux_sym__list_dot_repeat1 = 195, + aux_sym__list_parenthesis_repeat1 = 196, + aux_sym__line_repeat1 = 197, + aux_sym_pipe_table_repeat1 = 198, + aux_sym_pipe_table_delimiter_row_repeat1 = 199, + aux_sym_pipe_table_delimiter_cell_repeat1 = 200, + aux_sym_pipe_table_row_repeat1 = 201, + aux_sym_pipe_table_cell_repeat1 = 202, + alias_sym_inline = 203, + alias_sym_pipe_table_align_left = 204, + alias_sym_pipe_table_align_right = 205, + alias_sym_pipe_table_header = 206, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym__backslash_escape] = "_backslash_escape", + [sym_entity_reference] = "entity_reference", + [sym_numeric_character_reference] = "numeric_character_reference", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_LT] = "<", + [anon_sym_GT] = ">", + [anon_sym_BANG] = "!", + [anon_sym_DQUOTE] = "\"", + [anon_sym_POUND] = "#", + [anon_sym_DOLLAR] = "$", + [anon_sym_PERCENT] = "%", + [anon_sym_AMP] = "&", + [anon_sym_SQUOTE] = "'", + [anon_sym_STAR] = "*", + [anon_sym_PLUS] = "+", + [anon_sym_COMMA] = ",", + [anon_sym_DASH] = "-", + [anon_sym_DOT] = ".", + [anon_sym_SLASH] = "/", + [anon_sym_COLON] = ":", + [anon_sym_SEMI] = ";", + [anon_sym_EQ] = "=", + [anon_sym_QMARK] = "\?", + [anon_sym_AT] = "@", + [anon_sym_BSLASH] = "\\", + [anon_sym_CARET] = "^", + [anon_sym__] = "_", + [anon_sym_BQUOTE] = "`", + [anon_sym_LBRACE] = "{", + [anon_sym_PIPE] = "|", + [anon_sym_RBRACE] = "}", + [anon_sym_TILDE] = "~", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [sym__newline_token] = "_newline_token", + [anon_sym_DASH_DASH_GT] = "-->", + [anon_sym_QMARK_GT] = "\?>", + [anon_sym_RBRACK_RBRACK_GT] = "]]>", + [aux_sym__word_token1] = "_word_token1", + [anon_sym_LBRACKx_RBRACK] = "[x]", + [aux_sym__word_token2] = "_word_token2", + [sym__whitespace] = "_whitespace", + [sym__line_ending] = "_line_ending", + [sym__soft_line_ending] = "_soft_line_ending", + [sym__block_close] = "_block_close", + [sym_block_continuation] = "block_continuation", + [sym__block_quote_start] = "block_quote_marker", + [sym__indented_chunk_start] = "_indented_chunk_start", + [sym_atx_h1_marker] = "atx_h1_marker", + [sym_atx_h2_marker] = "atx_h2_marker", + [sym_atx_h3_marker] = "atx_h3_marker", + [sym_atx_h4_marker] = "atx_h4_marker", + [sym_atx_h5_marker] = "atx_h5_marker", + [sym_atx_h6_marker] = "atx_h6_marker", + [sym_setext_h1_underline] = "setext_h1_underline", + [sym_setext_h2_underline] = "setext_h2_underline", + [sym__thematic_break] = "_thematic_break", + [sym__list_marker_minus] = "_list_marker_minus", + [sym__list_marker_plus] = "_list_marker_plus", + [sym__list_marker_star] = "_list_marker_star", + [sym__list_marker_parenthesis] = "_list_marker_parenthesis", + [sym__list_marker_dot] = "_list_marker_dot", + [sym__list_marker_minus_dont_interrupt] = "_list_marker_minus_dont_interrupt", + [sym__list_marker_plus_dont_interrupt] = "_list_marker_plus_dont_interrupt", + [sym__list_marker_star_dont_interrupt] = "_list_marker_star_dont_interrupt", + [sym__list_marker_parenthesis_dont_interrupt] = "_list_marker_parenthesis_dont_interrupt", + [sym__list_marker_dot_dont_interrupt] = "_list_marker_dot_dont_interrupt", + [sym__fenced_code_block_start_backtick] = "fenced_code_block_delimiter", + [sym__fenced_code_block_start_tilde] = "fenced_code_block_delimiter", + [sym__blank_line_start] = "_blank_line_start", + [sym__fenced_code_block_end_backtick] = "fenced_code_block_delimiter", + [sym__fenced_code_block_end_tilde] = "fenced_code_block_delimiter", + [sym__html_block_1_start] = "_html_block_1_start", + [sym__html_block_1_end] = "_html_block_1_end", + [sym__html_block_2_start] = "_html_block_2_start", + [sym__html_block_3_start] = "_html_block_3_start", + [sym__html_block_4_start] = "_html_block_4_start", + [sym__html_block_5_start] = "_html_block_5_start", + [sym__html_block_6_start] = "_html_block_6_start", + [sym__html_block_7_start] = "_html_block_7_start", + [sym__close_block] = "_close_block", + [sym__no_indented_chunk] = "_no_indented_chunk", + [sym__error] = "_error", + [sym__trigger_error] = "_trigger_error", + [sym__eof] = "_eof", + [sym_minus_metadata] = "minus_metadata", + [sym_plus_metadata] = "plus_metadata", + [sym__pipe_table_start] = "_pipe_table_start", + [sym__pipe_table_line_ending] = "_pipe_table_line_ending", + [sym_document] = "document", + [sym_backslash_escape] = "backslash_escape", + [sym_link_label] = "link_label", + [sym_link_destination] = "link_destination", + [sym__link_destination_parenthesis] = "_link_destination_parenthesis", + [sym__text_no_angle] = "_text_no_angle", + [sym_link_title] = "link_title", + [sym__last_token_punctuation] = "_last_token_punctuation", + [sym__block] = "_block", + [sym__block_not_section] = "_block_not_section", + [sym_section] = "section", + [sym__section1] = "_section1", + [sym__section2] = "_section2", + [sym__section3] = "_section3", + [sym__section4] = "_section4", + [sym__section5] = "_section5", + [sym__section6] = "_section6", + [sym_thematic_break] = "thematic_break", + [sym__atx_heading1] = "atx_heading", + [sym__atx_heading2] = "atx_heading", + [sym__atx_heading3] = "atx_heading", + [sym__atx_heading4] = "atx_heading", + [sym__atx_heading5] = "atx_heading", + [sym__atx_heading6] = "atx_heading", + [sym__setext_heading1] = "setext_heading", + [sym__setext_heading2] = "setext_heading", + [sym_indented_code_block] = "indented_code_block", + [sym__indented_chunk] = "_indented_chunk", + [sym_fenced_code_block] = "fenced_code_block", + [sym_code_fence_content] = "code_fence_content", + [sym_info_string] = "info_string", + [sym_language] = "language", + [sym_html_block] = "html_block", + [sym__html_block_1] = "_html_block_1", + [sym__html_block_2] = "_html_block_2", + [sym__html_block_3] = "_html_block_3", + [sym__html_block_4] = "_html_block_4", + [sym__html_block_5] = "_html_block_5", + [sym__html_block_6] = "_html_block_6", + [sym__html_block_7] = "_html_block_7", + [sym_link_reference_definition] = "link_reference_definition", + [sym__text_inline_no_link] = "_text_inline_no_link", + [sym_paragraph] = "paragraph", + [sym__blank_line] = "_blank_line", + [sym_block_quote] = "block_quote", + [sym_list] = "list", + [sym__list_plus] = "_list_plus", + [sym__list_minus] = "_list_minus", + [sym__list_star] = "_list_star", + [sym__list_dot] = "_list_dot", + [sym__list_parenthesis] = "_list_parenthesis", + [sym_list_marker_plus] = "list_marker_plus", + [sym_list_marker_minus] = "list_marker_minus", + [sym_list_marker_star] = "list_marker_star", + [sym_list_marker_dot] = "list_marker_dot", + [sym_list_marker_parenthesis] = "list_marker_parenthesis", + [sym__list_item_plus] = "list_item", + [sym__list_item_minus] = "list_item", + [sym__list_item_star] = "list_item", + [sym__list_item_dot] = "list_item", + [sym__list_item_parenthesis] = "list_item", + [sym__list_item_content] = "_list_item_content", + [sym__newline] = "_newline", + [sym__soft_line_break] = "_soft_line_break", + [sym__line] = "_line", + [sym__word] = "_word", + [sym_task_list_marker_checked] = "task_list_marker_checked", + [sym_task_list_marker_unchecked] = "task_list_marker_unchecked", + [sym_pipe_table] = "pipe_table", + [sym__pipe_table_newline] = "_pipe_table_newline", + [sym_pipe_table_delimiter_row] = "pipe_table_delimiter_row", + [sym_pipe_table_delimiter_cell] = "pipe_table_delimiter_cell", + [sym_pipe_table_row] = "pipe_table_row", + [sym_pipe_table_cell] = "pipe_table_cell", + [aux_sym_document_repeat1] = "document_repeat1", + [aux_sym_document_repeat2] = "document_repeat2", + [aux_sym_link_label_repeat1] = "link_label_repeat1", + [aux_sym_link_destination_repeat1] = "link_destination_repeat1", + [aux_sym_link_destination_repeat2] = "link_destination_repeat2", + [aux_sym_link_title_repeat1] = "link_title_repeat1", + [aux_sym_link_title_repeat2] = "link_title_repeat2", + [aux_sym_link_title_repeat3] = "link_title_repeat3", + [aux_sym__section1_repeat1] = "_section1_repeat1", + [aux_sym__section2_repeat1] = "_section2_repeat1", + [aux_sym__section3_repeat1] = "_section3_repeat1", + [aux_sym__section4_repeat1] = "_section4_repeat1", + [aux_sym__section5_repeat1] = "_section5_repeat1", + [aux_sym_indented_code_block_repeat1] = "indented_code_block_repeat1", + [aux_sym__indented_chunk_repeat1] = "_indented_chunk_repeat1", + [aux_sym_code_fence_content_repeat1] = "code_fence_content_repeat1", + [aux_sym_info_string_repeat1] = "info_string_repeat1", + [aux_sym_info_string_repeat2] = "info_string_repeat2", + [aux_sym_language_repeat1] = "language_repeat1", + [aux_sym__html_block_1_repeat1] = "_html_block_1_repeat1", + [aux_sym__html_block_2_repeat1] = "_html_block_2_repeat1", + [aux_sym__html_block_3_repeat1] = "_html_block_3_repeat1", + [aux_sym__html_block_4_repeat1] = "_html_block_4_repeat1", + [aux_sym__html_block_5_repeat1] = "_html_block_5_repeat1", + [aux_sym__html_block_6_repeat1] = "_html_block_6_repeat1", + [aux_sym_paragraph_repeat1] = "paragraph_repeat1", + [aux_sym_block_quote_repeat1] = "block_quote_repeat1", + [aux_sym__list_plus_repeat1] = "_list_plus_repeat1", + [aux_sym__list_minus_repeat1] = "_list_minus_repeat1", + [aux_sym__list_star_repeat1] = "_list_star_repeat1", + [aux_sym__list_dot_repeat1] = "_list_dot_repeat1", + [aux_sym__list_parenthesis_repeat1] = "_list_parenthesis_repeat1", + [aux_sym__line_repeat1] = "_line_repeat1", + [aux_sym_pipe_table_repeat1] = "pipe_table_repeat1", + [aux_sym_pipe_table_delimiter_row_repeat1] = "pipe_table_delimiter_row_repeat1", + [aux_sym_pipe_table_delimiter_cell_repeat1] = "pipe_table_delimiter_cell_repeat1", + [aux_sym_pipe_table_row_repeat1] = "pipe_table_row_repeat1", + [aux_sym_pipe_table_cell_repeat1] = "pipe_table_cell_repeat1", + [alias_sym_inline] = "inline", + [alias_sym_pipe_table_align_left] = "pipe_table_align_left", + [alias_sym_pipe_table_align_right] = "pipe_table_align_right", + [alias_sym_pipe_table_header] = "pipe_table_header", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym__backslash_escape] = sym__backslash_escape, + [sym_entity_reference] = sym_entity_reference, + [sym_numeric_character_reference] = sym_numeric_character_reference, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_POUND] = anon_sym_POUND, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_BSLASH] = anon_sym_BSLASH, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym__] = anon_sym__, + [anon_sym_BQUOTE] = anon_sym_BQUOTE, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [sym__newline_token] = sym__newline_token, + [anon_sym_DASH_DASH_GT] = anon_sym_DASH_DASH_GT, + [anon_sym_QMARK_GT] = anon_sym_QMARK_GT, + [anon_sym_RBRACK_RBRACK_GT] = anon_sym_RBRACK_RBRACK_GT, + [aux_sym__word_token1] = aux_sym__word_token1, + [anon_sym_LBRACKx_RBRACK] = anon_sym_LBRACKx_RBRACK, + [aux_sym__word_token2] = aux_sym__word_token2, + [sym__whitespace] = sym__whitespace, + [sym__line_ending] = sym__line_ending, + [sym__soft_line_ending] = sym__soft_line_ending, + [sym__block_close] = sym__block_close, + [sym_block_continuation] = sym_block_continuation, + [sym__block_quote_start] = sym__block_quote_start, + [sym__indented_chunk_start] = sym__indented_chunk_start, + [sym_atx_h1_marker] = sym_atx_h1_marker, + [sym_atx_h2_marker] = sym_atx_h2_marker, + [sym_atx_h3_marker] = sym_atx_h3_marker, + [sym_atx_h4_marker] = sym_atx_h4_marker, + [sym_atx_h5_marker] = sym_atx_h5_marker, + [sym_atx_h6_marker] = sym_atx_h6_marker, + [sym_setext_h1_underline] = sym_setext_h1_underline, + [sym_setext_h2_underline] = sym_setext_h2_underline, + [sym__thematic_break] = sym__thematic_break, + [sym__list_marker_minus] = sym__list_marker_minus, + [sym__list_marker_plus] = sym__list_marker_plus, + [sym__list_marker_star] = sym__list_marker_star, + [sym__list_marker_parenthesis] = sym__list_marker_parenthesis, + [sym__list_marker_dot] = sym__list_marker_dot, + [sym__list_marker_minus_dont_interrupt] = sym__list_marker_minus_dont_interrupt, + [sym__list_marker_plus_dont_interrupt] = sym__list_marker_plus_dont_interrupt, + [sym__list_marker_star_dont_interrupt] = sym__list_marker_star_dont_interrupt, + [sym__list_marker_parenthesis_dont_interrupt] = sym__list_marker_parenthesis_dont_interrupt, + [sym__list_marker_dot_dont_interrupt] = sym__list_marker_dot_dont_interrupt, + [sym__fenced_code_block_start_backtick] = sym__fenced_code_block_start_backtick, + [sym__fenced_code_block_start_tilde] = sym__fenced_code_block_start_backtick, + [sym__blank_line_start] = sym__blank_line_start, + [sym__fenced_code_block_end_backtick] = sym__fenced_code_block_start_backtick, + [sym__fenced_code_block_end_tilde] = sym__fenced_code_block_start_backtick, + [sym__html_block_1_start] = sym__html_block_1_start, + [sym__html_block_1_end] = sym__html_block_1_end, + [sym__html_block_2_start] = sym__html_block_2_start, + [sym__html_block_3_start] = sym__html_block_3_start, + [sym__html_block_4_start] = sym__html_block_4_start, + [sym__html_block_5_start] = sym__html_block_5_start, + [sym__html_block_6_start] = sym__html_block_6_start, + [sym__html_block_7_start] = sym__html_block_7_start, + [sym__close_block] = sym__close_block, + [sym__no_indented_chunk] = sym__no_indented_chunk, + [sym__error] = sym__error, + [sym__trigger_error] = sym__trigger_error, + [sym__eof] = sym__eof, + [sym_minus_metadata] = sym_minus_metadata, + [sym_plus_metadata] = sym_plus_metadata, + [sym__pipe_table_start] = sym__pipe_table_start, + [sym__pipe_table_line_ending] = sym__pipe_table_line_ending, + [sym_document] = sym_document, + [sym_backslash_escape] = sym_backslash_escape, + [sym_link_label] = sym_link_label, + [sym_link_destination] = sym_link_destination, + [sym__link_destination_parenthesis] = sym__link_destination_parenthesis, + [sym__text_no_angle] = sym__text_no_angle, + [sym_link_title] = sym_link_title, + [sym__last_token_punctuation] = sym__last_token_punctuation, + [sym__block] = sym__block, + [sym__block_not_section] = sym__block_not_section, + [sym_section] = sym_section, + [sym__section1] = sym__section1, + [sym__section2] = sym__section2, + [sym__section3] = sym__section3, + [sym__section4] = sym__section4, + [sym__section5] = sym__section5, + [sym__section6] = sym__section6, + [sym_thematic_break] = sym_thematic_break, + [sym__atx_heading1] = sym__atx_heading1, + [sym__atx_heading2] = sym__atx_heading1, + [sym__atx_heading3] = sym__atx_heading1, + [sym__atx_heading4] = sym__atx_heading1, + [sym__atx_heading5] = sym__atx_heading1, + [sym__atx_heading6] = sym__atx_heading1, + [sym__setext_heading1] = sym__setext_heading1, + [sym__setext_heading2] = sym__setext_heading1, + [sym_indented_code_block] = sym_indented_code_block, + [sym__indented_chunk] = sym__indented_chunk, + [sym_fenced_code_block] = sym_fenced_code_block, + [sym_code_fence_content] = sym_code_fence_content, + [sym_info_string] = sym_info_string, + [sym_language] = sym_language, + [sym_html_block] = sym_html_block, + [sym__html_block_1] = sym__html_block_1, + [sym__html_block_2] = sym__html_block_2, + [sym__html_block_3] = sym__html_block_3, + [sym__html_block_4] = sym__html_block_4, + [sym__html_block_5] = sym__html_block_5, + [sym__html_block_6] = sym__html_block_6, + [sym__html_block_7] = sym__html_block_7, + [sym_link_reference_definition] = sym_link_reference_definition, + [sym__text_inline_no_link] = sym__text_inline_no_link, + [sym_paragraph] = sym_paragraph, + [sym__blank_line] = sym__blank_line, + [sym_block_quote] = sym_block_quote, + [sym_list] = sym_list, + [sym__list_plus] = sym__list_plus, + [sym__list_minus] = sym__list_minus, + [sym__list_star] = sym__list_star, + [sym__list_dot] = sym__list_dot, + [sym__list_parenthesis] = sym__list_parenthesis, + [sym_list_marker_plus] = sym_list_marker_plus, + [sym_list_marker_minus] = sym_list_marker_minus, + [sym_list_marker_star] = sym_list_marker_star, + [sym_list_marker_dot] = sym_list_marker_dot, + [sym_list_marker_parenthesis] = sym_list_marker_parenthesis, + [sym__list_item_plus] = sym__list_item_plus, + [sym__list_item_minus] = sym__list_item_plus, + [sym__list_item_star] = sym__list_item_plus, + [sym__list_item_dot] = sym__list_item_plus, + [sym__list_item_parenthesis] = sym__list_item_plus, + [sym__list_item_content] = sym__list_item_content, + [sym__newline] = sym__newline, + [sym__soft_line_break] = sym__soft_line_break, + [sym__line] = sym__line, + [sym__word] = sym__word, + [sym_task_list_marker_checked] = sym_task_list_marker_checked, + [sym_task_list_marker_unchecked] = sym_task_list_marker_unchecked, + [sym_pipe_table] = sym_pipe_table, + [sym__pipe_table_newline] = sym__pipe_table_newline, + [sym_pipe_table_delimiter_row] = sym_pipe_table_delimiter_row, + [sym_pipe_table_delimiter_cell] = sym_pipe_table_delimiter_cell, + [sym_pipe_table_row] = sym_pipe_table_row, + [sym_pipe_table_cell] = sym_pipe_table_cell, + [aux_sym_document_repeat1] = aux_sym_document_repeat1, + [aux_sym_document_repeat2] = aux_sym_document_repeat2, + [aux_sym_link_label_repeat1] = aux_sym_link_label_repeat1, + [aux_sym_link_destination_repeat1] = aux_sym_link_destination_repeat1, + [aux_sym_link_destination_repeat2] = aux_sym_link_destination_repeat2, + [aux_sym_link_title_repeat1] = aux_sym_link_title_repeat1, + [aux_sym_link_title_repeat2] = aux_sym_link_title_repeat2, + [aux_sym_link_title_repeat3] = aux_sym_link_title_repeat3, + [aux_sym__section1_repeat1] = aux_sym__section1_repeat1, + [aux_sym__section2_repeat1] = aux_sym__section2_repeat1, + [aux_sym__section3_repeat1] = aux_sym__section3_repeat1, + [aux_sym__section4_repeat1] = aux_sym__section4_repeat1, + [aux_sym__section5_repeat1] = aux_sym__section5_repeat1, + [aux_sym_indented_code_block_repeat1] = aux_sym_indented_code_block_repeat1, + [aux_sym__indented_chunk_repeat1] = aux_sym__indented_chunk_repeat1, + [aux_sym_code_fence_content_repeat1] = aux_sym_code_fence_content_repeat1, + [aux_sym_info_string_repeat1] = aux_sym_info_string_repeat1, + [aux_sym_info_string_repeat2] = aux_sym_info_string_repeat2, + [aux_sym_language_repeat1] = aux_sym_language_repeat1, + [aux_sym__html_block_1_repeat1] = aux_sym__html_block_1_repeat1, + [aux_sym__html_block_2_repeat1] = aux_sym__html_block_2_repeat1, + [aux_sym__html_block_3_repeat1] = aux_sym__html_block_3_repeat1, + [aux_sym__html_block_4_repeat1] = aux_sym__html_block_4_repeat1, + [aux_sym__html_block_5_repeat1] = aux_sym__html_block_5_repeat1, + [aux_sym__html_block_6_repeat1] = aux_sym__html_block_6_repeat1, + [aux_sym_paragraph_repeat1] = aux_sym_paragraph_repeat1, + [aux_sym_block_quote_repeat1] = aux_sym_block_quote_repeat1, + [aux_sym__list_plus_repeat1] = aux_sym__list_plus_repeat1, + [aux_sym__list_minus_repeat1] = aux_sym__list_minus_repeat1, + [aux_sym__list_star_repeat1] = aux_sym__list_star_repeat1, + [aux_sym__list_dot_repeat1] = aux_sym__list_dot_repeat1, + [aux_sym__list_parenthesis_repeat1] = aux_sym__list_parenthesis_repeat1, + [aux_sym__line_repeat1] = aux_sym__line_repeat1, + [aux_sym_pipe_table_repeat1] = aux_sym_pipe_table_repeat1, + [aux_sym_pipe_table_delimiter_row_repeat1] = aux_sym_pipe_table_delimiter_row_repeat1, + [aux_sym_pipe_table_delimiter_cell_repeat1] = aux_sym_pipe_table_delimiter_cell_repeat1, + [aux_sym_pipe_table_row_repeat1] = aux_sym_pipe_table_row_repeat1, + [aux_sym_pipe_table_cell_repeat1] = aux_sym_pipe_table_cell_repeat1, + [alias_sym_inline] = alias_sym_inline, + [alias_sym_pipe_table_align_left] = alias_sym_pipe_table_align_left, + [alias_sym_pipe_table_align_right] = alias_sym_pipe_table_align_right, + [alias_sym_pipe_table_header] = alias_sym_pipe_table_header, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym__backslash_escape] = { + .visible = false, + .named = true, + }, + [sym_entity_reference] = { + .visible = true, + .named = true, + }, + [sym_numeric_character_reference] = { + .visible = true, + .named = true, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym__] = { + .visible = true, + .named = false, + }, + [anon_sym_BQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [sym__newline_token] = { + .visible = false, + .named = true, + }, + [anon_sym_DASH_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK_RBRACK_GT] = { + .visible = true, + .named = false, + }, + [aux_sym__word_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_LBRACKx_RBRACK] = { + .visible = true, + .named = false, + }, + [aux_sym__word_token2] = { + .visible = false, + .named = false, + }, + [sym__whitespace] = { + .visible = false, + .named = true, + }, + [sym__line_ending] = { + .visible = false, + .named = true, + }, + [sym__soft_line_ending] = { + .visible = false, + .named = true, + }, + [sym__block_close] = { + .visible = false, + .named = true, + }, + [sym_block_continuation] = { + .visible = true, + .named = true, + }, + [sym__block_quote_start] = { + .visible = true, + .named = true, + }, + [sym__indented_chunk_start] = { + .visible = false, + .named = true, + }, + [sym_atx_h1_marker] = { + .visible = true, + .named = true, + }, + [sym_atx_h2_marker] = { + .visible = true, + .named = true, + }, + [sym_atx_h3_marker] = { + .visible = true, + .named = true, + }, + [sym_atx_h4_marker] = { + .visible = true, + .named = true, + }, + [sym_atx_h5_marker] = { + .visible = true, + .named = true, + }, + [sym_atx_h6_marker] = { + .visible = true, + .named = true, + }, + [sym_setext_h1_underline] = { + .visible = true, + .named = true, + }, + [sym_setext_h2_underline] = { + .visible = true, + .named = true, + }, + [sym__thematic_break] = { + .visible = false, + .named = true, + }, + [sym__list_marker_minus] = { + .visible = false, + .named = true, + }, + [sym__list_marker_plus] = { + .visible = false, + .named = true, + }, + [sym__list_marker_star] = { + .visible = false, + .named = true, + }, + [sym__list_marker_parenthesis] = { + .visible = false, + .named = true, + }, + [sym__list_marker_dot] = { + .visible = false, + .named = true, + }, + [sym__list_marker_minus_dont_interrupt] = { + .visible = false, + .named = true, + }, + [sym__list_marker_plus_dont_interrupt] = { + .visible = false, + .named = true, + }, + [sym__list_marker_star_dont_interrupt] = { + .visible = false, + .named = true, + }, + [sym__list_marker_parenthesis_dont_interrupt] = { + .visible = false, + .named = true, + }, + [sym__list_marker_dot_dont_interrupt] = { + .visible = false, + .named = true, + }, + [sym__fenced_code_block_start_backtick] = { + .visible = true, + .named = true, + }, + [sym__fenced_code_block_start_tilde] = { + .visible = true, + .named = true, + }, + [sym__blank_line_start] = { + .visible = false, + .named = true, + }, + [sym__fenced_code_block_end_backtick] = { + .visible = true, + .named = true, + }, + [sym__fenced_code_block_end_tilde] = { + .visible = true, + .named = true, + }, + [sym__html_block_1_start] = { + .visible = false, + .named = true, + }, + [sym__html_block_1_end] = { + .visible = false, + .named = true, + }, + [sym__html_block_2_start] = { + .visible = false, + .named = true, + }, + [sym__html_block_3_start] = { + .visible = false, + .named = true, + }, + [sym__html_block_4_start] = { + .visible = false, + .named = true, + }, + [sym__html_block_5_start] = { + .visible = false, + .named = true, + }, + [sym__html_block_6_start] = { + .visible = false, + .named = true, + }, + [sym__html_block_7_start] = { + .visible = false, + .named = true, + }, + [sym__close_block] = { + .visible = false, + .named = true, + }, + [sym__no_indented_chunk] = { + .visible = false, + .named = true, + }, + [sym__error] = { + .visible = false, + .named = true, + }, + [sym__trigger_error] = { + .visible = false, + .named = true, + }, + [sym__eof] = { + .visible = false, + .named = true, + }, + [sym_minus_metadata] = { + .visible = true, + .named = true, + }, + [sym_plus_metadata] = { + .visible = true, + .named = true, + }, + [sym__pipe_table_start] = { + .visible = false, + .named = true, + }, + [sym__pipe_table_line_ending] = { + .visible = false, + .named = true, + }, + [sym_document] = { + .visible = true, + .named = true, + }, + [sym_backslash_escape] = { + .visible = true, + .named = true, + }, + [sym_link_label] = { + .visible = true, + .named = true, + }, + [sym_link_destination] = { + .visible = true, + .named = true, + }, + [sym__link_destination_parenthesis] = { + .visible = false, + .named = true, + }, + [sym__text_no_angle] = { + .visible = false, + .named = true, + }, + [sym_link_title] = { + .visible = true, + .named = true, + }, + [sym__last_token_punctuation] = { + .visible = false, + .named = true, + }, + [sym__block] = { + .visible = false, + .named = true, + }, + [sym__block_not_section] = { + .visible = false, + .named = true, + }, + [sym_section] = { + .visible = true, + .named = true, + }, + [sym__section1] = { + .visible = false, + .named = true, + }, + [sym__section2] = { + .visible = false, + .named = true, + }, + [sym__section3] = { + .visible = false, + .named = true, + }, + [sym__section4] = { + .visible = false, + .named = true, + }, + [sym__section5] = { + .visible = false, + .named = true, + }, + [sym__section6] = { + .visible = false, + .named = true, + }, + [sym_thematic_break] = { + .visible = true, + .named = true, + }, + [sym__atx_heading1] = { + .visible = true, + .named = true, + }, + [sym__atx_heading2] = { + .visible = true, + .named = true, + }, + [sym__atx_heading3] = { + .visible = true, + .named = true, + }, + [sym__atx_heading4] = { + .visible = true, + .named = true, + }, + [sym__atx_heading5] = { + .visible = true, + .named = true, + }, + [sym__atx_heading6] = { + .visible = true, + .named = true, + }, + [sym__setext_heading1] = { + .visible = true, + .named = true, + }, + [sym__setext_heading2] = { + .visible = true, + .named = true, + }, + [sym_indented_code_block] = { + .visible = true, + .named = true, + }, + [sym__indented_chunk] = { + .visible = false, + .named = true, + }, + [sym_fenced_code_block] = { + .visible = true, + .named = true, + }, + [sym_code_fence_content] = { + .visible = true, + .named = true, + }, + [sym_info_string] = { + .visible = true, + .named = true, + }, + [sym_language] = { + .visible = true, + .named = true, + }, + [sym_html_block] = { + .visible = true, + .named = true, + }, + [sym__html_block_1] = { + .visible = false, + .named = true, + }, + [sym__html_block_2] = { + .visible = false, + .named = true, + }, + [sym__html_block_3] = { + .visible = false, + .named = true, + }, + [sym__html_block_4] = { + .visible = false, + .named = true, + }, + [sym__html_block_5] = { + .visible = false, + .named = true, + }, + [sym__html_block_6] = { + .visible = false, + .named = true, + }, + [sym__html_block_7] = { + .visible = false, + .named = true, + }, + [sym_link_reference_definition] = { + .visible = true, + .named = true, + }, + [sym__text_inline_no_link] = { + .visible = false, + .named = true, + }, + [sym_paragraph] = { + .visible = true, + .named = true, + }, + [sym__blank_line] = { + .visible = false, + .named = true, + }, + [sym_block_quote] = { + .visible = true, + .named = true, + }, + [sym_list] = { + .visible = true, + .named = true, + }, + [sym__list_plus] = { + .visible = false, + .named = true, + }, + [sym__list_minus] = { + .visible = false, + .named = true, + }, + [sym__list_star] = { + .visible = false, + .named = true, + }, + [sym__list_dot] = { + .visible = false, + .named = true, + }, + [sym__list_parenthesis] = { + .visible = false, + .named = true, + }, + [sym_list_marker_plus] = { + .visible = true, + .named = true, + }, + [sym_list_marker_minus] = { + .visible = true, + .named = true, + }, + [sym_list_marker_star] = { + .visible = true, + .named = true, + }, + [sym_list_marker_dot] = { + .visible = true, + .named = true, + }, + [sym_list_marker_parenthesis] = { + .visible = true, + .named = true, + }, + [sym__list_item_plus] = { + .visible = true, + .named = true, + }, + [sym__list_item_minus] = { + .visible = true, + .named = true, + }, + [sym__list_item_star] = { + .visible = true, + .named = true, + }, + [sym__list_item_dot] = { + .visible = true, + .named = true, + }, + [sym__list_item_parenthesis] = { + .visible = true, + .named = true, + }, + [sym__list_item_content] = { + .visible = false, + .named = true, + }, + [sym__newline] = { + .visible = false, + .named = true, + }, + [sym__soft_line_break] = { + .visible = false, + .named = true, + }, + [sym__line] = { + .visible = false, + .named = true, + }, + [sym__word] = { + .visible = false, + .named = true, + }, + [sym_task_list_marker_checked] = { + .visible = true, + .named = true, + }, + [sym_task_list_marker_unchecked] = { + .visible = true, + .named = true, + }, + [sym_pipe_table] = { + .visible = true, + .named = true, + }, + [sym__pipe_table_newline] = { + .visible = false, + .named = true, + }, + [sym_pipe_table_delimiter_row] = { + .visible = true, + .named = true, + }, + [sym_pipe_table_delimiter_cell] = { + .visible = true, + .named = true, + }, + [sym_pipe_table_row] = { + .visible = true, + .named = true, + }, + [sym_pipe_table_cell] = { + .visible = true, + .named = true, + }, + [aux_sym_document_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_document_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_link_label_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_link_destination_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_link_destination_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_link_title_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_link_title_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_link_title_repeat3] = { + .visible = false, + .named = false, + }, + [aux_sym__section1_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__section2_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__section3_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__section4_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__section5_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_indented_code_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__indented_chunk_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_code_fence_content_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_info_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_info_string_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_language_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__html_block_1_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__html_block_2_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__html_block_3_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__html_block_4_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__html_block_5_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__html_block_6_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_paragraph_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_block_quote_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__list_plus_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__list_minus_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__list_star_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__list_dot_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__list_parenthesis_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__line_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_table_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_table_delimiter_row_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_table_delimiter_cell_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_table_row_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipe_table_cell_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_inline] = { + .visible = true, + .named = true, + }, + [alias_sym_pipe_table_align_left] = { + .visible = true, + .named = true, + }, + [alias_sym_pipe_table_align_right] = { + .visible = true, + .named = true, + }, + [alias_sym_pipe_table_header] = { + .visible = true, + .named = true, + }, +}; + +enum { + field_heading_content = 1, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_heading_content] = "heading_content", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [1] = {.index = 0, .length = 1}, + [5] = {.index = 1, .length = 1}, + [6] = {.index = 2, .length = 1}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_heading_content, 0, .inherited = true}, + [1] = + {field_heading_content, 1}, + [2] = + {field_heading_content, 0}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [2] = { + [0] = sym_section, + }, + [3] = { + [1] = sym_section, + }, + [4] = { + [0] = alias_sym_inline, + }, + [5] = { + [1] = alias_sym_inline, + }, + [7] = { + [0] = alias_sym_pipe_table_align_left, + }, + [8] = { + [1] = alias_sym_pipe_table_header, + }, + [9] = { + [1] = alias_sym_pipe_table_align_right, + }, + [10] = { + [0] = alias_sym_pipe_table_align_left, + [2] = alias_sym_pipe_table_align_right, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym__section2, 2, + sym__section2, + sym_section, + sym__section3, 2, + sym__section3, + sym_section, + sym__section4, 2, + sym__section4, + sym_section, + sym__section5, 2, + sym__section5, + sym_section, + sym__section6, 2, + sym__section6, + sym_section, + sym__line, 2, + sym__line, + alias_sym_inline, + sym_pipe_table_row, 2, + sym_pipe_table_row, + alias_sym_pipe_table_header, + aux_sym_document_repeat1, 2, + aux_sym_document_repeat1, + sym_section, + aux_sym_paragraph_repeat1, 2, + aux_sym_paragraph_repeat1, + alias_sym_inline, + 0, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(2031); + if (lookahead == '\n') ADVANCE(2072); + if (lookahead == '\r') ADVANCE(2073); + if (lookahead == '!') ADVANCE(2040); + if (lookahead == '"') ADVANCE(2041); + if (lookahead == '#') ADVANCE(2042); + if (lookahead == '$') ADVANCE(2043); + if (lookahead == '%') ADVANCE(2044); + if (lookahead == '&') ADVANCE(2046); + if (lookahead == '\'') ADVANCE(2047); + if (lookahead == '(') ADVANCE(2070); + if (lookahead == ')') ADVANCE(2071); + if (lookahead == '*') ADVANCE(2048); + if (lookahead == '+') ADVANCE(2049); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2052); + if (lookahead == '.') ADVANCE(2053); + if (lookahead == '/') ADVANCE(2054); + if (lookahead == ':') ADVANCE(2055); + if (lookahead == ';') ADVANCE(2056); + if (lookahead == '<') ADVANCE(2038); + if (lookahead == '=') ADVANCE(2057); + if (lookahead == '>') ADVANCE(2039); + if (lookahead == '?') ADVANCE(2059); + if (lookahead == '@') ADVANCE(2060); + if (lookahead == '[') ADVANCE(2035); + if (lookahead == '\\') ADVANCE(2062); + if (lookahead == ']') ADVANCE(2037); + if (lookahead == '^') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2064); + if (lookahead == '`') ADVANCE(2065); + if (lookahead == '{') ADVANCE(2066); + if (lookahead == '|') ADVANCE(2067); + if (lookahead == '}') ADVANCE(2068); + if (lookahead == '~') ADVANCE(2069); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2080); + if (lookahead != 0) ADVANCE(2077); + END_STATE(); + case 1: + if (lookahead == '!') ADVANCE(2040); + if (lookahead == '"') ADVANCE(2041); + if (lookahead == '#') ADVANCE(2042); + if (lookahead == '$') ADVANCE(2043); + if (lookahead == '%') ADVANCE(2044); + if (lookahead == '&') ADVANCE(2046); + if (lookahead == '\'') ADVANCE(2047); + if (lookahead == '(') ADVANCE(2070); + if (lookahead == ')') ADVANCE(2071); + if (lookahead == '*') ADVANCE(2048); + if (lookahead == '+') ADVANCE(2049); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2051); + if (lookahead == '.') ADVANCE(2053); + if (lookahead == '/') ADVANCE(2054); + if (lookahead == ':') ADVANCE(2055); + if (lookahead == ';') ADVANCE(2056); + if (lookahead == '<') ADVANCE(2038); + if (lookahead == '=') ADVANCE(2057); + if (lookahead == '>') ADVANCE(2039); + if (lookahead == '?') ADVANCE(2058); + if (lookahead == '@') ADVANCE(2060); + if (lookahead == '[') ADVANCE(2035); + if (lookahead == '\\') ADVANCE(2062); + if (lookahead == ']') ADVANCE(2036); + if (lookahead == '^') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2064); + if (lookahead == '`') ADVANCE(2065); + if (lookahead == '{') ADVANCE(2066); + if (lookahead == '|') ADVANCE(2067); + if (lookahead == '}') ADVANCE(2068); + if (lookahead == '~') ADVANCE(2069); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2080); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(2077); + END_STATE(); + case 2: + if (lookahead == '!') ADVANCE(2040); + if (lookahead == '"') ADVANCE(2041); + if (lookahead == '#') ADVANCE(2042); + if (lookahead == '$') ADVANCE(2043); + if (lookahead == '%') ADVANCE(2044); + if (lookahead == '&') ADVANCE(2045); + if (lookahead == '\'') ADVANCE(2047); + if (lookahead == '(') ADVANCE(2070); + if (lookahead == ')') ADVANCE(2071); + if (lookahead == '*') ADVANCE(2048); + if (lookahead == '+') ADVANCE(2049); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2052); + if (lookahead == '.') ADVANCE(2053); + if (lookahead == '/') ADVANCE(2054); + if (lookahead == ':') ADVANCE(2055); + if (lookahead == ';') ADVANCE(2056); + if (lookahead == '<') ADVANCE(2038); + if (lookahead == '=') ADVANCE(2057); + if (lookahead == '>') ADVANCE(2039); + if (lookahead == '?') ADVANCE(2058); + if (lookahead == '@') ADVANCE(2060); + if (lookahead == '[') ADVANCE(2035); + if (lookahead == '\\') ADVANCE(2061); + if (lookahead == ']') ADVANCE(2036); + if (lookahead == '^') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2064); + if (lookahead == '`') ADVANCE(2065); + if (lookahead == '{') ADVANCE(2066); + if (lookahead == '|') ADVANCE(2067); + if (lookahead == '}') ADVANCE(2068); + if (lookahead == '~') ADVANCE(2069); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2080); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(2077); + END_STATE(); + case 3: + if (lookahead == '!') ADVANCE(2040); + if (lookahead == '"') ADVANCE(2041); + if (lookahead == '#') ADVANCE(2042); + if (lookahead == '$') ADVANCE(2043); + if (lookahead == '%') ADVANCE(2044); + if (lookahead == '&') ADVANCE(2045); + if (lookahead == '\'') ADVANCE(2047); + if (lookahead == '(') ADVANCE(2070); + if (lookahead == ')') ADVANCE(2071); + if (lookahead == '*') ADVANCE(2048); + if (lookahead == '+') ADVANCE(2049); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2051); + if (lookahead == '.') ADVANCE(2053); + if (lookahead == '/') ADVANCE(2054); + if (lookahead == ':') ADVANCE(2055); + if (lookahead == ';') ADVANCE(2056); + if (lookahead == '<') ADVANCE(2038); + if (lookahead == '=') ADVANCE(2057); + if (lookahead == '>') ADVANCE(2039); + if (lookahead == '?') ADVANCE(2059); + if (lookahead == '@') ADVANCE(2060); + if (lookahead == '[') ADVANCE(2035); + if (lookahead == '\\') ADVANCE(2061); + if (lookahead == ']') ADVANCE(2036); + if (lookahead == '^') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2064); + if (lookahead == '`') ADVANCE(2065); + if (lookahead == '{') ADVANCE(2066); + if (lookahead == '|') ADVANCE(2067); + if (lookahead == '}') ADVANCE(2068); + if (lookahead == '~') ADVANCE(2069); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2080); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(2077); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(2040); + if (lookahead == '"') ADVANCE(2041); + if (lookahead == '#') ADVANCE(2042); + if (lookahead == '$') ADVANCE(2043); + if (lookahead == '%') ADVANCE(2044); + if (lookahead == '&') ADVANCE(2045); + if (lookahead == '\'') ADVANCE(2047); + if (lookahead == '(') ADVANCE(2070); + if (lookahead == ')') ADVANCE(2071); + if (lookahead == '*') ADVANCE(2048); + if (lookahead == '+') ADVANCE(2049); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2051); + if (lookahead == '.') ADVANCE(2053); + if (lookahead == '/') ADVANCE(2054); + if (lookahead == ':') ADVANCE(2055); + if (lookahead == ';') ADVANCE(2056); + if (lookahead == '<') ADVANCE(2038); + if (lookahead == '=') ADVANCE(2057); + if (lookahead == '>') ADVANCE(2039); + if (lookahead == '?') ADVANCE(2058); + if (lookahead == '@') ADVANCE(2060); + if (lookahead == '[') ADVANCE(2035); + if (lookahead == '\\') ADVANCE(2062); + if (lookahead == ']') ADVANCE(2036); + if (lookahead == '^') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2064); + if (lookahead == '`') ADVANCE(2065); + if (lookahead == '{') ADVANCE(2066); + if (lookahead == '|') ADVANCE(2067); + if (lookahead == '}') ADVANCE(2068); + if (lookahead == '~') ADVANCE(2069); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2080); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(2077); + END_STATE(); + case 5: + if (lookahead == '!') ADVANCE(2040); + if (lookahead == '"') ADVANCE(2041); + if (lookahead == '#') ADVANCE(2042); + if (lookahead == '$') ADVANCE(2043); + if (lookahead == '%') ADVANCE(2044); + if (lookahead == '&') ADVANCE(2045); + if (lookahead == '\'') ADVANCE(2047); + if (lookahead == '(') ADVANCE(2070); + if (lookahead == ')') ADVANCE(2071); + if (lookahead == '*') ADVANCE(2048); + if (lookahead == '+') ADVANCE(2049); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2051); + if (lookahead == '.') ADVANCE(2053); + if (lookahead == '/') ADVANCE(2054); + if (lookahead == ':') ADVANCE(2055); + if (lookahead == ';') ADVANCE(2056); + if (lookahead == '<') ADVANCE(2038); + if (lookahead == '=') ADVANCE(2057); + if (lookahead == '>') ADVANCE(2039); + if (lookahead == '?') ADVANCE(2058); + if (lookahead == '@') ADVANCE(2060); + if (lookahead == '[') ADVANCE(2035); + if (lookahead == '\\') ADVANCE(2061); + if (lookahead == ']') ADVANCE(2037); + if (lookahead == '^') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2064); + if (lookahead == '`') ADVANCE(2065); + if (lookahead == '{') ADVANCE(2066); + if (lookahead == '|') ADVANCE(2067); + if (lookahead == '}') ADVANCE(2068); + if (lookahead == '~') ADVANCE(2069); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2080); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(2077); + END_STATE(); + case 6: + if (lookahead == '1') ADVANCE(2005); + if (lookahead == '3') ADVANCE(9); + END_STATE(); + case 7: + if (lookahead == '1') ADVANCE(2020); + if (lookahead == ';') ADVANCE(2033); + END_STATE(); + case 8: + if (lookahead == '1') ADVANCE(2027); + if (lookahead == '2') ADVANCE(2006); + if (lookahead == '3') ADVANCE(2023); + if (lookahead == '4') ADVANCE(11); + if (lookahead == '5') ADVANCE(2007); + if (lookahead == '7') ADVANCE(12); + END_STATE(); + case 9: + if (lookahead == '4') ADVANCE(13); + END_STATE(); + case 10: + if (lookahead == '4') ADVANCE(13); + if (lookahead == 'f') ADVANCE(1517); + END_STATE(); + case 11: + if (lookahead == '5') ADVANCE(13); + END_STATE(); + case 12: + if (lookahead == '8') ADVANCE(13); + END_STATE(); + case 13: + if (lookahead == ';') ADVANCE(2033); + END_STATE(); + case 14: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'A') ADVANCE(443); + if (lookahead == 'B') ADVANCE(433); + if (lookahead == 'E') ADVANCE(136); + if (lookahead == 'H') ADVANCE(396); + if (lookahead == 'a') ADVANCE(668); + if (lookahead == 'b') ADVANCE(434); + if (lookahead == 'c') ADVANCE(460); + if (lookahead == 'd') ADVANCE(652); + if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'f') ADVANCE(1110); + if (lookahead == 'g') ADVANCE(28); + if (lookahead == 'h') ADVANCE(478); + if (lookahead == 'j') ADVANCE(603); + if (lookahead == 'l') ADVANCE(62); + if (lookahead == 'm') ADVANCE(1093); + if (lookahead == 'n') ADVANCE(315); + if (lookahead == 'o') ADVANCE(404); + if (lookahead == 'p') ADVANCE(482); + if (lookahead == 'r') ADVANCE(437); + if (lookahead == 's') ADVANCE(384); + if (lookahead == 't') ADVANCE(88); + if (lookahead == 'u') ADVANCE(1627); + if (lookahead == 'v') ADVANCE(920); + END_STATE(); + case 15: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'a') ADVANCE(1611); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'q') ADVANCE(1928); + if (lookahead == 's') ADVANCE(827); + if (lookahead == 'x') ADVANCE(1152); + END_STATE(); + case 16: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'A') ADVANCE(1730); + END_STATE(); + case 17: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'A') ADVANCE(1730); + if (lookahead == 'V') ADVANCE(921); + END_STATE(); + case 18: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'B') ADVANCE(396); + END_STATE(); + case 19: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'B') ADVANCE(396); + if (lookahead == 'D') ADVANCE(1501); + END_STATE(); + case 20: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'B') ADVANCE(396); + if (lookahead == 'E') ADVANCE(1589); + END_STATE(); + case 21: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'B') ADVANCE(396); + if (lookahead == 'L') ADVANCE(923); + END_STATE(); + case 22: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'B') ADVANCE(396); + if (lookahead == 'R') ADVANCE(1174); + END_STATE(); + case 23: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'B') ADVANCE(396); + if (lookahead == 'U') ADVANCE(1545); + END_STATE(); + case 24: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'C') ADVANCE(1512); + if (lookahead == 'D') ADVANCE(1486); + if (lookahead == 'E') ADVANCE(1221); + if (lookahead == 'G') ADVANCE(1746); + if (lookahead == 'H') ADVANCE(1939); + if (lookahead == 'L') ADVANCE(895); + if (lookahead == 'N') ADVANCE(862); + if (lookahead == 'P') ADVANCE(1707); + if (lookahead == 'R') ADVANCE(896); + if (lookahead == 'S') ADVANCE(1590); + if (lookahead == 'T') ADVANCE(1099); + if (lookahead == 'V') ADVANCE(935); + END_STATE(); + case 25: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'C') ADVANCE(422); + END_STATE(); + case 26: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'D') ADVANCE(1447); + if (lookahead == 'E') ADVANCE(1589); + END_STATE(); + case 27: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'D') ADVANCE(297); + END_STATE(); + case 28: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(13); + END_STATE(); + case 29: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 'c') ADVANCE(1917); + if (lookahead == 'e') ADVANCE(87); + if (lookahead == 'i') ADVANCE(1348); + if (lookahead == 'n') ADVANCE(314); + if (lookahead == 'o') ADVANCE(731); + if (lookahead == 's') ADVANCE(1104); + if (lookahead == 'u') ADVANCE(1658); + END_STATE(); + case 30: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'm') ADVANCE(1924); + if (lookahead == 'n') ADVANCE(2008); + if (lookahead == 'p') ADVANCE(1297); + if (lookahead == 'r') ADVANCE(433); + if (lookahead == 's') ADVANCE(875); + END_STATE(); + case 31: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'v') ADVANCE(2024); + END_STATE(); + case 32: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'e') ADVANCE(178); + END_STATE(); + case 33: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'i') ADVANCE(730); + if (lookahead == 'o') ADVANCE(1752); + if (lookahead == 'p') ADVANCE(1678); + END_STATE(); + case 34: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(152); + if (lookahead == 'a') ADVANCE(670); + if (lookahead == 'b') ADVANCE(1598); + if (lookahead == 'c') ADVANCE(1140); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(136); + if (lookahead == 'i') ADVANCE(1333); + if (lookahead == 'j') ADVANCE(603); + if (lookahead == 'l') ADVANCE(228); + if (lookahead == 'n') ADVANCE(315); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(387); + if (lookahead == 's') ADVANCE(638); + if (lookahead == 't') ADVANCE(89); + if (lookahead == 'v') ADVANCE(920); + END_STATE(); + case 35: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(1589); + END_STATE(); + case 36: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(1589); + if (lookahead == 'F') ADVANCE(1946); + if (lookahead == 'G') ADVANCE(1739); + if (lookahead == 'L') ADVANCE(821); + if (lookahead == 'S') ADVANCE(1307); + if (lookahead == 'T') ADVANCE(1167); + END_STATE(); + case 37: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(1589); + if (lookahead == 'F') ADVANCE(1946); + if (lookahead == 'T') ADVANCE(1167); + END_STATE(); + case 38: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(1589); + if (lookahead == 'G') ADVANCE(1739); + if (lookahead == 'L') ADVANCE(821); + if (lookahead == 'S') ADVANCE(1307); + if (lookahead == 'T') ADVANCE(1167); + END_STATE(); + case 39: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(1589); + if (lookahead == 'S') ADVANCE(1307); + END_STATE(); + case 40: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E') ADVANCE(1589); + if (lookahead == 'S') ADVANCE(1307); + if (lookahead == 'T') ADVANCE(1167); + END_STATE(); + case 41: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'G') ADVANCE(13); + END_STATE(); + case 42: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'H') ADVANCE(13); + END_STATE(); + case 43: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'I') ADVANCE(1429); + if (lookahead == 'S') ADVANCE(1910); + if (lookahead == 'U') ADVANCE(1410); + END_STATE(); + case 44: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'J') ADVANCE(603); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(13); + if (lookahead == 'a') ADVANCE(669); + if (lookahead == 'c') ADVANCE(462); + if (lookahead == 'e') ADVANCE(952); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(1092); + if (lookahead == 'o') ADVANCE(1377); + if (lookahead == 's') ADVANCE(635); + END_STATE(); + case 45: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'J') ADVANCE(603); + if (lookahead == 'T' || + lookahead == 'g' || + lookahead == 't') ADVANCE(13); + if (lookahead == 'a') ADVANCE(1349); + if (lookahead == 'b') ADVANCE(1598); + if (lookahead == 'c') ADVANCE(831); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(847); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 46: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'L') ADVANCE(821); + END_STATE(); + case 47: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'N') ADVANCE(13); + END_STATE(); + case 48: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'P') ADVANCE(13); + END_STATE(); + case 49: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'P') ADVANCE(1297); + END_STATE(); + case 50: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'T') ADVANCE(13); + END_STATE(); + case 51: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'T') ADVANCE(1167); + END_STATE(); + case 52: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'Y') ADVANCE(13); + END_STATE(); + case 53: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(633); + if (lookahead == 'p') ADVANCE(1263); + END_STATE(); + case 54: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(984); + if (lookahead == 'o') ADVANCE(1862); + END_STATE(); + case 55: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(2028); + END_STATE(); + case 56: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(627); + if (lookahead == 'l') ADVANCE(13); + END_STATE(); + case 57: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1599); + END_STATE(); + case 58: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(641); + if (lookahead == 'p') ADVANCE(13); + END_STATE(); + case 59: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(158); + if (lookahead == 's') ADVANCE(1105); + if (lookahead == 't') ADVANCE(13); + END_STATE(); + case 60: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 'b') ADVANCE(132); + if (lookahead == 'c' || + lookahead == 'w') ADVANCE(13); + if (lookahead == 'f') ADVANCE(1752); + if (lookahead == 'h') ADVANCE(1188); + if (lookahead == 'l') ADVANCE(1526); + if (lookahead == 'p') ADVANCE(1207); + if (lookahead == 's') ADVANCE(1104); + if (lookahead == 't') ADVANCE(1207); + END_STATE(); + case 61: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'b' || + lookahead == 'e') ADVANCE(13); + if (lookahead == 'c') ADVANCE(1082); + if (lookahead == 'd') ADVANCE(2018); + if (lookahead == 'm') ADVANCE(162); + if (lookahead == 's') ADVANCE(1104); + if (lookahead == 't') ADVANCE(1970); + END_STATE(); + case 62: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'c') ADVANCE(1498); + if (lookahead == 'h') ADVANCE(497); + if (lookahead == 't') ADVANCE(1634); + END_STATE(); + case 63: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'd') ADVANCE(128); + if (lookahead == 'i') ADVANCE(986); + if (lookahead == 'o') ADVANCE(1599); + if (lookahead == 's') ADVANCE(1262); + if (lookahead == 'v') ADVANCE(13); + END_STATE(); + case 64: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1752); + END_STATE(); + case 65: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1763); + if (lookahead == 'c') ADVANCE(1082); + if (lookahead == 'd') ADVANCE(1454); + END_STATE(); + case 66: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1207); + END_STATE(); + case 67: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1652); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'i') ADVANCE(1666); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 68: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1212); + if (lookahead == 'c') ADVANCE(1807); + if (lookahead == 'g') ADVANCE(13); + END_STATE(); + case 69: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1352); + if (lookahead == 'b') ADVANCE(1721); + if (lookahead == 'c') ADVANCE(426); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 's') ADVANCE(13); + END_STATE(); + case 70: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1352); + if (lookahead == 'd' || + lookahead == 'v') ADVANCE(13); + if (lookahead == 's') ADVANCE(1262); + END_STATE(); + case 71: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(692); + END_STATE(); + case 72: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1647); + if (lookahead == 'c') ADVANCE(1039); + if (lookahead == 'o') ADVANCE(1686); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 73: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1232); + END_STATE(); + case 74: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1615); + if (lookahead == 'f') ADVANCE(13); + END_STATE(); + case 75: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1561); + if (lookahead == 'c') ADVANCE(1937); + if (lookahead == 'e') ADVANCE(1581); + if (lookahead == 'n') ADVANCE(519); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 76: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1112); + if (lookahead == 'e') ADVANCE(187); + END_STATE(); + case 77: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a') ADVANCE(1306); + if (lookahead == 's') ADVANCE(1207); + if (lookahead == 't') ADVANCE(13); + END_STATE(); + case 78: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'b') ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1082); + if (lookahead == 'f') ADVANCE(171); + END_STATE(); + case 79: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'b') ADVANCE(13); + if (lookahead == 'd') ADVANCE(208); + END_STATE(); + case 80: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'b') ADVANCE(13); + if (lookahead == 'h') ADVANCE(1799); + END_STATE(); + case 81: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'b') ADVANCE(57); + END_STATE(); + case 82: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'b') ADVANCE(57); + if (lookahead == 'd') ADVANCE(13); + END_STATE(); + case 83: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'b') ADVANCE(132); + if (lookahead == 'f') ADVANCE(1752); + if (lookahead == 'h') ADVANCE(1188); + if (lookahead == 'l') ADVANCE(1526); + if (lookahead == 'p') ADVANCE(1207); + if (lookahead == 's') ADVANCE(1104); + if (lookahead == 't') ADVANCE(1207); + END_STATE(); + case 84: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'b') ADVANCE(396); + if (lookahead == 'e') ADVANCE(1581); + END_STATE(); + case 85: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'b') ADVANCE(1674); + if (lookahead == 'c') ADVANCE(426); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1599); + if (lookahead == 's') ADVANCE(13); + END_STATE(); + case 86: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(13); + END_STATE(); + case 87: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(75); + END_STATE(); + case 88: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(612); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1648); + if (lookahead == 'i') ADVANCE(1346); + if (lookahead == 'l') ADVANCE(433); + if (lookahead == 'q') ADVANCE(1929); + if (lookahead == 'r') ADVANCE(356); + END_STATE(); + case 89: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(612); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'l') ADVANCE(355); + if (lookahead == 'q') ADVANCE(1929); + if (lookahead == 'r') ADVANCE(421); + END_STATE(); + case 90: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(115); + END_STATE(); + case 91: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(611); + if (lookahead == 'd') ADVANCE(1491); + if (lookahead == 'l') ADVANCE(123); + END_STATE(); + case 92: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(611); + if (lookahead == 'd') ADVANCE(1492); + if (lookahead == 'g') ADVANCE(123); + if (lookahead == 's') ADVANCE(518); + END_STATE(); + case 93: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(449); + if (lookahead == 'e') ADVANCE(1017); + if (lookahead == 'l') ADVANCE(504); + if (lookahead == 'p') ADVANCE(1659); + END_STATE(); + case 94: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(1082); + if (lookahead == 'w') ADVANCE(13); + END_STATE(); + case 95: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(1917); + if (lookahead == 'e') ADVANCE(90); + END_STATE(); + case 96: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(1917); + if (lookahead == 'e' || + lookahead == 'r') ADVANCE(13); + END_STATE(); + case 97: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c') ADVANCE(539); + if (lookahead == 'f') ADVANCE(1127); + if (lookahead == 'o') ADVANCE(725); + if (lookahead == 't') ADVANCE(93); + END_STATE(); + case 98: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd') ADVANCE(1447); + END_STATE(); + case 99: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(178); + if (lookahead == 'g') ADVANCE(28); + if (lookahead == 'l') ADVANCE(28); + if (lookahead == 'n') ADVANCE(775); + if (lookahead == 'p') ADVANCE(1297); + if (lookahead == 'r') ADVANCE(433); + END_STATE(); + case 100: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd') ADVANCE(13); + END_STATE(); + case 101: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd') ADVANCE(13); + if (lookahead == 'l') ADVANCE(775); + END_STATE(); + case 102: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd') ADVANCE(1440); + if (lookahead == 'l') ADVANCE(835); + if (lookahead == 'r') ADVANCE(1135); + END_STATE(); + case 103: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd') ADVANCE(1440); + if (lookahead == 'l') ADVANCE(835); + if (lookahead == 'u') ADVANCE(1526); + END_STATE(); + case 104: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd') ADVANCE(1440); + if (lookahead == 'l') ADVANCE(928); + if (lookahead == 'q') ADVANCE(13); + if (lookahead == 'r') ADVANCE(1178); + END_STATE(); + case 105: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd') ADVANCE(1112); + END_STATE(); + case 106: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(13); + END_STATE(); + case 107: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'l') ADVANCE(775); + if (lookahead == 'm') ADVANCE(1782); + if (lookahead == 'r') ADVANCE(1836); + if (lookahead == 's') ADVANCE(1549); + if (lookahead == 'z') ADVANCE(433); + END_STATE(); + case 108: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 's') ADVANCE(863); + END_STATE(); + case 109: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1599); + END_STATE(); + case 110: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1582); + if (lookahead == 'm') ADVANCE(1164); + if (lookahead == 'p') ADVANCE(1297); + if (lookahead == 's') ADVANCE(1596); + END_STATE(); + case 111: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1807); + END_STATE(); + case 112: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1010); + END_STATE(); + case 113: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(955); + END_STATE(); + case 114: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(178); + END_STATE(); + case 115: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1581); + END_STATE(); + case 116: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1581); + if (lookahead == 'l') ADVANCE(796); + END_STATE(); + case 117: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(187); + END_STATE(); + case 118: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(701); + if (lookahead == 'i') ADVANCE(1336); + if (lookahead == 'o') ADVANCE(754); + END_STATE(); + case 119: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(174); + END_STATE(); + case 120: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1586); + END_STATE(); + case 121: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1586); + if (lookahead == 'n') ADVANCE(840); + END_STATE(); + case 122: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(448); + END_STATE(); + case 123: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1752); + END_STATE(); + case 124: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1783); + END_STATE(); + case 125: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(13); + END_STATE(); + case 126: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1684); + if (lookahead == 's') ADVANCE(811); + END_STATE(); + case 127: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1640); + if (lookahead == 's') ADVANCE(1526); + END_STATE(); + case 128: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1650); + if (lookahead == 'f' || + lookahead == 'm') ADVANCE(13); + END_STATE(); + case 129: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e') ADVANCE(1639); + END_STATE(); + case 130: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'f') ADVANCE(13); + END_STATE(); + case 131: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'f') ADVANCE(13); + if (lookahead == 'r') ADVANCE(1436); + if (lookahead == 'y') ADVANCE(188); + END_STATE(); + case 132: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'f') ADVANCE(1752); + END_STATE(); + case 133: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'f') ADVANCE(1812); + if (lookahead == 'g') ADVANCE(13); + if (lookahead == 'q') ADVANCE(179); + if (lookahead == 's') ADVANCE(92); + END_STATE(); + case 134: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'f') ADVANCE(1353); + if (lookahead == 'l') ADVANCE(797); + END_STATE(); + case 135: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'f') ADVANCE(1838); + if (lookahead == 'q') ADVANCE(179); + if (lookahead == 's') ADVANCE(187); + END_STATE(); + case 136: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'g') ADVANCE(13); + END_STATE(); + case 137: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'g') ADVANCE(13); + if (lookahead == 'l') ADVANCE(1828); + if (lookahead == 'm') ADVANCE(1560); + END_STATE(); + case 138: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'g') ADVANCE(1807); + END_STATE(); + case 139: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'g') ADVANCE(775); + END_STATE(); + case 140: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'h') ADVANCE(13); + END_STATE(); + case 141: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'h') ADVANCE(13); + if (lookahead == 'l') ADVANCE(1478); + END_STATE(); + case 142: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'h') ADVANCE(1437); + END_STATE(); + case 143: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'i') ADVANCE(1085); + if (lookahead == 'n') ADVANCE(967); + if (lookahead == 'o') ADVANCE(1828); + END_STATE(); + case 144: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'i') ADVANCE(749); + if (lookahead == 'o') ADVANCE(1370); + END_STATE(); + case 145: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'i') ADVANCE(1629); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 146: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'i') ADVANCE(1387); + if (lookahead == 'p') ADVANCE(501); + if (lookahead == 's') ADVANCE(13); + END_STATE(); + case 147: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'i') ADVANCE(1866); + END_STATE(); + case 148: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'i') ADVANCE(714); + END_STATE(); + case 149: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'i') ADVANCE(1362); + if (lookahead == 'n') ADVANCE(1095); + END_STATE(); + case 150: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'i') ADVANCE(1289); + END_STATE(); + case 151: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'i') ADVANCE(1426); + if (lookahead == 'l') ADVANCE(13); + if (lookahead == 's') ADVANCE(98); + END_STATE(); + case 152: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'l') ADVANCE(13); + END_STATE(); + case 153: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'l') ADVANCE(13); + if (lookahead == 'q') ADVANCE(179); + if (lookahead == 's') ADVANCE(91); + END_STATE(); + case 154: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'l') ADVANCE(1807); + END_STATE(); + case 155: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'l') ADVANCE(1478); + END_STATE(); + case 156: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'l') ADVANCE(1478); + if (lookahead == 'v') ADVANCE(13); + END_STATE(); + case 157: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'l') ADVANCE(1869); + if (lookahead == 'm') ADVANCE(422); + END_STATE(); + case 158: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'l') ADVANCE(1248); + END_STATE(); + case 159: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'm') ADVANCE(13); + END_STATE(); + case 160: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'm') ADVANCE(127); + END_STATE(); + case 161: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'm') ADVANCE(455); + END_STATE(); + case 162: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'n') ADVANCE(13); + END_STATE(); + case 163: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'n') ADVANCE(474); + END_STATE(); + case 164: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(13); + END_STATE(); + case 165: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(183); + END_STATE(); + case 166: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(152); + END_STATE(); + case 167: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(945); + END_STATE(); + case 168: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(1975); + END_STATE(); + case 169: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(1965); + END_STATE(); + case 170: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(699); + END_STATE(); + case 171: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(1653); + END_STATE(); + case 172: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(1882); + END_STATE(); + case 173: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(1392); + if (lookahead == 's') ADVANCE(13); + END_STATE(); + case 174: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(1417); + END_STATE(); + case 175: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'p') ADVANCE(13); + END_STATE(); + case 176: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 't') ADVANCE(149); + END_STATE(); + case 177: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'p') ADVANCE(1678); + END_STATE(); + case 178: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'q') ADVANCE(13); + END_STATE(); + case 179: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'q') ADVANCE(13); + if (lookahead == 's') ADVANCE(1292); + END_STATE(); + case 180: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'q') ADVANCE(179); + if (lookahead == 's') ADVANCE(13); + END_STATE(); + case 181: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'q') ADVANCE(178); + END_STATE(); + case 182: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'q') ADVANCE(1928); + END_STATE(); + case 183: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'r') ADVANCE(13); + END_STATE(); + case 184: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'r') ADVANCE(414); + if (lookahead == 's') ADVANCE(98); + END_STATE(); + case 185: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'r') ADVANCE(1120); + END_STATE(); + case 186: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'r') ADVANCE(1098); + END_STATE(); + case 187: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(13); + END_STATE(); + case 188: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(1599); + END_STATE(); + case 189: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(100); + if (lookahead == 'v') ADVANCE(13); + END_STATE(); + case 190: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(82); + END_STATE(); + case 191: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(1997); + if (lookahead == 'v') ADVANCE(13); + END_STATE(); + case 192: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(1312); + END_STATE(); + case 193: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(1207); + END_STATE(); + case 194: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(1870); + END_STATE(); + case 195: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(811); + if (lookahead == 'v') ADVANCE(13); + END_STATE(); + case 196: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(865); + END_STATE(); + case 197: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 's') ADVANCE(1932); + END_STATE(); + case 198: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(13); + END_STATE(); + case 199: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(382); + END_STATE(); + case 200: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(1437); + END_STATE(); + case 201: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(129); + END_STATE(); + case 202: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(583); + END_STATE(); + case 203: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(1207); + END_STATE(); + case 204: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(681); + if (lookahead == 'v') ADVANCE(13); + END_STATE(); + case 205: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(528); + END_STATE(); + case 206: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(1461); + END_STATE(); + case 207: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 't') ADVANCE(1120); + END_STATE(); + case 208: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'u') ADVANCE(13); + END_STATE(); + case 209: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'u') ADVANCE(1090); + END_STATE(); + case 210: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'v') ADVANCE(13); + END_STATE(); + case 211: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'v') ADVANCE(2024); + END_STATE(); + case 212: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'v') ADVANCE(572); + END_STATE(); + case 213: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'v') ADVANCE(877); + END_STATE(); + case 214: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(13); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(730); + if (lookahead == 'o') ADVANCE(1752); + if (lookahead == 'p') ADVANCE(1672); + END_STATE(); + case 215: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(13); + if (lookahead == 'c') ADVANCE(116); + if (lookahead == 'f') ADVANCE(1415); + if (lookahead == 'm') ADVANCE(1071); + if (lookahead == 's') ADVANCE(699); + END_STATE(); + case 216: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(13); + if (lookahead == 's') ADVANCE(878); + END_STATE(); + case 217: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E' || + lookahead == 'v') ADVANCE(13); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 's') ADVANCE(210); + END_STATE(); + case 218: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E' || + lookahead == 'y') ADVANCE(13); + if (lookahead == 'a') ADVANCE(1527); + if (lookahead == 'c') ADVANCE(1917); + if (lookahead == 'e') ADVANCE(105); + if (lookahead == 'i') ADVANCE(1666); + if (lookahead == 'n') ADVANCE(314); + if (lookahead == 'p') ADVANCE(1522); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 219: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'a' || + lookahead == 'h') ADVANCE(13); + END_STATE(); + case 220: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'b' || + lookahead == 'e') ADVANCE(13); + END_STATE(); + case 221: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'c' || + lookahead == 'w') ADVANCE(13); + END_STATE(); + case 222: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e' || + lookahead == 'g') ADVANCE(13); + END_STATE(); + case 223: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e' || + lookahead == 'l') ADVANCE(13); + END_STATE(); + case 224: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'f' || + lookahead == 'v') ADVANCE(13); + END_STATE(); + case 225: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd' || + lookahead == 'e') ADVANCE(13); + if (lookahead == 'l') ADVANCE(775); + END_STATE(); + case 226: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(13); + END_STATE(); + case 227: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(13); + if (lookahead == 'l') ADVANCE(1865); + END_STATE(); + case 228: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E' || + lookahead == 'a' || + lookahead == 'j') ADVANCE(13); + END_STATE(); + case 229: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'E' || + lookahead == 'd' || + lookahead == 'y') ADVANCE(13); + if (lookahead == 'i') ADVANCE(1629); + if (lookahead == 'u') ADVANCE(1844); + END_STATE(); + case 230: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'D' || + lookahead == 'U' || + lookahead == 'd' || + lookahead == 'u') ADVANCE(13); + END_STATE(); + case 231: + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'H' || + lookahead == 'L' || + lookahead == 'R' || + lookahead == 'h' || + lookahead == 'l' || + lookahead == 'r') ADVANCE(13); + END_STATE(); + case 232: + if (lookahead == ';') ADVANCE(2034); + END_STATE(); + case 233: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + END_STATE(); + case 234: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(232); + END_STATE(); + case 235: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + END_STATE(); + case 236: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(235); + END_STATE(); + case 237: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); + END_STATE(); + case 238: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + END_STATE(); + case 239: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + END_STATE(); + case 240: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(239); + END_STATE(); + case 241: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(240); + END_STATE(); + case 242: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(241); + END_STATE(); + case 243: + if (lookahead == ';') ADVANCE(2034); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(242); + END_STATE(); + case 244: + if (lookahead == '>') ADVANCE(2074); + END_STATE(); + case 245: + if (lookahead == '>') ADVANCE(2076); + END_STATE(); + case 246: + if (lookahead == 'A') ADVANCE(360); + if (lookahead == 'a') ADVANCE(674); + if (lookahead == 'c') ADVANCE(1138); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(1227); + if (lookahead == 'o') ADVANCE(1532); + if (lookahead == 's') ADVANCE(648); + if (lookahead == 'u') ADVANCE(1325); + END_STATE(); + case 247: + if (lookahead == 'A') ADVANCE(443); + if (lookahead == 'B') ADVANCE(433); + if (lookahead == 'H') ADVANCE(396); + if (lookahead == 'a') ADVANCE(621); + if (lookahead == 'b') ADVANCE(434); + if (lookahead == 'c') ADVANCE(460); + if (lookahead == 'd') ADVANCE(651); + if (lookahead == 'e') ADVANCE(68); + if (lookahead == 'f') ADVANCE(1110); + if (lookahead == 'h') ADVANCE(479); + if (lookahead == 'i') ADVANCE(1000); + if (lookahead == 'l') ADVANCE(439); + if (lookahead == 'm') ADVANCE(1510); + if (lookahead == 'n') ADVANCE(1326); + if (lookahead == 'o') ADVANCE(405); + if (lookahead == 'p') ADVANCE(486); + if (lookahead == 'r') ADVANCE(433); + if (lookahead == 's') ADVANCE(385); + if (lookahead == 't') ADVANCE(1066); + if (lookahead == 'u') ADVANCE(1252); + if (lookahead == 'x') ADVANCE(13); + END_STATE(); + case 248: + if (lookahead == 'A') ADVANCE(603); + if (lookahead == 'I') ADVANCE(603); + if (lookahead == 'U') ADVANCE(603); + if (lookahead == 'a') ADVANCE(661); + if (lookahead == 'c') ADVANCE(1140); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 'u') ADVANCE(1334); + END_STATE(); + case 249: + if (lookahead == 'A') ADVANCE(300); + END_STATE(); + case 250: + if (lookahead == 'A') ADVANCE(1424); + if (lookahead == 'C') ADVANCE(937); + if (lookahead == 'D') ADVANCE(1442); + if (lookahead == 'F') ADVANCE(1251); + if (lookahead == 'R') ADVANCE(1173); + if (lookahead == 'T') ADVANCE(882); + if (lookahead == 'U') ADVANCE(1540); + if (lookahead == 'V') ADVANCE(916); + if (lookahead == 'a') ADVANCE(1730); + if (lookahead == 'r') ADVANCE(1166); + END_STATE(); + case 251: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'B') ADVANCE(489); + if (lookahead == 'D') ADVANCE(429); + if (lookahead == 'a') ADVANCE(1384); + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'd') ADVANCE(429); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'l') ADVANCE(1865); + if (lookahead == 'n') ADVANCE(1781); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'p') ADVANCE(1668); + if (lookahead == 'r') ADVANCE(1865); + if (lookahead == 's') ADVANCE(650); + if (lookahead == 'z') ADVANCE(1113); + END_STATE(); + case 252: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'd') ADVANCE(1599); + if (lookahead == 'e') ADVANCE(135); + if (lookahead == 's') ADVANCE(1104); + if (lookahead == 't') ADVANCE(186); + END_STATE(); + case 253: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'H') ADVANCE(396); + if (lookahead == 'a') ADVANCE(983); + if (lookahead == 'b') ADVANCE(1204); + if (lookahead == 'c') ADVANCE(465); + if (lookahead == 'd') ADVANCE(54); + if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'f') ADVANCE(1111); + if (lookahead == 'h') ADVANCE(472); + if (lookahead == 'i') ADVANCE(444); + if (lookahead == 'j') ADVANCE(603); + if (lookahead == 'l') ADVANCE(617); + if (lookahead == 'o') ADVANCE(1255); + if (lookahead == 'r') ADVANCE(579); + if (lookahead == 's') ADVANCE(619); + if (lookahead == 't') ADVANCE(729); + if (lookahead == 'u') ADVANCE(438); + if (lookahead == 'w') ADVANCE(447); + if (lookahead == 'z') ADVANCE(608); + END_STATE(); + case 254: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'H') ADVANCE(396); + if (lookahead == 'a') ADVANCE(662); + if (lookahead == 'b') ADVANCE(1621); + if (lookahead == 'c') ADVANCE(1119); + if (lookahead == 'd') ADVANCE(435); + if (lookahead == 'f') ADVANCE(1111); + if (lookahead == 'g') ADVANCE(1660); + if (lookahead == 'h') ADVANCE(473); + if (lookahead == 'l') ADVANCE(710); + if (lookahead == 'm') ADVANCE(56); + if (lookahead == 'o') ADVANCE(987); + if (lookahead == 'p') ADVANCE(544); + if (lookahead == 'r') ADVANCE(709); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 't') ADVANCE(726); + if (lookahead == 'u') ADVANCE(440); + if (lookahead == 'w') ADVANCE(447); + END_STATE(); + case 255: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'a') ADVANCE(1126); + if (lookahead == 'b') ADVANCE(396); + if (lookahead == 'c') ADVANCE(1138); + if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'k') ADVANCE(1753); + if (lookahead == 'o') ADVANCE(441); + if (lookahead == 's') ADVANCE(640); + if (lookahead == 'y') ADVANCE(581); + END_STATE(); + case 256: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'a') ADVANCE(1618); + END_STATE(); + case 257: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'p') ADVANCE(396); + END_STATE(); + case 258: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'a') ADVANCE(1611); + if (lookahead == 'c') ADVANCE(198); + if (lookahead == 'm') ADVANCE(1072); + if (lookahead == 's') ADVANCE(1971); + if (lookahead == 't') ADVANCE(1320); + if (lookahead == 'x') ADVANCE(1807); + END_STATE(); + case 259: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'a') ADVANCE(1611); + if (lookahead == 'n') ADVANCE(1971); + END_STATE(); + case 260: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'a') ADVANCE(1611); + if (lookahead == 'n') ADVANCE(826); + END_STATE(); + case 261: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'a') ADVANCE(1710); + if (lookahead == 'i') ADVANCE(1003); + if (lookahead == 't') ADVANCE(1693); + END_STATE(); + case 262: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 't') ADVANCE(185); + END_STATE(); + case 263: + if (lookahead == 'A') ADVANCE(1618); + if (lookahead == 't') ADVANCE(1688); + END_STATE(); + case 264: + if (lookahead == 'A') ADVANCE(1733); + if (lookahead == 'D') ADVANCE(1501); + if (lookahead == 'E') ADVANCE(1592); + if (lookahead == 'T') ADVANCE(867); + if (lookahead == 'a') ADVANCE(1730); + if (lookahead == 'd') ADVANCE(1508); + if (lookahead == 'p') ADVANCE(876); + if (lookahead == 's') ADVANCE(1089); + END_STATE(); + case 265: + if (lookahead == 'A') ADVANCE(667); + END_STATE(); + case 266: + if (lookahead == 'A') ADVANCE(667); + if (lookahead == 'D') ADVANCE(1445); + if (lookahead == 'G') ADVANCE(1651); + if (lookahead == 'T') ADVANCE(1167); + END_STATE(); + case 267: + if (lookahead == 'A') ADVANCE(1249); + END_STATE(); + case 268: + if (lookahead == 'A') ADVANCE(1425); + if (lookahead == 'C') ADVANCE(937); + if (lookahead == 'D') ADVANCE(1442); + if (lookahead == 'F') ADVANCE(1251); + if (lookahead == 'T') ADVANCE(882); + if (lookahead == 'U') ADVANCE(1540); + if (lookahead == 'V') ADVANCE(916); + if (lookahead == 'a') ADVANCE(1730); + END_STATE(); + case 269: + if (lookahead == 'A') ADVANCE(1730); + END_STATE(); + case 270: + if (lookahead == 'A') ADVANCE(1730); + if (lookahead == 'D') ADVANCE(1501); + END_STATE(); + case 271: + if (lookahead == 'A') ADVANCE(1730); + if (lookahead == 'R') ADVANCE(1174); + END_STATE(); + case 272: + if (lookahead == 'A') ADVANCE(1730); + if (lookahead == 'R') ADVANCE(1174); + if (lookahead == 'T') ADVANCE(852); + END_STATE(); + case 273: + if (lookahead == 'A') ADVANCE(1730); + if (lookahead == 'T') ADVANCE(852); + END_STATE(); + case 274: + if (lookahead == 'A') ADVANCE(1730); + if (lookahead == 'V') ADVANCE(921); + END_STATE(); + case 275: + if (lookahead == 'A') ADVANCE(1734); + if (lookahead == 'B') ADVANCE(1598); + if (lookahead == 'L') ADVANCE(914); + if (lookahead == 'R') ADVANCE(1172); + if (lookahead == 'T') ADVANCE(867); + if (lookahead == 'a') ADVANCE(1730); + END_STATE(); + case 276: + if (lookahead == 'B') ADVANCE(399); + if (lookahead == 'P') ADVANCE(547); + END_STATE(); + case 277: + if (lookahead == 'B') ADVANCE(433); + if (lookahead == 'E') ADVANCE(41); + if (lookahead == 'a') ADVANCE(671); + if (lookahead == 'c') ADVANCE(462); + if (lookahead == 'e') ADVANCE(213); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(1437); + if (lookahead == 'i') ADVANCE(981); + if (lookahead == 'o') ADVANCE(1535); + if (lookahead == 'r') ADVANCE(1166); + if (lookahead == 's') ADVANCE(634); + if (lookahead == 'u') ADVANCE(1242); + END_STATE(); + case 278: + if (lookahead == 'B') ADVANCE(396); + END_STATE(); + case 279: + if (lookahead == 'B') ADVANCE(396); + if (lookahead == 'L') ADVANCE(1121); + if (lookahead == 'S') ADVANCE(909); + if (lookahead == 'T') ADVANCE(1167); + END_STATE(); + case 280: + if (lookahead == 'B') ADVANCE(1731); + END_STATE(); + case 281: + if (lookahead == 'B') ADVANCE(1723); + if (lookahead == 'n') ADVANCE(282); + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 't') ADVANCE(24); + END_STATE(); + case 282: + if (lookahead == 'B') ADVANCE(1728); + END_STATE(); + case 283: + if (lookahead == 'C') ADVANCE(333); + if (lookahead == 'c') ADVANCE(1987); + END_STATE(); + case 284: + if (lookahead == 'C') ADVANCE(422); + END_STATE(); + case 285: + if (lookahead == 'C') ADVANCE(1502); + if (lookahead == 'T') ADVANCE(1153); + END_STATE(); + case 286: + if (lookahead == 'C') ADVANCE(1179); + END_STATE(); + case 287: + if (lookahead == 'C') ADVANCE(1274); + END_STATE(); + case 288: + if (lookahead == 'C') ADVANCE(1936); + END_STATE(); + case 289: + if (lookahead == 'C') ADVANCE(1518); + END_STATE(); + case 290: + if (lookahead == 'C') ADVANCE(1518); + if (lookahead == 'D') ADVANCE(1444); + if (lookahead == 'L') ADVANCE(926); + if (lookahead == 'R') ADVANCE(1176); + if (lookahead == 'U') ADVANCE(1541); + if (lookahead == 'V') ADVANCE(935); + END_STATE(); + case 291: + if (lookahead == 'D') ADVANCE(1447); + END_STATE(); + case 292: + if (lookahead == 'D') ADVANCE(1447); + if (lookahead == 'M') ADVANCE(1164); + if (lookahead == 'P') ADVANCE(1297); + if (lookahead == 'T') ADVANCE(1153); + END_STATE(); + case 293: + if (lookahead == 'D') ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1618); + END_STATE(); + case 294: + if (lookahead == 'D') ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1807); + END_STATE(); + case 295: + if (lookahead == 'D') ADVANCE(1447); + if (lookahead == 'r') ADVANCE(13); + END_STATE(); + case 296: + if (lookahead == 'D') ADVANCE(172); + if (lookahead == 'J') ADVANCE(603); + if (lookahead == 'S') ADVANCE(603); + if (lookahead == 'Z') ADVANCE(603); + if (lookahead == 'a') ADVANCE(985); + if (lookahead == 'c') ADVANCE(465); + if (lookahead == 'e') ADVANCE(1208); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(408); + if (lookahead == 'o') ADVANCE(1533); + if (lookahead == 's') ADVANCE(648); + END_STATE(); + case 297: + if (lookahead == 'D') ADVANCE(13); + END_STATE(); + case 298: + if (lookahead == 'D') ADVANCE(294); + if (lookahead == 'a') ADVANCE(665); + if (lookahead == 'c') ADVANCE(463); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'f') ADVANCE(295); + if (lookahead == 'g') ADVANCE(184); + if (lookahead == 'l') ADVANCE(151); + if (lookahead == 'm') ADVANCE(395); + if (lookahead == 'n') ADVANCE(970); + if (lookahead == 'o') ADVANCE(987); + if (lookahead == 'p') ADVANCE(476); + if (lookahead == 'q') ADVANCE(658); + if (lookahead == 'r') ADVANCE(293); + if (lookahead == 's') ADVANCE(628); + if (lookahead == 't') ADVANCE(219); + if (lookahead == 'u') ADVANCE(1314); + if (lookahead == 'x') ADVANCE(686); + END_STATE(); + case 299: + if (lookahead == 'D') ADVANCE(291); + if (lookahead == 'a') ADVANCE(613); + if (lookahead == 'c') ADVANCE(1503); + if (lookahead == 'd') ADVANCE(429); + if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(1437); + if (lookahead == 'i') ADVANCE(702); + if (lookahead == 'l') ADVANCE(666); + if (lookahead == 'n') ADVANCE(1557); + if (lookahead == 'o') ADVANCE(766); + if (lookahead == 'p') ADVANCE(13); + if (lookahead == 's') ADVANCE(647); + if (lookahead == 'u') ADVANCE(157); + END_STATE(); + case 300: + if (lookahead == 'D') ADVANCE(313); + END_STATE(); + case 301: + if (lookahead == 'D') ADVANCE(2025); + if (lookahead == 'H') ADVANCE(230); + if (lookahead == 'U') ADVANCE(2025); + if (lookahead == 'V') ADVANCE(231); + if (lookahead == 'b') ADVANCE(1452); + if (lookahead == 'd') ADVANCE(2025); + if (lookahead == 'h') ADVANCE(230); + if (lookahead == 'm') ADVANCE(1164); + if (lookahead == 'p') ADVANCE(1297); + if (lookahead == 't') ADVANCE(1153); + if (lookahead == 'u') ADVANCE(2025); + if (lookahead == 'v') ADVANCE(231); + END_STATE(); + case 302: + if (lookahead == 'D') ADVANCE(603); + END_STATE(); + case 303: + if (lookahead == 'D') ADVANCE(429); + if (lookahead == 'H') ADVANCE(433); + if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 'd') ADVANCE(429); + if (lookahead == 'g') ADVANCE(2015); + if (lookahead == 'i') ADVANCE(1371); + if (lookahead == 'l') ADVANCE(262); + if (lookahead == 'r') ADVANCE(263); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 304: + if (lookahead == 'D') ADVANCE(429); + if (lookahead == 'b') ADVANCE(396); + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'd') ADVANCE(432); + if (lookahead == 'e') ADVANCE(778); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 'v') ADVANCE(746); + END_STATE(); + case 305: + if (lookahead == 'D') ADVANCE(429); + if (lookahead == 'd') ADVANCE(429); + END_STATE(); + case 306: + if (lookahead == 'D') ADVANCE(1501); + if (lookahead == 'L') ADVANCE(923); + if (lookahead == 'R') ADVANCE(1174); + if (lookahead == 'U') ADVANCE(1545); + END_STATE(); + case 307: + if (lookahead == 'D') ADVANCE(1103); + END_STATE(); + case 308: + if (lookahead == 'D') ADVANCE(869); + END_STATE(); + case 309: + if (lookahead == 'D') ADVANCE(1509); + if (lookahead == 'E') ADVANCE(1589); + END_STATE(); + case 310: + if (lookahead == 'D') ADVANCE(1513); + if (lookahead == 'T') ADVANCE(888); + if (lookahead == 'V') ADVANCE(916); + END_STATE(); + case 311: + if (lookahead == 'D') ADVANCE(1523); + if (lookahead == 'Q') ADVANCE(1947); + END_STATE(); + case 312: + if (lookahead == 'E') ADVANCE(1247); + if (lookahead == 'M') ADVANCE(48); + if (lookahead == 'a') ADVANCE(661); + if (lookahead == 'b') ADVANCE(1598); + if (lookahead == 'c') ADVANCE(1119); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(1660); + if (lookahead == 'l') ADVANCE(1528); + if (lookahead == 'm') ADVANCE(391); + if (lookahead == 'n') ADVANCE(730); + if (lookahead == 'o') ADVANCE(987); + if (lookahead == 'p') ADVANCE(1553); + if (lookahead == 'r') ADVANCE(1094); + if (lookahead == 's') ADVANCE(645); + if (lookahead == 't') ADVANCE(1141); + if (lookahead == 'u') ADVANCE(1313); + END_STATE(); + case 313: + if (lookahead == 'E') ADVANCE(13); + END_STATE(); + case 314: + if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 315: + if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'a') ADVANCE(1544); + if (lookahead == 'e') ADVANCE(181); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 316: + if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'e') ADVANCE(180); + if (lookahead == 's') ADVANCE(1104); + if (lookahead == 't') ADVANCE(183); + END_STATE(); + case 317: + if (lookahead == 'E') ADVANCE(1220); + if (lookahead == 'U') ADVANCE(1576); + END_STATE(); + case 318: + if (lookahead == 'E') ADVANCE(603); + if (lookahead == 'J') ADVANCE(1253); + if (lookahead == 'O') ADVANCE(603); + if (lookahead == 'a') ADVANCE(661); + if (lookahead == 'c') ADVANCE(1119); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(1660); + if (lookahead == 'm') ADVANCE(53); + if (lookahead == 'n') ADVANCE(1835); + if (lookahead == 'o') ADVANCE(988); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 't') ADVANCE(1167); + if (lookahead == 'u') ADVANCE(1196); + END_STATE(); + case 319: + if (lookahead == 'E') ADVANCE(1219); + END_STATE(); + case 320: + if (lookahead == 'E') ADVANCE(1253); + if (lookahead == 'a') ADVANCE(661); + if (lookahead == 'c') ADVANCE(1119); + if (lookahead == 'd') ADVANCE(601); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(1660); + if (lookahead == 'm') ADVANCE(393); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'p') ADVANCE(839); + if (lookahead == 'r') ADVANCE(13); + if (lookahead == 's') ADVANCE(642); + if (lookahead == 't') ADVANCE(1088); + if (lookahead == 'u') ADVANCE(1313); + if (lookahead == 'v') ADVANCE(854); + END_STATE(); + case 321: + if (lookahead == 'E') ADVANCE(1592); + END_STATE(); + case 322: + if (lookahead == 'E') ADVANCE(1589); + END_STATE(); + case 323: + if (lookahead == 'E') ADVANCE(1594); + if (lookahead == 'F') ADVANCE(1946); + if (lookahead == 'G') ADVANCE(1739); + if (lookahead == 'L') ADVANCE(821); + if (lookahead == 'S') ADVANCE(1307); + if (lookahead == 'T') ADVANCE(1167); + END_STATE(); + case 324: + if (lookahead == 'E') ADVANCE(1595); + if (lookahead == 'F') ADVANCE(1946); + if (lookahead == 'G') ADVANCE(1739); + if (lookahead == 'L') ADVANCE(821); + if (lookahead == 'S') ADVANCE(1307); + if (lookahead == 'T') ADVANCE(1167); + END_STATE(); + case 325: + if (lookahead == 'F') ADVANCE(368); + END_STATE(); + case 326: + if (lookahead == 'F') ADVANCE(1940); + END_STATE(); + case 327: + if (lookahead == 'G') ADVANCE(13); + END_STATE(); + case 328: + if (lookahead == 'G') ADVANCE(971); + if (lookahead == 'L') ADVANCE(902); + if (lookahead == 'R') ADVANCE(1166); + if (lookahead == 'V') ADVANCE(305); + if (lookahead == 'a') ADVANCE(585); + if (lookahead == 'b') ADVANCE(1754); + if (lookahead == 'c') ADVANCE(416); + if (lookahead == 'd') ADVANCE(429); + if (lookahead == 'e') ADVANCE(15); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(316); + if (lookahead == 'h') ADVANCE(257); + if (lookahead == 'i') ADVANCE(189); + if (lookahead == 'j') ADVANCE(603); + if (lookahead == 'l') ADVANCE(252); + if (lookahead == 'm') ADVANCE(1071); + if (lookahead == 'o') ADVANCE(176); + if (lookahead == 'p') ADVANCE(484); + if (lookahead == 'r') ADVANCE(261); + if (lookahead == 's') ADVANCE(620); + if (lookahead == 't') ADVANCE(991); + if (lookahead == 'u') ADVANCE(160); + if (lookahead == 'v') ADVANCE(303); + if (lookahead == 'w') ADVANCE(260); + END_STATE(); + case 329: + if (lookahead == 'G') ADVANCE(1739); + END_STATE(); + case 330: + if (lookahead == 'G') ADVANCE(1748); + if (lookahead == 'L') ADVANCE(904); + END_STATE(); + case 331: + if (lookahead == 'H') ADVANCE(283); + if (lookahead == 'O') ADVANCE(325); + if (lookahead == 'a') ADVANCE(667); + if (lookahead == 'c') ADVANCE(67); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(1504); + if (lookahead == 'i') ADVANCE(989); + if (lookahead == 'm') ADVANCE(509); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'q') ADVANCE(1625); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 't') ADVANCE(396); + if (lookahead == 'u') ADVANCE(569); + END_STATE(); + case 332: + if (lookahead == 'H') ADVANCE(353); + if (lookahead == 'R') ADVANCE(249); + if (lookahead == 'S') ADVANCE(337); + if (lookahead == 'a') ADVANCE(2012); + if (lookahead == 'c') ADVANCE(462); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(810); + if (lookahead == 'i') ADVANCE(1236); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(1146); + if (lookahead == 's') ADVANCE(648); + END_STATE(); + case 333: + if (lookahead == 'H') ADVANCE(603); + END_STATE(); + case 334: + if (lookahead == 'H') ADVANCE(603); + if (lookahead == 'J') ADVANCE(603); + if (lookahead == 'a') ADVANCE(1550); + if (lookahead == 'c') ADVANCE(832); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 335: + if (lookahead == 'H') ADVANCE(603); + if (lookahead == 'O') ADVANCE(354); + if (lookahead == 'a') ADVANCE(673); + if (lookahead == 'c') ADVANCE(461); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(763); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(1072); + if (lookahead == 'i') ADVANCE(1646); + if (lookahead == 'l') ADVANCE(1451); + if (lookahead == 'o') ADVANCE(1291); + if (lookahead == 'r') ADVANCE(1453); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 'u') ADVANCE(1536); + END_STATE(); + case 336: + if (lookahead == 'H') ADVANCE(603); + if (lookahead == 'a') ADVANCE(667); + if (lookahead == 'c') ADVANCE(465); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1656); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 337: + if (lookahead == 'H') ADVANCE(603); + if (lookahead == 'c') ADVANCE(1987); + END_STATE(); + case 338: + if (lookahead == 'H') ADVANCE(1948); + END_STATE(); + case 339: + if (lookahead == 'I') ADVANCE(13); + END_STATE(); + case 340: + if (lookahead == 'I') ADVANCE(1347); + END_STATE(); + case 341: + if (lookahead == 'I') ADVANCE(1414); + END_STATE(); + case 342: + if (lookahead == 'J') ADVANCE(603); + if (lookahead == 'a') ADVANCE(667); + if (lookahead == 'c') ADVANCE(462); + if (lookahead == 'e') ADVANCE(992); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(281); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 't') ADVANCE(1141); + if (lookahead == 'u') ADVANCE(13); + END_STATE(); + case 343: + if (lookahead == 'L') ADVANCE(821); + END_STATE(); + case 344: + if (lookahead == 'L') ADVANCE(1121); + END_STATE(); + case 345: + if (lookahead == 'L') ADVANCE(919); + if (lookahead == 'R') ADVANCE(1174); + END_STATE(); + case 346: + if (lookahead == 'L') ADVANCE(919); + if (lookahead == 'R') ADVANCE(1174); + if (lookahead == 'l') ADVANCE(901); + if (lookahead == 'r') ADVANCE(1166); + END_STATE(); + case 347: + if (lookahead == 'L') ADVANCE(923); + if (lookahead == 'R') ADVANCE(1174); + END_STATE(); + case 348: + if (lookahead == 'M') ADVANCE(905); + if (lookahead == 'T') ADVANCE(1054); + if (lookahead == 'V') ADVANCE(893); + END_STATE(); + case 349: + if (lookahead == 'M') ADVANCE(1164); + END_STATE(); + case 350: + if (lookahead == 'N') ADVANCE(1447); + if (lookahead == 'a') ADVANCE(657); + if (lookahead == 'b') ADVANCE(1642); + if (lookahead == 'c') ADVANCE(1468); + if (lookahead == 'd') ADVANCE(1588); + if (lookahead == 'e') ADVANCE(722); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(972); + if (lookahead == 'k') ADVANCE(527); + if (lookahead == 'l') ADVANCE(409); + if (lookahead == 'n') ADVANCE(787); + if (lookahead == 'o') ADVANCE(1534); + if (lookahead == 'p') ADVANCE(1669); + if (lookahead == 'r') ADVANCE(785); + if (lookahead == 's') ADVANCE(629); + if (lookahead == 'u') ADVANCE(1254); + END_STATE(); + case 351: + if (lookahead == 'N') ADVANCE(327); + if (lookahead == 'T') ADVANCE(42); + if (lookahead == 'a') ADVANCE(661); + if (lookahead == 'c') ADVANCE(464); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(1660); + if (lookahead == 'l') ADVANCE(906); + if (lookahead == 'm') ADVANCE(394); + if (lookahead == 'o') ADVANCE(987); + if (lookahead == 'p') ADVANCE(1803); + if (lookahead == 'q') ADVANCE(1900); + if (lookahead == 's') ADVANCE(637); + if (lookahead == 't') ADVANCE(382); + if (lookahead == 'u') ADVANCE(1313); + if (lookahead == 'x') ADVANCE(1097); + END_STATE(); + case 352: + if (lookahead == 'O') ADVANCE(50); + END_STATE(); + case 353: + if (lookahead == 'O') ADVANCE(359); + END_STATE(); + case 354: + if (lookahead == 'P') ADVANCE(52); + END_STATE(); + case 355: + if (lookahead == 'P') ADVANCE(396); + END_STATE(); + case 356: + if (lookahead == 'P') ADVANCE(396); + if (lookahead == 'i') ADVANCE(226); + END_STATE(); + case 357: + if (lookahead == 'P') ADVANCE(1297); + END_STATE(); + case 358: + if (lookahead == 'Q') ADVANCE(1947); + END_STATE(); + case 359: + if (lookahead == 'R') ADVANCE(47); + END_STATE(); + case 360: + if (lookahead == 'R') ADVANCE(302); + END_STATE(); + case 361: + if (lookahead == 'R') ADVANCE(1177); + if (lookahead == 'T') ADVANCE(888); + if (lookahead == 'V') ADVANCE(916); + END_STATE(); + case 362: + if (lookahead == 'S') ADVANCE(13); + if (lookahead == 'a') ADVANCE(664); + if (lookahead == 'c') ADVANCE(1119); + if (lookahead == 'd') ADVANCE(430); + if (lookahead == 'e') ADVANCE(1253); + if (lookahead == 'f') ADVANCE(700); + if (lookahead == 'g') ADVANCE(1479); + if (lookahead == 'h') ADVANCE(576); + if (lookahead == 'i') ADVANCE(1366); + if (lookahead == 'l') ADVANCE(436); + if (lookahead == 'm') ADVANCE(392); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'p') ADVANCE(397); + if (lookahead == 'r') ADVANCE(63); + if (lookahead == 's') ADVANCE(643); + if (lookahead == 't') ADVANCE(1136); + if (lookahead == 'u') ADVANCE(1313); + if (lookahead == 'v') ADVANCE(574); + END_STATE(); + case 363: + if (lookahead == 'S') ADVANCE(1351); + END_STATE(); + case 364: + if (lookahead == 'S') ADVANCE(1351); + if (lookahead == 'V') ADVANCE(891); + END_STATE(); + case 365: + if (lookahead == 'S') ADVANCE(1569); + END_STATE(); + case 366: + if (lookahead == 'S') ADVANCE(1910); + END_STATE(); + case 367: + if (lookahead == 'S') ADVANCE(1596); + END_STATE(); + case 368: + if (lookahead == 'T') ADVANCE(603); + END_STATE(); + case 369: + if (lookahead == 'T') ADVANCE(1068); + END_STATE(); + case 370: + if (lookahead == 'T') ADVANCE(1049); + END_STATE(); + case 371: + if (lookahead == 'T') ADVANCE(888); + if (lookahead == 'V') ADVANCE(916); + END_STATE(); + case 372: + if (lookahead == 'T') ADVANCE(1750); + END_STATE(); + case 373: + if (lookahead == 'U') ADVANCE(352); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 374: + if (lookahead == 'V') ADVANCE(935); + END_STATE(); + case 375: + if (lookahead == 'V') ADVANCE(921); + END_STATE(); + case 376: + if (lookahead == 'W') ADVANCE(1123); + END_STATE(); + case 377: + if (lookahead == ']') ADVANCE(2078); + END_STATE(); + case 378: + if (lookahead == ']') ADVANCE(2079); + END_STATE(); + case 379: + if (lookahead == 'a') ADVANCE(661); + if (lookahead == 'b') ADVANCE(1598); + if (lookahead == 'c') ADVANCE(229); + if (lookahead == 'e') ADVANCE(1247); + if (lookahead == 'f') ADVANCE(183); + if (lookahead == 'g') ADVANCE(1660); + if (lookahead == 'l') ADVANCE(786); + if (lookahead == 'm') ADVANCE(58); + if (lookahead == 'n') ADVANCE(734); + if (lookahead == 'o') ADVANCE(987); + if (lookahead == 'p') ADVANCE(214); + if (lookahead == 'r') ADVANCE(1094); + if (lookahead == 's') ADVANCE(646); + if (lookahead == 't') ADVANCE(1141); + if (lookahead == 'u') ADVANCE(1313); + if (lookahead == 'w') ADVANCE(682); + END_STATE(); + case 380: + if (lookahead == 'a') ADVANCE(661); + if (lookahead == 'c') ADVANCE(145); + if (lookahead == 'e') ADVANCE(610); + if (lookahead == 'f') ADVANCE(2016); + if (lookahead == 'g') ADVANCE(1660); + if (lookahead == 'i') ADVANCE(143); + if (lookahead == 'j') ADVANCE(1253); + if (lookahead == 'm') ADVANCE(388); + if (lookahead == 'n') ADVANCE(97); + if (lookahead == 'o') ADVANCE(607); + if (lookahead == 'p') ADVANCE(1659); + if (lookahead == 'q') ADVANCE(1915); + if (lookahead == 's') ADVANCE(639); + if (lookahead == 't') ADVANCE(150); + if (lookahead == 'u') ADVANCE(1196); + END_STATE(); + case 381: + if (lookahead == 'a') ADVANCE(653); + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'e') ADVANCE(688); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(784); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 'u') ADVANCE(1324); + END_STATE(); + case 382: + if (lookahead == 'a') ADVANCE(13); + END_STATE(); + case 383: + if (lookahead == 'a') ADVANCE(183); + END_STATE(); + case 384: + if (lookahead == 'a') ADVANCE(1588); + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(13); + if (lookahead == 'i') ADVANCE(1318); + if (lookahead == 'q') ADVANCE(568); + if (lookahead == 't') ADVANCE(1670); + END_STATE(); + case 385: + if (lookahead == 'a') ADVANCE(1588); + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(13); + if (lookahead == 'q') ADVANCE(568); + END_STATE(); + case 386: + if (lookahead == 'a') ADVANCE(672); + if (lookahead == 'c') ADVANCE(411); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(756); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(605); + if (lookahead == 'i') ADVANCE(1603); + if (lookahead == 'l') ADVANCE(1905); + if (lookahead == 'o') ADVANCE(1301); + if (lookahead == 'r') ADVANCE(442); + if (lookahead == 's') ADVANCE(649); + if (lookahead == 't') ADVANCE(725); + if (lookahead == 'u') ADVANCE(773); + if (lookahead == 'w') ADVANCE(682); + if (lookahead == 'y') ADVANCE(1244); + END_STATE(); + case 387: + if (lookahead == 'a') ADVANCE(1962); + END_STATE(); + case 388: + if (lookahead == 'a') ADVANCE(632); + if (lookahead == 'o') ADVANCE(945); + if (lookahead == 'p') ADVANCE(774); + END_STATE(); + case 389: + if (lookahead == 'a') ADVANCE(1261); + if (lookahead == 'e') ADVANCE(1574); + if (lookahead == 'i') ADVANCE(732); + if (lookahead == 't') ADVANCE(117); + END_STATE(); + case 390: + if (lookahead == 'a') ADVANCE(224); + END_STATE(); + case 391: + if (lookahead == 'a') ADVANCE(627); + END_STATE(); + case 392: + if (lookahead == 'a') ADVANCE(627); + if (lookahead == 'e') ADVANCE(980); + if (lookahead == 'i') ADVANCE(694); + END_STATE(); + case 393: + if (lookahead == 'a') ADVANCE(627); + if (lookahead == 'e') ADVANCE(980); + if (lookahead == 'i') ADVANCE(693); + END_STATE(); + case 394: + if (lookahead == 'a') ADVANCE(627); + if (lookahead == 'p') ADVANCE(1834); + END_STATE(); + case 395: + if (lookahead == 'a') ADVANCE(627); + if (lookahead == 'p') ADVANCE(1843); + if (lookahead == 's') ADVANCE(1539); + END_STATE(); + case 396: + if (lookahead == 'a') ADVANCE(1599); + END_STATE(); + case 397: + if (lookahead == 'a') ADVANCE(1599); + if (lookahead == 'e') ADVANCE(1647); + if (lookahead == 'l') ADVANCE(1914); + END_STATE(); + case 398: + if (lookahead == 'a') ADVANCE(1599); + if (lookahead == 'f') ADVANCE(13); + if (lookahead == 'l') ADVANCE(1914); + END_STATE(); + case 399: + if (lookahead == 'a') ADVANCE(1599); + if (lookahead == 'r') ADVANCE(477); + END_STATE(); + case 400: + if (lookahead == 'a') ADVANCE(663); + if (lookahead == 'b') ADVANCE(1621); + if (lookahead == 'c') ADVANCE(1119); + if (lookahead == 'd') ADVANCE(601); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(1660); + if (lookahead == 'm') ADVANCE(391); + if (lookahead == 'n') ADVANCE(744); + if (lookahead == 'o') ADVANCE(987); + if (lookahead == 'p') ADVANCE(264); + if (lookahead == 'r') ADVANCE(1109); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 't') ADVANCE(1167); + if (lookahead == 'u') ADVANCE(1313); + END_STATE(); + case 401: + if (lookahead == 'a') ADVANCE(1366); + END_STATE(); + case 402: + if (lookahead == 'a') ADVANCE(210); + END_STATE(); + case 403: + if (lookahead == 'a') ADVANCE(1724); + if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'c') ADVANCE(462); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1302); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(816); + if (lookahead == 'i') ADVANCE(1290); + if (lookahead == 'o') ADVANCE(808); + if (lookahead == 'p') ADVANCE(1669); + if (lookahead == 'r') ADVANCE(514); + if (lookahead == 's') ADVANCE(618); + if (lookahead == 'w') ADVANCE(1076); + END_STATE(); + case 404: + if (lookahead == 'a') ADVANCE(1375); + if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'n') ADVANCE(978); + if (lookahead == 'o') ADVANCE(1575); + if (lookahead == 'p') ADVANCE(398); + if (lookahead == 't') ADVANCE(1153); + if (lookahead == 'w') ADVANCE(446); + if (lookahead == 'z') ADVANCE(125); + END_STATE(); + case 405: + if (lookahead == 'a') ADVANCE(1375); + if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'p') ADVANCE(398); + if (lookahead == 't') ADVANCE(1153); + END_STATE(); + case 406: + if (lookahead == 'a') ADVANCE(1807); + END_STATE(); + case 407: + if (lookahead == 'a') ADVANCE(1807); + if (lookahead == 'l') ADVANCE(1101); + if (lookahead == 't') ADVANCE(1381); + END_STATE(); + case 408: + if (lookahead == 'a') ADVANCE(716); + if (lookahead == 'f') ADVANCE(956); + END_STATE(); + case 409: + if (lookahead == 'a') ADVANCE(683); + if (lookahead == 'k') ADVANCE(6); + if (lookahead == 'o') ADVANCE(676); + END_STATE(); + case 410: + if (lookahead == 'a') ADVANCE(100); + END_STATE(); + case 411: + if (lookahead == 'a') ADVANCE(1551); + if (lookahead == 'e') ADVANCE(755); + if (lookahead == 'i') ADVANCE(1666); + if (lookahead == 'u') ADVANCE(1559); + END_STATE(); + case 412: + if (lookahead == 'a') ADVANCE(767); + END_STATE(); + case 413: + if (lookahead == 'a') ADVANCE(191); + END_STATE(); + case 414: + if (lookahead == 'a') ADVANCE(1960); + END_STATE(); + case 415: + if (lookahead == 'a') ADVANCE(623); + if (lookahead == 'o') ADVANCE(1975); + END_STATE(); + case 416: + if (lookahead == 'a') ADVANCE(1527); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'o') ADVANCE(1388); + if (lookahead == 'u') ADVANCE(1526); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 417: + if (lookahead == 'a') ADVANCE(198); + END_STATE(); + case 418: + if (lookahead == 'a') ADVANCE(622); + if (lookahead == 'c') ADVANCE(1140); + if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(603); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 'u') ADVANCE(609); + END_STATE(); + case 419: + if (lookahead == 'a') ADVANCE(1649); + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(1072); + if (lookahead == 'i') ADVANCE(13); + if (lookahead == 'l') ADVANCE(1909); + if (lookahead == 'o') ADVANCE(1137); + if (lookahead == 'r') ADVANCE(118); + if (lookahead == 's') ADVANCE(636); + END_STATE(); + case 420: + if (lookahead == 'a') ADVANCE(1550); + END_STATE(); + case 421: + if (lookahead == 'a') ADVANCE(1562); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1583); + if (lookahead == 'l') ADVANCE(821); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 422: + if (lookahead == 'a') ADVANCE(1526); + END_STATE(); + case 423: + if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'e') ADVANCE(751); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(1405); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 'u') ADVANCE(13); + END_STATE(); + case 424: + if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 'i') ADVANCE(1666); + if (lookahead == 'u') ADVANCE(1526); + END_STATE(); + case 425: + if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 426: + if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 'u') ADVANCE(1526); + END_STATE(); + case 427: + if (lookahead == 'a') ADVANCE(969); + END_STATE(); + case 428: + if (lookahead == 'a') ADVANCE(1309); + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'e') ADVANCE(1339); + if (lookahead == 'f') ADVANCE(1134); + if (lookahead == 'i') ADVANCE(1253); + if (lookahead == 'j') ADVANCE(1253); + if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'n') ADVANCE(1439); + if (lookahead == 'o') ADVANCE(1530); + if (lookahead == 'p') ADVANCE(517); + if (lookahead == 'r') ADVANCE(415); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 429: + if (lookahead == 'a') ADVANCE(1773); + END_STATE(); + case 430: + if (lookahead == 'a') ADVANCE(1773); + if (lookahead == 'b') ADVANCE(1287); + if (lookahead == 'i') ADVANCE(1957); + if (lookahead == 'o') ADVANCE(1807); + if (lookahead == 's') ADVANCE(1489); + END_STATE(); + case 431: + if (lookahead == 'a') ADVANCE(1188); + END_STATE(); + case 432: + if (lookahead == 'a') ADVANCE(1776); + END_STATE(); + case 433: + if (lookahead == 'a') ADVANCE(1618); + END_STATE(); + case 434: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'r') ADVANCE(467); + END_STATE(); + case 435: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'b') ADVANCE(1287); + if (lookahead == 'h') ADVANCE(396); + END_STATE(); + case 436: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'c') ADVANCE(1083); + if (lookahead == 'i') ADVANCE(1387); + if (lookahead == 't') ADVANCE(13); + END_STATE(); + case 437: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'c') ADVANCE(1498); + if (lookahead == 'h') ADVANCE(498); + if (lookahead == 'm') ADVANCE(13); + if (lookahead == 't') ADVANCE(1634); + END_STATE(); + case 438: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'h') ADVANCE(396); + END_STATE(); + case 439: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'h') ADVANCE(396); + if (lookahead == 'm') ADVANCE(13); + END_STATE(); + case 440: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'm') ADVANCE(152); + END_STATE(); + case 441: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'm') ADVANCE(1849); + if (lookahead == 'o') ADVANCE(1191); + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 'r') ADVANCE(574); + END_STATE(); + case 442: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'o') ADVANCE(1778); + END_STATE(); + case 443: + if (lookahead == 'a') ADVANCE(1618); + if (lookahead == 'r') ADVANCE(1599); + if (lookahead == 't') ADVANCE(528); + END_STATE(); + case 444: + if (lookahead == 'a') ADVANCE(1316); + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'g') ADVANCE(510); + if (lookahead == 's') ADVANCE(1116); + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 445: + if (lookahead == 'a') ADVANCE(1998); + END_STATE(); + case 446: + if (lookahead == 'a') ADVANCE(1763); + if (lookahead == 'b') ADVANCE(396); + END_STATE(); + case 447: + if (lookahead == 'a') ADVANCE(1386); + END_STATE(); + case 448: + if (lookahead == 'a') ADVANCE(1846); + END_STATE(); + case 449: + if (lookahead == 'a') ADVANCE(1207); + END_STATE(); + case 450: + if (lookahead == 'a') ADVANCE(1605); + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'e') ADVANCE(1606); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(1086); + if (lookahead == 'i') ADVANCE(204); + if (lookahead == 'l') ADVANCE(466); + if (lookahead == 'm') ADVANCE(13); + if (lookahead == 'o') ADVANCE(1147); + if (lookahead == 'r') ADVANCE(29); + if (lookahead == 's') ADVANCE(636); + if (lookahead == 'u') ADVANCE(1385); + END_STATE(); + case 451: + if (lookahead == 'a') ADVANCE(1840); + if (lookahead == 'e') ADVANCE(1787); + if (lookahead == 'o') ADVANCE(198); + END_STATE(); + case 452: + if (lookahead == 'a') ADVANCE(1031); + END_STATE(); + case 453: + if (lookahead == 'a') ADVANCE(1205); + END_STATE(); + case 454: + if (lookahead == 'a') ADVANCE(1230); + if (lookahead == 'l') ADVANCE(1121); + if (lookahead == 's') ADVANCE(1934); + END_STATE(); + case 455: + if (lookahead == 'a') ADVANCE(1653); + END_STATE(); + case 456: + if (lookahead == 'a') ADVANCE(1766); + END_STATE(); + case 457: + if (lookahead == 'a') ADVANCE(1353); + END_STATE(); + case 458: + if (lookahead == 'a') ADVANCE(611); + END_STATE(); + case 459: + if (lookahead == 'a') ADVANCE(1387); + END_STATE(); + case 460: + if (lookahead == 'a') ADVANCE(1652); + if (lookahead == 'e') ADVANCE(771); + if (lookahead == 'u') ADVANCE(567); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 461: + if (lookahead == 'a') ADVANCE(1652); + if (lookahead == 'e') ADVANCE(755); + if (lookahead == 'i') ADVANCE(1666); + if (lookahead == 'o') ADVANCE(1415); + END_STATE(); + case 462: + if (lookahead == 'a') ADVANCE(1652); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 463: + if (lookahead == 'a') ADVANCE(1652); + if (lookahead == 'i') ADVANCE(1629); + if (lookahead == 'o') ADVANCE(1237); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 464: + if (lookahead == 'a') ADVANCE(1652); + if (lookahead == 'i') ADVANCE(1629); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 465: + if (lookahead == 'a') ADVANCE(1652); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 466: + if (lookahead == 'a') ADVANCE(1360); + if (lookahead == 'u') ADVANCE(1757); + END_STATE(); + case 467: + if (lookahead == 'a') ADVANCE(625); + if (lookahead == 'k') ADVANCE(779); + END_STATE(); + case 468: + if (lookahead == 'a') ADVANCE(1548); + if (lookahead == 'u') ADVANCE(1548); + END_STATE(); + case 469: + if (lookahead == 'a') ADVANCE(736); + END_STATE(); + case 470: + if (lookahead == 'a') ADVANCE(1224); + END_STATE(); + case 471: + if (lookahead == 'a') ADVANCE(1224); + if (lookahead == 'i') ADVANCE(1269); + END_STATE(); + case 472: + if (lookahead == 'a') ADVANCE(1608); + END_STATE(); + case 473: + if (lookahead == 'a') ADVANCE(1608); + if (lookahead == 'b') ADVANCE(1238); + END_STATE(); + case 474: + if (lookahead == 'a') ADVANCE(1243); + END_STATE(); + case 475: + if (lookahead == 'a') ADVANCE(1243); + if (lookahead == 'e') ADVANCE(1763); + if (lookahead == 'i') ADVANCE(1959); + END_STATE(); + case 476: + if (lookahead == 'a') ADVANCE(1643); + if (lookahead == 'l') ADVANCE(1914); + if (lookahead == 's') ADVANCE(1079); + END_STATE(); + case 477: + if (lookahead == 'a') ADVANCE(626); + END_STATE(); + case 478: + if (lookahead == 'a') ADVANCE(1638); + if (lookahead == 'b') ADVANCE(1238); + END_STATE(); + case 479: + if (lookahead == 'a') ADVANCE(1638); + if (lookahead == 'o') ADVANCE(210); + END_STATE(); + case 480: + if (lookahead == 'a') ADVANCE(1570); + END_STATE(); + case 481: + if (lookahead == 'a') ADVANCE(711); + END_STATE(); + case 482: + if (lookahead == 'a') ADVANCE(1636); + END_STATE(); + case 483: + if (lookahead == 'a') ADVANCE(1235); + END_STATE(); + case 484: + if (lookahead == 'a') ADVANCE(1628); + if (lookahead == 'o') ADVANCE(1303); + if (lookahead == 'r') ADVANCE(95); + END_STATE(); + case 485: + if (lookahead == 'a') ADVANCE(1231); + END_STATE(); + case 486: + if (lookahead == 'a') ADVANCE(1623); + if (lookahead == 'p') ADVANCE(1522); + END_STATE(); + case 487: + if (lookahead == 'a') ADVANCE(1609); + if (lookahead == 'r') ADVANCE(558); + END_STATE(); + case 488: + if (lookahead == 'a') ADVANCE(1214); + END_STATE(); + case 489: + if (lookahead == 'a') ADVANCE(1622); + END_STATE(); + case 490: + if (lookahead == 'a') ADVANCE(1222); + END_STATE(); + case 491: + if (lookahead == 'a') ADVANCE(1209); + END_STATE(); + case 492: + if (lookahead == 'a') ADVANCE(1215); + END_STATE(); + case 493: + if (lookahead == 'a') ADVANCE(1210); + END_STATE(); + case 494: + if (lookahead == 'a') ADVANCE(1676); + END_STATE(); + case 495: + if (lookahead == 'a') ADVANCE(1228); + END_STATE(); + case 496: + if (lookahead == 'a') ADVANCE(1216); + END_STATE(); + case 497: + if (lookahead == 'a') ADVANCE(1597); + END_STATE(); + case 498: + if (lookahead == 'a') ADVANCE(1626); + END_STATE(); + case 499: + if (lookahead == 'a') ADVANCE(1602); + END_STATE(); + case 500: + if (lookahead == 'a') ADVANCE(1680); + END_STATE(); + case 501: + if (lookahead == 'a') ADVANCE(1624); + END_STATE(); + case 502: + if (lookahead == 'a') ADVANCE(1864); + END_STATE(); + case 503: + if (lookahead == 'a') ADVANCE(1691); + END_STATE(); + case 504: + if (lookahead == 'a') ADVANCE(1664); + END_STATE(); + case 505: + if (lookahead == 'a') ADVANCE(1655); + END_STATE(); + case 506: + if (lookahead == 'a') ADVANCE(1661); + END_STATE(); + case 507: + if (lookahead == 'a') ADVANCE(667); + if (lookahead == 'b') ADVANCE(1588); + if (lookahead == 'c') ADVANCE(218); + if (lookahead == 'd') ADVANCE(1476); + if (lookahead == 'e') ADVANCE(258); + if (lookahead == 'f') ADVANCE(1619); + if (lookahead == 'h') ADVANCE(72); + if (lookahead == 'i') ADVANCE(1008); + if (lookahead == 'l') ADVANCE(433); + if (lookahead == 'm') ADVANCE(389); + if (lookahead == 'o') ADVANCE(953); + if (lookahead == 'p') ADVANCE(412); + if (lookahead == 'q') ADVANCE(655); + if (lookahead == 'r') ADVANCE(433); + if (lookahead == 's') ADVANCE(630); + if (lookahead == 't') ADVANCE(487); + if (lookahead == 'u') ADVANCE(570); + if (lookahead == 'w') ADVANCE(259); + if (lookahead == 'z') ADVANCE(1247); + END_STATE(); + case 508: + if (lookahead == 'a') ADVANCE(667); + if (lookahead == 'c') ADVANCE(465); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(912); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(603); + if (lookahead == 'i') ADVANCE(1002); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 'w') ADVANCE(1187); + END_STATE(); + case 509: + if (lookahead == 'a') ADVANCE(1259); + END_STATE(); + case 510: + if (lookahead == 'a') ADVANCE(1328); + END_STATE(); + case 511: + if (lookahead == 'a') ADVANCE(1785); + END_STATE(); + case 512: + if (lookahead == 'a') ADVANCE(1554); + if (lookahead == 'c') ADVANCE(832); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(1663); + if (lookahead == 'h') ADVANCE(603); + if (lookahead == 'j') ADVANCE(603); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 513: + if (lookahead == 'a') ADVANCE(705); + END_STATE(); + case 514: + if (lookahead == 'a') ADVANCE(752); + if (lookahead == 'i') ADVANCE(559); + if (lookahead == 'p') ADVANCE(814); + END_STATE(); + case 515: + if (lookahead == 'a') ADVANCE(1712); + END_STATE(); + case 516: + if (lookahead == 'a') ADVANCE(1861); + END_STATE(); + case 517: + if (lookahead == 'a') ADVANCE(1679); + END_STATE(); + case 518: + if (lookahead == 'a') ADVANCE(1561); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1584); + if (lookahead == 'g') ADVANCE(1827); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 519: + if (lookahead == 'a') ADVANCE(1561); + if (lookahead == 'e') ADVANCE(1587); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 520: + if (lookahead == 'a') ADVANCE(1561); + if (lookahead == 's') ADVANCE(1104); + END_STATE(); + case 521: + if (lookahead == 'a') ADVANCE(691); + END_STATE(); + case 522: + if (lookahead == 'a') ADVANCE(1713); + if (lookahead == 'l') ADVANCE(1989); + if (lookahead == 'r') ADVANCE(783); + if (lookahead == 'v') ADVANCE(932); + END_STATE(); + case 523: + if (lookahead == 'a') ADVANCE(1398); + END_STATE(); + case 524: + if (lookahead == 'a') ADVANCE(1249); + if (lookahead == 'k') ADVANCE(210); + END_STATE(); + case 525: + if (lookahead == 'a') ADVANCE(1871); + END_STATE(); + case 526: + if (lookahead == 'a') ADVANCE(1725); + if (lookahead == 'l') ADVANCE(1264); + if (lookahead == 'r') ADVANCE(675); + END_STATE(); + case 527: + if (lookahead == 'a') ADVANCE(1675); + END_STATE(); + case 528: + if (lookahead == 'a') ADVANCE(1112); + END_STATE(); + case 529: + if (lookahead == 'a') ADVANCE(1112); + if (lookahead == 'i') ADVANCE(1449); + END_STATE(); + case 530: + if (lookahead == 'a') ADVANCE(1925); + END_STATE(); + case 531: + if (lookahead == 'a') ADVANCE(1271); + END_STATE(); + case 532: + if (lookahead == 'a') ADVANCE(1716); + END_STATE(); + case 533: + if (lookahead == 'a') ADVANCE(1927); + END_STATE(); + case 534: + if (lookahead == 'a') ADVANCE(1879); + END_STATE(); + case 535: + if (lookahead == 'a') ADVANCE(1399); + END_STATE(); + case 536: + if (lookahead == 'a') ADVANCE(1718); + END_STATE(); + case 537: + if (lookahead == 'a') ADVANCE(1256); + END_STATE(); + case 538: + if (lookahead == 'a') ADVANCE(1708); + END_STATE(); + case 539: + if (lookahead == 'a') ADVANCE(1667); + END_STATE(); + case 540: + if (lookahead == 'a') ADVANCE(1714); + END_STATE(); + case 541: + if (lookahead == 'a') ADVANCE(1715); + END_STATE(); + case 542: + if (lookahead == 'a') ADVANCE(1306); + END_STATE(); + case 543: + if (lookahead == 'a') ADVANCE(1730); + END_STATE(); + case 544: + if (lookahead == 'a') ADVANCE(1730); + if (lookahead == 'd') ADVANCE(1508); + if (lookahead == 'h') ADVANCE(500); + if (lookahead == 'l') ADVANCE(1914); + if (lookahead == 's') ADVANCE(1081); + if (lookahead == 'u') ADVANCE(1580); + END_STATE(); + case 545: + if (lookahead == 'a') ADVANCE(1730); + if (lookahead == 'd') ADVANCE(1524); + if (lookahead == 'h') ADVANCE(500); + END_STATE(); + case 546: + if (lookahead == 'a') ADVANCE(1730); + if (lookahead == 'r') ADVANCE(1166); + END_STATE(); + case 547: + if (lookahead == 'a') ADVANCE(1741); + END_STATE(); + case 548: + if (lookahead == 'a') ADVANCE(1887); + END_STATE(); + case 549: + if (lookahead == 'a') ADVANCE(1735); + if (lookahead == 'h') ADVANCE(560); + if (lookahead == 'l') ADVANCE(924); + if (lookahead == 'r') ADVANCE(1181); + if (lookahead == 's') ADVANCE(1591); + if (lookahead == 't') ADVANCE(1069); + END_STATE(); + case 550: + if (lookahead == 'a') ADVANCE(1735); + if (lookahead == 'h') ADVANCE(560); + if (lookahead == 'l') ADVANCE(944); + if (lookahead == 'r') ADVANCE(1175); + if (lookahead == 't') ADVANCE(1069); + END_STATE(); + case 551: + if (lookahead == 'a') ADVANCE(1889); + END_STATE(); + case 552: + if (lookahead == 'a') ADVANCE(1736); + END_STATE(); + case 553: + if (lookahead == 'a') ADVANCE(1736); + if (lookahead == 'd') ADVANCE(2021); + END_STATE(); + case 554: + if (lookahead == 'a') ADVANCE(1737); + END_STATE(); + case 555: + if (lookahead == 'a') ADVANCE(1737); + if (lookahead == 'h') ADVANCE(562); + END_STATE(); + case 556: + if (lookahead == 'a') ADVANCE(1891); + END_STATE(); + case 557: + if (lookahead == 'a') ADVANCE(1738); + if (lookahead == 'h') ADVANCE(562); + if (lookahead == 's') ADVANCE(1591); + END_STATE(); + case 558: + if (lookahead == 'a') ADVANCE(1171); + if (lookahead == 'n') ADVANCE(1752); + END_STATE(); + case 559: + if (lookahead == 'a') ADVANCE(1420); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'm') ADVANCE(1164); + if (lookahead == 'p') ADVANCE(1297); + if (lookahead == 's') ADVANCE(567); + if (lookahead == 't') ADVANCE(1149); + END_STATE(); + case 560: + if (lookahead == 'a') ADVANCE(1743); + END_STATE(); + case 561: + if (lookahead == 'a') ADVANCE(1427); + END_STATE(); + case 562: + if (lookahead == 'a') ADVANCE(1745); + END_STATE(); + case 563: + if (lookahead == 'a') ADVANCE(1428); + END_STATE(); + case 564: + if (lookahead == 'a') ADVANCE(1430); + END_STATE(); + case 565: + if (lookahead == 'a') ADVANCE(1431); + END_STATE(); + case 566: + if (lookahead == 'a') ADVANCE(1432); + END_STATE(); + case 567: + if (lookahead == 'b') ADVANCE(13); + END_STATE(); + case 568: + if (lookahead == 'b') ADVANCE(13); + if (lookahead == 'u') ADVANCE(1438); + END_STATE(); + case 569: + if (lookahead == 'b') ADVANCE(196); + if (lookahead == 'c') ADVANCE(713); + if (lookahead == 'm') ADVANCE(13); + if (lookahead == 'p') ADVANCE(126); + END_STATE(); + case 570: + if (lookahead == 'b') ADVANCE(30); + if (lookahead == 'c') ADVANCE(624); + if (lookahead == 'm') ADVANCE(13); + if (lookahead == 'n') ADVANCE(969); + if (lookahead == 'p') ADVANCE(2026); + END_STATE(); + case 571: + if (lookahead == 'b') ADVANCE(216); + if (lookahead == 'c') ADVANCE(680); + if (lookahead == 'p') ADVANCE(216); + END_STATE(); + case 572: + if (lookahead == 'b') ADVANCE(100); + END_STATE(); + case 573: + if (lookahead == 'b') ADVANCE(108); + if (lookahead == 'p') ADVANCE(108); + END_STATE(); + case 574: + if (lookahead == 'b') ADVANCE(396); + END_STATE(); + case 575: + if (lookahead == 'b') ADVANCE(396); + if (lookahead == 'g') ADVANCE(818); + END_STATE(); + case 576: + if (lookahead == 'b') ADVANCE(396); + if (lookahead == 'm') ADVANCE(13); + END_STATE(); + case 577: + if (lookahead == 'b') ADVANCE(396); + if (lookahead == 't') ADVANCE(13); + END_STATE(); + case 578: + if (lookahead == 'b') ADVANCE(396); + if (lookahead == 't') ADVANCE(148); + if (lookahead == 'y') ADVANCE(369); + END_STATE(); + case 579: + if (lookahead == 'b') ADVANCE(1203); + if (lookahead == 'c') ADVANCE(1497); + END_STATE(); + case 580: + if (lookahead == 'b') ADVANCE(106); + if (lookahead == 'p') ADVANCE(106); + END_STATE(); + case 581: + if (lookahead == 'b') ADVANCE(1943); + if (lookahead == 'p') ADVANCE(1064); + END_STATE(); + case 582: + if (lookahead == 'b') ADVANCE(740); + END_STATE(); + case 583: + if (lookahead == 'b') ADVANCE(1653); + END_STATE(); + case 584: + if (lookahead == 'b') ADVANCE(775); + if (lookahead == 'p') ADVANCE(775); + END_STATE(); + case 585: + if (lookahead == 'b') ADVANCE(1217); + if (lookahead == 'c') ADVANCE(1944); + if (lookahead == 'n') ADVANCE(969); + if (lookahead == 'p') ADVANCE(33); + if (lookahead == 't') ADVANCE(1933); + END_STATE(); + case 586: + if (lookahead == 'b') ADVANCE(1758); + END_STATE(); + case 587: + if (lookahead == 'b') ADVANCE(383); + END_STATE(); + case 588: + if (lookahead == 'b') ADVANCE(927); + END_STATE(); + case 589: + if (lookahead == 'b') ADVANCE(1361); + if (lookahead == 'p') ADVANCE(1361); + END_STATE(); + case 590: + if (lookahead == 'b') ADVANCE(1802); + if (lookahead == 'c') ADVANCE(712); + if (lookahead == 'p') ADVANCE(879); + END_STATE(); + case 591: + if (lookahead == 'b') ADVANCE(1802); + if (lookahead == 'p') ADVANCE(879); + END_STATE(); + case 592: + if (lookahead == 'b') ADVANCE(1273); + END_STATE(); + case 593: + if (lookahead == 'b') ADVANCE(1276); + END_STATE(); + case 594: + if (lookahead == 'b') ADVANCE(1719); + END_STATE(); + case 595: + if (lookahead == 'b') ADVANCE(1279); + END_STATE(); + case 596: + if (lookahead == 'b') ADVANCE(1280); + END_STATE(); + case 597: + if (lookahead == 'b') ADVANCE(1294); + END_STATE(); + case 598: + if (lookahead == 'b') ADVANCE(506); + END_STATE(); + case 599: + if (lookahead == 'b') ADVANCE(1285); + END_STATE(); + case 600: + if (lookahead == 'b') ADVANCE(1286); + END_STATE(); + case 601: + if (lookahead == 'b') ADVANCE(1287); + END_STATE(); + case 602: + if (lookahead == 'b') ADVANCE(1805); + if (lookahead == 'p') ADVANCE(1805); + END_STATE(); + case 603: + if (lookahead == 'c') ADVANCE(1987); + END_STATE(); + case 604: + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'e') ADVANCE(1962); + END_STATE(); + case 605: + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'e') ADVANCE(685); + if (lookahead == 'i') ADVANCE(13); + END_STATE(); + case 606: + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(1298); + if (lookahead == 'o') ADVANCE(1531); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 607: + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'g') ADVANCE(1478); + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 't') ADVANCE(382); + END_STATE(); + case 608: + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'i') ADVANCE(1002); + END_STATE(); + case 609: + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'm') ADVANCE(152); + END_STATE(); + case 610: + if (lookahead == 'c') ADVANCE(1987); + if (lookahead == 'x') ADVANCE(614); + END_STATE(); + case 611: + if (lookahead == 'c') ADVANCE(13); + END_STATE(); + case 612: + if (lookahead == 'c') ADVANCE(13); + if (lookahead == 'i') ADVANCE(1599); + END_STATE(); + case 613: + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'l') ADVANCE(780); + if (lookahead == 'p') ADVANCE(194); + if (lookahead == 'r') ADVANCE(1200); + END_STATE(); + case 614: + if (lookahead == 'c') ADVANCE(152); + END_STATE(); + case 615: + if (lookahead == 'c') ADVANCE(424); + if (lookahead == 'd') ADVANCE(1865); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(256); + if (lookahead == 'i') ADVANCE(13); + if (lookahead == 'l') ADVANCE(256); + if (lookahead == 'm') ADVANCE(422); + if (lookahead == 'n') ADVANCE(1108); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'r') ADVANCE(256); + if (lookahead == 's') ADVANCE(644); + if (lookahead == 'u') ADVANCE(1558); + if (lookahead == 'v') ADVANCE(852); + if (lookahead == 'w') ADVANCE(815); + END_STATE(); + case 616: + if (lookahead == 'c') ADVANCE(424); + if (lookahead == 'o') ADVANCE(728); + if (lookahead == 's') ADVANCE(1593); + if (lookahead == 't') ADVANCE(1749); + if (lookahead == 'u') ADVANCE(1557); + if (lookahead == 'v') ADVANCE(852); + if (lookahead == 'w') ADVANCE(815); + END_STATE(); + case 617: + if (lookahead == 'c') ADVANCE(1497); + END_STATE(); + case 618: + if (lookahead == 'c') ADVANCE(2019); + if (lookahead == 'h') ADVANCE(603); + if (lookahead == 't') ADVANCE(1670); + END_STATE(); + case 619: + if (lookahead == 'c') ADVANCE(2019); + if (lookahead == 'o') ADVANCE(1207); + if (lookahead == 't') ADVANCE(1670); + END_STATE(); + case 620: + if (lookahead == 'c') ADVANCE(96); + if (lookahead == 'h') ADVANCE(1515); + if (lookahead == 'i') ADVANCE(1329); + if (lookahead == 'm') ADVANCE(1071); + if (lookahead == 'p') ADVANCE(396); + if (lookahead == 'q') ADVANCE(1786); + if (lookahead == 'u') ADVANCE(571); + END_STATE(); + case 621: + if (lookahead == 'c') ADVANCE(781); + if (lookahead == 'd') ADVANCE(1118); + if (lookahead == 'e') ADVANCE(1330); + if (lookahead == 'n') ADVANCE(979); + if (lookahead == 'q') ADVANCE(1903); + if (lookahead == 'r') ADVANCE(1612); + if (lookahead == 't') ADVANCE(529); + END_STATE(); + case 622: + if (lookahead == 'c') ADVANCE(1912); + END_STATE(); + case 623: + if (lookahead == 'c') ADVANCE(8); + if (lookahead == 's') ADVANCE(1207); + END_STATE(); + case 624: + if (lookahead == 'c') ADVANCE(75); + END_STATE(); + case 625: + if (lookahead == 'c') ADVANCE(2014); + END_STATE(); + case 626: + if (lookahead == 'c') ADVANCE(776); + END_STATE(); + case 627: + if (lookahead == 'c') ADVANCE(1599); + END_STATE(); + case 628: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1312); + END_STATE(); + case 629: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'e') ADVANCE(1321); + if (lookahead == 'i') ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1211); + END_STATE(); + case 630: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'e') ADVANCE(1855); + if (lookahead == 'm') ADVANCE(1161); + if (lookahead == 't') ADVANCE(499); + END_STATE(); + case 631: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'e') ADVANCE(1632); + END_STATE(); + case 632: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(777); + if (lookahead == 't') ADVANCE(1032); + END_STATE(); + case 633: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'g') ADVANCE(1131); + END_STATE(); + case 634: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(13); + END_STATE(); + case 635: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'h') ADVANCE(13); + if (lookahead == 't') ADVANCE(1670); + END_STATE(); + case 636: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(13); + END_STATE(); + case 637: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(1312); + END_STATE(); + case 638: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(1317); + END_STATE(); + case 639: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(1359); + END_STATE(); + case 640: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'l') ADVANCE(429); + if (lookahead == 't') ADVANCE(1670); + END_STATE(); + case 641: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'l') ADVANCE(969); + END_STATE(); + case 642: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'l') ADVANCE(456); + END_STATE(); + case 643: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'l') ADVANCE(456); + if (lookahead == 'o') ADVANCE(1207); + END_STATE(); + case 644: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'q') ADVANCE(696); + END_STATE(); + case 645: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 's') ADVANCE(1114); + END_STATE(); + case 646: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 't') ADVANCE(13); + if (lookahead == 'y') ADVANCE(1337); + END_STATE(); + case 647: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 't') ADVANCE(1567); + END_STATE(); + case 648: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 't') ADVANCE(1670); + END_STATE(); + case 649: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'u') ADVANCE(580); + END_STATE(); + case 650: + if (lookahead == 'c') ADVANCE(1599); + if (lookahead == 'u') ADVANCE(589); + END_STATE(); + case 651: + if (lookahead == 'c') ADVANCE(382); + if (lookahead == 'l') ADVANCE(761); + if (lookahead == 'q') ADVANCE(1923); + if (lookahead == 's') ADVANCE(1032); + END_STATE(); + case 652: + if (lookahead == 'c') ADVANCE(382); + if (lookahead == 'q') ADVANCE(1923); + if (lookahead == 'r') ADVANCE(762); + if (lookahead == 's') ADVANCE(1032); + END_STATE(); + case 653: + if (lookahead == 'c') ADVANCE(1199); + if (lookahead == 'r') ADVANCE(1958); + END_STATE(); + case 654: + if (lookahead == 'c') ADVANCE(1366); + if (lookahead == 'i') ADVANCE(1436); + if (lookahead == 'm') ADVANCE(1112); + if (lookahead == 'p') ADVANCE(13); + if (lookahead == 't') ADVANCE(868); + END_STATE(); + case 655: + if (lookahead == 'c') ADVANCE(468); + if (lookahead == 's') ADVANCE(1904); + if (lookahead == 'u') ADVANCE(74); + END_STATE(); + case 656: + if (lookahead == 'c') ADVANCE(1807); + END_STATE(); + case 657: + if (lookahead == 'c') ADVANCE(1190); + if (lookahead == 'r') ADVANCE(1961); + END_STATE(); + case 658: + if (lookahead == 'c') ADVANCE(1139); + if (lookahead == 's') ADVANCE(1106); + if (lookahead == 'u') ADVANCE(475); + if (lookahead == 'v') ADVANCE(1574); + END_STATE(); + case 659: + if (lookahead == 'c') ADVANCE(1138); + if (lookahead == 'e') ADVANCE(735); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'p') ADVANCE(13); + if (lookahead == 'r') ADVANCE(122); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 660: + if (lookahead == 'c') ADVANCE(1138); + if (lookahead == 'e') ADVANCE(764); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 661: + if (lookahead == 'c') ADVANCE(1911); + END_STATE(); + case 662: + if (lookahead == 'c') ADVANCE(1911); + if (lookahead == 'r') ADVANCE(1599); + END_STATE(); + case 663: + if (lookahead == 'c') ADVANCE(1911); + if (lookahead == 'r') ADVANCE(1635); + END_STATE(); + case 664: + if (lookahead == 'c') ADVANCE(1911); + if (lookahead == 's') ADVANCE(1807); + END_STATE(); + case 665: + if (lookahead == 'c') ADVANCE(1911); + if (lookahead == 's') ADVANCE(1861); + END_STATE(); + case 666: + if (lookahead == 'c') ADVANCE(1526); + if (lookahead == 'd') ADVANCE(1599); + END_STATE(); + case 667: + if (lookahead == 'c') ADVANCE(1944); + END_STATE(); + case 668: + if (lookahead == 'c') ADVANCE(1944); + if (lookahead == 'e') ADVANCE(1330); + if (lookahead == 'g') ADVANCE(1717); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(977); + if (lookahead == 'p') ADVANCE(13); + if (lookahead == 'q') ADVANCE(1903); + if (lookahead == 'r') ADVANCE(1610); + if (lookahead == 't') ADVANCE(76); + END_STATE(); + case 669: + if (lookahead == 'c') ADVANCE(1944); + if (lookahead == 'm') ADVANCE(582); + if (lookahead == 'n') ADVANCE(969); + if (lookahead == 'p') ADVANCE(1296); + if (lookahead == 'r') ADVANCE(1599); + END_STATE(); + case 670: + if (lookahead == 'c') ADVANCE(1944); + if (lookahead == 'm') ADVANCE(1340); + if (lookahead == 'p') ADVANCE(13); + END_STATE(); + case 671: + if (lookahead == 'c') ADVANCE(1944); + if (lookahead == 'n') ADVANCE(969); + if (lookahead == 'r') ADVANCE(1645); + END_STATE(); + case 672: + if (lookahead == 'c') ADVANCE(1944); + if (lookahead == 'p') ADVANCE(69); + if (lookahead == 'r') ADVANCE(812); + END_STATE(); + case 673: + if (lookahead == 'c') ADVANCE(1944); + if (lookahead == 'p') ADVANCE(147); + if (lookahead == 'y') ADVANCE(1257); + END_STATE(); + case 674: + if (lookahead == 'c') ADVANCE(838); + if (lookahead == 't') ADVANCE(13); + END_STATE(); + case 675: + if (lookahead == 'c') ADVANCE(1478); + END_STATE(); + case 676: + if (lookahead == 'c') ADVANCE(1188); + END_STATE(); + case 677: + if (lookahead == 'c') ADVANCE(1197); + END_STATE(); + case 678: + if (lookahead == 'c') ADVANCE(1197); + if (lookahead == 's') ADVANCE(789); + END_STATE(); + case 679: + if (lookahead == 'c') ADVANCE(1189); + if (lookahead == 'n') ADVANCE(365); + END_STATE(); + case 680: + if (lookahead == 'c') ADVANCE(115); + END_STATE(); + case 681: + if (lookahead == 'c') ADVANCE(1065); + END_STATE(); + case 682: + if (lookahead == 'c') ADVANCE(1458); + if (lookahead == 'i') ADVANCE(1366); + END_STATE(); + case 683: + if (lookahead == 'c') ADVANCE(1192); + if (lookahead == 'n') ADVANCE(1188); + END_STATE(); + case 684: + if (lookahead == 'c') ADVANCE(422); + END_STATE(); + case 685: + if (lookahead == 'c') ADVANCE(1193); + END_STATE(); + case 686: + if (lookahead == 'c') ADVANCE(1207); + if (lookahead == 'i') ADVANCE(1763); + if (lookahead == 'p') ADVANCE(907); + END_STATE(); + case 687: + if (lookahead == 'c') ADVANCE(1202); + if (lookahead == 'n') ADVANCE(1772); + END_STATE(); + case 688: + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'r') ADVANCE(1390); + if (lookahead == 't') ADVANCE(382); + END_STATE(); + case 689: + if (lookahead == 'c') ADVANCE(1194); + if (lookahead == 'k') ADVANCE(1957); + END_STATE(); + case 690: + if (lookahead == 'c') ADVANCE(611); + END_STATE(); + case 691: + if (lookahead == 'c') ADVANCE(775); + END_STATE(); + case 692: + if (lookahead == 'c') ADVANCE(1046); + END_STATE(); + case 693: + if (lookahead == 'c') ADVANCE(1652); + END_STATE(); + case 694: + if (lookahead == 'c') ADVANCE(1652); + if (lookahead == 'd') ADVANCE(13); + if (lookahead == 'n') ADVANCE(1914); + END_STATE(); + case 695: + if (lookahead == 'c') ADVANCE(1772); + END_STATE(); + case 696: + if (lookahead == 'c') ADVANCE(1907); + END_STATE(); + case 697: + if (lookahead == 'c') ADVANCE(1806); + END_STATE(); + case 698: + if (lookahead == 'c') ADVANCE(449); + END_STATE(); + case 699: + if (lookahead == 'c') ADVANCE(1082); + END_STATE(); + case 700: + if (lookahead == 'c') ADVANCE(1082); + if (lookahead == 'r') ADVANCE(13); + END_STATE(); + case 701: + if (lookahead == 'c') ADVANCE(915); + END_STATE(); + case 702: + if (lookahead == 'c') ADVANCE(1641); + if (lookahead == 'd') ADVANCE(65); + if (lookahead == 'n') ADVANCE(1922); + END_STATE(); + case 703: + if (lookahead == 'c') ADVANCE(1893); + END_STATE(); + case 704: + if (lookahead == 'c') ADVANCE(1880); + END_STATE(); + case 705: + if (lookahead == 'c') ADVANCE(911); + END_STATE(); + case 706: + if (lookahead == 'c') ADVANCE(1864); + END_STATE(); + case 707: + if (lookahead == 'c') ADVANCE(1140); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'm') ADVANCE(448); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(631); + if (lookahead == 'u') ADVANCE(1195); + END_STATE(); + case 708: + if (lookahead == 'c') ADVANCE(1140); + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(631); + if (lookahead == 'u') ADVANCE(1195); + END_STATE(); + case 709: + if (lookahead == 'c') ADVANCE(1499); + if (lookahead == 'i') ADVANCE(1374); + if (lookahead == 't') ADVANCE(1634); + END_STATE(); + case 710: + if (lookahead == 'c') ADVANCE(1499); + if (lookahead == 't') ADVANCE(1634); + END_STATE(); + case 711: + if (lookahead == 'c') ADVANCE(1201); + END_STATE(); + case 712: + if (lookahead == 'c') ADVANCE(881); + END_STATE(); + case 713: + if (lookahead == 'c') ADVANCE(881); + if (lookahead == 'h') ADVANCE(370); + END_STATE(); + case 714: + if (lookahead == 'c') ADVANCE(488); + END_STATE(); + case 715: + if (lookahead == 'c') ADVANCE(1272); + END_STATE(); + case 716: + if (lookahead == 'c') ADVANCE(1696); + if (lookahead == 'm') ADVANCE(1484); + END_STATE(); + case 717: + if (lookahead == 'c') ADVANCE(492); + END_STATE(); + case 718: + if (lookahead == 'c') ADVANCE(1879); + END_STATE(); + case 719: + if (lookahead == 'c') ADVANCE(1467); + if (lookahead == 'e') ADVANCE(1525); + if (lookahead == 'p') ADVANCE(1669); + if (lookahead == 's') ADVANCE(1124); + END_STATE(); + case 720: + if (lookahead == 'c') ADVANCE(1256); + END_STATE(); + case 721: + if (lookahead == 'c') ADVANCE(495); + END_STATE(); + case 722: + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'm') ADVANCE(1560); + if (lookahead == 'p') ADVANCE(1767); + if (lookahead == 'r') ADVANCE(1413); + if (lookahead == 't') ADVANCE(2010); + END_STATE(); + case 723: + if (lookahead == 'c') ADVANCE(540); + END_STATE(); + case 724: + if (lookahead == 'c') ADVANCE(939); + END_STATE(); + case 725: + if (lookahead == 'd') ADVANCE(1447); + END_STATE(); + case 726: + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1289); + if (lookahead == 'r') ADVANCE(1078); + END_STATE(); + case 727: + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'p') ADVANCE(946); + if (lookahead == 't') ADVANCE(1149); + END_STATE(); + case 728: + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'p') ADVANCE(1297); + if (lookahead == 't') ADVANCE(1153); + END_STATE(); + case 729: + if (lookahead == 'd') ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1078); + END_STATE(); + case 730: + if (lookahead == 'd') ADVANCE(13); + END_STATE(); + case 731: + if (lookahead == 'd') ADVANCE(13); + if (lookahead == 'f') ADVANCE(454); + if (lookahead == 'p') ADVANCE(200); + END_STATE(); + case 732: + if (lookahead == 'd') ADVANCE(13); + if (lookahead == 'l') ADVANCE(775); + END_STATE(); + case 733: + if (lookahead == 'd') ADVANCE(13); + if (lookahead == 'u') ADVANCE(152); + END_STATE(); + case 734: + if (lookahead == 'd') ADVANCE(70); + if (lookahead == 'g') ADVANCE(107); + END_STATE(); + case 735: + if (lookahead == 'd') ADVANCE(575); + if (lookahead == 'i') ADVANCE(870); + END_STATE(); + case 736: + if (lookahead == 'd') ADVANCE(1293); + END_STATE(); + case 737: + if (lookahead == 'd') ADVANCE(364); + END_STATE(); + case 738: + if (lookahead == 'd') ADVANCE(340); + END_STATE(); + case 739: + if (lookahead == 'd') ADVANCE(330); + END_STATE(); + case 740: + if (lookahead == 'd') ADVANCE(382); + END_STATE(); + case 741: + if (lookahead == 'd') ADVANCE(603); + if (lookahead == 'r') ADVANCE(94); + END_STATE(); + case 742: + if (lookahead == 'd') ADVANCE(139); + END_STATE(); + case 743: + if (lookahead == 'd') ADVANCE(55); + END_STATE(); + case 744: + if (lookahead == 'd') ADVANCE(854); + if (lookahead == 'i') ADVANCE(1482); + END_STATE(); + case 745: + if (lookahead == 'd') ADVANCE(106); + END_STATE(); + case 746: + if (lookahead == 'd') ADVANCE(429); + END_STATE(); + case 747: + if (lookahead == 'd') ADVANCE(447); + END_STATE(); + case 748: + if (lookahead == 'd') ADVANCE(197); + END_STATE(); + case 749: + if (lookahead == 'd') ADVANCE(119); + END_STATE(); + case 750: + if (lookahead == 'd') ADVANCE(1115); + END_STATE(); + case 751: + if (lookahead == 'd') ADVANCE(1115); + if (lookahead == 'l') ADVANCE(1305); + END_STATE(); + case 752: + if (lookahead == 'd') ADVANCE(775); + END_STATE(); + case 753: + if (lookahead == 'd') ADVANCE(1919); + END_STATE(); + case 754: + if (lookahead == 'd') ADVANCE(1919); + if (lookahead == 'p') ADVANCE(1521); + END_STATE(); + case 755: + if (lookahead == 'd') ADVANCE(1073); + END_STATE(); + case 756: + if (lookahead == 'd') ADVANCE(1073); + if (lookahead == 'm') ADVANCE(1560); + if (lookahead == 'n') ADVANCE(201); + END_STATE(); + case 757: + if (lookahead == 'd') ADVANCE(1798); + if (lookahead == 'u') ADVANCE(1042); + END_STATE(); + case 758: + if (lookahead == 'd') ADVANCE(790); + END_STATE(); + case 759: + if (lookahead == 'd') ADVANCE(1761); + END_STATE(); + case 760: + if (lookahead == 'd') ADVANCE(1854); + END_STATE(); + case 761: + if (lookahead == 'd') ADVANCE(1042); + END_STATE(); + case 762: + if (lookahead == 'd') ADVANCE(1042); + if (lookahead == 'u') ADVANCE(1798); + END_STATE(); + case 763: + if (lookahead == 'd') ADVANCE(1148); + if (lookahead == 'n') ADVANCE(1883); + END_STATE(); + case 764: + if (lookahead == 'd') ADVANCE(994); + END_STATE(); + case 765: + if (lookahead == 'd') ADVANCE(1440); + if (lookahead == 'u') ADVANCE(1526); + END_STATE(); + case 766: + if (lookahead == 'd') ADVANCE(859); + if (lookahead == 'p') ADVANCE(945); + END_STATE(); + case 767: + if (lookahead == 'd') ADVANCE(855); + if (lookahead == 'r') ADVANCE(13); + END_STATE(); + case 768: + if (lookahead == 'd') ADVANCE(872); + END_STATE(); + case 769: + if (lookahead == 'd') ADVANCE(1463); + END_STATE(); + case 770: + if (lookahead == 'd') ADVANCE(1112); + END_STATE(); + case 771: + if (lookahead == 'd') ADVANCE(1112); + if (lookahead == 'i') ADVANCE(1207); + END_STATE(); + case 772: + if (lookahead == 'd') ADVANCE(874); + END_STATE(); + case 773: + if (lookahead == 'd') ADVANCE(494); + if (lookahead == 'e') ADVANCE(1542); + if (lookahead == 'l') ADVANCE(515); + if (lookahead == 'p') ADVANCE(85); + if (lookahead == 'r') ADVANCE(522); + if (lookahead == 'v') ADVANCE(852); + if (lookahead == 'w') ADVANCE(774); + END_STATE(); + case 774: + if (lookahead == 'e') ADVANCE(730); + END_STATE(); + case 775: + if (lookahead == 'e') ADVANCE(13); + END_STATE(); + case 776: + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'k') ADVANCE(811); + END_STATE(); + case 777: + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'l') ADVANCE(1121); + if (lookahead == 'p') ADVANCE(501); + END_STATE(); + case 778: + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'r') ADVANCE(578); + END_STATE(); + case 779: + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 's') ADVANCE(1213); + END_STATE(); + case 780: + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 't') ADVANCE(124); + END_STATE(); + case 781: + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'u') ADVANCE(1856); + END_STATE(); + case 782: + if (lookahead == 'e') ADVANCE(291); + END_STATE(); + case 783: + if (lookahead == 'e') ADVANCE(162); + END_STATE(); + case 784: + if (lookahead == 'e') ADVANCE(1962); + END_STATE(); + case 785: + if (lookahead == 'e') ADVANCE(1962); + if (lookahead == 'v') ADVANCE(587); + END_STATE(); + case 786: + if (lookahead == 'e') ADVANCE(954); + if (lookahead == 'p') ADVANCE(1035); + END_STATE(); + case 787: + if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'o') ADVANCE(1807); + END_STATE(); + case 788: + if (lookahead == 'e') ADVANCE(84); + if (lookahead == 'l') ADVANCE(1264); + if (lookahead == 'r') ADVANCE(577); + END_STATE(); + case 789: + if (lookahead == 'e') ADVANCE(288); + END_STATE(); + case 790: + if (lookahead == 'e') ADVANCE(37); + END_STATE(); + case 791: + if (lookahead == 'e') ADVANCE(16); + END_STATE(); + case 792: + if (lookahead == 'e') ADVANCE(10); + END_STATE(); + case 793: + if (lookahead == 'e') ADVANCE(292); + END_STATE(); + case 794: + if (lookahead == 'e') ADVANCE(290); + END_STATE(); + case 795: + if (lookahead == 'e') ADVANCE(43); + END_STATE(); + case 796: + if (lookahead == 'e') ADVANCE(553); + END_STATE(); + case 797: + if (lookahead == 'e') ADVANCE(1343); + END_STATE(); + case 798: + if (lookahead == 'e') ADVANCE(17); + END_STATE(); + case 799: + if (lookahead == 'e') ADVANCE(317); + END_STATE(); + case 800: + if (lookahead == 'e') ADVANCE(348); + END_STATE(); + case 801: + if (lookahead == 'e') ADVANCE(104); + END_STATE(); + case 802: + if (lookahead == 'e') ADVANCE(285); + END_STATE(); + case 803: + if (lookahead == 'e') ADVANCE(375); + END_STATE(); + case 804: + if (lookahead == 'e') ADVANCE(20); + END_STATE(); + case 805: + if (lookahead == 'e') ADVANCE(102); + END_STATE(); + case 806: + if (lookahead == 'e') ADVANCE(358); + END_STATE(); + case 807: + if (lookahead == 'e') ADVANCE(1599); + END_STATE(); + case 808: + if (lookahead == 'e') ADVANCE(382); + if (lookahead == 'p') ADVANCE(78); + if (lookahead == 's') ADVANCE(382); + END_STATE(); + case 809: + if (lookahead == 'e') ADVANCE(1366); + END_STATE(); + case 810: + if (lookahead == 'e') ADVANCE(1685); + if (lookahead == 'i') ADVANCE(679); + END_STATE(); + case 811: + if (lookahead == 'e') ADVANCE(1807); + END_STATE(); + case 812: + if (lookahead == 'e') ADVANCE(1807); + if (lookahead == 'o') ADVANCE(1353); + END_STATE(); + case 813: + if (lookahead == 'e') ADVANCE(280); + END_STATE(); + case 814: + if (lookahead == 'e') ADVANCE(2003); + END_STATE(); + case 815: + if (lookahead == 'e') ADVANCE(764); + END_STATE(); + case 816: + if (lookahead == 'e') ADVANCE(1701); + if (lookahead == 'i') ADVANCE(687); + if (lookahead == 'k') ADVANCE(425); + if (lookahead == 'o') ADVANCE(1601); + END_STATE(); + case 817: + if (lookahead == 'e') ADVANCE(955); + END_STATE(); + case 818: + if (lookahead == 'e') ADVANCE(178); + END_STATE(); + case 819: + if (lookahead == 'e') ADVANCE(319); + END_STATE(); + case 820: + if (lookahead == 'e') ADVANCE(366); + END_STATE(); + case 821: + if (lookahead == 'e') ADVANCE(1778); + END_STATE(); + case 822: + if (lookahead == 'e') ADVANCE(265); + END_STATE(); + case 823: + if (lookahead == 'e') ADVANCE(1581); + END_STATE(); + case 824: + if (lookahead == 'e') ADVANCE(308); + END_STATE(); + case 825: + if (lookahead == 'e') ADVANCE(765); + END_STATE(); + case 826: + if (lookahead == 'e') ADVANCE(396); + END_STATE(); + case 827: + if (lookahead == 'e') ADVANCE(396); + if (lookahead == 'i') ADVANCE(1312); + END_STATE(); + case 828: + if (lookahead == 'e') ADVANCE(959); + END_STATE(); + case 829: + if (lookahead == 'e') ADVANCE(187); + END_STATE(); + case 830: + if (lookahead == 'e') ADVANCE(289); + END_STATE(); + case 831: + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'i') ADVANCE(1666); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 832: + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 833: + if (lookahead == 'e') ADVANCE(1999); + END_STATE(); + case 834: + if (lookahead == 'e') ADVANCE(1585); + if (lookahead == 'v') ADVANCE(852); + if (lookahead == 'w') ADVANCE(815); + END_STATE(); + case 835: + if (lookahead == 'e') ADVANCE(950); + END_STATE(); + case 836: + if (lookahead == 'e') ADVANCE(190); + END_STATE(); + case 837: + if (lookahead == 'e') ADVANCE(1587); + END_STATE(); + case 838: + if (lookahead == 'e') ADVANCE(1188); + END_STATE(); + case 839: + if (lookahead == 'e') ADVANCE(1356); + END_STATE(); + case 840: + if (lookahead == 'e') ADVANCE(1586); + END_STATE(); + case 841: + if (lookahead == 'e') ADVANCE(1828); + END_STATE(); + case 842: + if (lookahead == 'e') ADVANCE(1752); + END_STATE(); + case 843: + if (lookahead == 'e') ADVANCE(1763); + END_STATE(); + case 844: + if (lookahead == 'e') ADVANCE(1846); + END_STATE(); + case 845: + if (lookahead == 'e') ADVANCE(1207); + END_STATE(); + case 846: + if (lookahead == 'e') ADVANCE(737); + END_STATE(); + case 847: + if (lookahead == 'e') ADVANCE(548); + END_STATE(); + case 848: + if (lookahead == 'e') ADVANCE(739); + END_STATE(); + case 849: + if (lookahead == 'e') ADVANCE(1353); + END_STATE(); + case 850: + if (lookahead == 'e') ADVANCE(611); + END_STATE(); + case 851: + if (lookahead == 'e') ADVANCE(742); + END_STATE(); + case 852: + if (lookahead == 'e') ADVANCE(775); + END_STATE(); + case 853: + if (lookahead == 'e') ADVANCE(759); + END_STATE(); + case 854: + if (lookahead == 'e') ADVANCE(1607); + END_STATE(); + case 855: + if (lookahead == 'e') ADVANCE(1758); + END_STATE(); + case 856: + if (lookahead == 'e') ADVANCE(1525); + if (lookahead == 'k') ADVANCE(420); + if (lookahead == 'n') ADVANCE(1493); + if (lookahead == 'p') ADVANCE(1041); + if (lookahead == 'r') ADVANCE(142); + if (lookahead == 's') ADVANCE(1087); + if (lookahead == 't') ADVANCE(1058); + END_STATE(); + case 857: + if (lookahead == 'e') ADVANCE(1525); + if (lookahead == 'p') ADVANCE(1040); + END_STATE(); + case 858: + if (lookahead == 'e') ADVANCE(1769); + END_STATE(); + case 859: + if (lookahead == 'e') ADVANCE(1243); + END_STATE(); + case 860: + if (lookahead == 'e') ADVANCE(718); + END_STATE(); + case 861: + if (lookahead == 'e') ADVANCE(1407); + END_STATE(); + case 862: + if (lookahead == 'e') ADVANCE(1800); + END_STATE(); + case 863: + if (lookahead == 'e') ADVANCE(1852); + END_STATE(); + case 864: + if (lookahead == 'e') ADVANCE(1771); + END_STATE(); + case 865: + if (lookahead == 'e') ADVANCE(1830); + END_STATE(); + case 866: + if (lookahead == 'e') ADVANCE(431); + END_STATE(); + case 867: + if (lookahead == 'e') ADVANCE(791); + END_STATE(); + case 868: + if (lookahead == 'e') ADVANCE(1379); + END_STATE(); + case 869: + if (lookahead == 'e') ADVANCE(1270); + END_STATE(); + case 870: + if (lookahead == 'e') ADVANCE(1647); + END_STATE(); + case 871: + if (lookahead == 'e') ADVANCE(469); + END_STATE(); + case 872: + if (lookahead == 'e') ADVANCE(1761); + END_STATE(); + case 873: + if (lookahead == 'e') ADVANCE(453); + END_STATE(); + case 874: + if (lookahead == 'e') ADVANCE(1762); + END_STATE(); + case 875: + if (lookahead == 'e') ADVANCE(1817); + if (lookahead == 'i') ADVANCE(1312); + if (lookahead == 'u') ADVANCE(2011); + END_STATE(); + case 876: + if (lookahead == 'e') ADVANCE(1613); + END_STATE(); + case 877: + if (lookahead == 'e') ADVANCE(1720); + END_STATE(); + case 878: + if (lookahead == 'e') ADVANCE(1853); + END_STATE(); + case 879: + if (lookahead == 'e') ADVANCE(1684); + END_STATE(); + case 880: + if (lookahead == 'e') ADVANCE(1860); + END_STATE(); + case 881: + if (lookahead == 'e') ADVANCE(853); + END_STATE(); + case 882: + if (lookahead == 'e') ADVANCE(798); + if (lookahead == 'r') ADVANCE(1184); + END_STATE(); + case 883: + if (lookahead == 'e') ADVANCE(1600); + END_STATE(); + case 884: + if (lookahead == 'e') ADVANCE(1694); + if (lookahead == 'i') ADVANCE(1366); + END_STATE(); + case 885: + if (lookahead == 'e') ADVANCE(1644); + END_STATE(); + case 886: + if (lookahead == 'e') ADVANCE(1722); + END_STATE(); + case 887: + if (lookahead == 'e') ADVANCE(1742); + END_STATE(); + case 888: + if (lookahead == 'e') ADVANCE(803); + END_STATE(); + case 889: + if (lookahead == 'e') ADVANCE(1657); + END_STATE(); + case 890: + if (lookahead == 'e') ADVANCE(929); + END_STATE(); + case 891: + if (lookahead == 'e') ADVANCE(1654); + END_STATE(); + case 892: + if (lookahead == 'e') ADVANCE(1617); + END_STATE(); + case 893: + if (lookahead == 'e') ADVANCE(1662); + END_STATE(); + case 894: + if (lookahead == 'e') ADVANCE(1620); + END_STATE(); + case 895: + if (lookahead == 'e') ADVANCE(960); + END_STATE(); + case 896: + if (lookahead == 'e') ADVANCE(1964); + if (lookahead == 'i') ADVANCE(1007); + END_STATE(); + case 897: + if (lookahead == 'e') ADVANCE(1277); + END_STATE(); + case 898: + if (lookahead == 'e') ADVANCE(374); + END_STATE(); + case 899: + if (lookahead == 'e') ADVANCE(747); + END_STATE(); + case 900: + if (lookahead == 'e') ADVANCE(527); + if (lookahead == 'w') ADVANCE(527); + END_STATE(); + case 901: + if (lookahead == 'e') ADVANCE(957); + END_STATE(); + case 902: + if (lookahead == 'e') ADVANCE(957); + if (lookahead == 'l') ADVANCE(13); + if (lookahead == 't') ADVANCE(210); + END_STATE(); + case 903: + if (lookahead == 'e') ADVANCE(849); + END_STATE(); + case 904: + if (lookahead == 'e') ADVANCE(1789); + END_STATE(); + case 905: + if (lookahead == 'e') ADVANCE(750); + END_STATE(); + case 906: + if (lookahead == 'e') ADVANCE(1342); + END_STATE(); + case 907: + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'o') ADVANCE(1423); + END_STATE(); + case 908: + if (lookahead == 'e') ADVANCE(516); + END_STATE(); + case 909: + if (lookahead == 'e') ADVANCE(1578); + END_STATE(); + case 910: + if (lookahead == 'e') ADVANCE(1682); + END_STATE(); + case 911: + if (lookahead == 'e') ADVANCE(1875); + END_STATE(); + case 912: + if (lookahead == 'e') ADVANCE(1875); + if (lookahead == 't') ADVANCE(382); + END_STATE(); + case 913: + if (lookahead == 'e') ADVANCE(598); + END_STATE(); + case 914: + if (lookahead == 'e') ADVANCE(961); + END_STATE(); + case 915: + if (lookahead == 'e') ADVANCE(768); + END_STATE(); + case 916: + if (lookahead == 'e') ADVANCE(704); + END_STATE(); + case 917: + if (lookahead == 'e') ADVANCE(1779); + END_STATE(); + case 918: + if (lookahead == 'e') ADVANCE(1565); + END_STATE(); + case 919: + if (lookahead == 'e') ADVANCE(962); + END_STATE(); + case 920: + if (lookahead == 'e') ADVANCE(1681); + if (lookahead == 'n') ADVANCE(313); + END_STATE(); + case 921: + if (lookahead == 'e') ADVANCE(706); + END_STATE(); + case 922: + if (lookahead == 'e') ADVANCE(1433); + END_STATE(); + case 923: + if (lookahead == 'e') ADVANCE(963); + END_STATE(); + case 924: + if (lookahead == 'e') ADVANCE(964); + END_STATE(); + case 925: + if (lookahead == 'e') ADVANCE(1416); + END_STATE(); + case 926: + if (lookahead == 'e') ADVANCE(965); + if (lookahead == 'o') ADVANCE(1393); + END_STATE(); + case 927: + if (lookahead == 'e') ADVANCE(1700); + END_STATE(); + case 928: + if (lookahead == 'e') ADVANCE(958); + END_STATE(); + case 929: + if (lookahead == 'e') ADVANCE(1894); + END_STATE(); + case 930: + if (lookahead == 'e') ADVANCE(1747); + END_STATE(); + case 931: + if (lookahead == 'e') ADVANCE(1401); + END_STATE(); + case 932: + if (lookahead == 'e') ADVANCE(552); + END_STATE(); + case 933: + if (lookahead == 'e') ADVANCE(1311); + END_STATE(); + case 934: + if (lookahead == 'e') ADVANCE(1009); + END_STATE(); + case 935: + if (lookahead == 'e') ADVANCE(1744); + END_STATE(); + case 936: + if (lookahead == 'e') ADVANCE(1881); + END_STATE(); + case 937: + if (lookahead == 'e') ADVANCE(1160); + END_STATE(); + case 938: + if (lookahead == 'e') ADVANCE(1727); + END_STATE(); + case 939: + if (lookahead == 'e') ADVANCE(772); + END_STATE(); + case 940: + if (lookahead == 'e') ADVANCE(551); + END_STATE(); + case 941: + if (lookahead == 'e') ADVANCE(1376); + END_STATE(); + case 942: + if (lookahead == 'e') ADVANCE(556); + END_STATE(); + case 943: + if (lookahead == 'e') ADVANCE(724); + END_STATE(); + case 944: + if (lookahead == 'e') ADVANCE(968); + END_STATE(); + case 945: + if (lookahead == 'f') ADVANCE(13); + END_STATE(); + case 946: + if (lookahead == 'f') ADVANCE(13); + if (lookahead == 'l') ADVANCE(1914); + END_STATE(); + case 947: + if (lookahead == 'f') ADVANCE(13); + if (lookahead == 'r') ADVANCE(1473); + END_STATE(); + case 948: + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(13); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 's') ADVANCE(627); + END_STATE(); + case 949: + if (lookahead == 'f') ADVANCE(1599); + if (lookahead == 'i') ADVANCE(1366); + if (lookahead == 'o') ADVANCE(1529); + if (lookahead == 'p') ADVANCE(1669); + if (lookahead == 's') ADVANCE(627); + if (lookahead == 'u') ADVANCE(451); + END_STATE(); + case 950: + if (lookahead == 'f') ADVANCE(1807); + END_STATE(); + case 951: + if (lookahead == 'f') ADVANCE(956); + END_STATE(); + case 952: + if (lookahead == 'f') ADVANCE(1810); + if (lookahead == 's') ADVANCE(1755); + END_STATE(); + case 953: + if (lookahead == 'f') ADVANCE(1833); + if (lookahead == 'l') ADVANCE(81); + if (lookahead == 'p') ADVANCE(945); + END_STATE(); + case 954: + if (lookahead == 'f') ADVANCE(1774); + if (lookahead == 'p') ADVANCE(1032); + END_STATE(); + case 955: + if (lookahead == 'f') ADVANCE(1898); + END_STATE(); + case 956: + if (lookahead == 'f') ADVANCE(930); + END_STATE(); + case 957: + if (lookahead == 'f') ADVANCE(1838); + END_STATE(); + case 958: + if (lookahead == 'f') ADVANCE(1852); + END_STATE(); + case 959: + if (lookahead == 'f') ADVANCE(1517); + END_STATE(); + case 960: + if (lookahead == 'f') ADVANCE(1841); + if (lookahead == 's') ADVANCE(1760); + END_STATE(); + case 961: + if (lookahead == 'f') ADVANCE(1819); + END_STATE(); + case 962: + if (lookahead == 'f') ADVANCE(1821); + END_STATE(); + case 963: + if (lookahead == 'f') ADVANCE(1837); + END_STATE(); + case 964: + if (lookahead == 'f') ADVANCE(1877); + END_STATE(); + case 965: + if (lookahead == 'f') ADVANCE(1825); + END_STATE(); + case 966: + if (lookahead == 'f') ADVANCE(1477); + END_STATE(); + case 967: + if (lookahead == 'f') ADVANCE(1116); + END_STATE(); + case 968: + if (lookahead == 'f') ADVANCE(1897); + END_STATE(); + case 969: + if (lookahead == 'g') ADVANCE(13); + END_STATE(); + case 970: + if (lookahead == 'g') ADVANCE(13); + if (lookahead == 's') ADVANCE(1526); + END_STATE(); + case 971: + if (lookahead == 'g') ADVANCE(13); + if (lookahead == 't') ADVANCE(210); + END_STATE(); + case 972: + if (lookahead == 'g') ADVANCE(616); + END_STATE(); + case 973: + if (lookahead == 'g') ADVANCE(98); + END_STATE(); + case 974: + if (lookahead == 'g') ADVANCE(98); + if (lookahead == 'i') ADVANCE(1366); + END_STATE(); + case 975: + if (lookahead == 'g') ADVANCE(346); + END_STATE(); + case 976: + if (lookahead == 'g') ADVANCE(365); + END_STATE(); + case 977: + if (lookahead == 'g') ADVANCE(101); + END_STATE(); + case 978: + if (lookahead == 'g') ADVANCE(1310); + END_STATE(); + case 979: + if (lookahead == 'g') ADVANCE(225); + END_STATE(); + case 980: + if (lookahead == 'g') ADVANCE(382); + END_STATE(); + case 981: + if (lookahead == 'g') ADVANCE(1048); + END_STATE(); + case 982: + if (lookahead == 'g') ADVANCE(2002); + END_STATE(); + case 983: + if (lookahead == 'g') ADVANCE(995); + if (lookahead == 'l') ADVANCE(844); + if (lookahead == 'r') ADVANCE(1599); + if (lookahead == 's') ADVANCE(1036); + END_STATE(); + case 984: + if (lookahead == 'g') ADVANCE(995); + if (lookahead == 'r') ADVANCE(1599); + END_STATE(); + case 985: + if (lookahead == 'g') ADVANCE(995); + if (lookahead == 'r') ADVANCE(1599); + if (lookahead == 's') ADVANCE(1038); + END_STATE(); + case 986: + if (lookahead == 'g') ADVANCE(1439); + END_STATE(); + case 987: + if (lookahead == 'g') ADVANCE(1478); + if (lookahead == 'p') ADVANCE(945); + END_STATE(); + case 988: + if (lookahead == 'g') ADVANCE(1478); + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 't') ADVANCE(382); + END_STATE(); + case 989: + if (lookahead == 'g') ADVANCE(1319); + END_STATE(); + case 990: + if (lookahead == 'g') ADVANCE(1037); + END_STATE(); + case 991: + if (lookahead == 'g') ADVANCE(1207); + if (lookahead == 'i') ADVANCE(1239); + if (lookahead == 'l') ADVANCE(969); + if (lookahead == 'r') ADVANCE(1180); + END_STATE(); + case 992: + if (lookahead == 'g') ADVANCE(525); + if (lookahead == 's') ADVANCE(1863); + if (lookahead == 'w') ADVANCE(344); + END_STATE(); + case 993: + if (lookahead == 'g') ADVANCE(1353); + END_STATE(); + case 994: + if (lookahead == 'g') ADVANCE(775); + END_STATE(); + case 995: + if (lookahead == 'g') ADVANCE(807); + END_STATE(); + case 996: + if (lookahead == 'g') ADVANCE(811); + END_STATE(); + case 997: + if (lookahead == 'g') ADVANCE(1726); + END_STATE(); + case 998: + if (lookahead == 'g') ADVANCE(1726); + if (lookahead == 'i') ADVANCE(1366); + if (lookahead == 't') ADVANCE(1507); + END_STATE(); + case 999: + if (lookahead == 'g') ADVANCE(1624); + END_STATE(); + case 1000: + if (lookahead == 'g') ADVANCE(1051); + if (lookahead == 'n') ADVANCE(969); + if (lookahead == 's') ADVANCE(1150); + END_STATE(); + case 1001: + if (lookahead == 'g') ADVANCE(769); + END_STATE(); + case 1002: + if (lookahead == 'g') ADVANCE(1633); + END_STATE(); + case 1003: + if (lookahead == 'g') ADVANCE(1047); + END_STATE(); + case 1004: + if (lookahead == 'g') ADVANCE(1827); + END_STATE(); + case 1005: + if (lookahead == 'g') ADVANCE(1827); + if (lookahead == 'l') ADVANCE(821); + END_STATE(); + case 1006: + if (lookahead == 'g') ADVANCE(1827); + if (lookahead == 'q') ADVANCE(1004); + END_STATE(); + case 1007: + if (lookahead == 'g') ADVANCE(1052); + END_STATE(); + case 1008: + if (lookahead == 'g') ADVANCE(1345); + if (lookahead == 'm') ADVANCE(99); + END_STATE(); + case 1009: + if (lookahead == 'g') ADVANCE(1677); + END_STATE(); + case 1010: + if (lookahead == 'g') ADVANCE(1677); + if (lookahead == 'r') ADVANCE(1794); + END_STATE(); + case 1011: + if (lookahead == 'g') ADVANCE(1053); + END_STATE(); + case 1012: + if (lookahead == 'g') ADVANCE(1055); + END_STATE(); + case 1013: + if (lookahead == 'g') ADVANCE(1056); + END_STATE(); + case 1014: + if (lookahead == 'g') ADVANCE(1057); + END_STATE(); + case 1015: + if (lookahead == 'g') ADVANCE(1256); + END_STATE(); + case 1016: + if (lookahead == 'g') ADVANCE(1059); + END_STATE(); + case 1017: + if (lookahead == 'g') ADVANCE(889); + if (lookahead == 'r') ADVANCE(698); + END_STATE(); + case 1018: + if (lookahead == 'g') ADVANCE(1060); + END_STATE(); + case 1019: + if (lookahead == 'g') ADVANCE(1061); + END_STATE(); + case 1020: + if (lookahead == 'g') ADVANCE(1278); + END_STATE(); + case 1021: + if (lookahead == 'g') ADVANCE(1050); + END_STATE(); + case 1022: + if (lookahead == 'g') ADVANCE(1280); + END_STATE(); + case 1023: + if (lookahead == 'g') ADVANCE(1281); + END_STATE(); + case 1024: + if (lookahead == 'g') ADVANCE(1282); + END_STATE(); + case 1025: + if (lookahead == 'g') ADVANCE(1295); + END_STATE(); + case 1026: + if (lookahead == 'g') ADVANCE(1283); + END_STATE(); + case 1027: + if (lookahead == 'g') ADVANCE(1284); + END_STATE(); + case 1028: + if (lookahead == 'g') ADVANCE(345); + END_STATE(); + case 1029: + if (lookahead == 'g') ADVANCE(543); + END_STATE(); + case 1030: + if (lookahead == 'g') ADVANCE(1070); + END_STATE(); + case 1031: + if (lookahead == 'h') ADVANCE(730); + END_STATE(); + case 1032: + if (lookahead == 'h') ADVANCE(13); + END_STATE(); + case 1033: + if (lookahead == 'h') ADVANCE(152); + END_STATE(); + case 1034: + if (lookahead == 'h') ADVANCE(365); + END_STATE(); + case 1035: + if (lookahead == 'h') ADVANCE(382); + END_STATE(); + case 1036: + if (lookahead == 'h') ADVANCE(210); + END_STATE(); + case 1037: + if (lookahead == 'h') ADVANCE(1807); + END_STATE(); + case 1038: + if (lookahead == 'h') ADVANCE(1957); + END_STATE(); + case 1039: + if (lookahead == 'h') ADVANCE(603); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 1040: + if (lookahead == 'h') ADVANCE(1072); + END_STATE(); + case 1041: + if (lookahead == 'h') ADVANCE(1072); + if (lookahead == 'i') ADVANCE(13); + if (lookahead == 'r') ADVANCE(1506); + END_STATE(); + case 1042: + if (lookahead == 'h') ADVANCE(396); + END_STATE(); + case 1043: + if (lookahead == 'h') ADVANCE(1526); + END_STATE(); + case 1044: + if (lookahead == 'h') ADVANCE(1188); + END_STATE(); + case 1045: + if (lookahead == 'h') ADVANCE(1188); + if (lookahead == 'r') ADVANCE(169); + END_STATE(); + case 1046: + if (lookahead == 'h') ADVANCE(775); + END_STATE(); + case 1047: + if (lookahead == 'h') ADVANCE(1898); + END_STATE(); + case 1048: + if (lookahead == 'h') ADVANCE(1814); + END_STATE(); + case 1049: + if (lookahead == 'h') ADVANCE(406); + END_STATE(); + case 1050: + if (lookahead == 'h') ADVANCE(1852); + END_STATE(); + case 1051: + if (lookahead == 'h') ADVANCE(1816); + END_STATE(); + case 1052: + if (lookahead == 'h') ADVANCE(1841); + END_STATE(); + case 1053: + if (lookahead == 'h') ADVANCE(1829); + END_STATE(); + case 1054: + if (lookahead == 'h') ADVANCE(1075); + END_STATE(); + case 1055: + if (lookahead == 'h') ADVANCE(1820); + END_STATE(); + case 1056: + if (lookahead == 'h') ADVANCE(1822); + END_STATE(); + case 1057: + if (lookahead == 'h') ADVANCE(1837); + END_STATE(); + case 1058: + if (lookahead == 'h') ADVANCE(841); + if (lookahead == 'r') ADVANCE(1183); + END_STATE(); + case 1059: + if (lookahead == 'h') ADVANCE(1824); + END_STATE(); + case 1060: + if (lookahead == 'h') ADVANCE(1826); + END_STATE(); + case 1061: + if (lookahead == 'h') ADVANCE(1823); + END_STATE(); + case 1062: + if (lookahead == 'h') ADVANCE(917); + END_STATE(); + case 1063: + if (lookahead == 'h') ADVANCE(1109); + END_STATE(); + case 1064: + if (lookahead == 'h') ADVANCE(849); + END_STATE(); + case 1065: + if (lookahead == 'h') ADVANCE(966); + END_STATE(); + case 1066: + if (lookahead == 'h') ADVANCE(1648); + if (lookahead == 'i') ADVANCE(1346); + if (lookahead == 'r') ADVANCE(1080); + END_STATE(); + case 1067: + if (lookahead == 'h') ADVANCE(871); + END_STATE(); + case 1068: + if (lookahead == 'h') ADVANCE(1133); + END_STATE(); + case 1069: + if (lookahead == 'h') ADVANCE(1729); + END_STATE(); + case 1070: + if (lookahead == 'h') ADVANCE(1897); + END_STATE(); + case 1071: + if (lookahead == 'i') ADVANCE(730); + END_STATE(); + case 1072: + if (lookahead == 'i') ADVANCE(13); + END_STATE(); + case 1073: + if (lookahead == 'i') ADVANCE(152); + END_STATE(); + case 1074: + if (lookahead == 'i') ADVANCE(136); + END_STATE(); + case 1075: + if (lookahead == 'i') ADVANCE(679); + END_STATE(); + case 1076: + if (lookahead == 'i') ADVANCE(1985); + if (lookahead == 'o') ADVANCE(1067); + END_STATE(); + case 1077: + if (lookahead == 'i') ADVANCE(2001); + END_STATE(); + case 1078: + if (lookahead == 'i') ADVANCE(130); + END_STATE(); + case 1079: + if (lookahead == 'i') ADVANCE(156); + END_STATE(); + case 1080: + if (lookahead == 'i') ADVANCE(227); + END_STATE(); + case 1081: + if (lookahead == 'i') ADVANCE(141); + END_STATE(); + case 1082: + if (lookahead == 'i') ADVANCE(1599); + END_STATE(); + case 1083: + if (lookahead == 'i') ADVANCE(1599); + if (lookahead == 'r') ADVANCE(1453); + END_STATE(); + case 1084: + if (lookahead == 'i') ADVANCE(1366); + END_STATE(); + case 1085: + if (lookahead == 'i') ADVANCE(1366); + if (lookahead == 'n') ADVANCE(1807); + END_STATE(); + case 1086: + if (lookahead == 'i') ADVANCE(210); + if (lookahead == 'm') ADVANCE(1344); + if (lookahead == 'o') ADVANCE(1387); + END_STATE(); + case 1087: + if (lookahead == 'i') ADVANCE(989); + if (lookahead == 'u') ADVANCE(602); + END_STATE(); + case 1088: + if (lookahead == 'i') ADVANCE(1240); + END_STATE(); + case 1089: + if (lookahead == 'i') ADVANCE(155); + END_STATE(); + case 1090: + if (lookahead == 'i') ADVANCE(1807); + END_STATE(); + case 1091: + if (lookahead == 'i') ADVANCE(1957); + END_STATE(); + case 1092: + if (lookahead == 'i') ADVANCE(725); + END_STATE(); + case 1093: + if (lookahead == 'i') ADVANCE(725); + if (lookahead == 'o') ADVANCE(1941); + END_STATE(); + case 1094: + if (lookahead == 'i') ADVANCE(1354); + END_STATE(); + case 1095: + if (lookahead == 'i') ADVANCE(211); + END_STATE(); + case 1096: + if (lookahead == 'i') ADVANCE(1801); + END_STATE(); + case 1097: + if (lookahead == 'i') ADVANCE(1801); + if (lookahead == 'p') ADVANCE(1481); + END_STATE(); + case 1098: + if (lookahead == 'i') ADVANCE(106); + END_STATE(); + case 1099: + if (lookahead == 'i') ADVANCE(1236); + END_STATE(); + case 1100: + if (lookahead == 'i') ADVANCE(1526); + END_STATE(); + case 1101: + if (lookahead == 'i') ADVANCE(969); + END_STATE(); + case 1102: + if (lookahead == 'i') ADVANCE(969); + if (lookahead == 'l') ADVANCE(1101); + END_STATE(); + case 1103: + if (lookahead == 'i') ADVANCE(951); + END_STATE(); + case 1104: + if (lookahead == 'i') ADVANCE(1312); + END_STATE(); + case 1105: + if (lookahead == 'i') ADVANCE(1312); + if (lookahead == 'l') ADVANCE(13); + END_STATE(); + case 1106: + if (lookahead == 'i') ADVANCE(1312); + if (lookahead == 'l') ADVANCE(523); + END_STATE(); + case 1107: + if (lookahead == 'i') ADVANCE(1478); + END_STATE(); + case 1108: + if (lookahead == 'i') ADVANCE(1752); + END_STATE(); + case 1109: + if (lookahead == 'i') ADVANCE(1374); + END_STATE(); + case 1110: + if (lookahead == 'i') ADVANCE(1777); + if (lookahead == 'l') ADVANCE(1487); + if (lookahead == 'r') ADVANCE(13); + END_STATE(); + case 1111: + if (lookahead == 'i') ADVANCE(1777); + if (lookahead == 'r') ADVANCE(13); + END_STATE(); + case 1112: + if (lookahead == 'i') ADVANCE(1207); + END_STATE(); + case 1113: + if (lookahead == 'i') ADVANCE(982); + END_STATE(); + case 1114: + if (lookahead == 'i') ADVANCE(993); + END_STATE(); + case 1115: + if (lookahead == 'i') ADVANCE(1918); + END_STATE(); + case 1116: + if (lookahead == 'i') ADVANCE(1353); + END_STATE(); + case 1117: + if (lookahead == 'i') ADVANCE(1237); + END_STATE(); + case 1118: + if (lookahead == 'i') ADVANCE(611); + END_STATE(); + case 1119: + if (lookahead == 'i') ADVANCE(1629); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 1120: + if (lookahead == 'i') ADVANCE(775); + END_STATE(); + case 1121: + if (lookahead == 'i') ADVANCE(1387); + END_STATE(); + case 1122: + if (lookahead == 'i') ADVANCE(537); + END_STATE(); + case 1123: + if (lookahead == 'i') ADVANCE(760); + END_STATE(); + case 1124: + if (lookahead == 'i') ADVANCE(1331); + END_STATE(); + case 1125: + if (lookahead == 'i') ADVANCE(1029); + END_STATE(); + case 1126: + if (lookahead == 'i') ADVANCE(1673); + if (lookahead == 'l') ADVANCE(945); + if (lookahead == 'm') ADVANCE(1128); + if (lookahead == 'r') ADVANCE(741); + END_STATE(); + case 1127: + if (lookahead == 'i') ADVANCE(1378); + END_STATE(); + case 1128: + if (lookahead == 'i') ADVANCE(1223); + END_STATE(); + case 1129: + if (lookahead == 'i') ADVANCE(842); + END_STATE(); + case 1130: + if (lookahead == 'i') ADVANCE(1913); + END_STATE(); + case 1131: + if (lookahead == 'i') ADVANCE(1418); + END_STATE(); + case 1132: + if (lookahead == 'i') ADVANCE(1411); + END_STATE(); + case 1133: + if (lookahead == 'i') ADVANCE(1357); + END_STATE(); + case 1134: + if (lookahead == 'i') ADVANCE(1253); + if (lookahead == 'l') ADVANCE(1102); + if (lookahead == 'r') ADVANCE(13); + END_STATE(); + case 1135: + if (lookahead == 'i') ADVANCE(990); + END_STATE(); + case 1136: + if (lookahead == 'i') ADVANCE(1241); + END_STATE(); + case 1137: + if (lookahead == 'i') ADVANCE(1389); + if (lookahead == 'p') ADVANCE(945); + END_STATE(); + case 1138: + if (lookahead == 'i') ADVANCE(1666); + END_STATE(); + case 1139: + if (lookahead == 'i') ADVANCE(1666); + if (lookahead == 'o') ADVANCE(1237); + END_STATE(); + case 1140: + if (lookahead == 'i') ADVANCE(1666); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 1141: + if (lookahead == 'i') ADVANCE(1239); + END_STATE(); + case 1142: + if (lookahead == 'i') ADVANCE(594); + END_STATE(); + case 1143: + if (lookahead == 'i') ADVANCE(485); + END_STATE(); + case 1144: + if (lookahead == 'i') ADVANCE(1792); + END_STATE(); + case 1145: + if (lookahead == 'i') ADVANCE(1963); + END_STATE(); + case 1146: + if (lookahead == 'i') ADVANCE(1572); + END_STATE(); + case 1147: + if (lookahead == 'i') ADVANCE(1397); + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 'u') ADVANCE(1368); + END_STATE(); + case 1148: + if (lookahead == 'i') ADVANCE(1258); + END_STATE(); + case 1149: + if (lookahead == 'i') ADVANCE(1336); + END_STATE(); + case 1150: + if (lookahead == 'i') ADVANCE(1391); + END_STATE(); + case 1151: + if (lookahead == 'i') ADVANCE(1796); + END_STATE(); + case 1152: + if (lookahead == 'i') ADVANCE(1791); + END_STATE(); + case 1153: + if (lookahead == 'i') ADVANCE(1346); + END_STATE(); + case 1154: + if (lookahead == 'i') ADVANCE(1332); + END_STATE(); + case 1155: + if (lookahead == 'i') ADVANCE(1872); + END_STATE(); + case 1156: + if (lookahead == 'i') ADVANCE(1269); + END_STATE(); + case 1157: + if (lookahead == 'i') ADVANCE(1395); + END_STATE(); + case 1158: + if (lookahead == 'i') ADVANCE(886); + END_STATE(); + case 1159: + if (lookahead == 'i') ADVANCE(493); + END_STATE(); + case 1160: + if (lookahead == 'i') ADVANCE(1288); + END_STATE(); + case 1161: + if (lookahead == 'i') ADVANCE(1256); + END_STATE(); + case 1162: + if (lookahead == 'i') ADVANCE(1495); + END_STATE(); + case 1163: + if (lookahead == 'i') ADVANCE(1474); + END_STATE(); + case 1164: + if (lookahead == 'i') ADVANCE(1412); + END_STATE(); + case 1165: + if (lookahead == 'i') ADVANCE(1412); + if (lookahead == 'n') ADVANCE(13); + END_STATE(); + case 1166: + if (lookahead == 'i') ADVANCE(1003); + END_STATE(); + case 1167: + if (lookahead == 'i') ADVANCE(1289); + END_STATE(); + case 1168: + if (lookahead == 'i') ADVANCE(717); + END_STATE(); + case 1169: + if (lookahead == 'i') ADVANCE(721); + END_STATE(); + case 1170: + if (lookahead == 'i') ADVANCE(595); + END_STATE(); + case 1171: + if (lookahead == 'i') ADVANCE(1011); + END_STATE(); + case 1172: + if (lookahead == 'i') ADVANCE(1012); + END_STATE(); + case 1173: + if (lookahead == 'i') ADVANCE(1013); + END_STATE(); + case 1174: + if (lookahead == 'i') ADVANCE(1014); + END_STATE(); + case 1175: + if (lookahead == 'i') ADVANCE(1016); + END_STATE(); + case 1176: + if (lookahead == 'i') ADVANCE(1018); + END_STATE(); + case 1177: + if (lookahead == 'i') ADVANCE(1019); + END_STATE(); + case 1178: + if (lookahead == 'i') ADVANCE(1021); + END_STATE(); + case 1179: + if (lookahead == 'i') ADVANCE(1740); + END_STATE(); + case 1180: + if (lookahead == 'i') ADVANCE(561); + END_STATE(); + case 1181: + if (lookahead == 'i') ADVANCE(1030); + END_STATE(); + case 1182: + if (lookahead == 'i') ADVANCE(563); + END_STATE(); + case 1183: + if (lookahead == 'i') ADVANCE(564); + END_STATE(); + case 1184: + if (lookahead == 'i') ADVANCE(565); + END_STATE(); + case 1185: + if (lookahead == 'i') ADVANCE(566); + END_STATE(); + case 1186: + if (lookahead == 'j') ADVANCE(13); + END_STATE(); + case 1187: + if (lookahead == 'j') ADVANCE(13); + if (lookahead == 'n') ADVANCE(1186); + END_STATE(); + case 1188: + if (lookahead == 'k') ADVANCE(13); + END_STATE(); + case 1189: + if (lookahead == 'k') ADVANCE(365); + END_STATE(); + case 1190: + if (lookahead == 'k') ADVANCE(719); + END_STATE(); + case 1191: + if (lookahead == 'k') ADVANCE(1293); + END_STATE(); + case 1192: + if (lookahead == 'k') ADVANCE(1266); + END_STATE(); + case 1193: + if (lookahead == 'k') ADVANCE(161); + END_STATE(); + case 1194: + if (lookahead == 'k') ADVANCE(140); + END_STATE(); + case 1195: + if (lookahead == 'k') ADVANCE(603); + END_STATE(); + case 1196: + if (lookahead == 'k') ADVANCE(603); + if (lookahead == 'm') ADVANCE(152); + END_STATE(); + case 1197: + if (lookahead == 'k') ADVANCE(1979); + END_STATE(); + case 1198: + if (lookahead == 'k') ADVANCE(202); + END_STATE(); + case 1199: + if (lookahead == 'k') ADVANCE(1788); + END_STATE(); + case 1200: + if (lookahead == 'k') ADVANCE(807); + END_STATE(); + case 1201: + if (lookahead == 'k') ADVANCE(811); + END_STATE(); + case 1202: + if (lookahead == 'k') ADVANCE(520); + END_STATE(); + case 1203: + if (lookahead == 'k') ADVANCE(527); + END_STATE(); + case 1204: + if (lookahead == 'k') ADVANCE(527); + if (lookahead == 'l') ADVANCE(458); + END_STATE(); + case 1205: + if (lookahead == 'k') ADVANCE(1157); + END_STATE(); + case 1206: + if (lookahead == 'l') ADVANCE(730); + END_STATE(); + case 1207: + if (lookahead == 'l') ADVANCE(13); + END_STATE(); + case 1208: + if (lookahead == 'l') ADVANCE(199); + END_STATE(); + case 1209: + if (lookahead == 'l') ADVANCE(344); + END_STATE(); + case 1210: + if (lookahead == 'l') ADVANCE(313); + END_STATE(); + case 1211: + if (lookahead == 'l') ADVANCE(80); + END_STATE(); + case 1212: + if (lookahead == 'l') ADVANCE(146); + END_STATE(); + case 1213: + if (lookahead == 'l') ADVANCE(2013); + END_STATE(); + case 1214: + if (lookahead == 'l') ADVANCE(279); + END_STATE(); + case 1215: + if (lookahead == 'l') ADVANCE(266); + END_STATE(); + case 1216: + if (lookahead == 'l') ADVANCE(46); + END_STATE(); + case 1217: + if (lookahead == 'l') ADVANCE(382); + END_STATE(); + case 1218: + if (lookahead == 'l') ADVANCE(1991); + END_STATE(); + case 1219: + if (lookahead == 'l') ADVANCE(906); + END_STATE(); + case 1220: + if (lookahead == 'l') ADVANCE(906); + if (lookahead == 'q') ADVANCE(1931); + END_STATE(); + case 1221: + if (lookahead == 'l') ADVANCE(906); + if (lookahead == 'q') ADVANCE(1930); + if (lookahead == 'x') ADVANCE(1096); + END_STATE(); + case 1222: + if (lookahead == 'l') ADVANCE(329); + END_STATE(); + case 1223: + if (lookahead == 'l') ADVANCE(1807); + END_STATE(); + case 1224: + if (lookahead == 'l') ADVANCE(51); + END_STATE(); + case 1225: + if (lookahead == 'l') ADVANCE(322); + END_STATE(); + case 1226: + if (lookahead == 'l') ADVANCE(286); + END_STATE(); + case 1227: + if (lookahead == 'l') ADVANCE(588); + END_STATE(); + case 1228: + if (lookahead == 'l') ADVANCE(278); + END_STATE(); + case 1229: + if (lookahead == 'l') ADVANCE(367); + END_STATE(); + case 1230: + if (lookahead == 'l') ADVANCE(396); + END_STATE(); + case 1231: + if (lookahead == 'l') ADVANCE(297); + END_STATE(); + case 1232: + if (lookahead == 'l') ADVANCE(187); + END_STATE(); + case 1233: + if (lookahead == 'l') ADVANCE(429); + END_STATE(); + case 1234: + if (lookahead == 'l') ADVANCE(111); + END_STATE(); + case 1235: + if (lookahead == 'l') ADVANCE(307); + END_STATE(); + case 1236: + if (lookahead == 'l') ADVANCE(758); + END_STATE(); + case 1237: + if (lookahead == 'l') ADVANCE(1478); + END_STATE(); + case 1238: + if (lookahead == 'l') ADVANCE(1188); + END_STATE(); + case 1239: + if (lookahead == 'l') ADVANCE(745); + END_STATE(); + case 1240: + if (lookahead == 'l') ADVANCE(745); + if (lookahead == 'm') ADVANCE(842); + END_STATE(); + case 1241: + if (lookahead == 'l') ADVANCE(745); + if (lookahead == 'm') ADVANCE(864); + END_STATE(); + case 1242: + if (lookahead == 'l') ADVANCE(824); + END_STATE(); + case 1243: + if (lookahead == 'l') ADVANCE(1752); + END_STATE(); + case 1244: + if (lookahead == 'l') ADVANCE(697); + END_STATE(); + case 1245: + if (lookahead == 'l') ADVANCE(1108); + END_STATE(); + case 1246: + if (lookahead == 'l') ADVANCE(1990); + END_STATE(); + case 1247: + if (lookahead == 'l') ADVANCE(1074); + END_STATE(); + case 1248: + if (lookahead == 'l') ADVANCE(845); + END_STATE(); + case 1249: + if (lookahead == 'l') ADVANCE(1207); + END_STATE(); + case 1250: + if (lookahead == 'l') ADVANCE(2000); + END_STATE(); + case 1251: + if (lookahead == 'l') ADVANCE(1487); + END_STATE(); + case 1252: + if (lookahead == 'l') ADVANCE(1938); + END_STATE(); + case 1253: + if (lookahead == 'l') ADVANCE(1101); + END_STATE(); + case 1254: + if (lookahead == 'l') ADVANCE(1234); + if (lookahead == 'm') ADVANCE(1538); + END_STATE(); + case 1255: + if (lookahead == 'l') ADVANCE(1230); + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 't') ADVANCE(110); + if (lookahead == 'u') ADVANCE(593); + if (lookahead == 'w') ADVANCE(1358); + END_STATE(); + case 1256: + if (lookahead == 'l') ADVANCE(775); + END_STATE(); + case 1257: + if (lookahead == 'l') ADVANCE(833); + END_STATE(); + case 1258: + if (lookahead == 'l') ADVANCE(1217); + END_STATE(); + case 1259: + if (lookahead == 'l') ADVANCE(1226); + END_STATE(); + case 1260: + if (lookahead == 'l') ADVANCE(846); + END_STATE(); + case 1261: + if (lookahead == 'l') ADVANCE(1308); + if (lookahead == 's') ADVANCE(1043); + END_STATE(); + case 1262: + if (lookahead == 'l') ADVANCE(1505); + END_STATE(); + case 1263: + if (lookahead == 'l') ADVANCE(1129); + END_STATE(); + case 1264: + if (lookahead == 'l') ADVANCE(1100); + END_STATE(); + case 1265: + if (lookahead == 'l') ADVANCE(1225); + END_STATE(); + case 1266: + if (lookahead == 'l') ADVANCE(1456); + if (lookahead == 's') ADVANCE(1596); + if (lookahead == 't') ADVANCE(1751); + END_STATE(); + case 1267: + if (lookahead == 'l') ADVANCE(821); + END_STATE(); + case 1268: + if (lookahead == 'l') ADVANCE(821); + if (lookahead == 'q') ADVANCE(1267); + END_STATE(); + case 1269: + if (lookahead == 'l') ADVANCE(1142); + END_STATE(); + case 1270: + if (lookahead == 'l') ADVANCE(445); + END_STATE(); + case 1271: + if (lookahead == 'l') ADVANCE(1229); + END_STATE(); + case 1272: + if (lookahead == 'l') ADVANCE(793); + END_STATE(); + case 1273: + if (lookahead == 'l') ADVANCE(794); + END_STATE(); + case 1274: + if (lookahead == 'l') ADVANCE(1490); + END_STATE(); + case 1275: + if (lookahead == 'l') ADVANCE(782); + END_STATE(); + case 1276: + if (lookahead == 'l') ADVANCE(913); + END_STATE(); + case 1277: + if (lookahead == 'l') ADVANCE(835); + if (lookahead == 'r') ADVANCE(1135); + END_STATE(); + case 1278: + if (lookahead == 'l') ADVANCE(801); + END_STATE(); + case 1279: + if (lookahead == 'l') ADVANCE(802); + END_STATE(); + case 1280: + if (lookahead == 'l') ADVANCE(813); + END_STATE(); + case 1281: + if (lookahead == 'l') ADVANCE(933); + END_STATE(); + case 1282: + if (lookahead == 'l') ADVANCE(825); + END_STATE(); + case 1283: + if (lookahead == 'l') ADVANCE(804); + END_STATE(); + case 1284: + if (lookahead == 'l') ADVANCE(805); + END_STATE(); + case 1285: + if (lookahead == 'l') ADVANCE(806); + END_STATE(); + case 1286: + if (lookahead == 'l') ADVANCE(822); + END_STATE(); + case 1287: + if (lookahead == 'l') ADVANCE(458); + END_STATE(); + case 1288: + if (lookahead == 'l') ADVANCE(1109); + END_STATE(); + case 1289: + if (lookahead == 'l') ADVANCE(752); + END_STATE(); + case 1290: + if (lookahead == 'l') ADVANCE(752); + if (lookahead == 'm') ADVANCE(836); + if (lookahead == 'n') ADVANCE(1807); + END_STATE(); + case 1291: + if (lookahead == 'l') ADVANCE(1480); + if (lookahead == 'n') ADVANCE(998); + if (lookahead == 'p') ADVANCE(947); + if (lookahead == 'u') ADVANCE(1419); + END_STATE(); + case 1292: + if (lookahead == 'l') ADVANCE(401); + END_STATE(); + case 1293: + if (lookahead == 'l') ADVANCE(817); + if (lookahead == 'r') ADVANCE(1166); + END_STATE(); + case 1294: + if (lookahead == 'l') ADVANCE(898); + END_STATE(); + case 1295: + if (lookahead == 'l') ADVANCE(897); + END_STATE(); + case 1296: + if (lookahead == 'l') ADVANCE(513); + END_STATE(); + case 1297: + if (lookahead == 'l') ADVANCE(1914); + END_STATE(); + case 1298: + if (lookahead == 'l') ADVANCE(1260); + END_STATE(); + case 1299: + if (lookahead == 'l') ADVANCE(459); + END_STATE(); + case 1300: + if (lookahead == 'l') ADVANCE(1150); + END_STATE(); + case 1301: + if (lookahead == 'l') ADVANCE(1485); + if (lookahead == 'm') ADVANCE(1341); + if (lookahead == 'n') ADVANCE(974); + if (lookahead == 'p') ADVANCE(131); + END_STATE(); + case 1302: + if (lookahead == 'l') ADVANCE(1698); + END_STATE(); + case 1303: + if (lookahead == 'l') ADVANCE(1084); + END_STATE(); + case 1304: + if (lookahead == 'l') ADVANCE(1245); + END_STATE(); + case 1305: + if (lookahead == 'l') ADVANCE(1132); + END_STATE(); + case 1306: + if (lookahead == 'l') ADVANCE(1248); + END_STATE(); + case 1307: + if (lookahead == 'l') ADVANCE(535); + END_STATE(); + case 1308: + if (lookahead == 'l') ADVANCE(1804); + END_STATE(); + case 1309: + if (lookahead == 'l') ADVANCE(1300); + END_STATE(); + case 1310: + if (lookahead == 'l') ADVANCE(901); + if (lookahead == 'm') ADVANCE(480); + if (lookahead == 'r') ADVANCE(1166); + END_STATE(); + case 1311: + if (lookahead == 'l') ADVANCE(928); + if (lookahead == 'r') ADVANCE(1178); + END_STATE(); + case 1312: + if (lookahead == 'm') ADVANCE(13); + END_STATE(); + case 1313: + if (lookahead == 'm') ADVANCE(152); + END_STATE(); + case 1314: + if (lookahead == 'm') ADVANCE(152); + if (lookahead == 'r') ADVANCE(1437); + END_STATE(); + case 1315: + if (lookahead == 'm') ADVANCE(365); + END_STATE(); + case 1316: + if (lookahead == 'm') ADVANCE(173); + END_STATE(); + case 1317: + if (lookahead == 'm') ADVANCE(223); + END_STATE(); + case 1318: + if (lookahead == 'm') ADVANCE(222); + END_STATE(); + case 1319: + if (lookahead == 'm') ADVANCE(382); + END_STATE(); + case 1320: + if (lookahead == 'm') ADVANCE(1165); + END_STATE(); + case 1321: + if (lookahead == 'm') ADVANCE(1072); + END_STATE(); + case 1322: + if (lookahead == 'm') ADVANCE(106); + END_STATE(); + case 1323: + if (lookahead == 'm') ADVANCE(1526); + END_STATE(); + case 1324: + if (lookahead == 'm') ADVANCE(1556); + END_STATE(); + case 1325: + if (lookahead == 'm') ADVANCE(1537); + END_STATE(); + case 1326: + if (lookahead == 'm') ADVANCE(1071); + END_STATE(); + case 1327: + if (lookahead == 'm') ADVANCE(1071); + if (lookahead == 'p') ADVANCE(532); + END_STATE(); + case 1328: + if (lookahead == 'm') ADVANCE(1319); + END_STATE(); + case 1329: + if (lookahead == 'm') ADVANCE(114); + END_STATE(); + case 1330: + if (lookahead == 'm') ADVANCE(1560); + END_STATE(); + case 1331: + if (lookahead == 'm') ADVANCE(115); + END_STATE(); + case 1332: + if (lookahead == 'm') ADVANCE(422); + END_STATE(); + case 1333: + if (lookahead == 'm') ADVANCE(845); + END_STATE(); + case 1334: + if (lookahead == 'm') ADVANCE(1207); + END_STATE(); + case 1335: + if (lookahead == 'm') ADVANCE(1353); + END_STATE(); + case 1336: + if (lookahead == 'm') ADVANCE(775); + END_STATE(); + case 1337: + if (lookahead == 'm') ADVANCE(1552); + END_STATE(); + case 1338: + if (lookahead == 'm') ADVANCE(1547); + END_STATE(); + case 1339: + if (lookahead == 'm') ADVANCE(537); + END_STATE(); + case 1340: + if (lookahead == 'm') ADVANCE(410); + END_STATE(); + case 1341: + if (lookahead == 'm') ADVANCE(417); + if (lookahead == 'p') ADVANCE(134); + END_STATE(); + case 1342: + if (lookahead == 'm') ADVANCE(809); + END_STATE(); + case 1343: + if (lookahead == 'm') ADVANCE(809); + if (lookahead == 'x') ADVANCE(842); + END_STATE(); + case 1344: + if (lookahead == 'm') ADVANCE(406); + END_STATE(); + case 1345: + if (lookahead == 'm') ADVANCE(390); + END_STATE(); + case 1346: + if (lookahead == 'm') ADVANCE(842); + END_STATE(); + case 1347: + if (lookahead == 'm') ADVANCE(1568); + END_STATE(); + case 1348: + if (lookahead == 'm') ADVANCE(829); + END_STATE(); + case 1349: + if (lookahead == 'm') ADVANCE(1340); + END_STATE(); + case 1350: + if (lookahead == 'm') ADVANCE(1164); + END_STATE(); + case 1351: + if (lookahead == 'm') ADVANCE(531); + END_STATE(); + case 1352: + if (lookahead == 'n') ADVANCE(730); + END_STATE(); + case 1353: + if (lookahead == 'n') ADVANCE(13); + END_STATE(); + case 1354: + if (lookahead == 'n') ADVANCE(136); + END_STATE(); + case 1355: + if (lookahead == 'n') ADVANCE(275); + END_STATE(); + case 1356: + if (lookahead == 'n') ADVANCE(288); + END_STATE(); + case 1357: + if (lookahead == 'n') ADVANCE(365); + END_STATE(); + case 1358: + if (lookahead == 'n') ADVANCE(545); + END_STATE(); + case 1359: + if (lookahead == 'n') ADVANCE(217); + END_STATE(); + case 1360: + if (lookahead == 'n') ADVANCE(689); + END_STATE(); + case 1361: + if (lookahead == 'n') ADVANCE(2008); + END_STATE(); + case 1362: + if (lookahead == 'n') ADVANCE(31); + END_STATE(); + case 1363: + if (lookahead == 'n') ADVANCE(371); + END_STATE(); + case 1364: + if (lookahead == 'n') ADVANCE(375); + END_STATE(); + case 1365: + if (lookahead == 'n') ADVANCE(49); + END_STATE(); + case 1366: + if (lookahead == 'n') ADVANCE(1807); + END_STATE(); + case 1367: + if (lookahead == 'n') ADVANCE(338); + END_STATE(); + case 1368: + if (lookahead == 'n') ADVANCE(100); + END_STATE(); + case 1369: + if (lookahead == 'n') ADVANCE(269); + END_STATE(); + case 1370: + if (lookahead == 'n') ADVANCE(1984); + END_STATE(); + case 1371: + if (lookahead == 'n') ADVANCE(967); + END_STATE(); + case 1372: + if (lookahead == 'n') ADVANCE(765); + END_STATE(); + case 1373: + if (lookahead == 'n') ADVANCE(106); + END_STATE(); + case 1374: + if (lookahead == 'n') ADVANCE(969); + END_STATE(); + case 1375: + if (lookahead == 'n') ADVANCE(969); + if (lookahead == 'r') ADVANCE(1599); + END_STATE(); + case 1376: + if (lookahead == 'n') ADVANCE(1867); + END_STATE(); + case 1377: + if (lookahead == 'n') ADVANCE(975); + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 'w') ADVANCE(876); + END_STATE(); + case 1378: + if (lookahead == 'n') ADVANCE(207); + END_STATE(); + case 1379: + if (lookahead == 'n') ADVANCE(1188); + END_STATE(); + case 1380: + if (lookahead == 'n') ADVANCE(114); + END_STATE(); + case 1381: + if (lookahead == 'n') ADVANCE(1752); + END_STATE(); + case 1382: + if (lookahead == 'n') ADVANCE(738); + END_STATE(); + case 1383: + if (lookahead == 'n') ADVANCE(109); + END_STATE(); + case 1384: + if (lookahead == 'n') ADVANCE(999); + if (lookahead == 'r') ADVANCE(856); + END_STATE(); + case 1385: + if (lookahead == 'n') ADVANCE(695); + END_STATE(); + case 1386: + if (lookahead == 'n') ADVANCE(1015); + END_STATE(); + case 1387: + if (lookahead == 'n') ADVANCE(775); + END_STATE(); + case 1388: + if (lookahead == 'n') ADVANCE(973); + END_STATE(); + case 1389: + if (lookahead == 'n') ADVANCE(723); + END_STATE(); + case 1390: + if (lookahead == 'n') ADVANCE(1483); + END_STATE(); + case 1391: + if (lookahead == 'n') ADVANCE(1001); + END_STATE(); + case 1392: + if (lookahead == 'n') ADVANCE(748); + END_STATE(); + case 1393: + if (lookahead == 'n') ADVANCE(1028); + END_STATE(); + case 1394: + if (lookahead == 'n') ADVANCE(807); + END_STATE(); + case 1395: + if (lookahead == 'n') ADVANCE(976); + END_STATE(); + case 1396: + if (lookahead == 'n') ADVANCE(718); + END_STATE(); + case 1397: + if (lookahead == 'n') ADVANCE(1885); + END_STATE(); + case 1398: + if (lookahead == 'n') ADVANCE(1818); + END_STATE(); + case 1399: + if (lookahead == 'n') ADVANCE(1832); + END_STATE(); + case 1400: + if (lookahead == 'n') ADVANCE(1857); + END_STATE(); + case 1401: + if (lookahead == 'n') ADVANCE(1859); + END_STATE(); + case 1402: + if (lookahead == 'n') ADVANCE(837); + END_STATE(); + case 1403: + if (lookahead == 'n') ADVANCE(840); + END_STATE(); + case 1404: + if (lookahead == 'n') ADVANCE(1277); + END_STATE(); + case 1405: + if (lookahead == 'n') ADVANCE(1916); + END_STATE(); + case 1406: + if (lookahead == 'n') ADVANCE(66); + END_STATE(); + case 1407: + if (lookahead == 'n') ADVANCE(994); + END_STATE(); + case 1408: + if (lookahead == 'n') ADVANCE(997); + END_STATE(); + case 1409: + if (lookahead == 'n') ADVANCE(922); + END_STATE(); + case 1410: + if (lookahead == 'n') ADVANCE(1107); + END_STATE(); + case 1411: + if (lookahead == 'n') ADVANCE(1875); + END_STATE(); + case 1412: + if (lookahead == 'n') ADVANCE(1914); + END_STATE(); + case 1413: + if (lookahead == 'n') ADVANCE(1488); + END_STATE(); + case 1414: + if (lookahead == 'n') ADVANCE(1876); + END_STATE(); + case 1415: + if (lookahead == 'n') ADVANCE(1084); + END_STATE(); + case 1416: + if (lookahead == 'n') ADVANCE(1874); + END_STATE(); + case 1417: + if (lookahead == 'n') ADVANCE(1894); + END_STATE(); + case 1418: + if (lookahead == 'n') ADVANCE(505); + END_STATE(); + case 1419: + if (lookahead == 'n') ADVANCE(1886); + END_STATE(); + case 1420: + if (lookahead == 'n') ADVANCE(1020); + END_STATE(); + case 1421: + if (lookahead == 'n') ADVANCE(1884); + END_STATE(); + case 1422: + if (lookahead == 'n') ADVANCE(1163); + END_STATE(); + case 1423: + if (lookahead == 'n') ADVANCE(925); + END_STATE(); + case 1424: + if (lookahead == 'n') ADVANCE(1022); + if (lookahead == 'r') ADVANCE(1702); + END_STATE(); + case 1425: + if (lookahead == 'n') ADVANCE(1022); + if (lookahead == 'r') ADVANCE(1706); + END_STATE(); + case 1426: + if (lookahead == 'n') ADVANCE(1888); + END_STATE(); + case 1427: + if (lookahead == 'n') ADVANCE(1023); + END_STATE(); + case 1428: + if (lookahead == 'n') ADVANCE(1024); + END_STATE(); + case 1429: + if (lookahead == 'n') ADVANCE(1890); + END_STATE(); + case 1430: + if (lookahead == 'n') ADVANCE(1025); + END_STATE(); + case 1431: + if (lookahead == 'n') ADVANCE(1026); + END_STATE(); + case 1432: + if (lookahead == 'n') ADVANCE(1027); + END_STATE(); + case 1433: + if (lookahead == 'n') ADVANCE(1895); + END_STATE(); + case 1434: + if (lookahead == 'n') ADVANCE(554); + END_STATE(); + case 1435: + if (lookahead == 'n') ADVANCE(543); + END_STATE(); + case 1436: + if (lookahead == 'o') ADVANCE(730); + END_STATE(); + case 1437: + if (lookahead == 'o') ADVANCE(13); + END_STATE(); + case 1438: + if (lookahead == 'o') ADVANCE(183); + END_STATE(); + case 1439: + if (lookahead == 'o') ADVANCE(945); + END_STATE(); + case 1440: + if (lookahead == 'o') ADVANCE(1975); + END_STATE(); + case 1441: + if (lookahead == 'o') ADVANCE(376); + END_STATE(); + case 1442: + if (lookahead == 'o') ADVANCE(1955); + END_STATE(); + case 1443: + if (lookahead == 'o') ADVANCE(103); + END_STATE(); + case 1444: + if (lookahead == 'o') ADVANCE(1809); + END_STATE(); + case 1445: + if (lookahead == 'o') ADVANCE(1808); + END_STATE(); + case 1446: + if (lookahead == 'o') ADVANCE(1599); + END_STATE(); + case 1447: + if (lookahead == 'o') ADVANCE(1807); + END_STATE(); + case 1448: + if (lookahead == 'o') ADVANCE(1807); + if (lookahead == 's') ADVANCE(1908); + END_STATE(); + case 1449: + if (lookahead == 'o') ADVANCE(163); + END_STATE(); + case 1450: + if (lookahead == 'o') ADVANCE(1986); + END_STATE(); + case 1451: + if (lookahead == 'o') ADVANCE(678); + END_STATE(); + case 1452: + if (lookahead == 'o') ADVANCE(1984); + END_STATE(); + case 1453: + if (lookahead == 'o') ADVANCE(1778); + END_STATE(); + case 1454: + if (lookahead == 'o') ADVANCE(198); + END_STATE(); + case 1455: + if (lookahead == 'o') ADVANCE(1965); + END_STATE(); + case 1456: + if (lookahead == 'o') ADVANCE(2004); + END_STATE(); + case 1457: + if (lookahead == 'o') ADVANCE(1526); + END_STATE(); + case 1458: + if (lookahead == 'o') ADVANCE(1415); + END_STATE(); + case 1459: + if (lookahead == 'o') ADVANCE(1966); + END_STATE(); + case 1460: + if (lookahead == 'o') ADVANCE(1967); + END_STATE(); + case 1461: + if (lookahead == 'o') ADVANCE(1312); + END_STATE(); + case 1462: + if (lookahead == 'o') ADVANCE(1188); + END_STATE(); + case 1463: + if (lookahead == 'o') ADVANCE(1862); + END_STATE(); + case 1464: + if (lookahead == 'o') ADVANCE(1968); + END_STATE(); + case 1465: + if (lookahead == 'o') ADVANCE(1980); + END_STATE(); + case 1466: + if (lookahead == 'o') ADVANCE(1752); + END_STATE(); + case 1467: + if (lookahead == 'o') ADVANCE(1374); + END_STATE(); + case 1468: + if (lookahead == 'o') ADVANCE(1374); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 1469: + if (lookahead == 'o') ADVANCE(1981); + END_STATE(); + case 1470: + if (lookahead == 'o') ADVANCE(1974); + END_STATE(); + case 1471: + if (lookahead == 'o') ADVANCE(1969); + END_STATE(); + case 1472: + if (lookahead == 'o') ADVANCE(1207); + if (lookahead == 'u') ADVANCE(567); + END_STATE(); + case 1473: + if (lookahead == 'o') ADVANCE(753); + END_STATE(); + case 1474: + if (lookahead == 'o') ADVANCE(1381); + END_STATE(); + case 1475: + if (lookahead == 'o') ADVANCE(1972); + END_STATE(); + case 1476: + if (lookahead == 'o') ADVANCE(1813); + END_STATE(); + case 1477: + if (lookahead == 'o') ADVANCE(1653); + END_STATE(); + case 1478: + if (lookahead == 'o') ADVANCE(1353); + END_STATE(); + case 1479: + if (lookahead == 'o') ADVANCE(1353); + if (lookahead == 'r') ADVANCE(414); + if (lookahead == 't') ADVANCE(13); + END_STATE(); + case 1480: + if (lookahead == 'o') ADVANCE(1373); + END_STATE(); + case 1481: + if (lookahead == 'o') ADVANCE(1409); + END_STATE(); + case 1482: + if (lookahead == 'o') ADVANCE(1365); + END_STATE(); + case 1483: + if (lookahead == 'o') ADVANCE(1951); + END_STATE(); + case 1484: + if (lookahead == 'o') ADVANCE(1352); + END_STATE(); + case 1485: + if (lookahead == 'o') ADVANCE(1380); + END_STATE(); + case 1486: + if (lookahead == 'o') ADVANCE(1953); + END_STATE(); + case 1487: + if (lookahead == 'o') ADVANCE(1446); + END_STATE(); + case 1488: + if (lookahead == 'o') ADVANCE(1899); + END_STATE(); + case 1489: + if (lookahead == 'o') ADVANCE(1206); + END_STATE(); + case 1490: + if (lookahead == 'o') ADVANCE(677); + END_STATE(); + case 1491: + if (lookahead == 'o') ADVANCE(1848); + END_STATE(); + case 1492: + if (lookahead == 'o') ADVANCE(1850); + END_STATE(); + case 1493: + if (lookahead == 'o') ADVANCE(1892); + END_STATE(); + case 1494: + if (lookahead == 'o') ADVANCE(1404); + END_STATE(); + case 1495: + if (lookahead == 'o') ADVANCE(1406); + END_STATE(); + case 1496: + if (lookahead == 'o') ADVANCE(1372); + END_STATE(); + case 1497: + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'r') ADVANCE(1457); + END_STATE(); + case 1498: + if (lookahead == 'o') ADVANCE(1690); + END_STATE(); + case 1499: + if (lookahead == 'o') ADVANCE(1692); + if (lookahead == 'r') ADVANCE(1457); + END_STATE(); + case 1500: + if (lookahead == 'o') ADVANCE(1616); + END_STATE(); + case 1501: + if (lookahead == 'o') ADVANCE(1976); + END_STATE(); + case 1502: + if (lookahead == 'o') ADVANCE(1328); + END_STATE(); + case 1503: + if (lookahead == 'o') ADVANCE(1328); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 1504: + if (lookahead == 'o') ADVANCE(1671); + END_STATE(); + case 1505: + if (lookahead == 'o') ADVANCE(1555); + END_STATE(); + case 1506: + if (lookahead == 'o') ADVANCE(1566); + END_STATE(); + case 1507: + if (lookahead == 'o') ADVANCE(1935); + END_STATE(); + case 1508: + if (lookahead == 'o') ADVANCE(1982); + END_STATE(); + case 1509: + if (lookahead == 'o') ADVANCE(1977); + END_STATE(); + case 1510: + if (lookahead == 'o') ADVANCE(1941); + END_STATE(); + case 1511: + if (lookahead == 'o') ADVANCE(1856); + END_STATE(); + case 1512: + if (lookahead == 'o') ADVANCE(1408); + if (lookahead == 'u') ADVANCE(1546); + END_STATE(); + case 1513: + if (lookahead == 'o') ADVANCE(1978); + END_STATE(); + case 1514: + if (lookahead == 'o') ADVANCE(1421); + END_STATE(); + case 1515: + if (lookahead == 'o') ADVANCE(1686); + END_STATE(); + case 1516: + if (lookahead == 'o') ADVANCE(1494); + END_STATE(); + case 1517: + if (lookahead == 'o') ADVANCE(1667); + END_STATE(); + case 1518: + if (lookahead == 'o') ADVANCE(1400); + END_STATE(); + case 1519: + if (lookahead == 'o') ADVANCE(1474); + END_STATE(); + case 1520: + if (lookahead == 'o') ADVANCE(1496); + END_STATE(); + case 1521: + if (lookahead == 'o') ADVANCE(1732); + END_STATE(); + case 1522: + if (lookahead == 'o') ADVANCE(1303); + END_STATE(); + case 1523: + if (lookahead == 'o') ADVANCE(1956); + END_STATE(); + case 1524: + if (lookahead == 'o') ADVANCE(1983); + END_STATE(); + case 1525: + if (lookahead == 'p') ADVANCE(1803); + END_STATE(); + case 1526: + if (lookahead == 'p') ADVANCE(13); + END_STATE(); + case 1527: + if (lookahead == 'p') ADVANCE(13); + if (lookahead == 'r') ADVANCE(1478); + END_STATE(); + case 1528: + if (lookahead == 'p') ADVANCE(1035); + END_STATE(); + case 1529: + if (lookahead == 'p') ADVANCE(945); + END_STATE(); + case 1530: + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 'r') ADVANCE(524); + END_STATE(); + case 1531: + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 'r') ADVANCE(267); + if (lookahead == 'u') ADVANCE(1683); + END_STATE(); + case 1532: + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 'r') ADVANCE(1077); + END_STATE(); + case 1533: + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 't') ADVANCE(26); + if (lookahead == 'u') ADVANCE(592); + if (lookahead == 'w') ADVANCE(1355); + END_STATE(); + case 1534: + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 't') ADVANCE(206); + if (lookahead == 'w') ADVANCE(1868); + if (lookahead == 'x') ADVANCE(301); + END_STATE(); + case 1535: + if (lookahead == 'p') ADVANCE(945); + if (lookahead == 'u') ADVANCE(1382); + END_STATE(); + case 1536: + if (lookahead == 'p') ADVANCE(25); + END_STATE(); + case 1537: + if (lookahead == 'p') ADVANCE(309); + END_STATE(); + case 1538: + if (lookahead == 'p') ADVANCE(32); + END_STATE(); + case 1539: + if (lookahead == 'p') ADVANCE(7); + END_STATE(); + case 1540: + if (lookahead == 'p') ADVANCE(310); + END_STATE(); + case 1541: + if (lookahead == 'p') ADVANCE(270); + END_STATE(); + case 1542: + if (lookahead == 'p') ADVANCE(1599); + if (lookahead == 's') ADVANCE(611); + END_STATE(); + case 1543: + if (lookahead == 'p') ADVANCE(382); + END_STATE(); + case 1544: + if (lookahead == 'p') ADVANCE(177); + END_STATE(); + case 1545: + if (lookahead == 'p') ADVANCE(269); + END_STATE(); + case 1546: + if (lookahead == 'p') ADVANCE(284); + END_STATE(); + case 1547: + if (lookahead == 'p') ADVANCE(106); + END_STATE(); + case 1548: + if (lookahead == 'p') ADVANCE(187); + END_STATE(); + case 1549: + if (lookahead == 'p') ADVANCE(1032); + if (lookahead == 't') ADVANCE(13); + END_STATE(); + case 1550: + if (lookahead == 'p') ADVANCE(1543); + END_STATE(); + case 1551: + if (lookahead == 'p') ADVANCE(1752); + if (lookahead == 'r') ADVANCE(1478); + END_STATE(); + case 1552: + if (lookahead == 'p') ADVANCE(115); + END_STATE(); + case 1553: + if (lookahead == 'p') ADVANCE(1218); + END_STATE(); + case 1554: + if (lookahead == 'p') ADVANCE(1563); + END_STATE(); + case 1555: + if (lookahead == 'p') ADVANCE(775); + END_STATE(); + case 1556: + if (lookahead == 'p') ADVANCE(823); + END_STATE(); + case 1557: + if (lookahead == 'p') ADVANCE(1297); + END_STATE(); + case 1558: + if (lookahead == 'p') ADVANCE(1297); + if (lookahead == 't') ADVANCE(1634); + END_STATE(); + case 1559: + if (lookahead == 'p') ADVANCE(1775); + END_STATE(); + case 1560: + if (lookahead == 'p') ADVANCE(1847); + END_STATE(); + case 1561: + if (lookahead == 'p') ADVANCE(1573); + END_STATE(); + case 1562: + if (lookahead == 'p') ADVANCE(1573); + if (lookahead == 'r') ADVANCE(1599); + END_STATE(); + case 1563: + if (lookahead == 'p') ADVANCE(402); + END_STATE(); + case 1564: + if (lookahead == 'p') ADVANCE(1516); + END_STATE(); + case 1565: + if (lookahead == 'p') ADVANCE(1299); + END_STATE(); + case 1566: + if (lookahead == 'p') ADVANCE(1839); + END_STATE(); + case 1567: + if (lookahead == 'p') ADVANCE(1466); + END_STATE(); + case 1568: + if (lookahead == 'p') ADVANCE(1263); + END_STATE(); + case 1569: + if (lookahead == 'p') ADVANCE(521); + END_STATE(); + case 1570: + if (lookahead == 'p') ADVANCE(1793); + END_STATE(); + case 1571: + if (lookahead == 'p') ADVANCE(1698); + if (lookahead == 's') ADVANCE(1926); + END_STATE(); + case 1572: + if (lookahead == 'p') ADVANCE(1275); + END_STATE(); + case 1573: + if (lookahead == 'p') ADVANCE(1678); + END_STATE(); + case 1574: + if (lookahead == 'p') ADVANCE(503); + END_STATE(); + case 1575: + if (lookahead == 'p') ADVANCE(552); + END_STATE(); + case 1576: + if (lookahead == 'p') ADVANCE(321); + END_STATE(); + case 1577: + if (lookahead == 'p') ADVANCE(1520); + END_STATE(); + case 1578: + if (lookahead == 'p') ADVANCE(536); + END_STATE(); + case 1579: + if (lookahead == 'p') ADVANCE(1519); + END_STATE(); + case 1580: + if (lookahead == 'p') ADVANCE(554); + END_STATE(); + case 1581: + if (lookahead == 'q') ADVANCE(13); + END_STATE(); + case 1582: + if (lookahead == 'q') ADVANCE(98); + END_STATE(); + case 1583: + if (lookahead == 'q') ADVANCE(1268); + END_STATE(); + case 1584: + if (lookahead == 'q') ADVANCE(1006); + END_STATE(); + case 1585: + if (lookahead == 'q') ADVANCE(1571); + END_STATE(); + case 1586: + if (lookahead == 'q') ADVANCE(178); + END_STATE(); + case 1587: + if (lookahead == 'q') ADVANCE(1581); + END_STATE(); + case 1588: + if (lookahead == 'q') ADVANCE(1902); + END_STATE(); + case 1589: + if (lookahead == 'q') ADVANCE(1921); + END_STATE(); + case 1590: + if (lookahead == 'q') ADVANCE(1954); + if (lookahead == 'u') ADVANCE(590); + END_STATE(); + case 1591: + if (lookahead == 'q') ADVANCE(1942); + END_STATE(); + case 1592: + if (lookahead == 'q') ADVANCE(1931); + END_STATE(); + case 1593: + if (lookahead == 'q') ADVANCE(696); + if (lookahead == 't') ADVANCE(396); + END_STATE(); + case 1594: + if (lookahead == 'q') ADVANCE(1945); + END_STATE(); + case 1595: + if (lookahead == 'q') ADVANCE(1949); + END_STATE(); + case 1596: + if (lookahead == 'q') ADVANCE(1952); + END_STATE(); + case 1597: + if (lookahead == 'r') ADVANCE(730); + END_STATE(); + case 1598: + if (lookahead == 'r') ADVANCE(784); + END_STATE(); + case 1599: + if (lookahead == 'r') ADVANCE(13); + END_STATE(); + case 1600: + if (lookahead == 'r') ADVANCE(291); + END_STATE(); + case 1601: + if (lookahead == 'r') ADVANCE(162); + END_STATE(); + case 1602: + if (lookahead == 'r') ADVANCE(945); + END_STATE(); + case 1603: + if (lookahead == 'r') ADVANCE(215); + END_STATE(); + case 1604: + if (lookahead == 'r') ADVANCE(175); + END_STATE(); + case 1605: + if (lookahead == 'r') ADVANCE(59); + END_STATE(); + case 1606: + if (lookahead == 'r') ADVANCE(654); + END_STATE(); + case 1607: + if (lookahead == 'r') ADVANCE(276); + END_STATE(); + case 1608: + if (lookahead == 'r') ADVANCE(2017); + END_STATE(); + case 1609: + if (lookahead == 'r') ADVANCE(130); + END_STATE(); + case 1610: + if (lookahead == 'r') ADVANCE(83); + END_STATE(); + case 1611: + if (lookahead == 'r') ADVANCE(1045); + END_STATE(); + case 1612: + if (lookahead == 'r') ADVANCE(60); + END_STATE(); + case 1613: + if (lookahead == 'r') ADVANCE(347); + END_STATE(); + case 1614: + if (lookahead == 'r') ADVANCE(221); + END_STATE(); + case 1615: + if (lookahead == 'r') ADVANCE(2022); + END_STATE(); + case 1616: + if (lookahead == 'r') ADVANCE(18); + END_STATE(); + case 1617: + if (lookahead == 'r') ADVANCE(36); + END_STATE(); + case 1618: + if (lookahead == 'r') ADVANCE(1599); + END_STATE(); + case 1619: + if (lookahead == 'r') ADVANCE(168); + END_STATE(); + case 1620: + if (lookahead == 'r') ADVANCE(329); + END_STATE(); + case 1621: + if (lookahead == 'r') ADVANCE(604); + END_STATE(); + case 1622: + if (lookahead == 'r') ADVANCE(210); + END_STATE(); + case 1623: + if (lookahead == 'r') ADVANCE(138); + END_STATE(); + case 1624: + if (lookahead == 'r') ADVANCE(1807); + END_STATE(); + case 1625: + if (lookahead == 'r') ADVANCE(1807); + if (lookahead == 'u') ADVANCE(538); + END_STATE(); + case 1626: + if (lookahead == 'r') ADVANCE(100); + END_STATE(); + case 1627: + if (lookahead == 'r') ADVANCE(757); + END_STATE(); + case 1628: + if (lookahead == 'r') ADVANCE(77); + END_STATE(); + case 1629: + if (lookahead == 'r') ADVANCE(86); + END_STATE(); + case 1630: + if (lookahead == 'r') ADVANCE(73); + END_STATE(); + case 1631: + if (lookahead == 'r') ADVANCE(341); + END_STATE(); + case 1632: + if (lookahead == 'r') ADVANCE(603); + END_STATE(); + case 1633: + if (lookahead == 'r') ADVANCE(433); + END_STATE(); + case 1634: + if (lookahead == 'r') ADVANCE(1072); + END_STATE(); + case 1635: + if (lookahead == 'r') ADVANCE(170); + END_STATE(); + case 1636: + if (lookahead == 'r') ADVANCE(154); + END_STATE(); + case 1637: + if (lookahead == 'r') ADVANCE(159); + END_STATE(); + case 1638: + if (lookahead == 'r') ADVANCE(733); + END_STATE(); + case 1639: + if (lookahead == 'r') ADVANCE(725); + END_STATE(); + case 1640: + if (lookahead == 'r') ADVANCE(1437); + END_STATE(); + case 1641: + if (lookahead == 'r') ADVANCE(164); + END_STATE(); + case 1642: + if (lookahead == 'r') ADVANCE(1198); + END_STATE(); + case 1643: + if (lookahead == 'r') ADVANCE(193); + END_STATE(); + case 1644: + if (lookahead == 'r') ADVANCE(287); + END_STATE(); + case 1645: + if (lookahead == 'r') ADVANCE(203); + END_STATE(); + case 1646: + if (lookahead == 'r') ADVANCE(715); + END_STATE(); + case 1647: + if (lookahead == 'r') ADVANCE(1526); + END_STATE(); + case 1648: + if (lookahead == 'r') ADVANCE(852); + END_STATE(); + case 1649: + if (lookahead == 'r') ADVANCE(1867); + END_STATE(); + case 1650: + if (lookahead == 'r') ADVANCE(167); + END_STATE(); + case 1651: + if (lookahead == 'r') ADVANCE(387); + END_STATE(); + case 1652: + if (lookahead == 'r') ADVANCE(1478); + END_STATE(); + case 1653: + if (lookahead == 'r') ADVANCE(1188); + END_STATE(); + case 1654: + if (lookahead == 'r') ADVANCE(1994); + END_STATE(); + case 1655: + if (lookahead == 'r') ADVANCE(1996); + END_STATE(); + case 1656: + if (lookahead == 'r') ADVANCE(1441); + if (lookahead == 't') ADVANCE(382); + END_STATE(); + case 1657: + if (lookahead == 'r') ADVANCE(1752); + END_STATE(); + case 1658: + if (lookahead == 'r') ADVANCE(845); + END_STATE(); + case 1659: + if (lookahead == 'r') ADVANCE(1436); + END_STATE(); + case 1660: + if (lookahead == 'r') ADVANCE(414); + END_STATE(); + case 1661: + if (lookahead == 'r') ADVANCE(1973); + END_STATE(); + case 1662: + if (lookahead == 'r') ADVANCE(1995); + END_STATE(); + case 1663: + if (lookahead == 'r') ADVANCE(903); + END_STATE(); + case 1664: + if (lookahead == 'r') ADVANCE(1044); + END_STATE(); + case 1665: + if (lookahead == 'r') ADVANCE(1353); + END_STATE(); + case 1666: + if (lookahead == 'r') ADVANCE(611); + END_STATE(); + case 1667: + if (lookahead == 'r') ADVANCE(775); + END_STATE(); + case 1668: + if (lookahead == 'r') ADVANCE(1457); + END_STATE(); + case 1669: + if (lookahead == 'r') ADVANCE(1149); + END_STATE(); + case 1670: + if (lookahead == 'r') ADVANCE(1462); + END_STATE(); + case 1671: + if (lookahead == 'r') ADVANCE(1815); + END_STATE(); + case 1672: + if (lookahead == 'r') ADVANCE(1450); + END_STATE(); + case 1673: + if (lookahead == 'r') ADVANCE(1772); + END_STATE(); + case 1674: + if (lookahead == 'r') ADVANCE(684); + END_STATE(); + case 1675: + if (lookahead == 'r') ADVANCE(1455); + END_STATE(); + case 1676: + if (lookahead == 'r') ADVANCE(1608); + END_STATE(); + case 1677: + if (lookahead == 'r') ADVANCE(449); + END_STATE(); + case 1678: + if (lookahead == 'r') ADVANCE(1452); + END_STATE(); + case 1679: + if (lookahead == 'r') ADVANCE(1885); + END_STATE(); + case 1680: + if (lookahead == 'r') ADVANCE(1564); + END_STATE(); + case 1681: + if (lookahead == 'r') ADVANCE(1878); + END_STATE(); + case 1682: + if (lookahead == 'r') ADVANCE(1794); + END_STATE(); + case 1683: + if (lookahead == 'r') ADVANCE(1158); + END_STATE(); + case 1684: + if (lookahead == 'r') ADVANCE(1802); + END_STATE(); + case 1685: + if (lookahead == 'r') ADVANCE(828); + if (lookahead == 't') ADVANCE(382); + END_STATE(); + case 1686: + if (lookahead == 'r') ADVANCE(1831); + END_STATE(); + case 1687: + if (lookahead == 'r') ADVANCE(452); + END_STATE(); + case 1688: + if (lookahead == 'r') ADVANCE(1120); + END_STATE(); + case 1689: + if (lookahead == 'r') ADVANCE(1459); + END_STATE(); + case 1690: + if (lookahead == 'r') ADVANCE(1394); + END_STATE(); + case 1691: + if (lookahead == 'r') ADVANCE(1780); + END_STATE(); + case 1692: + if (lookahead == 'r') ADVANCE(1383); + END_STATE(); + case 1693: + if (lookahead == 'r') ADVANCE(1098); + END_STATE(); + case 1694: + if (lookahead == 'r') ADVANCE(1422); + END_STATE(); + case 1695: + if (lookahead == 'r') ADVANCE(1246); + END_STATE(); + case 1696: + if (lookahead == 'r') ADVANCE(1155); + END_STATE(); + case 1697: + if (lookahead == 'r') ADVANCE(1250); + END_STATE(); + case 1698: + if (lookahead == 'r') ADVANCE(850); + END_STATE(); + case 1699: + if (lookahead == 'r') ADVANCE(1460); + END_STATE(); + case 1700: + if (lookahead == 'r') ADVANCE(1811); + END_STATE(); + case 1701: + if (lookahead == 'r') ADVANCE(792); + if (lookahead == 't') ADVANCE(413); + END_STATE(); + case 1702: + if (lookahead == 'r') ADVANCE(1464); + END_STATE(); + case 1703: + if (lookahead == 'r') ADVANCE(1465); + END_STATE(); + case 1704: + if (lookahead == 'r') ADVANCE(1469); + END_STATE(); + case 1705: + if (lookahead == 'r') ADVANCE(1470); + END_STATE(); + case 1706: + if (lookahead == 'r') ADVANCE(1471); + END_STATE(); + case 1707: + if (lookahead == 'r') ADVANCE(943); + END_STATE(); + case 1708: + if (lookahead == 'r') ADVANCE(795); + END_STATE(); + case 1709: + if (lookahead == 'r') ADVANCE(1475); + END_STATE(); + case 1710: + if (lookahead == 'r') ADVANCE(1614); + END_STATE(); + case 1711: + if (lookahead == 'r') ADVANCE(899); + END_STATE(); + case 1712: + if (lookahead == 'r') ADVANCE(1604); + END_STATE(); + case 1713: + if (lookahead == 'r') ADVANCE(1637); + END_STATE(); + case 1714: + if (lookahead == 'r') ADVANCE(918); + END_STATE(); + case 1715: + if (lookahead == 'r') ADVANCE(820); + END_STATE(); + case 1716: + if (lookahead == 'r') ADVANCE(542); + END_STATE(); + case 1717: + if (lookahead == 'r') ADVANCE(457); + END_STATE(); + case 1718: + if (lookahead == 'r') ADVANCE(502); + END_STATE(); + case 1719: + if (lookahead == 'r') ADVANCE(1130); + END_STATE(); + case 1720: + if (lookahead == 'r') ADVANCE(1795); + END_STATE(); + case 1721: + if (lookahead == 'r') ADVANCE(696); + END_STATE(); + case 1722: + if (lookahead == 'r') ADVANCE(1875); + END_STATE(); + case 1723: + if (lookahead == 'r') ADVANCE(866); + END_STATE(); + case 1724: + if (lookahead == 'r') ADVANCE(996); + if (lookahead == 'u') ADVANCE(13); + END_STATE(); + case 1725: + if (lookahead == 'r') ADVANCE(1858); + END_STATE(); + case 1726: + if (lookahead == 'r') ADVANCE(1920); + END_STATE(); + case 1727: + if (lookahead == 'r') ADVANCE(1797); + END_STATE(); + case 1728: + if (lookahead == 'r') ADVANCE(873); + END_STATE(); + case 1729: + if (lookahead == 'r') ADVANCE(890); + END_STATE(); + case 1730: + if (lookahead == 'r') ADVANCE(1675); + END_STATE(); + case 1731: + if (lookahead == 'r') ADVANCE(481); + END_STATE(); + case 1732: + if (lookahead == 'r') ADVANCE(1873); + END_STATE(); + case 1733: + if (lookahead == 'r') ADVANCE(1689); + END_STATE(); + case 1734: + if (lookahead == 'r') ADVANCE(1699); + END_STATE(); + case 1735: + if (lookahead == 'r') ADVANCE(1703); + END_STATE(); + case 1736: + if (lookahead == 'r') ADVANCE(1704); + END_STATE(); + case 1737: + if (lookahead == 'r') ADVANCE(1705); + END_STATE(); + case 1738: + if (lookahead == 'r') ADVANCE(1709); + END_STATE(); + case 1739: + if (lookahead == 'r') ADVANCE(908); + END_STATE(); + case 1740: + if (lookahead == 'r') ADVANCE(720); + END_STATE(); + case 1741: + if (lookahead == 'r') ADVANCE(931); + END_STATE(); + case 1742: + if (lookahead == 'r') ADVANCE(324); + END_STATE(); + case 1743: + if (lookahead == 'r') ADVANCE(1577); + END_STATE(); + case 1744: + if (lookahead == 'r') ADVANCE(1896); + END_STATE(); + case 1745: + if (lookahead == 'r') ADVANCE(1579); + END_STATE(); + case 1746: + if (lookahead == 'r') ADVANCE(940); + END_STATE(); + case 1747: + if (lookahead == 'r') ADVANCE(941); + END_STATE(); + case 1748: + if (lookahead == 'r') ADVANCE(942); + END_STATE(); + case 1749: + if (lookahead == 'r') ADVANCE(1182); + END_STATE(); + case 1750: + if (lookahead == 'r') ADVANCE(1184); + END_STATE(); + case 1751: + if (lookahead == 'r') ADVANCE(1185); + END_STATE(); + case 1752: + if (lookahead == 's') ADVANCE(13); + END_STATE(); + case 1753: + if (lookahead == 's') ADVANCE(900); + END_STATE(); + case 1754: + if (lookahead == 's') ADVANCE(175); + if (lookahead == 'u') ADVANCE(1338); + END_STATE(); + case 1755: + if (lookahead == 's') ADVANCE(323); + END_STATE(); + case 1756: + if (lookahead == 's') ADVANCE(349); + END_STATE(); + case 1757: + if (lookahead == 's') ADVANCE(61); + END_STATE(); + case 1758: + if (lookahead == 's') ADVANCE(209); + END_STATE(); + case 1759: + if (lookahead == 's') ADVANCE(79); + END_STATE(); + case 1760: + if (lookahead == 's') ADVANCE(38); + END_STATE(); + case 1761: + if (lookahead == 's') ADVANCE(40); + END_STATE(); + case 1762: + if (lookahead == 's') ADVANCE(39); + END_STATE(); + case 1763: + if (lookahead == 's') ADVANCE(1807); + END_STATE(); + case 1764: + if (lookahead == 's') ADVANCE(343); + END_STATE(); + case 1765: + if (lookahead == 's') ADVANCE(1472); + END_STATE(); + case 1766: + if (lookahead == 's') ADVANCE(140); + END_STATE(); + case 1767: + if (lookahead == 's') ADVANCE(1072); + END_STATE(); + case 1768: + if (lookahead == 's') ADVANCE(357); + END_STATE(); + case 1769: + if (lookahead == 's') ADVANCE(198); + END_STATE(); + case 1770: + if (lookahead == 's') ADVANCE(106); + END_STATE(); + case 1771: + if (lookahead == 's') ADVANCE(64); + END_STATE(); + case 1772: + if (lookahead == 's') ADVANCE(1526); + END_STATE(); + case 1773: + if (lookahead == 's') ADVANCE(1032); + END_STATE(); + case 1774: + if (lookahead == 's') ADVANCE(1997); + END_STATE(); + case 1775: + if (lookahead == 's') ADVANCE(192); + END_STATE(); + case 1776: + if (lookahead == 's') ADVANCE(1033); + END_STATE(); + case 1777: + if (lookahead == 's') ADVANCE(1037); + END_STATE(); + case 1778: + if (lookahead == 's') ADVANCE(1752); + END_STATE(); + case 1779: + if (lookahead == 's') ADVANCE(1108); + END_STATE(); + case 1780: + if (lookahead == 's') ADVANCE(1207); + END_STATE(); + case 1781: + if (lookahead == 's') ADVANCE(1901); + END_STATE(); + case 1782: + if (lookahead == 's') ADVANCE(743); + END_STATE(); + case 1783: + if (lookahead == 's') ADVANCE(775); + END_STATE(); + case 1784: + if (lookahead == 's') ADVANCE(823); + END_STATE(); + case 1785: + if (lookahead == 's') ADVANCE(1950); + END_STATE(); + case 1786: + if (lookahead == 's') ADVANCE(1906); + END_STATE(); + case 1787: + if (lookahead == 's') ADVANCE(1852); + END_STATE(); + case 1788: + if (lookahead == 's') ADVANCE(1233); + END_STATE(); + case 1789: + if (lookahead == 's') ADVANCE(1764); + END_STATE(); + case 1790: + if (lookahead == 's') ADVANCE(1842); + END_STATE(); + case 1791: + if (lookahead == 's') ADVANCE(1845); + END_STATE(); + case 1792: + if (lookahead == 's') ADVANCE(1170); + END_STATE(); + case 1793: + if (lookahead == 's') ADVANCE(1839); + END_STATE(); + case 1794: + if (lookahead == 's') ADVANCE(860); + END_STATE(); + case 1795: + if (lookahead == 's') ADVANCE(799); + END_STATE(); + case 1796: + if (lookahead == 's') ADVANCE(830); + END_STATE(); + case 1797: + if (lookahead == 's') ADVANCE(819); + END_STATE(); + case 1798: + if (lookahead == 's') ADVANCE(1042); + END_STATE(); + case 1799: + if (lookahead == 's') ADVANCE(1908); + END_STATE(); + case 1800: + if (lookahead == 's') ADVANCE(1863); + END_STATE(); + case 1801: + if (lookahead == 's') ADVANCE(1851); + END_STATE(); + case 1802: + if (lookahead == 's') ADVANCE(865); + END_STATE(); + case 1803: + if (lookahead == 's') ADVANCE(1117); + END_STATE(); + case 1804: + if (lookahead == 's') ADVANCE(880); + END_STATE(); + case 1805: + if (lookahead == 's') ADVANCE(936); + END_STATE(); + case 1806: + if (lookahead == 't') ADVANCE(1987); + END_STATE(); + case 1807: + if (lookahead == 't') ADVANCE(13); + END_STATE(); + case 1808: + if (lookahead == 't') ADVANCE(13); + if (lookahead == 'u') ADVANCE(600); + END_STATE(); + case 1809: + if (lookahead == 't') ADVANCE(13); + if (lookahead == 'w') ADVANCE(1369); + END_STATE(); + case 1810: + if (lookahead == 't') ADVANCE(250); + END_STATE(); + case 1811: + if (lookahead == 't') ADVANCE(365); + END_STATE(); + case 1812: + if (lookahead == 't') ADVANCE(550); + END_STATE(); + case 1813: + if (lookahead == 't') ADVANCE(220); + END_STATE(); + case 1814: + if (lookahead == 't') ADVANCE(268); + END_STATE(); + case 1815: + if (lookahead == 't') ADVANCE(306); + END_STATE(); + case 1816: + if (lookahead == 't') ADVANCE(549); + END_STATE(); + case 1817: + if (lookahead == 't') ADVANCE(121); + END_STATE(); + case 1818: + if (lookahead == 't') ADVANCE(1005); + END_STATE(); + case 1819: + if (lookahead == 't') ADVANCE(361); + END_STATE(); + case 1820: + if (lookahead == 't') ADVANCE(371); + END_STATE(); + case 1821: + if (lookahead == 't') ADVANCE(271); + END_STATE(); + case 1822: + if (lookahead == 't') ADVANCE(274); + END_STATE(); + case 1823: + if (lookahead == 't') ADVANCE(375); + END_STATE(); + case 1824: + if (lookahead == 't') ADVANCE(557); + END_STATE(); + case 1825: + if (lookahead == 't') ADVANCE(272); + END_STATE(); + case 1826: + if (lookahead == 't') ADVANCE(273); + END_STATE(); + case 1827: + if (lookahead == 't') ADVANCE(1599); + END_STATE(); + case 1828: + if (lookahead == 't') ADVANCE(382); + END_STATE(); + case 1829: + if (lookahead == 't') ADVANCE(857); + END_STATE(); + case 1830: + if (lookahead == 't') ADVANCE(35); + END_STATE(); + case 1831: + if (lookahead == 't') ADVANCE(1327); + END_STATE(); + case 1832: + if (lookahead == 't') ADVANCE(322); + END_STATE(); + case 1833: + if (lookahead == 't') ADVANCE(603); + END_STATE(); + case 1834: + if (lookahead == 't') ADVANCE(1988); + END_STATE(); + case 1835: + if (lookahead == 't') ADVANCE(112); + if (lookahead == 'v') ADVANCE(1144); + END_STATE(); + case 1836: + if (lookahead == 't') ADVANCE(212); + END_STATE(); + case 1837: + if (lookahead == 't') ADVANCE(269); + END_STATE(); + case 1838: + if (lookahead == 't') ADVANCE(546); + END_STATE(); + case 1839: + if (lookahead == 't') ADVANCE(1437); + END_STATE(); + case 1840: + if (lookahead == 't') ADVANCE(884); + END_STATE(); + case 1841: + if (lookahead == 't') ADVANCE(372); + END_STATE(); + case 1842: + if (lookahead == 't') ADVANCE(71); + END_STATE(); + case 1843: + if (lookahead == 't') ADVANCE(1992); + END_STATE(); + case 1844: + if (lookahead == 't') ADVANCE(106); + END_STATE(); + case 1845: + if (lookahead == 't') ADVANCE(187); + END_STATE(); + case 1846: + if (lookahead == 't') ADVANCE(1032); + END_STATE(); + case 1847: + if (lookahead == 't') ADVANCE(1993); + END_STATE(); + case 1848: + if (lookahead == 't') ADVANCE(166); + END_STATE(); + case 1849: + if (lookahead == 't') ADVANCE(1037); + END_STATE(); + case 1850: + if (lookahead == 't') ADVANCE(165); + END_STATE(); + case 1851: + if (lookahead == 't') ADVANCE(1752); + END_STATE(); + case 1852: + if (lookahead == 't') ADVANCE(115); + END_STATE(); + case 1853: + if (lookahead == 't') ADVANCE(120); + END_STATE(); + case 1854: + if (lookahead == 't') ADVANCE(1034); + END_STATE(); + case 1855: + if (lookahead == 't') ADVANCE(1335); + END_STATE(); + case 1856: + if (lookahead == 't') ADVANCE(775); + END_STATE(); + case 1857: + if (lookahead == 't') ADVANCE(1507); + END_STATE(); + case 1858: + if (lookahead == 't') ADVANCE(1758); + END_STATE(); + case 1859: + if (lookahead == 't') ADVANCE(1062); + END_STATE(); + case 1860: + if (lookahead == 't') ADVANCE(1350); + END_STATE(); + case 1861: + if (lookahead == 't') ADVANCE(807); + END_STATE(); + case 1862: + if (lookahead == 't') ADVANCE(1784); + END_STATE(); + case 1863: + if (lookahead == 't') ADVANCE(848); + END_STATE(); + case 1864: + if (lookahead == 't') ADVANCE(1446); + END_STATE(); + case 1865: + if (lookahead == 't') ADVANCE(1634); + END_STATE(); + case 1866: + if (lookahead == 't') ADVANCE(483); + END_STATE(); + case 1867: + if (lookahead == 't') ADVANCE(1143); + END_STATE(); + case 1868: + if (lookahead == 't') ADVANCE(1120); + END_STATE(); + case 1869: + if (lookahead == 't') ADVANCE(1154); + END_STATE(); + case 1870: + if (lookahead == 't') ADVANCE(1443); + END_STATE(); + case 1871: + if (lookahead == 't') ADVANCE(1145); + END_STATE(); + case 1872: + if (lookahead == 't') ADVANCE(1168); + END_STATE(); + case 1873: + if (lookahead == 't') ADVANCE(1162); + END_STATE(); + case 1874: + if (lookahead == 't') ADVANCE(1122); + END_STATE(); + case 1875: + if (lookahead == 't') ADVANCE(1602); + END_STATE(); + case 1876: + if (lookahead == 't') ADVANCE(934); + END_STATE(); + case 1877: + if (lookahead == 't') ADVANCE(555); + END_STATE(); + case 1878: + if (lookahead == 't') ADVANCE(1402); + END_STATE(); + case 1879: + if (lookahead == 't') ADVANCE(1107); + END_STATE(); + case 1880: + if (lookahead == 't') ADVANCE(1500); + END_STATE(); + case 1881: + if (lookahead == 't') ADVANCE(1403); + END_STATE(); + case 1882: + if (lookahead == 't') ADVANCE(1687); + END_STATE(); + case 1883: + if (lookahead == 't') ADVANCE(883); + END_STATE(); + case 1884: + if (lookahead == 't') ADVANCE(491); + END_STATE(); + case 1885: + if (lookahead == 't') ADVANCE(1084); + END_STATE(); + case 1886: + if (lookahead == 't') ADVANCE(885); + END_STATE(); + case 1887: + if (lookahead == 't') ADVANCE(887); + END_STATE(); + case 1888: + if (lookahead == 't') ADVANCE(889); + END_STATE(); + case 1889: + if (lookahead == 't') ADVANCE(892); + END_STATE(); + case 1890: + if (lookahead == 't') ADVANCE(910); + END_STATE(); + case 1891: + if (lookahead == 't') ADVANCE(894); + END_STATE(); + case 1892: + if (lookahead == 't') ADVANCE(1063); + END_STATE(); + case 1893: + if (lookahead == 't') ADVANCE(534); + END_STATE(); + case 1894: + if (lookahead == 't') ADVANCE(1153); + END_STATE(); + case 1895: + if (lookahead == 't') ADVANCE(1159); + END_STATE(); + case 1896: + if (lookahead == 't') ADVANCE(1169); + END_STATE(); + case 1897: + if (lookahead == 't') ADVANCE(554); + END_STATE(); + case 1898: + if (lookahead == 't') ADVANCE(543); + END_STATE(); + case 1899: + if (lookahead == 'u') ADVANCE(13); + END_STATE(); + case 1900: + if (lookahead == 'u') ADVANCE(471); + END_STATE(); + case 1901: + if (lookahead == 'u') ADVANCE(2011); + END_STATE(); + case 1902: + if (lookahead == 'u') ADVANCE(1437); + END_STATE(); + case 1903: + if (lookahead == 'u') ADVANCE(164); + END_STATE(); + case 1904: + if (lookahead == 'u') ADVANCE(573); + END_STATE(); + case 1905: + if (lookahead == 'u') ADVANCE(586); + END_STATE(); + case 1906: + if (lookahead == 'u') ADVANCE(584); + END_STATE(); + case 1907: + if (lookahead == 'u') ADVANCE(1526); + END_STATE(); + case 1908: + if (lookahead == 'u') ADVANCE(567); + END_STATE(); + case 1909: + if (lookahead == 'u') ADVANCE(1756); + END_STATE(); + case 1910: + if (lookahead == 'u') ADVANCE(591); + END_STATE(); + case 1911: + if (lookahead == 'u') ADVANCE(1844); + END_STATE(); + case 1912: + if (lookahead == 'u') ADVANCE(1844); + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 1913: + if (lookahead == 'u') ADVANCE(1312); + END_STATE(); + case 1914: + if (lookahead == 'u') ADVANCE(1752); + END_STATE(); + case 1915: + if (lookahead == 'u') ADVANCE(858); + END_STATE(); + case 1916: + if (lookahead == 'u') ADVANCE(1768); + END_STATE(); + case 1917: + if (lookahead == 'u') ADVANCE(775); + END_STATE(); + case 1918: + if (lookahead == 'u') ADVANCE(1315); + END_STATE(); + case 1919: + if (lookahead == 'u') ADVANCE(656); + END_STATE(); + case 1920: + if (lookahead == 'u') ADVANCE(809); + END_STATE(); + case 1921: + if (lookahead == 'u') ADVANCE(449); + END_STATE(); + case 1922: + if (lookahead == 'u') ADVANCE(1759); + END_STATE(); + case 1923: + if (lookahead == 'u') ADVANCE(1438); + END_STATE(); + case 1924: + if (lookahead == 'u') ADVANCE(1223); + END_STATE(); + case 1925: + if (lookahead == 'u') ADVANCE(1783); + END_STATE(); + case 1926: + if (lookahead == 'u') ADVANCE(690); + END_STATE(); + case 1927: + if (lookahead == 'u') ADVANCE(1770); + END_STATE(); + case 1928: + if (lookahead == 'u') ADVANCE(1091); + END_STATE(); + case 1929: + if (lookahead == 'u') ADVANCE(843); + END_STATE(); + case 1930: + if (lookahead == 'u') ADVANCE(470); + END_STATE(); + case 1931: + if (lookahead == 'u') ADVANCE(1156); + END_STATE(); + case 1932: + if (lookahead == 'u') ADVANCE(1090); + END_STATE(); + case 1933: + if (lookahead == 'u') ADVANCE(1630); + END_STATE(); + case 1934: + if (lookahead == 'u') ADVANCE(1602); + END_STATE(); + case 1935: + if (lookahead == 'u') ADVANCE(1631); + END_STATE(); + case 1936: + if (lookahead == 'u') ADVANCE(1695); + END_STATE(); + case 1937: + if (lookahead == 'u') ADVANCE(1697); + END_STATE(); + case 1938: + if (lookahead == 'u') ADVANCE(1042); + END_STATE(); + case 1939: + if (lookahead == 'u') ADVANCE(1325); + END_STATE(); + case 1940: + if (lookahead == 'u') ADVANCE(1396); + END_STATE(); + case 1941: + if (lookahead == 'u') ADVANCE(1790); + END_STATE(); + case 1942: + if (lookahead == 'u') ADVANCE(1125); + END_STATE(); + case 1943: + if (lookahead == 'u') ADVANCE(1249); + END_STATE(); + case 1944: + if (lookahead == 'u') ADVANCE(1856); + END_STATE(); + case 1945: + if (lookahead == 'u') ADVANCE(490); + END_STATE(); + case 1946: + if (lookahead == 'u') ADVANCE(1265); + END_STATE(); + case 1947: + if (lookahead == 'u') ADVANCE(1511); + END_STATE(); + case 1948: + if (lookahead == 'u') ADVANCE(1323); + END_STATE(); + case 1949: + if (lookahead == 'u') ADVANCE(496); + END_STATE(); + case 1950: + if (lookahead == 'u') ADVANCE(1711); + END_STATE(); + case 1951: + if (lookahead == 'u') ADVANCE(1304); + END_STATE(); + case 1952: + if (lookahead == 'u') ADVANCE(539); + END_STATE(); + case 1953: + if (lookahead == 'u') ADVANCE(597); + END_STATE(); + case 1954: + if (lookahead == 'u') ADVANCE(541); + END_STATE(); + case 1955: + if (lookahead == 'u') ADVANCE(596); + if (lookahead == 'w') ADVANCE(1363); + END_STATE(); + case 1956: + if (lookahead == 'u') ADVANCE(599); + END_STATE(); + case 1957: + if (lookahead == 'v') ADVANCE(13); + END_STATE(); + case 1958: + if (lookahead == 'v') ADVANCE(13); + if (lookahead == 'w') ADVANCE(774); + END_STATE(); + case 1959: + if (lookahead == 'v') ADVANCE(27); + END_STATE(); + case 1960: + if (lookahead == 'v') ADVANCE(106); + END_STATE(); + case 1961: + if (lookahead == 'v') ADVANCE(852); + if (lookahead == 'w') ADVANCE(851); + END_STATE(); + case 1962: + if (lookahead == 'v') ADVANCE(775); + END_STATE(); + case 1963: + if (lookahead == 'v') ADVANCE(800); + END_STATE(); + case 1964: + if (lookahead == 'v') ADVANCE(938); + END_STATE(); + case 1965: + if (lookahead == 'w') ADVANCE(13); + END_STATE(); + case 1966: + if (lookahead == 'w') ADVANCE(19); + END_STATE(); + case 1967: + if (lookahead == 'w') ADVANCE(23); + END_STATE(); + case 1968: + if (lookahead == 'w') ADVANCE(22); + END_STATE(); + case 1969: + if (lookahead == 'w') ADVANCE(21); + END_STATE(); + case 1970: + if (lookahead == 'w') ADVANCE(1437); + END_STATE(); + case 1971: + if (lookahead == 'w') ADVANCE(396); + END_STATE(); + case 1972: + if (lookahead == 'w') ADVANCE(187); + END_STATE(); + case 1973: + if (lookahead == 'w') ADVANCE(815); + END_STATE(); + case 1974: + if (lookahead == 'w') ADVANCE(1752); + END_STATE(); + case 1975: + if (lookahead == 'w') ADVANCE(1353); + END_STATE(); + case 1976: + if (lookahead == 'w') ADVANCE(1369); + END_STATE(); + case 1977: + if (lookahead == 'w') ADVANCE(1367); + END_STATE(); + case 1978: + if (lookahead == 'w') ADVANCE(1364); + END_STATE(); + case 1979: + if (lookahead == 'w') ADVANCE(1151); + END_STATE(); + case 1980: + if (lookahead == 'w') ADVANCE(205); + END_STATE(); + case 1981: + if (lookahead == 'w') ADVANCE(1277); + END_STATE(); + case 1982: + if (lookahead == 'w') ADVANCE(1435); + END_STATE(); + case 1983: + if (lookahead == 'w') ADVANCE(1434); + END_STATE(); + case 1984: + if (lookahead == 'x') ADVANCE(13); + END_STATE(); + case 1985: + if (lookahead == 'x') ADVANCE(1807); + END_STATE(); + case 1986: + if (lookahead == 'x') ADVANCE(115); + END_STATE(); + case 1987: + if (lookahead == 'y') ADVANCE(13); + END_STATE(); + case 1988: + if (lookahead == 'y') ADVANCE(364); + END_STATE(); + case 1989: + if (lookahead == 'y') ADVANCE(834); + END_STATE(); + case 1990: + if (lookahead == 'y') ADVANCE(311); + END_STATE(); + case 1991: + if (lookahead == 'y') ADVANCE(326); + END_STATE(); + case 1992: + if (lookahead == 'y') ADVANCE(195); + END_STATE(); + case 1993: + if (lookahead == 'y') ADVANCE(1957); + END_STATE(); + case 1994: + if (lookahead == 'y') ADVANCE(363); + END_STATE(); + case 1995: + if (lookahead == 'y') ADVANCE(369); + END_STATE(); + case 1996: + if (lookahead == 'y') ADVANCE(339); + END_STATE(); + case 1997: + if (lookahead == 'y') ADVANCE(1312); + END_STATE(); + case 1998: + if (lookahead == 'y') ADVANCE(774); + END_STATE(); + case 1999: + if (lookahead == 'y') ADVANCE(1752); + END_STATE(); + case 2000: + if (lookahead == 'y') ADVANCE(823); + END_STATE(); + case 2001: + if (lookahead == 'z') ADVANCE(1514); + END_STATE(); + case 2002: + if (lookahead == 'z') ADVANCE(427); + END_STATE(); + case 2003: + if (lookahead == 'z') ADVANCE(1130); + END_STATE(); + case 2004: + if (lookahead == 'z') ADVANCE(861); + END_STATE(); + case 2005: + if (lookahead == '2' || + lookahead == '4') ADVANCE(13); + END_STATE(); + case 2006: + if (lookahead == '3' || + lookahead == '5') ADVANCE(13); + END_STATE(); + case 2007: + if (lookahead == '6' || + lookahead == '8') ADVANCE(13); + END_STATE(); + case 2008: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(13); + END_STATE(); + case 2009: + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(2029); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); + END_STATE(); + case 2010: + if (lookahead == 'a' || + lookahead == 'h') ADVANCE(13); + if (lookahead == 'w') ADVANCE(903); + END_STATE(); + case 2011: + if (lookahead == 'b' || + lookahead == 'p') ADVANCE(13); + END_STATE(); + case 2012: + if (lookahead == 'b' || + lookahead == 'u') ADVANCE(13); + END_STATE(); + case 2013: + if (lookahead == 'd' || + lookahead == 'u') ADVANCE(13); + END_STATE(); + case 2014: + if (lookahead == 'e' || + lookahead == 'k') ADVANCE(13); + END_STATE(); + case 2015: + if (lookahead == 'e' || + lookahead == 't') ADVANCE(13); + END_STATE(); + case 2016: + if (lookahead == 'f' || + lookahead == 'r') ADVANCE(13); + END_STATE(); + case 2017: + if (lookahead == 'l' || + lookahead == 'r') ADVANCE(13); + END_STATE(); + case 2018: + if (lookahead == 'o' || + lookahead == 'u') ADVANCE(13); + END_STATE(); + case 2019: + if (lookahead == 'r' || + lookahead == 'y') ADVANCE(13); + END_STATE(); + case 2020: + if (lookahead == '3' || + lookahead == '4') ADVANCE(13); + END_STATE(); + case 2021: + if (lookahead == 'R' || + lookahead == 'S') ADVANCE(13); + if (lookahead == 'a') ADVANCE(1763); + if (lookahead == 'c') ADVANCE(1138); + if (lookahead == 'd') ADVANCE(429); + END_STATE(); + case 2022: + if (lookahead == 'e' || + lookahead == 'f') ADVANCE(13); + END_STATE(); + case 2023: + if (lookahead == '4' || + lookahead == '5' || + lookahead == '8') ADVANCE(13); + if (lookahead == ';') ADVANCE(2033); + END_STATE(); + case 2024: + if (('a' <= lookahead && lookahead <= 'c')) ADVANCE(13); + END_STATE(); + case 2025: + if (lookahead == 'L' || + lookahead == 'R' || + lookahead == 'l' || + lookahead == 'r') ADVANCE(13); + END_STATE(); + case 2026: + if (('1' <= lookahead && lookahead <= '3') || + lookahead == 'E') ADVANCE(13); + if (lookahead == ';') ADVANCE(2033); + if (lookahead == 'd') ADVANCE(1448); + if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'h') ADVANCE(1765); + if (lookahead == 'l') ADVANCE(433); + if (lookahead == 'm') ADVANCE(1924); + if (lookahead == 'n') ADVANCE(2008); + if (lookahead == 'p') ADVANCE(1297); + if (lookahead == 's') ADVANCE(875); + END_STATE(); + case 2027: + if (('2' <= lookahead && lookahead <= '6') || + lookahead == '8') ADVANCE(13); + if (lookahead == ';') ADVANCE(2033); + END_STATE(); + case 2028: + if (('a' <= lookahead && lookahead <= 'h')) ADVANCE(13); + END_STATE(); + case 2029: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); + END_STATE(); + case 2030: + if (eof) ADVANCE(2031); + if (lookahead == '!') ADVANCE(2040); + if (lookahead == '"') ADVANCE(2041); + if (lookahead == '#') ADVANCE(2042); + if (lookahead == '$') ADVANCE(2043); + if (lookahead == '%') ADVANCE(2044); + if (lookahead == '&') ADVANCE(2045); + if (lookahead == '\'') ADVANCE(2047); + if (lookahead == '(') ADVANCE(2070); + if (lookahead == ')') ADVANCE(2071); + if (lookahead == '*') ADVANCE(2048); + if (lookahead == '+') ADVANCE(2049); + if (lookahead == ',') ADVANCE(2050); + if (lookahead == '-') ADVANCE(2051); + if (lookahead == '.') ADVANCE(2053); + if (lookahead == '/') ADVANCE(2054); + if (lookahead == ':') ADVANCE(2055); + if (lookahead == ';') ADVANCE(2056); + if (lookahead == '<') ADVANCE(2038); + if (lookahead == '=') ADVANCE(2057); + if (lookahead == '>') ADVANCE(2039); + if (lookahead == '?') ADVANCE(2058); + if (lookahead == '@') ADVANCE(2060); + if (lookahead == '[') ADVANCE(2035); + if (lookahead == '\\') ADVANCE(2061); + if (lookahead == ']') ADVANCE(2036); + if (lookahead == '^') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2064); + if (lookahead == '`') ADVANCE(2065); + if (lookahead == '{') ADVANCE(2066); + if (lookahead == '|') ADVANCE(2067); + if (lookahead == '}') ADVANCE(2068); + if (lookahead == '~') ADVANCE(2069); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2080); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(2077); + END_STATE(); + case 2031: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 2032: + ACCEPT_TOKEN(sym__backslash_escape); + END_STATE(); + case 2033: + ACCEPT_TOKEN(sym_entity_reference); + END_STATE(); + case 2034: + ACCEPT_TOKEN(sym_numeric_character_reference); + END_STATE(); + case 2035: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == 'x') ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(378); + END_STATE(); + case 2036: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 2037: + ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == ']') ADVANCE(245); + END_STATE(); + case 2038: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 2039: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 2040: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 2041: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 2042: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 2043: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 2044: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 2045: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 2046: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '#') ADVANCE(2009); + if (lookahead == 'A') ADVANCE(312); + if (lookahead == 'B') ADVANCE(381); + if (lookahead == 'C') ADVANCE(335); + if (lookahead == 'D') ADVANCE(296); + if (lookahead == 'E') ADVANCE(351); + if (lookahead == 'F') ADVANCE(606); + if (lookahead == 'G') ADVANCE(45); + if (lookahead == 'H') ADVANCE(246); + if (lookahead == 'I') ADVANCE(318); + if (lookahead == 'J') ADVANCE(708); + if (lookahead == 'K') ADVANCE(334); + if (lookahead == 'L') ADVANCE(44); + if (lookahead == 'M') ADVANCE(423); + if (lookahead == 'N') ADVANCE(342); + if (lookahead == 'O') ADVANCE(320); + if (lookahead == 'P') ADVANCE(419); + if (lookahead == 'Q') ADVANCE(373); + if (lookahead == 'R') ADVANCE(277); + if (lookahead == 'S') ADVANCE(331); + if (lookahead == 'T') ADVANCE(332); + if (lookahead == 'U') ADVANCE(400); + if (lookahead == 'V') ADVANCE(304); + if (lookahead == 'W') ADVANCE(660); + if (lookahead == 'X') ADVANCE(948); + if (lookahead == 'Y') ADVANCE(248); + if (lookahead == 'Z') ADVANCE(336); + if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'b') ADVANCE(350); + if (lookahead == 'c') ADVANCE(386); + if (lookahead == 'd') ADVANCE(253); + if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'f') ADVANCE(428); + if (lookahead == 'g') ADVANCE(34); + if (lookahead == 'h') ADVANCE(255); + if (lookahead == 'i') ADVANCE(380); + if (lookahead == 'j') ADVANCE(707); + if (lookahead == 'k') ADVANCE(512); + if (lookahead == 'l') ADVANCE(14); + if (lookahead == 'm') ADVANCE(299); + if (lookahead == 'n') ADVANCE(328); + if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'p') ADVANCE(450); + if (lookahead == 'q') ADVANCE(949); + if (lookahead == 'r') ADVANCE(247); + if (lookahead == 's') ADVANCE(507); + if (lookahead == 't') ADVANCE(403); + if (lookahead == 'u') ADVANCE(254); + if (lookahead == 'v') ADVANCE(251); + if (lookahead == 'w') ADVANCE(659); + if (lookahead == 'x') ADVANCE(615); + if (lookahead == 'y') ADVANCE(418); + if (lookahead == 'z') ADVANCE(508); + END_STATE(); + case 2047: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 2048: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 2049: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 2050: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 2051: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 2052: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(244); + END_STATE(); + case 2053: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 2054: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 2055: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 2056: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 2057: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 2058: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 2059: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '>') ADVANCE(2075); + END_STATE(); + case 2060: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 2061: + ACCEPT_TOKEN(anon_sym_BSLASH); + END_STATE(); + case 2062: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (('!' <= lookahead && lookahead <= '/') || + (':' <= lookahead && lookahead <= '@') || + ('[' <= lookahead && lookahead <= '`') || + ('{' <= lookahead && lookahead <= '~')) ADVANCE(2032); + END_STATE(); + case 2063: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 2064: + ACCEPT_TOKEN(anon_sym__); + END_STATE(); + case 2065: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 2066: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 2067: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 2068: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 2069: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 2070: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 2071: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 2072: + ACCEPT_TOKEN(sym__newline_token); + END_STATE(); + case 2073: + ACCEPT_TOKEN(sym__newline_token); + if (lookahead == '\n') ADVANCE(2072); + END_STATE(); + case 2074: + ACCEPT_TOKEN(anon_sym_DASH_DASH_GT); + END_STATE(); + case 2075: + ACCEPT_TOKEN(anon_sym_QMARK_GT); + END_STATE(); + case 2076: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK_GT); + END_STATE(); + case 2077: + ACCEPT_TOKEN(aux_sym__word_token1); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + (lookahead < ' ' || '/' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '`' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(2077); + END_STATE(); + case 2078: + ACCEPT_TOKEN(anon_sym_LBRACKx_RBRACK); + END_STATE(); + case 2079: + ACCEPT_TOKEN(aux_sym__word_token2); + END_STATE(); + case 2080: + ACCEPT_TOKEN(sym__whitespace); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2080); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 2030, .external_lex_state = 2}, + [2] = {.lex_state = 2030, .external_lex_state = 3}, + [3] = {.lex_state = 2030, .external_lex_state = 3}, + [4] = {.lex_state = 2030, .external_lex_state = 3}, + [5] = {.lex_state = 2030, .external_lex_state = 3}, + [6] = {.lex_state = 2030, .external_lex_state = 3}, + [7] = {.lex_state = 2030, .external_lex_state = 3}, + [8] = {.lex_state = 2030, .external_lex_state = 3}, + [9] = {.lex_state = 2030, .external_lex_state = 3}, + [10] = {.lex_state = 2030, .external_lex_state = 3}, + [11] = {.lex_state = 2030, .external_lex_state = 3}, + [12] = {.lex_state = 2030, .external_lex_state = 4}, + [13] = {.lex_state = 2030, .external_lex_state = 4}, + [14] = {.lex_state = 2030, .external_lex_state = 4}, + [15] = {.lex_state = 2030, .external_lex_state = 4}, + [16] = {.lex_state = 2030, .external_lex_state = 4}, + [17] = {.lex_state = 2030, .external_lex_state = 4}, + [18] = {.lex_state = 2030, .external_lex_state = 4}, + [19] = {.lex_state = 2030, .external_lex_state = 4}, + [20] = {.lex_state = 2030, .external_lex_state = 4}, + [21] = {.lex_state = 2030, .external_lex_state = 4}, + [22] = {.lex_state = 2030, .external_lex_state = 5}, + [23] = {.lex_state = 2030, .external_lex_state = 5}, + [24] = {.lex_state = 2030, .external_lex_state = 6}, + [25] = {.lex_state = 2030, .external_lex_state = 6}, + [26] = {.lex_state = 2030, .external_lex_state = 6}, + [27] = {.lex_state = 2030, .external_lex_state = 6}, + [28] = {.lex_state = 2030, .external_lex_state = 6}, + [29] = {.lex_state = 2030, .external_lex_state = 4}, + [30] = {.lex_state = 2030, .external_lex_state = 6}, + [31] = {.lex_state = 2030, .external_lex_state = 4}, + [32] = {.lex_state = 2030, .external_lex_state = 6}, + [33] = {.lex_state = 2030, .external_lex_state = 6}, + [34] = {.lex_state = 2030, .external_lex_state = 6}, + [35] = {.lex_state = 2030, .external_lex_state = 6}, + [36] = {.lex_state = 2030, .external_lex_state = 4}, + [37] = {.lex_state = 2030, .external_lex_state = 6}, + [38] = {.lex_state = 2030, .external_lex_state = 6}, + [39] = {.lex_state = 2030, .external_lex_state = 4}, + [40] = {.lex_state = 2030, .external_lex_state = 6}, + [41] = {.lex_state = 2030, .external_lex_state = 4}, + [42] = {.lex_state = 2030, .external_lex_state = 4}, + [43] = {.lex_state = 2030, .external_lex_state = 4}, + [44] = {.lex_state = 2030, .external_lex_state = 4}, + [45] = {.lex_state = 2030, .external_lex_state = 6}, + [46] = {.lex_state = 2030, .external_lex_state = 6}, + [47] = {.lex_state = 2030, .external_lex_state = 4}, + [48] = {.lex_state = 2030, .external_lex_state = 6}, + [49] = {.lex_state = 2030, .external_lex_state = 4}, + [50] = {.lex_state = 2030, .external_lex_state = 4}, + [51] = {.lex_state = 2030, .external_lex_state = 4}, + [52] = {.lex_state = 2030, .external_lex_state = 4}, + [53] = {.lex_state = 2030, .external_lex_state = 6}, + [54] = {.lex_state = 2030, .external_lex_state = 6}, + [55] = {.lex_state = 2030, .external_lex_state = 6}, + [56] = {.lex_state = 2030, .external_lex_state = 6}, + [57] = {.lex_state = 2030, .external_lex_state = 4}, + [58] = {.lex_state = 2030, .external_lex_state = 6}, + [59] = {.lex_state = 2030, .external_lex_state = 4}, + [60] = {.lex_state = 2030, .external_lex_state = 6}, + [61] = {.lex_state = 2030, .external_lex_state = 4}, + [62] = {.lex_state = 2030, .external_lex_state = 6}, + [63] = {.lex_state = 2030, .external_lex_state = 4}, + [64] = {.lex_state = 2030, .external_lex_state = 4}, + [65] = {.lex_state = 2030, .external_lex_state = 6}, + [66] = {.lex_state = 2030, .external_lex_state = 6}, + [67] = {.lex_state = 2030, .external_lex_state = 6}, + [68] = {.lex_state = 2030, .external_lex_state = 4}, + [69] = {.lex_state = 2030, .external_lex_state = 6}, + [70] = {.lex_state = 2030, .external_lex_state = 4}, + [71] = {.lex_state = 2030, .external_lex_state = 4}, + [72] = {.lex_state = 2030, .external_lex_state = 4}, + [73] = {.lex_state = 2030, .external_lex_state = 6}, + [74] = {.lex_state = 2030, .external_lex_state = 6}, + [75] = {.lex_state = 2030, .external_lex_state = 6}, + [76] = {.lex_state = 2030, .external_lex_state = 4}, + [77] = {.lex_state = 2030, .external_lex_state = 4}, + [78] = {.lex_state = 2030, .external_lex_state = 6}, + [79] = {.lex_state = 2030, .external_lex_state = 4}, + [80] = {.lex_state = 2030, .external_lex_state = 6}, + [81] = {.lex_state = 2030, .external_lex_state = 4}, + [82] = {.lex_state = 2030, .external_lex_state = 4}, + [83] = {.lex_state = 2030, .external_lex_state = 4}, + [84] = {.lex_state = 2030, .external_lex_state = 6}, + [85] = {.lex_state = 2030, .external_lex_state = 6}, + [86] = {.lex_state = 2030, .external_lex_state = 6}, + [87] = {.lex_state = 2030, .external_lex_state = 4}, + [88] = {.lex_state = 2030, .external_lex_state = 6}, + [89] = {.lex_state = 2030, .external_lex_state = 6}, + [90] = {.lex_state = 2030, .external_lex_state = 4}, + [91] = {.lex_state = 2030, .external_lex_state = 4}, + [92] = {.lex_state = 2030, .external_lex_state = 4}, + [93] = {.lex_state = 2030, .external_lex_state = 4}, + [94] = {.lex_state = 2030, .external_lex_state = 6}, + [95] = {.lex_state = 2030, .external_lex_state = 4}, + [96] = {.lex_state = 2030, .external_lex_state = 4}, + [97] = {.lex_state = 2030, .external_lex_state = 6}, + [98] = {.lex_state = 2030, .external_lex_state = 7}, + [99] = {.lex_state = 2030, .external_lex_state = 6}, + [100] = {.lex_state = 2030, .external_lex_state = 4}, + [101] = {.lex_state = 2030, .external_lex_state = 6}, + [102] = {.lex_state = 2030, .external_lex_state = 4}, + [103] = {.lex_state = 2030, .external_lex_state = 6}, + [104] = {.lex_state = 2030, .external_lex_state = 6}, + [105] = {.lex_state = 2030, .external_lex_state = 8}, + [106] = {.lex_state = 2030, .external_lex_state = 6}, + [107] = {.lex_state = 2030, .external_lex_state = 6}, + [108] = {.lex_state = 2030, .external_lex_state = 4}, + [109] = {.lex_state = 2030, .external_lex_state = 9}, + [110] = {.lex_state = 2030, .external_lex_state = 9}, + [111] = {.lex_state = 2030, .external_lex_state = 10}, + [112] = {.lex_state = 2030, .external_lex_state = 11}, + [113] = {.lex_state = 2030, .external_lex_state = 12}, + [114] = {.lex_state = 2030, .external_lex_state = 13}, + [115] = {.lex_state = 2030, .external_lex_state = 9}, + [116] = {.lex_state = 2030, .external_lex_state = 13}, + [117] = {.lex_state = 2030, .external_lex_state = 13}, + [118] = {.lex_state = 2030, .external_lex_state = 14}, + [119] = {.lex_state = 2030, .external_lex_state = 13}, + [120] = {.lex_state = 2030, .external_lex_state = 9}, + [121] = {.lex_state = 2030, .external_lex_state = 13}, + [122] = {.lex_state = 2030, .external_lex_state = 11}, + [123] = {.lex_state = 2030, .external_lex_state = 14}, + [124] = {.lex_state = 2030, .external_lex_state = 15}, + [125] = {.lex_state = 2030, .external_lex_state = 9}, + [126] = {.lex_state = 2030, .external_lex_state = 11}, + [127] = {.lex_state = 2030, .external_lex_state = 16}, + [128] = {.lex_state = 2030, .external_lex_state = 14}, + [129] = {.lex_state = 2030, .external_lex_state = 5}, + [130] = {.lex_state = 2030, .external_lex_state = 3}, + [131] = {.lex_state = 2030, .external_lex_state = 5}, + [132] = {.lex_state = 2030, .external_lex_state = 5}, + [133] = {.lex_state = 2030, .external_lex_state = 13}, + [134] = {.lex_state = 2030, .external_lex_state = 5}, + [135] = {.lex_state = 2030, .external_lex_state = 17}, + [136] = {.lex_state = 2030, .external_lex_state = 5}, + [137] = {.lex_state = 2030, .external_lex_state = 3}, + [138] = {.lex_state = 2030, .external_lex_state = 9}, + [139] = {.lex_state = 2030, .external_lex_state = 18}, + [140] = {.lex_state = 2030, .external_lex_state = 5}, + [141] = {.lex_state = 2030, .external_lex_state = 5}, + [142] = {.lex_state = 2030, .external_lex_state = 5}, + [143] = {.lex_state = 2030, .external_lex_state = 3}, + [144] = {.lex_state = 2030, .external_lex_state = 3}, + [145] = {.lex_state = 2030, .external_lex_state = 5}, + [146] = {.lex_state = 2030, .external_lex_state = 3}, + [147] = {.lex_state = 2030, .external_lex_state = 3}, + [148] = {.lex_state = 2030, .external_lex_state = 6}, + [149] = {.lex_state = 2030, .external_lex_state = 5}, + [150] = {.lex_state = 2030, .external_lex_state = 3}, + [151] = {.lex_state = 2030, .external_lex_state = 5}, + [152] = {.lex_state = 2030, .external_lex_state = 5}, + [153] = {.lex_state = 2030, .external_lex_state = 3}, + [154] = {.lex_state = 2030, .external_lex_state = 5}, + [155] = {.lex_state = 2030, .external_lex_state = 5}, + [156] = {.lex_state = 2030, .external_lex_state = 5}, + [157] = {.lex_state = 2030, .external_lex_state = 5}, + [158] = {.lex_state = 2030, .external_lex_state = 5}, + [159] = {.lex_state = 2030, .external_lex_state = 3}, + [160] = {.lex_state = 2030, .external_lex_state = 3}, + [161] = {.lex_state = 2030, .external_lex_state = 5}, + [162] = {.lex_state = 2030, .external_lex_state = 3}, + [163] = {.lex_state = 2030, .external_lex_state = 5}, + [164] = {.lex_state = 2030, .external_lex_state = 18}, + [165] = {.lex_state = 2030, .external_lex_state = 5}, + [166] = {.lex_state = 2030, .external_lex_state = 5}, + [167] = {.lex_state = 2030, .external_lex_state = 3}, + [168] = {.lex_state = 2030, .external_lex_state = 5}, + [169] = {.lex_state = 2030, .external_lex_state = 5}, + [170] = {.lex_state = 2030, .external_lex_state = 5}, + [171] = {.lex_state = 2030, .external_lex_state = 18}, + [172] = {.lex_state = 2030, .external_lex_state = 5}, + [173] = {.lex_state = 2030, .external_lex_state = 3}, + [174] = {.lex_state = 2030, .external_lex_state = 5}, + [175] = {.lex_state = 2030, .external_lex_state = 3}, + [176] = {.lex_state = 2030, .external_lex_state = 17}, + [177] = {.lex_state = 2030, .external_lex_state = 5}, + [178] = {.lex_state = 2030, .external_lex_state = 3}, + [179] = {.lex_state = 2030, .external_lex_state = 3}, + [180] = {.lex_state = 2030, .external_lex_state = 3}, + [181] = {.lex_state = 2030, .external_lex_state = 3}, + [182] = {.lex_state = 2030, .external_lex_state = 3}, + [183] = {.lex_state = 2030, .external_lex_state = 3}, + [184] = {.lex_state = 2030, .external_lex_state = 3}, + [185] = {.lex_state = 2030, .external_lex_state = 5}, + [186] = {.lex_state = 2030, .external_lex_state = 3}, + [187] = {.lex_state = 2030, .external_lex_state = 17}, + [188] = {.lex_state = 2030, .external_lex_state = 5}, + [189] = {.lex_state = 2030, .external_lex_state = 3}, + [190] = {.lex_state = 2030, .external_lex_state = 5}, + [191] = {.lex_state = 2030, .external_lex_state = 3}, + [192] = {.lex_state = 2030, .external_lex_state = 3}, + [193] = {.lex_state = 2030, .external_lex_state = 3}, + [194] = {.lex_state = 2030, .external_lex_state = 3}, + [195] = {.lex_state = 2030, .external_lex_state = 3}, + [196] = {.lex_state = 2030, .external_lex_state = 3}, + [197] = {.lex_state = 2030, .external_lex_state = 5}, + [198] = {.lex_state = 2030, .external_lex_state = 3}, + [199] = {.lex_state = 2030, .external_lex_state = 3}, + [200] = {.lex_state = 2030, .external_lex_state = 4}, + [201] = {.lex_state = 2030, .external_lex_state = 4}, + [202] = {.lex_state = 2030, .external_lex_state = 6}, + [203] = {.lex_state = 2030, .external_lex_state = 6}, + [204] = {.lex_state = 2030, .external_lex_state = 6}, + [205] = {.lex_state = 2030, .external_lex_state = 4}, + [206] = {.lex_state = 2030, .external_lex_state = 6}, + [207] = {.lex_state = 2030, .external_lex_state = 6}, + [208] = {.lex_state = 2030, .external_lex_state = 6}, + [209] = {.lex_state = 2030, .external_lex_state = 6}, + [210] = {.lex_state = 2030, .external_lex_state = 6}, + [211] = {.lex_state = 2030, .external_lex_state = 6}, + [212] = {.lex_state = 2030, .external_lex_state = 6}, + [213] = {.lex_state = 2030, .external_lex_state = 6}, + [214] = {.lex_state = 2030, .external_lex_state = 6}, + [215] = {.lex_state = 2030, .external_lex_state = 4}, + [216] = {.lex_state = 2030, .external_lex_state = 6}, + [217] = {.lex_state = 2030, .external_lex_state = 6}, + [218] = {.lex_state = 2030, .external_lex_state = 4}, + [219] = {.lex_state = 2030, .external_lex_state = 6}, + [220] = {.lex_state = 2030, .external_lex_state = 4}, + [221] = {.lex_state = 2030, .external_lex_state = 4}, + [222] = {.lex_state = 2030, .external_lex_state = 3}, + [223] = {.lex_state = 2030, .external_lex_state = 6}, + [224] = {.lex_state = 2030, .external_lex_state = 4}, + [225] = {.lex_state = 2030, .external_lex_state = 3}, + [226] = {.lex_state = 2030, .external_lex_state = 3}, + [227] = {.lex_state = 2030, .external_lex_state = 4}, + [228] = {.lex_state = 2030, .external_lex_state = 3}, + [229] = {.lex_state = 2030, .external_lex_state = 3}, + [230] = {.lex_state = 2030, .external_lex_state = 4}, + [231] = {.lex_state = 2030, .external_lex_state = 4}, + [232] = {.lex_state = 2030, .external_lex_state = 6}, + [233] = {.lex_state = 2030, .external_lex_state = 6}, + [234] = {.lex_state = 2030, .external_lex_state = 6}, + [235] = {.lex_state = 2030, .external_lex_state = 6}, + [236] = {.lex_state = 2030, .external_lex_state = 6}, + [237] = {.lex_state = 2030, .external_lex_state = 4}, + [238] = {.lex_state = 2030, .external_lex_state = 6}, + [239] = {.lex_state = 2030, .external_lex_state = 6}, + [240] = {.lex_state = 2030, .external_lex_state = 4}, + [241] = {.lex_state = 2030, .external_lex_state = 4}, + [242] = {.lex_state = 2030, .external_lex_state = 4}, + [243] = {.lex_state = 2030, .external_lex_state = 6}, + [244] = {.lex_state = 2030, .external_lex_state = 6}, + [245] = {.lex_state = 2030, .external_lex_state = 6}, + [246] = {.lex_state = 2030, .external_lex_state = 6}, + [247] = {.lex_state = 2030, .external_lex_state = 6}, + [248] = {.lex_state = 2030, .external_lex_state = 6}, + [249] = {.lex_state = 2030, .external_lex_state = 6}, + [250] = {.lex_state = 2030, .external_lex_state = 4}, + [251] = {.lex_state = 2030, .external_lex_state = 6}, + [252] = {.lex_state = 2030, .external_lex_state = 6}, + [253] = {.lex_state = 2030, .external_lex_state = 6}, + [254] = {.lex_state = 2030, .external_lex_state = 6}, + [255] = {.lex_state = 2030, .external_lex_state = 6}, + [256] = {.lex_state = 2030, .external_lex_state = 6}, + [257] = {.lex_state = 2030, .external_lex_state = 4}, + [258] = {.lex_state = 2030, .external_lex_state = 4}, + [259] = {.lex_state = 2030, .external_lex_state = 4}, + [260] = {.lex_state = 2030, .external_lex_state = 4}, + [261] = {.lex_state = 2030, .external_lex_state = 6}, + [262] = {.lex_state = 2030, .external_lex_state = 4}, + [263] = {.lex_state = 2030, .external_lex_state = 6}, + [264] = {.lex_state = 2030, .external_lex_state = 4}, + [265] = {.lex_state = 2030, .external_lex_state = 4}, + [266] = {.lex_state = 2030, .external_lex_state = 4}, + [267] = {.lex_state = 2030, .external_lex_state = 6}, + [268] = {.lex_state = 2030, .external_lex_state = 4}, + [269] = {.lex_state = 2030, .external_lex_state = 4}, + [270] = {.lex_state = 2030, .external_lex_state = 4}, + [271] = {.lex_state = 2030, .external_lex_state = 4}, + [272] = {.lex_state = 2030, .external_lex_state = 4}, + [273] = {.lex_state = 2030, .external_lex_state = 4}, + [274] = {.lex_state = 2030, .external_lex_state = 4}, + [275] = {.lex_state = 2030, .external_lex_state = 4}, + [276] = {.lex_state = 2030, .external_lex_state = 4}, + [277] = {.lex_state = 2030, .external_lex_state = 6}, + [278] = {.lex_state = 2030, .external_lex_state = 6}, + [279] = {.lex_state = 2030, .external_lex_state = 6}, + [280] = {.lex_state = 2030, .external_lex_state = 4}, + [281] = {.lex_state = 2030, .external_lex_state = 4}, + [282] = {.lex_state = 2030, .external_lex_state = 4}, + [283] = {.lex_state = 2030, .external_lex_state = 4}, + [284] = {.lex_state = 2030, .external_lex_state = 4}, + [285] = {.lex_state = 2030, .external_lex_state = 4}, + [286] = {.lex_state = 2030, .external_lex_state = 4}, + [287] = {.lex_state = 2030, .external_lex_state = 4}, + [288] = {.lex_state = 2030, .external_lex_state = 4}, + [289] = {.lex_state = 2030, .external_lex_state = 6}, + [290] = {.lex_state = 2030, .external_lex_state = 4}, + [291] = {.lex_state = 2030, .external_lex_state = 6}, + [292] = {.lex_state = 2030, .external_lex_state = 4}, + [293] = {.lex_state = 2030, .external_lex_state = 6}, + [294] = {.lex_state = 2030, .external_lex_state = 4}, + [295] = {.lex_state = 2030, .external_lex_state = 4}, + [296] = {.lex_state = 2030, .external_lex_state = 4}, + [297] = {.lex_state = 2030, .external_lex_state = 6}, + [298] = {.lex_state = 2030, .external_lex_state = 6}, + [299] = {.lex_state = 2030, .external_lex_state = 6}, + [300] = {.lex_state = 2030, .external_lex_state = 6}, + [301] = {.lex_state = 2030, .external_lex_state = 4}, + [302] = {.lex_state = 2030, .external_lex_state = 6}, + [303] = {.lex_state = 2030, .external_lex_state = 4}, + [304] = {.lex_state = 2030, .external_lex_state = 6}, + [305] = {.lex_state = 2030, .external_lex_state = 4}, + [306] = {.lex_state = 2030, .external_lex_state = 6}, + [307] = {.lex_state = 2030, .external_lex_state = 6}, + [308] = {.lex_state = 2030, .external_lex_state = 4}, + [309] = {.lex_state = 2030, .external_lex_state = 6}, + [310] = {.lex_state = 2030, .external_lex_state = 6}, + [311] = {.lex_state = 2030, .external_lex_state = 4}, + [312] = {.lex_state = 2030, .external_lex_state = 6}, + [313] = {.lex_state = 2030, .external_lex_state = 6}, + [314] = {.lex_state = 2030, .external_lex_state = 6}, + [315] = {.lex_state = 2030, .external_lex_state = 6}, + [316] = {.lex_state = 2030, .external_lex_state = 6}, + [317] = {.lex_state = 2030, .external_lex_state = 4}, + [318] = {.lex_state = 2030, .external_lex_state = 6}, + [319] = {.lex_state = 2030, .external_lex_state = 4}, + [320] = {.lex_state = 2030, .external_lex_state = 6}, + [321] = {.lex_state = 2030, .external_lex_state = 4}, + [322] = {.lex_state = 2030, .external_lex_state = 6}, + [323] = {.lex_state = 2030, .external_lex_state = 6}, + [324] = {.lex_state = 2030, .external_lex_state = 6}, + [325] = {.lex_state = 2030, .external_lex_state = 6}, + [326] = {.lex_state = 2030, .external_lex_state = 6}, + [327] = {.lex_state = 2030, .external_lex_state = 4}, + [328] = {.lex_state = 2030, .external_lex_state = 6}, + [329] = {.lex_state = 2030, .external_lex_state = 6}, + [330] = {.lex_state = 2030, .external_lex_state = 4}, + [331] = {.lex_state = 2030, .external_lex_state = 4}, + [332] = {.lex_state = 2030, .external_lex_state = 4}, + [333] = {.lex_state = 2030, .external_lex_state = 6}, + [334] = {.lex_state = 2030, .external_lex_state = 4}, + [335] = {.lex_state = 2030, .external_lex_state = 4}, + [336] = {.lex_state = 2030, .external_lex_state = 4}, + [337] = {.lex_state = 2030, .external_lex_state = 4}, + [338] = {.lex_state = 2030, .external_lex_state = 6}, + [339] = {.lex_state = 2030, .external_lex_state = 4}, + [340] = {.lex_state = 2030, .external_lex_state = 4}, + [341] = {.lex_state = 2030, .external_lex_state = 4}, + [342] = {.lex_state = 2030, .external_lex_state = 4}, + [343] = {.lex_state = 2030, .external_lex_state = 4}, + [344] = {.lex_state = 2030, .external_lex_state = 4}, + [345] = {.lex_state = 2030, .external_lex_state = 4}, + [346] = {.lex_state = 2030, .external_lex_state = 6}, + [347] = {.lex_state = 2030, .external_lex_state = 4}, + [348] = {.lex_state = 2030, .external_lex_state = 4}, + [349] = {.lex_state = 2030, .external_lex_state = 4}, + [350] = {.lex_state = 2030, .external_lex_state = 6}, + [351] = {.lex_state = 2030, .external_lex_state = 6}, + [352] = {.lex_state = 2030, .external_lex_state = 4}, + [353] = {.lex_state = 2030, .external_lex_state = 6}, + [354] = {.lex_state = 2030, .external_lex_state = 4}, + [355] = {.lex_state = 2030, .external_lex_state = 4}, + [356] = {.lex_state = 2030, .external_lex_state = 4}, + [357] = {.lex_state = 2030, .external_lex_state = 4}, + [358] = {.lex_state = 2030, .external_lex_state = 6}, + [359] = {.lex_state = 2030, .external_lex_state = 4}, + [360] = {.lex_state = 2030, .external_lex_state = 6}, + [361] = {.lex_state = 2030, .external_lex_state = 6}, + [362] = {.lex_state = 2030, .external_lex_state = 6}, + [363] = {.lex_state = 2030, .external_lex_state = 6}, + [364] = {.lex_state = 2030, .external_lex_state = 19}, + [365] = {.lex_state = 2030, .external_lex_state = 19}, + [366] = {.lex_state = 2030, .external_lex_state = 19}, + [367] = {.lex_state = 2030, .external_lex_state = 19}, + [368] = {.lex_state = 2030, .external_lex_state = 19}, + [369] = {.lex_state = 2030, .external_lex_state = 20}, + [370] = {.lex_state = 2030, .external_lex_state = 20}, + [371] = {.lex_state = 1, .external_lex_state = 21}, + [372] = {.lex_state = 1, .external_lex_state = 22}, + [373] = {.lex_state = 1, .external_lex_state = 22}, + [374] = {.lex_state = 1, .external_lex_state = 22}, + [375] = {.lex_state = 1, .external_lex_state = 22}, + [376] = {.lex_state = 1, .external_lex_state = 22}, + [377] = {.lex_state = 1, .external_lex_state = 22}, + [378] = {.lex_state = 1, .external_lex_state = 22}, + [379] = {.lex_state = 1, .external_lex_state = 22}, + [380] = {.lex_state = 1, .external_lex_state = 21}, + [381] = {.lex_state = 2030, .external_lex_state = 23}, + [382] = {.lex_state = 2030, .external_lex_state = 21}, + [383] = {.lex_state = 2030, .external_lex_state = 24}, + [384] = {.lex_state = 1, .external_lex_state = 22}, + [385] = {.lex_state = 1, .external_lex_state = 22}, + [386] = {.lex_state = 2030, .external_lex_state = 24}, + [387] = {.lex_state = 1, .external_lex_state = 22}, + [388] = {.lex_state = 1, .external_lex_state = 22}, + [389] = {.lex_state = 2030, .external_lex_state = 23}, + [390] = {.lex_state = 2030, .external_lex_state = 24}, + [391] = {.lex_state = 1, .external_lex_state = 22}, + [392] = {.lex_state = 2030, .external_lex_state = 24}, + [393] = {.lex_state = 1, .external_lex_state = 21}, + [394] = {.lex_state = 2030, .external_lex_state = 21}, + [395] = {.lex_state = 2030, .external_lex_state = 23}, + [396] = {.lex_state = 2030, .external_lex_state = 21}, + [397] = {.lex_state = 1, .external_lex_state = 22}, + [398] = {.lex_state = 1, .external_lex_state = 21}, + [399] = {.lex_state = 2030, .external_lex_state = 21}, + [400] = {.lex_state = 2030, .external_lex_state = 24}, + [401] = {.lex_state = 2030, .external_lex_state = 23}, + [402] = {.lex_state = 2030, .external_lex_state = 23}, + [403] = {.lex_state = 2030, .external_lex_state = 21}, + [404] = {.lex_state = 1, .external_lex_state = 21}, + [405] = {.lex_state = 1, .external_lex_state = 21}, + [406] = {.lex_state = 2030, .external_lex_state = 21}, + [407] = {.lex_state = 2030, .external_lex_state = 23}, + [408] = {.lex_state = 2030, .external_lex_state = 24}, + [409] = {.lex_state = 2030, .external_lex_state = 21}, + [410] = {.lex_state = 1, .external_lex_state = 21}, + [411] = {.lex_state = 5, .external_lex_state = 25}, + [412] = {.lex_state = 1, .external_lex_state = 26}, + [413] = {.lex_state = 2, .external_lex_state = 25}, + [414] = {.lex_state = 5, .external_lex_state = 25}, + [415] = {.lex_state = 2030, .external_lex_state = 27}, + [416] = {.lex_state = 1, .external_lex_state = 26}, + [417] = {.lex_state = 2030, .external_lex_state = 24}, + [418] = {.lex_state = 1, .external_lex_state = 26}, + [419] = {.lex_state = 3, .external_lex_state = 25}, + [420] = {.lex_state = 2030, .external_lex_state = 27}, + [421] = {.lex_state = 2, .external_lex_state = 25}, + [422] = {.lex_state = 2, .external_lex_state = 25}, + [423] = {.lex_state = 2030, .external_lex_state = 27}, + [424] = {.lex_state = 3, .external_lex_state = 25}, + [425] = {.lex_state = 4, .external_lex_state = 28}, + [426] = {.lex_state = 2030, .external_lex_state = 24}, + [427] = {.lex_state = 2030, .external_lex_state = 21}, + [428] = {.lex_state = 1, .external_lex_state = 26}, + [429] = {.lex_state = 2030, .external_lex_state = 27}, + [430] = {.lex_state = 1, .external_lex_state = 26}, + [431] = {.lex_state = 5, .external_lex_state = 25}, + [432] = {.lex_state = 1, .external_lex_state = 26}, + [433] = {.lex_state = 2030, .external_lex_state = 23}, + [434] = {.lex_state = 2, .external_lex_state = 25}, + [435] = {.lex_state = 1, .external_lex_state = 26}, + [436] = {.lex_state = 1, .external_lex_state = 26}, + [437] = {.lex_state = 2030, .external_lex_state = 27}, + [438] = {.lex_state = 3, .external_lex_state = 25}, + [439] = {.lex_state = 2, .external_lex_state = 25}, + [440] = {.lex_state = 2030, .external_lex_state = 19}, + [441] = {.lex_state = 2030, .external_lex_state = 23}, + [442] = {.lex_state = 3, .external_lex_state = 25}, + [443] = {.lex_state = 1, .external_lex_state = 26}, + [444] = {.lex_state = 5, .external_lex_state = 25}, + [445] = {.lex_state = 1, .external_lex_state = 26}, + [446] = {.lex_state = 1, .external_lex_state = 26}, + [447] = {.lex_state = 1, .external_lex_state = 26}, + [448] = {.lex_state = 3, .external_lex_state = 25}, + [449] = {.lex_state = 5, .external_lex_state = 25}, + [450] = {.lex_state = 2030, .external_lex_state = 25}, + [451] = {.lex_state = 2030, .external_lex_state = 25}, + [452] = {.lex_state = 2030, .external_lex_state = 25}, + [453] = {.lex_state = 1, .external_lex_state = 26}, + [454] = {.lex_state = 2030, .external_lex_state = 25}, + [455] = {.lex_state = 2030, .external_lex_state = 25}, + [456] = {.lex_state = 1, .external_lex_state = 26}, + [457] = {.lex_state = 2030, .external_lex_state = 25}, + [458] = {.lex_state = 4, .external_lex_state = 28}, + [459] = {.lex_state = 1, .external_lex_state = 26}, + [460] = {.lex_state = 2030, .external_lex_state = 25}, + [461] = {.lex_state = 2030, .external_lex_state = 26}, + [462] = {.lex_state = 1, .external_lex_state = 26}, + [463] = {.lex_state = 2030, .external_lex_state = 25}, + [464] = {.lex_state = 2030, .external_lex_state = 25}, + [465] = {.lex_state = 2030, .external_lex_state = 25}, + [466] = {.lex_state = 1, .external_lex_state = 26}, + [467] = {.lex_state = 4, .external_lex_state = 28}, + [468] = {.lex_state = 2030, .external_lex_state = 25}, + [469] = {.lex_state = 2030, .external_lex_state = 25}, + [470] = {.lex_state = 4, .external_lex_state = 28}, + [471] = {.lex_state = 4, .external_lex_state = 28}, + [472] = {.lex_state = 2030, .external_lex_state = 25}, + [473] = {.lex_state = 4, .external_lex_state = 28}, + [474] = {.lex_state = 4, .external_lex_state = 28}, + [475] = {.lex_state = 2030, .external_lex_state = 25}, + [476] = {.lex_state = 2030, .external_lex_state = 25}, + [477] = {.lex_state = 2030, .external_lex_state = 25}, + [478] = {.lex_state = 1, .external_lex_state = 22}, + [479] = {.lex_state = 1, .external_lex_state = 26}, + [480] = {.lex_state = 1, .external_lex_state = 26}, + [481] = {.lex_state = 1, .external_lex_state = 22}, + [482] = {.lex_state = 2030, .external_lex_state = 25}, + [483] = {.lex_state = 4, .external_lex_state = 28}, + [484] = {.lex_state = 2030, .external_lex_state = 25}, + [485] = {.lex_state = 1, .external_lex_state = 26}, + [486] = {.lex_state = 2030, .external_lex_state = 25}, + [487] = {.lex_state = 1}, + [488] = {.lex_state = 1}, + [489] = {.lex_state = 1}, + [490] = {.lex_state = 1}, + [491] = {.lex_state = 4, .external_lex_state = 28}, + [492] = {.lex_state = 1}, + [493] = {.lex_state = 4, .external_lex_state = 28}, + [494] = {.lex_state = 1}, + [495] = {.lex_state = 4, .external_lex_state = 28}, + [496] = {.lex_state = 1}, + [497] = {.lex_state = 4, .external_lex_state = 28}, + [498] = {.lex_state = 1}, + [499] = {.lex_state = 4, .external_lex_state = 28}, + [500] = {.lex_state = 1}, + [501] = {.lex_state = 1, .external_lex_state = 22}, + [502] = {.lex_state = 1}, + [503] = {.lex_state = 1}, + [504] = {.lex_state = 1, .external_lex_state = 22}, + [505] = {.lex_state = 4, .external_lex_state = 28}, + [506] = {.lex_state = 1}, + [507] = {.lex_state = 4, .external_lex_state = 28}, + [508] = {.lex_state = 1}, + [509] = {.lex_state = 1}, + [510] = {.lex_state = 4, .external_lex_state = 28}, + [511] = {.lex_state = 1}, + [512] = {.lex_state = 4, .external_lex_state = 22}, + [513] = {.lex_state = 5, .external_lex_state = 25}, + [514] = {.lex_state = 2, .external_lex_state = 25}, + [515] = {.lex_state = 2030, .external_lex_state = 22}, + [516] = {.lex_state = 2030, .external_lex_state = 22}, + [517] = {.lex_state = 2030, .external_lex_state = 22}, + [518] = {.lex_state = 1, .external_lex_state = 29}, + [519] = {.lex_state = 2030, .external_lex_state = 22}, + [520] = {.lex_state = 2030, .external_lex_state = 22}, + [521] = {.lex_state = 2030, .external_lex_state = 27}, + [522] = {.lex_state = 3, .external_lex_state = 25}, + [523] = {.lex_state = 2030, .external_lex_state = 22}, + [524] = {.lex_state = 4, .external_lex_state = 30}, + [525] = {.lex_state = 2030, .external_lex_state = 22}, + [526] = {.lex_state = 2030, .external_lex_state = 21}, + [527] = {.lex_state = 2030, .external_lex_state = 22}, + [528] = {.lex_state = 2030, .external_lex_state = 21}, + [529] = {.lex_state = 4, .external_lex_state = 22}, + [530] = {.lex_state = 2030, .external_lex_state = 23}, + [531] = {.lex_state = 1}, + [532] = {.lex_state = 2030, .external_lex_state = 23}, + [533] = {.lex_state = 2030, .external_lex_state = 24}, + [534] = {.lex_state = 2030, .external_lex_state = 22}, + [535] = {.lex_state = 2030, .external_lex_state = 27}, + [536] = {.lex_state = 2030, .external_lex_state = 22}, + [537] = {.lex_state = 4, .external_lex_state = 22}, + [538] = {.lex_state = 2030, .external_lex_state = 22}, + [539] = {.lex_state = 1, .external_lex_state = 22}, + [540] = {.lex_state = 2030, .external_lex_state = 24}, + [541] = {.lex_state = 2030, .external_lex_state = 22}, + [542] = {.lex_state = 3, .external_lex_state = 25}, + [543] = {.lex_state = 4, .external_lex_state = 22}, + [544] = {.lex_state = 2, .external_lex_state = 25}, + [545] = {.lex_state = 1}, + [546] = {.lex_state = 4}, + [547] = {.lex_state = 4, .external_lex_state = 22}, + [548] = {.lex_state = 1, .external_lex_state = 21}, + [549] = {.lex_state = 4, .external_lex_state = 22}, + [550] = {.lex_state = 1, .external_lex_state = 21}, + [551] = {.lex_state = 4}, + [552] = {.lex_state = 4, .external_lex_state = 22}, + [553] = {.lex_state = 1}, + [554] = {.lex_state = 1, .external_lex_state = 21}, + [555] = {.lex_state = 1}, + [556] = {.lex_state = 5, .external_lex_state = 25}, + [557] = {.lex_state = 1}, + [558] = {.lex_state = 1, .external_lex_state = 26}, + [559] = {.lex_state = 1, .external_lex_state = 26}, + [560] = {.lex_state = 1, .external_lex_state = 21}, + [561] = {.lex_state = 1, .external_lex_state = 26}, + [562] = {.lex_state = 4, .external_lex_state = 28}, + [563] = {.lex_state = 4, .external_lex_state = 22}, + [564] = {.lex_state = 2030, .external_lex_state = 25}, + [565] = {.lex_state = 4, .external_lex_state = 22}, + [566] = {.lex_state = 2030, .external_lex_state = 31}, + [567] = {.lex_state = 1, .external_lex_state = 26}, + [568] = {.lex_state = 2030, .external_lex_state = 32}, + [569] = {.lex_state = 4, .external_lex_state = 22}, + [570] = {.lex_state = 1, .external_lex_state = 26}, + [571] = {.lex_state = 4, .external_lex_state = 28}, + [572] = {.lex_state = 1, .external_lex_state = 22}, + [573] = {.lex_state = 5, .external_lex_state = 33}, + [574] = {.lex_state = 1, .external_lex_state = 22}, + [575] = {.lex_state = 4, .external_lex_state = 28}, + [576] = {.lex_state = 4, .external_lex_state = 22}, + [577] = {.lex_state = 4, .external_lex_state = 28}, + [578] = {.lex_state = 2030, .external_lex_state = 34}, + [579] = {.lex_state = 1, .external_lex_state = 26}, + [580] = {.lex_state = 4, .external_lex_state = 22}, + [581] = {.lex_state = 1, .external_lex_state = 26}, + [582] = {.lex_state = 4}, + [583] = {.lex_state = 2030, .external_lex_state = 35}, + [584] = {.lex_state = 2, .external_lex_state = 33}, + [585] = {.lex_state = 4, .external_lex_state = 22}, + [586] = {.lex_state = 2030, .external_lex_state = 36}, + [587] = {.lex_state = 1, .external_lex_state = 26}, + [588] = {.lex_state = 4, .external_lex_state = 22}, + [589] = {.lex_state = 4, .external_lex_state = 22}, + [590] = {.lex_state = 2030, .external_lex_state = 37}, + [591] = {.lex_state = 1, .external_lex_state = 22}, + [592] = {.lex_state = 3, .external_lex_state = 33}, + [593] = {.lex_state = 1, .external_lex_state = 26}, + [594] = {.lex_state = 4, .external_lex_state = 28}, + [595] = {.lex_state = 2030, .external_lex_state = 25}, + [596] = {.lex_state = 2030, .external_lex_state = 38}, + [597] = {.lex_state = 2030, .external_lex_state = 22}, + [598] = {.lex_state = 1, .external_lex_state = 26}, + [599] = {.lex_state = 4}, + [600] = {.lex_state = 2030, .external_lex_state = 27}, + [601] = {.lex_state = 4}, + [602] = {.lex_state = 4}, + [603] = {.lex_state = 4}, + [604] = {.lex_state = 4}, + [605] = {.lex_state = 2, .external_lex_state = 25}, + [606] = {.lex_state = 3, .external_lex_state = 25}, + [607] = {.lex_state = 4}, + [608] = {.lex_state = 2030, .external_lex_state = 23}, + [609] = {.lex_state = 2030, .external_lex_state = 31}, + [610] = {.lex_state = 2030, .external_lex_state = 24}, + [611] = {.lex_state = 2030, .external_lex_state = 21}, + [612] = {.lex_state = 5, .external_lex_state = 25}, + [613] = {.lex_state = 4}, + [614] = {.lex_state = 1, .external_lex_state = 39}, + [615] = {.lex_state = 3, .external_lex_state = 25}, + [616] = {.lex_state = 5, .external_lex_state = 25}, + [617] = {.lex_state = 2030, .external_lex_state = 21}, + [618] = {.lex_state = 2, .external_lex_state = 25}, + [619] = {.lex_state = 3, .external_lex_state = 25}, + [620] = {.lex_state = 1, .external_lex_state = 26}, + [621] = {.lex_state = 2030, .external_lex_state = 21}, + [622] = {.lex_state = 5, .external_lex_state = 25}, + [623] = {.lex_state = 2030, .external_lex_state = 27}, + [624] = {.lex_state = 4}, + [625] = {.lex_state = 2, .external_lex_state = 25}, + [626] = {.lex_state = 4}, + [627] = {.lex_state = 2030, .external_lex_state = 23}, + [628] = {.lex_state = 2030, .external_lex_state = 33}, + [629] = {.lex_state = 4}, + [630] = {.lex_state = 4}, + [631] = {.lex_state = 2030, .external_lex_state = 27}, + [632] = {.lex_state = 1}, + [633] = {.lex_state = 2030, .external_lex_state = 22}, + [634] = {.lex_state = 2030, .external_lex_state = 24}, + [635] = {.lex_state = 4}, + [636] = {.lex_state = 2030, .external_lex_state = 21}, + [637] = {.lex_state = 2030, .external_lex_state = 21}, + [638] = {.lex_state = 1, .external_lex_state = 26}, + [639] = {.lex_state = 4}, + [640] = {.lex_state = 1}, + [641] = {.lex_state = 1}, + [642] = {.lex_state = 1}, + [643] = {.lex_state = 4, .external_lex_state = 22}, + [644] = {.lex_state = 2030, .external_lex_state = 25}, + [645] = {.lex_state = 2030, .external_lex_state = 25}, + [646] = {.lex_state = 1}, + [647] = {.lex_state = 4, .external_lex_state = 22}, + [648] = {.lex_state = 2030, .external_lex_state = 25}, + [649] = {.lex_state = 1}, + [650] = {.lex_state = 4, .external_lex_state = 22}, + [651] = {.lex_state = 2030, .external_lex_state = 25}, + [652] = {.lex_state = 4, .external_lex_state = 22}, + [653] = {.lex_state = 2030, .external_lex_state = 22}, + [654] = {.lex_state = 4}, + [655] = {.lex_state = 2030, .external_lex_state = 28}, + [656] = {.lex_state = 2030, .external_lex_state = 28}, + [657] = {.lex_state = 2030, .external_lex_state = 28}, + [658] = {.lex_state = 2030, .external_lex_state = 28}, + [659] = {.lex_state = 2030, .external_lex_state = 28}, + [660] = {.lex_state = 2030, .external_lex_state = 28}, + [661] = {.lex_state = 2030, .external_lex_state = 28}, + [662] = {.lex_state = 2030}, + [663] = {.lex_state = 2030}, + [664] = {.lex_state = 0, .external_lex_state = 40}, + [665] = {.lex_state = 0, .external_lex_state = 40}, + [666] = {.lex_state = 0, .external_lex_state = 40}, + [667] = {.lex_state = 0, .external_lex_state = 40}, + [668] = {.lex_state = 0, .external_lex_state = 40}, + [669] = {.lex_state = 2030, .external_lex_state = 28}, + [670] = {.lex_state = 2030, .external_lex_state = 28}, + [671] = {.lex_state = 0, .external_lex_state = 40}, + [672] = {.lex_state = 0, .external_lex_state = 40}, + [673] = {.lex_state = 0, .external_lex_state = 40}, + [674] = {.lex_state = 2030, .external_lex_state = 28}, + [675] = {.lex_state = 0, .external_lex_state = 40}, + [676] = {.lex_state = 0, .external_lex_state = 40}, + [677] = {.lex_state = 0, .external_lex_state = 21}, + [678] = {.lex_state = 0, .external_lex_state = 41}, + [679] = {.lex_state = 2030}, + [680] = {.lex_state = 0, .external_lex_state = 21}, + [681] = {.lex_state = 0, .external_lex_state = 28}, + [682] = {.lex_state = 0, .external_lex_state = 41}, + [683] = {.lex_state = 0, .external_lex_state = 41}, + [684] = {.lex_state = 0, .external_lex_state = 21}, + [685] = {.lex_state = 0, .external_lex_state = 41}, + [686] = {.lex_state = 0, .external_lex_state = 21}, + [687] = {.lex_state = 0, .external_lex_state = 41}, + [688] = {.lex_state = 0, .external_lex_state = 42}, + [689] = {.lex_state = 2030}, + [690] = {.lex_state = 0, .external_lex_state = 21}, + [691] = {.lex_state = 0, .external_lex_state = 28}, + [692] = {.lex_state = 2030, .external_lex_state = 28}, + [693] = {.lex_state = 0, .external_lex_state = 28}, + [694] = {.lex_state = 2030, .external_lex_state = 28}, + [695] = {.lex_state = 0, .external_lex_state = 41}, + [696] = {.lex_state = 0, .external_lex_state = 21}, + [697] = {.lex_state = 0, .external_lex_state = 28}, + [698] = {.lex_state = 0, .external_lex_state = 21}, + [699] = {.lex_state = 0, .external_lex_state = 41}, + [700] = {.lex_state = 0, .external_lex_state = 21}, + [701] = {.lex_state = 0, .external_lex_state = 41}, + [702] = {.lex_state = 0, .external_lex_state = 21}, + [703] = {.lex_state = 0, .external_lex_state = 21}, + [704] = {.lex_state = 0, .external_lex_state = 41}, + [705] = {.lex_state = 2030, .external_lex_state = 28}, + [706] = {.lex_state = 0, .external_lex_state = 41}, + [707] = {.lex_state = 0, .external_lex_state = 28}, + [708] = {.lex_state = 0, .external_lex_state = 21}, + [709] = {.lex_state = 0, .external_lex_state = 28}, + [710] = {.lex_state = 0, .external_lex_state = 28}, + [711] = {.lex_state = 0, .external_lex_state = 28}, + [712] = {.lex_state = 0, .external_lex_state = 41}, + [713] = {.lex_state = 0, .external_lex_state = 28}, + [714] = {.lex_state = 0, .external_lex_state = 28}, + [715] = {.lex_state = 0, .external_lex_state = 41}, + [716] = {.lex_state = 0, .external_lex_state = 21}, + [717] = {.lex_state = 0, .external_lex_state = 21}, + [718] = {.lex_state = 0, .external_lex_state = 21}, + [719] = {.lex_state = 2030}, + [720] = {.lex_state = 2030}, + [721] = {.lex_state = 0, .external_lex_state = 21}, + [722] = {.lex_state = 0, .external_lex_state = 28}, + [723] = {.lex_state = 0, .external_lex_state = 28}, + [724] = {.lex_state = 0, .external_lex_state = 21}, + [725] = {.lex_state = 0, .external_lex_state = 41}, + [726] = {.lex_state = 0, .external_lex_state = 41}, + [727] = {.lex_state = 0, .external_lex_state = 28}, + [728] = {.lex_state = 0, .external_lex_state = 21}, + [729] = {.lex_state = 0, .external_lex_state = 28}, + [730] = {.lex_state = 0, .external_lex_state = 21}, + [731] = {.lex_state = 0, .external_lex_state = 21}, + [732] = {.lex_state = 0, .external_lex_state = 21}, + [733] = {.lex_state = 0, .external_lex_state = 41}, + [734] = {.lex_state = 0, .external_lex_state = 21}, + [735] = {.lex_state = 0, .external_lex_state = 28}, + [736] = {.lex_state = 0, .external_lex_state = 41}, + [737] = {.lex_state = 0, .external_lex_state = 41}, + [738] = {.lex_state = 0, .external_lex_state = 28}, + [739] = {.lex_state = 0, .external_lex_state = 41}, + [740] = {.lex_state = 0, .external_lex_state = 41}, + [741] = {.lex_state = 0, .external_lex_state = 21}, + [742] = {.lex_state = 0, .external_lex_state = 41}, + [743] = {.lex_state = 0, .external_lex_state = 21}, + [744] = {.lex_state = 0, .external_lex_state = 21}, + [745] = {.lex_state = 0, .external_lex_state = 28}, + [746] = {.lex_state = 2030}, + [747] = {.lex_state = 0, .external_lex_state = 41}, + [748] = {.lex_state = 0, .external_lex_state = 21}, + [749] = {.lex_state = 0, .external_lex_state = 28}, + [750] = {.lex_state = 0, .external_lex_state = 28}, + [751] = {.lex_state = 2030}, + [752] = {.lex_state = 0, .external_lex_state = 21}, + [753] = {.lex_state = 0, .external_lex_state = 41}, + [754] = {.lex_state = 0, .external_lex_state = 41}, + [755] = {.lex_state = 0, .external_lex_state = 28}, + [756] = {.lex_state = 2030, .external_lex_state = 39}, + [757] = {.lex_state = 0, .external_lex_state = 28}, + [758] = {.lex_state = 0, .external_lex_state = 28}, + [759] = {.lex_state = 0}, + [760] = {.lex_state = 2030}, + [761] = {.lex_state = 0, .external_lex_state = 21}, + [762] = {.lex_state = 0}, + [763] = {.lex_state = 0, .external_lex_state = 28}, + [764] = {.lex_state = 0}, + [765] = {.lex_state = 0}, + [766] = {.lex_state = 0}, + [767] = {.lex_state = 0}, + [768] = {.lex_state = 0}, + [769] = {.lex_state = 0, .external_lex_state = 28}, + [770] = {.lex_state = 0}, + [771] = {.lex_state = 0, .external_lex_state = 28}, + [772] = {.lex_state = 0}, + [773] = {.lex_state = 0, .external_lex_state = 28}, + [774] = {.lex_state = 0, .external_lex_state = 28}, + [775] = {.lex_state = 0, .external_lex_state = 28}, + [776] = {.lex_state = 0}, + [777] = {.lex_state = 0, .external_lex_state = 21}, + [778] = {.lex_state = 2030}, + [779] = {.lex_state = 0}, + [780] = {.lex_state = 0, .external_lex_state = 28}, + [781] = {.lex_state = 0, .external_lex_state = 28}, + [782] = {.lex_state = 0}, + [783] = {.lex_state = 0, .external_lex_state = 28}, + [784] = {.lex_state = 0}, + [785] = {.lex_state = 0}, + [786] = {.lex_state = 0, .external_lex_state = 28}, + [787] = {.lex_state = 0, .external_lex_state = 28}, + [788] = {.lex_state = 0, .external_lex_state = 28}, + [789] = {.lex_state = 0, .external_lex_state = 28}, + [790] = {.lex_state = 0, .external_lex_state = 22}, + [791] = {.lex_state = 0, .external_lex_state = 43}, + [792] = {.lex_state = 0, .external_lex_state = 43}, + [793] = {.lex_state = 0, .external_lex_state = 43}, + [794] = {.lex_state = 0, .external_lex_state = 43}, + [795] = {.lex_state = 0, .external_lex_state = 21}, + [796] = {.lex_state = 0, .external_lex_state = 21}, + [797] = {.lex_state = 0, .external_lex_state = 43}, + [798] = {.lex_state = 0, .external_lex_state = 43}, + [799] = {.lex_state = 0, .external_lex_state = 44}, + [800] = {.lex_state = 0, .external_lex_state = 28}, + [801] = {.lex_state = 0, .external_lex_state = 22}, + [802] = {.lex_state = 0, .external_lex_state = 22}, + [803] = {.lex_state = 0, .external_lex_state = 43}, + [804] = {.lex_state = 0, .external_lex_state = 22}, + [805] = {.lex_state = 0, .external_lex_state = 22}, + [806] = {.lex_state = 0, .external_lex_state = 22}, + [807] = {.lex_state = 0, .external_lex_state = 22}, + [808] = {.lex_state = 0, .external_lex_state = 43}, + [809] = {.lex_state = 0, .external_lex_state = 22}, + [810] = {.lex_state = 0, .external_lex_state = 43}, + [811] = {.lex_state = 0, .external_lex_state = 45}, + [812] = {.lex_state = 0, .external_lex_state = 22}, + [813] = {.lex_state = 0, .external_lex_state = 22}, + [814] = {.lex_state = 0, .external_lex_state = 22}, + [815] = {.lex_state = 0}, + [816] = {.lex_state = 0, .external_lex_state = 22}, + [817] = {.lex_state = 0, .external_lex_state = 22}, + [818] = {.lex_state = 0, .external_lex_state = 22}, + [819] = {.lex_state = 0, .external_lex_state = 22}, + [820] = {.lex_state = 0, .external_lex_state = 22}, + [821] = {.lex_state = 0, .external_lex_state = 22}, + [822] = {.lex_state = 0, .external_lex_state = 22}, + [823] = {.lex_state = 0, .external_lex_state = 45}, + [824] = {.lex_state = 0}, + [825] = {.lex_state = 0, .external_lex_state = 22}, + [826] = {.lex_state = 0, .external_lex_state = 22}, + [827] = {.lex_state = 0, .external_lex_state = 45}, + [828] = {.lex_state = 0, .external_lex_state = 22}, + [829] = {.lex_state = 0, .external_lex_state = 46}, + [830] = {.lex_state = 0}, + [831] = {.lex_state = 0, .external_lex_state = 46}, + [832] = {.lex_state = 2030}, + [833] = {.lex_state = 0, .external_lex_state = 22}, + [834] = {.lex_state = 0, .external_lex_state = 47}, + [835] = {.lex_state = 0, .external_lex_state = 48}, + [836] = {.lex_state = 0, .external_lex_state = 22}, + [837] = {.lex_state = 0, .external_lex_state = 46}, + [838] = {.lex_state = 0, .external_lex_state = 22}, + [839] = {.lex_state = 0, .external_lex_state = 45}, + [840] = {.lex_state = 0, .external_lex_state = 48}, + [841] = {.lex_state = 0, .external_lex_state = 48}, + [842] = {.lex_state = 0, .external_lex_state = 22}, + [843] = {.lex_state = 0, .external_lex_state = 22}, + [844] = {.lex_state = 0, .external_lex_state = 22}, + [845] = {.lex_state = 0}, + [846] = {.lex_state = 0, .external_lex_state = 22}, + [847] = {.lex_state = 2030}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 0, .external_lex_state = 46}, + [850] = {.lex_state = 0, .external_lex_state = 49}, + [851] = {.lex_state = 0, .external_lex_state = 22}, + [852] = {.lex_state = 0, .external_lex_state = 22}, + [853] = {.lex_state = 0, .external_lex_state = 46}, + [854] = {.lex_state = 0, .external_lex_state = 47}, + [855] = {.lex_state = 0, .external_lex_state = 45}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 0, .external_lex_state = 22}, + [858] = {.lex_state = 0, .external_lex_state = 50}, + [859] = {.lex_state = 0, .external_lex_state = 22}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 0, .external_lex_state = 22}, + [862] = {.lex_state = 0, .external_lex_state = 22}, + [863] = {.lex_state = 0, .external_lex_state = 22}, + [864] = {.lex_state = 0, .external_lex_state = 45}, + [865] = {.lex_state = 0, .external_lex_state = 22}, + [866] = {.lex_state = 0, .external_lex_state = 22}, + [867] = {.lex_state = 0, .external_lex_state = 22}, + [868] = {.lex_state = 0, .external_lex_state = 22}, + [869] = {.lex_state = 0, .external_lex_state = 22}, + [870] = {.lex_state = 0, .external_lex_state = 22}, + [871] = {.lex_state = 0, .external_lex_state = 22}, + [872] = {.lex_state = 0, .external_lex_state = 22}, + [873] = {.lex_state = 0, .external_lex_state = 22}, + [874] = {.lex_state = 0, .external_lex_state = 22}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 0, .external_lex_state = 22}, + [877] = {.lex_state = 0, .external_lex_state = 46}, + [878] = {.lex_state = 0, .external_lex_state = 51}, + [879] = {.lex_state = 0}, + [880] = {.lex_state = 0, .external_lex_state = 52}, + [881] = {.lex_state = 0, .external_lex_state = 52}, + [882] = {.lex_state = 0, .external_lex_state = 51}, + [883] = {.lex_state = 0}, + [884] = {.lex_state = 0, .external_lex_state = 52}, + [885] = {.lex_state = 0, .external_lex_state = 51}, + [886] = {.lex_state = 0, .external_lex_state = 52}, + [887] = {.lex_state = 0}, + [888] = {.lex_state = 0, .external_lex_state = 52}, + [889] = {.lex_state = 0, .external_lex_state = 52}, + [890] = {.lex_state = 0, .external_lex_state = 51}, + [891] = {.lex_state = 0, .external_lex_state = 51}, + [892] = {.lex_state = 0, .external_lex_state = 51}, + [893] = {.lex_state = 0, .external_lex_state = 51}, + [894] = {.lex_state = 0, .external_lex_state = 52}, + [895] = {.lex_state = 0, .external_lex_state = 51}, + [896] = {.lex_state = 0, .external_lex_state = 51}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 0}, + [899] = {.lex_state = 0, .external_lex_state = 51}, + [900] = {.lex_state = 0, .external_lex_state = 52}, + [901] = {.lex_state = 0, .external_lex_state = 51}, + [902] = {.lex_state = 0, .external_lex_state = 51}, + [903] = {.lex_state = 0}, + [904] = {.lex_state = 0, .external_lex_state = 53}, + [905] = {.lex_state = 0, .external_lex_state = 51}, + [906] = {.lex_state = 0, .external_lex_state = 52}, + [907] = {.lex_state = 0, .external_lex_state = 53}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 0, .external_lex_state = 51}, + [910] = {.lex_state = 0, .external_lex_state = 51}, + [911] = {.lex_state = 0, .external_lex_state = 51}, + [912] = {.lex_state = 0, .external_lex_state = 51}, + [913] = {.lex_state = 0, .external_lex_state = 51}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 0, .external_lex_state = 51}, + [916] = {.lex_state = 0, .external_lex_state = 53}, + [917] = {.lex_state = 0, .external_lex_state = 51}, + [918] = {.lex_state = 0}, + [919] = {.lex_state = 0, .external_lex_state = 51}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 0, .external_lex_state = 51}, + [922] = {.lex_state = 0, .external_lex_state = 52}, + [923] = {.lex_state = 0, .external_lex_state = 51}, + [924] = {.lex_state = 0, .external_lex_state = 51}, + [925] = {.lex_state = 0, .external_lex_state = 52}, + [926] = {.lex_state = 0, .external_lex_state = 51}, + [927] = {.lex_state = 0, .external_lex_state = 51}, + [928] = {.lex_state = 0, .external_lex_state = 51}, + [929] = {.lex_state = 0, .external_lex_state = 51}, + [930] = {.lex_state = 0, .external_lex_state = 51}, + [931] = {.lex_state = 0, .external_lex_state = 51}, + [932] = {.lex_state = 0, .external_lex_state = 53}, + [933] = {.lex_state = 0}, + [934] = {.lex_state = 0, .external_lex_state = 52}, + [935] = {.lex_state = 0}, + [936] = {.lex_state = 0, .external_lex_state = 52}, + [937] = {.lex_state = 0, .external_lex_state = 52}, + [938] = {.lex_state = 0, .external_lex_state = 52}, + [939] = {.lex_state = 0, .external_lex_state = 52}, + [940] = {.lex_state = 0}, +}; + +enum { + ts_external_token__line_ending = 0, + ts_external_token__soft_line_ending = 1, + ts_external_token__block_close = 2, + ts_external_token_block_continuation = 3, + ts_external_token__block_quote_start = 4, + ts_external_token__indented_chunk_start = 5, + ts_external_token_atx_h1_marker = 6, + ts_external_token_atx_h2_marker = 7, + ts_external_token_atx_h3_marker = 8, + ts_external_token_atx_h4_marker = 9, + ts_external_token_atx_h5_marker = 10, + ts_external_token_atx_h6_marker = 11, + ts_external_token_setext_h1_underline = 12, + ts_external_token_setext_h2_underline = 13, + ts_external_token__thematic_break = 14, + ts_external_token__list_marker_minus = 15, + ts_external_token__list_marker_plus = 16, + ts_external_token__list_marker_star = 17, + ts_external_token__list_marker_parenthesis = 18, + ts_external_token__list_marker_dot = 19, + ts_external_token__list_marker_minus_dont_interrupt = 20, + ts_external_token__list_marker_plus_dont_interrupt = 21, + ts_external_token__list_marker_star_dont_interrupt = 22, + ts_external_token__list_marker_parenthesis_dont_interrupt = 23, + ts_external_token__list_marker_dot_dont_interrupt = 24, + ts_external_token__fenced_code_block_start_backtick = 25, + ts_external_token__fenced_code_block_start_tilde = 26, + ts_external_token__blank_line_start = 27, + ts_external_token__fenced_code_block_end_backtick = 28, + ts_external_token__fenced_code_block_end_tilde = 29, + ts_external_token__html_block_1_start = 30, + ts_external_token__html_block_1_end = 31, + ts_external_token__html_block_2_start = 32, + ts_external_token__html_block_3_start = 33, + ts_external_token__html_block_4_start = 34, + ts_external_token__html_block_5_start = 35, + ts_external_token__html_block_6_start = 36, + ts_external_token__html_block_7_start = 37, + ts_external_token__close_block = 38, + ts_external_token__no_indented_chunk = 39, + ts_external_token__error = 40, + ts_external_token__trigger_error = 41, + ts_external_token__eof = 42, + ts_external_token_minus_metadata = 43, + ts_external_token_plus_metadata = 44, + ts_external_token__pipe_table_start = 45, + ts_external_token__pipe_table_line_ending = 46, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__line_ending] = sym__line_ending, + [ts_external_token__soft_line_ending] = sym__soft_line_ending, + [ts_external_token__block_close] = sym__block_close, + [ts_external_token_block_continuation] = sym_block_continuation, + [ts_external_token__block_quote_start] = sym__block_quote_start, + [ts_external_token__indented_chunk_start] = sym__indented_chunk_start, + [ts_external_token_atx_h1_marker] = sym_atx_h1_marker, + [ts_external_token_atx_h2_marker] = sym_atx_h2_marker, + [ts_external_token_atx_h3_marker] = sym_atx_h3_marker, + [ts_external_token_atx_h4_marker] = sym_atx_h4_marker, + [ts_external_token_atx_h5_marker] = sym_atx_h5_marker, + [ts_external_token_atx_h6_marker] = sym_atx_h6_marker, + [ts_external_token_setext_h1_underline] = sym_setext_h1_underline, + [ts_external_token_setext_h2_underline] = sym_setext_h2_underline, + [ts_external_token__thematic_break] = sym__thematic_break, + [ts_external_token__list_marker_minus] = sym__list_marker_minus, + [ts_external_token__list_marker_plus] = sym__list_marker_plus, + [ts_external_token__list_marker_star] = sym__list_marker_star, + [ts_external_token__list_marker_parenthesis] = sym__list_marker_parenthesis, + [ts_external_token__list_marker_dot] = sym__list_marker_dot, + [ts_external_token__list_marker_minus_dont_interrupt] = sym__list_marker_minus_dont_interrupt, + [ts_external_token__list_marker_plus_dont_interrupt] = sym__list_marker_plus_dont_interrupt, + [ts_external_token__list_marker_star_dont_interrupt] = sym__list_marker_star_dont_interrupt, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = sym__list_marker_parenthesis_dont_interrupt, + [ts_external_token__list_marker_dot_dont_interrupt] = sym__list_marker_dot_dont_interrupt, + [ts_external_token__fenced_code_block_start_backtick] = sym__fenced_code_block_start_backtick, + [ts_external_token__fenced_code_block_start_tilde] = sym__fenced_code_block_start_tilde, + [ts_external_token__blank_line_start] = sym__blank_line_start, + [ts_external_token__fenced_code_block_end_backtick] = sym__fenced_code_block_end_backtick, + [ts_external_token__fenced_code_block_end_tilde] = sym__fenced_code_block_end_tilde, + [ts_external_token__html_block_1_start] = sym__html_block_1_start, + [ts_external_token__html_block_1_end] = sym__html_block_1_end, + [ts_external_token__html_block_2_start] = sym__html_block_2_start, + [ts_external_token__html_block_3_start] = sym__html_block_3_start, + [ts_external_token__html_block_4_start] = sym__html_block_4_start, + [ts_external_token__html_block_5_start] = sym__html_block_5_start, + [ts_external_token__html_block_6_start] = sym__html_block_6_start, + [ts_external_token__html_block_7_start] = sym__html_block_7_start, + [ts_external_token__close_block] = sym__close_block, + [ts_external_token__no_indented_chunk] = sym__no_indented_chunk, + [ts_external_token__error] = sym__error, + [ts_external_token__trigger_error] = sym__trigger_error, + [ts_external_token__eof] = sym__eof, + [ts_external_token_minus_metadata] = sym_minus_metadata, + [ts_external_token_plus_metadata] = sym_plus_metadata, + [ts_external_token__pipe_table_start] = sym__pipe_table_start, + [ts_external_token__pipe_table_line_ending] = sym__pipe_table_line_ending, +}; + +static const bool ts_external_scanner_states[54][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__line_ending] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h1_underline] = true, + [ts_external_token_setext_h2_underline] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_1_end] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__close_block] = true, + [ts_external_token__no_indented_chunk] = true, + [ts_external_token__error] = true, + [ts_external_token__trigger_error] = true, + [ts_external_token__eof] = true, + [ts_external_token_minus_metadata] = true, + [ts_external_token_plus_metadata] = true, + [ts_external_token__pipe_table_start] = true, + [ts_external_token__pipe_table_line_ending] = true, + }, + [2] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token_minus_metadata] = true, + [ts_external_token_plus_metadata] = true, + [ts_external_token__pipe_table_start] = true, + }, + [3] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [4] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [5] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [6] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [7] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h1_underline] = true, + [ts_external_token_setext_h2_underline] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [8] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h1_underline] = true, + [ts_external_token_setext_h2_underline] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [9] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__no_indented_chunk] = true, + [ts_external_token__pipe_table_start] = true, + }, + [10] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h2_underline] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [11] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h1_underline] = true, + [ts_external_token_setext_h2_underline] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [12] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__no_indented_chunk] = true, + [ts_external_token__pipe_table_start] = true, + }, + [13] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__no_indented_chunk] = true, + [ts_external_token__pipe_table_start] = true, + }, + [14] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h1_underline] = true, + [ts_external_token_setext_h2_underline] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [15] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h2_underline] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [16] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__no_indented_chunk] = true, + [ts_external_token__pipe_table_start] = true, + }, + [17] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h2_underline] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [18] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h2_underline] = true, + [ts_external_token__thematic_break] = true, + [ts_external_token__list_marker_minus] = true, + [ts_external_token__list_marker_plus] = true, + [ts_external_token__list_marker_star] = true, + [ts_external_token__list_marker_parenthesis] = true, + [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__fenced_code_block_start_backtick] = true, + [ts_external_token__fenced_code_block_start_tilde] = true, + [ts_external_token__blank_line_start] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__pipe_table_start] = true, + }, + [19] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token_atx_h1_marker] = true, + [ts_external_token_atx_h2_marker] = true, + [ts_external_token_atx_h3_marker] = true, + [ts_external_token_atx_h4_marker] = true, + [ts_external_token_atx_h5_marker] = true, + [ts_external_token_atx_h6_marker] = true, + }, + [20] = { + [ts_external_token__line_ending] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__html_block_1_start] = true, + [ts_external_token__html_block_2_start] = true, + [ts_external_token__html_block_3_start] = true, + [ts_external_token__html_block_4_start] = true, + [ts_external_token__html_block_5_start] = true, + [ts_external_token__html_block_6_start] = true, + [ts_external_token__html_block_7_start] = true, + [ts_external_token__eof] = true, + }, + [21] = { + [ts_external_token__line_ending] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__eof] = true, + }, + [22] = { + [ts_external_token__line_ending] = true, + }, + [23] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, + }, + [24] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, + }, + [25] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + }, + [26] = { + [ts_external_token__soft_line_ending] = true, + }, + [27] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__html_block_1_end] = true, + }, + [28] = { + [ts_external_token__line_ending] = true, + [ts_external_token__eof] = true, + [ts_external_token__pipe_table_line_ending] = true, + }, + [29] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, + }, + [30] = { + [ts_external_token__line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__eof] = true, + [ts_external_token__pipe_table_line_ending] = true, + }, + [31] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__blank_line_start] = true, + }, + [32] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__close_block] = true, + }, + [33] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + }, + [34] = { + [ts_external_token__line_ending] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__eof] = true, + }, + [35] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__blank_line_start] = true, + }, + [36] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, + }, + [37] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, + }, + [38] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__html_block_1_end] = true, + }, + [39] = { + [ts_external_token_block_continuation] = true, + }, + [40] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__no_indented_chunk] = true, + }, + [41] = { + [ts_external_token__no_indented_chunk] = true, + }, + [42] = { + [ts_external_token_block_continuation] = true, + [ts_external_token__no_indented_chunk] = true, + }, + [43] = { + [ts_external_token__line_ending] = true, + [ts_external_token__eof] = true, + }, + [44] = { + [ts_external_token_block_continuation] = true, + [ts_external_token_setext_h1_underline] = true, + [ts_external_token_setext_h2_underline] = true, + }, + [45] = { + [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, + }, + [46] = { + [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, + }, + [47] = { + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + }, + [48] = { + [ts_external_token_setext_h1_underline] = true, + [ts_external_token_setext_h2_underline] = true, + }, + [49] = { + [ts_external_token_block_continuation] = true, + [ts_external_token__close_block] = true, + }, + [50] = { + [ts_external_token_block_continuation] = true, + [ts_external_token__trigger_error] = true, + }, + [51] = { + [ts_external_token__block_close] = true, + }, + [52] = { + [ts_external_token__close_block] = true, + }, + [53] = { + [ts_external_token__trigger_error] = true, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym__backslash_escape] = ACTIONS(1), + [sym_entity_reference] = ACTIONS(1), + [sym_numeric_character_reference] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_BSLASH] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [sym__newline_token] = ACTIONS(1), + [anon_sym_DASH_DASH_GT] = ACTIONS(1), + [anon_sym_QMARK_GT] = ACTIONS(1), + [anon_sym_RBRACK_RBRACK_GT] = ACTIONS(1), + [aux_sym__word_token1] = ACTIONS(1), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1), + [aux_sym__word_token2] = ACTIONS(1), + [sym__whitespace] = ACTIONS(1), + [sym__line_ending] = ACTIONS(1), + [sym__soft_line_ending] = ACTIONS(1), + [sym__block_close] = ACTIONS(1), + [sym_block_continuation] = ACTIONS(1), + [sym__block_quote_start] = ACTIONS(1), + [sym__indented_chunk_start] = ACTIONS(1), + [sym_atx_h1_marker] = ACTIONS(1), + [sym_atx_h2_marker] = ACTIONS(1), + [sym_atx_h3_marker] = ACTIONS(1), + [sym_atx_h4_marker] = ACTIONS(1), + [sym_atx_h5_marker] = ACTIONS(1), + [sym_atx_h6_marker] = ACTIONS(1), + [sym_setext_h1_underline] = ACTIONS(1), + [sym_setext_h2_underline] = ACTIONS(1), + [sym__thematic_break] = ACTIONS(1), + [sym__list_marker_minus] = ACTIONS(1), + [sym__list_marker_plus] = ACTIONS(1), + [sym__list_marker_star] = ACTIONS(1), + [sym__list_marker_parenthesis] = ACTIONS(1), + [sym__list_marker_dot] = ACTIONS(1), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1), + [sym__fenced_code_block_start_backtick] = ACTIONS(1), + [sym__fenced_code_block_start_tilde] = ACTIONS(1), + [sym__blank_line_start] = ACTIONS(1), + [sym__fenced_code_block_end_backtick] = ACTIONS(1), + [sym__fenced_code_block_end_tilde] = ACTIONS(1), + [sym__html_block_1_start] = ACTIONS(1), + [sym__html_block_1_end] = ACTIONS(1), + [sym__html_block_2_start] = ACTIONS(1), + [sym__html_block_3_start] = ACTIONS(1), + [sym__html_block_4_start] = ACTIONS(1), + [sym__html_block_5_start] = ACTIONS(1), + [sym__html_block_6_start] = ACTIONS(1), + [sym__html_block_7_start] = ACTIONS(1), + [sym__close_block] = ACTIONS(1), + [sym__no_indented_chunk] = ACTIONS(1), + [sym__error] = ACTIONS(1), + [sym__trigger_error] = ACTIONS(1), + [sym__eof] = ACTIONS(1), + [sym_minus_metadata] = ACTIONS(1), + [sym_plus_metadata] = ACTIONS(1), + [sym__pipe_table_start] = ACTIONS(1), + [sym__pipe_table_line_ending] = ACTIONS(1), + }, + [1] = { + [sym_document] = STATE(914), + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(240), + [sym_section] = STATE(367), + [sym__section1] = STATE(440), + [sym__section2] = STATE(440), + [sym__section3] = STATE(440), + [sym__section4] = STATE(440), + [sym__section5] = STATE(440), + [sym__section6] = STATE(440), + [sym_thematic_break] = STATE(240), + [sym__atx_heading1] = STATE(44), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading1] = STATE(43), + [sym__setext_heading2] = STATE(50), + [sym_indented_code_block] = STATE(240), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(240), + [sym_html_block] = STATE(240), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(240), + [sym_paragraph] = STATE(128), + [sym__blank_line] = STATE(240), + [sym_block_quote] = STATE(240), + [sym_list] = STATE(240), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(240), + [aux_sym_document_repeat1] = STATE(31), + [aux_sym_document_repeat2] = STATE(367), + [aux_sym_paragraph_repeat1] = STATE(396), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym_minus_metadata] = ACTIONS(61), + [sym_plus_metadata] = ACTIONS(61), + [sym__pipe_table_start] = ACTIONS(63), + }, + [2] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(926), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(71), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [3] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(910), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [4] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(909), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(115), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [5] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(890), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [6] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(885), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(119), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [7] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(911), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(121), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [8] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(923), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(123), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [9] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(924), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(125), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [10] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(928), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(127), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [11] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(927), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym_block_continuation] = ACTIONS(129), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [12] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(891), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [13] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(895), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [14] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(919), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [15] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(912), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [16] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(915), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [17] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(913), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [18] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(878), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [19] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(893), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [20] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(929), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [21] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(24), + [sym__block_not_section] = STATE(24), + [sym_section] = STATE(24), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(24), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(24), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(24), + [sym_html_block] = STATE(24), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(24), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(148), + [sym_block_quote] = STATE(24), + [sym_list] = STATE(24), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__list_item_content] = STATE(882), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_task_list_marker_checked] = STATE(887), + [sym_task_list_marker_unchecked] = STATE(887), + [sym_pipe_table] = STATE(24), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(24), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(65), + [aux_sym__word_token2] = ACTIONS(67), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [22] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(28), + [sym__block_not_section] = STATE(28), + [sym_section] = STATE(28), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(28), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(28), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(28), + [sym_html_block] = STATE(28), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(28), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(28), + [sym_block_quote] = STATE(28), + [sym_list] = STATE(28), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(28), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(28), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(131), + [sym_block_continuation] = ACTIONS(133), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [23] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(30), + [sym__block_not_section] = STATE(30), + [sym_section] = STATE(30), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(30), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(30), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(30), + [sym_html_block] = STATE(30), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(30), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(30), + [sym_block_quote] = STATE(30), + [sym_list] = STATE(30), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(30), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(30), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(135), + [sym_block_continuation] = ACTIONS(137), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [24] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(35), + [sym__block_not_section] = STATE(35), + [sym_section] = STATE(35), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(35), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(35), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(35), + [sym_html_block] = STATE(35), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(35), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(35), + [sym_block_quote] = STATE(35), + [sym_list] = STATE(35), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(35), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(35), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(139), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [25] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(35), + [sym__block_not_section] = STATE(35), + [sym_section] = STATE(35), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(35), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(35), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(35), + [sym_html_block] = STATE(35), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(35), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(35), + [sym_block_quote] = STATE(35), + [sym_list] = STATE(35), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(35), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(35), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(141), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [26] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(34), + [sym__block_not_section] = STATE(34), + [sym_section] = STATE(34), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(34), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(34), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(34), + [sym_html_block] = STATE(34), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(34), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(34), + [sym_block_quote] = STATE(34), + [sym_list] = STATE(34), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(34), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(34), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(143), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [27] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(32), + [sym__block_not_section] = STATE(32), + [sym_section] = STATE(32), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(32), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(32), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(32), + [sym_html_block] = STATE(32), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(32), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(32), + [sym_block_quote] = STATE(32), + [sym_list] = STATE(32), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(32), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(32), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(145), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [28] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(35), + [sym__block_not_section] = STATE(35), + [sym_section] = STATE(35), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(35), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(35), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(35), + [sym_html_block] = STATE(35), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(35), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(35), + [sym_block_quote] = STATE(35), + [sym_list] = STATE(35), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(35), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(35), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(145), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [29] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(240), + [sym_section] = STATE(368), + [sym__section1] = STATE(440), + [sym__section2] = STATE(440), + [sym__section3] = STATE(440), + [sym__section4] = STATE(440), + [sym__section5] = STATE(440), + [sym__section6] = STATE(440), + [sym_thematic_break] = STATE(240), + [sym__atx_heading1] = STATE(44), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading1] = STATE(43), + [sym__setext_heading2] = STATE(50), + [sym_indented_code_block] = STATE(240), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(240), + [sym_html_block] = STATE(240), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(240), + [sym_paragraph] = STATE(128), + [sym__blank_line] = STATE(240), + [sym_block_quote] = STATE(240), + [sym_list] = STATE(240), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(240), + [aux_sym_document_repeat1] = STATE(79), + [aux_sym_document_repeat2] = STATE(368), + [aux_sym_paragraph_repeat1] = STATE(396), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [30] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(35), + [sym__block_not_section] = STATE(35), + [sym_section] = STATE(35), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(35), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(35), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(35), + [sym_html_block] = STATE(35), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(35), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(35), + [sym_block_quote] = STATE(35), + [sym_list] = STATE(35), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(35), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(35), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(143), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [31] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(240), + [sym_section] = STATE(365), + [sym__section1] = STATE(440), + [sym__section2] = STATE(440), + [sym__section3] = STATE(440), + [sym__section4] = STATE(440), + [sym__section5] = STATE(440), + [sym__section6] = STATE(440), + [sym_thematic_break] = STATE(240), + [sym__atx_heading1] = STATE(44), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading1] = STATE(43), + [sym__setext_heading2] = STATE(50), + [sym_indented_code_block] = STATE(240), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(240), + [sym_html_block] = STATE(240), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(240), + [sym_paragraph] = STATE(128), + [sym__blank_line] = STATE(240), + [sym_block_quote] = STATE(240), + [sym_list] = STATE(240), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(240), + [aux_sym_document_repeat1] = STATE(79), + [aux_sym_document_repeat2] = STATE(365), + [aux_sym_paragraph_repeat1] = STATE(396), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [32] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(35), + [sym__block_not_section] = STATE(35), + [sym_section] = STATE(35), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(35), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(35), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(35), + [sym_html_block] = STATE(35), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(35), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(35), + [sym_block_quote] = STATE(35), + [sym_list] = STATE(35), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(35), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(35), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(151), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [33] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(25), + [sym__block_not_section] = STATE(25), + [sym_section] = STATE(25), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(25), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(25), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(25), + [sym_html_block] = STATE(25), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(25), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(25), + [sym_block_quote] = STATE(25), + [sym_list] = STATE(25), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(25), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(25), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(153), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [34] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(35), + [sym__block_not_section] = STATE(35), + [sym_section] = STATE(35), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(35), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(35), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(35), + [sym_html_block] = STATE(35), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(35), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(35), + [sym_block_quote] = STATE(35), + [sym_list] = STATE(35), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(35), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(35), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(155), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(77), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [35] = { + [sym_link_label] = STATE(933), + [sym__block] = STATE(35), + [sym__block_not_section] = STATE(35), + [sym_section] = STATE(35), + [sym__section1] = STATE(278), + [sym__section2] = STATE(278), + [sym__section3] = STATE(278), + [sym__section4] = STATE(278), + [sym__section5] = STATE(278), + [sym__section6] = STATE(278), + [sym_thematic_break] = STATE(35), + [sym__atx_heading1] = STATE(46), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading1] = STATE(45), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(35), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(35), + [sym_html_block] = STATE(35), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(35), + [sym_paragraph] = STATE(126), + [sym__blank_line] = STATE(35), + [sym_block_quote] = STATE(35), + [sym_list] = STATE(35), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(35), + [aux_sym_paragraph_repeat1] = STATE(399), + [aux_sym_block_quote_repeat1] = STATE(35), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(160), + [anon_sym_GT] = ACTIONS(160), + [anon_sym_BANG] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(160), + [anon_sym_POUND] = ACTIONS(160), + [anon_sym_DOLLAR] = ACTIONS(160), + [anon_sym_PERCENT] = ACTIONS(160), + [anon_sym_AMP] = ACTIONS(160), + [anon_sym_SQUOTE] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(160), + [anon_sym_COLON] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_AT] = ACTIONS(160), + [anon_sym_BSLASH] = ACTIONS(160), + [anon_sym_CARET] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_BQUOTE] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [aux_sym__word_token1] = ACTIONS(160), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(160), + [aux_sym__word_token2] = ACTIONS(160), + [sym__whitespace] = ACTIONS(163), + [sym__soft_line_ending] = ACTIONS(166), + [sym__block_close] = ACTIONS(169), + [sym__block_quote_start] = ACTIONS(171), + [sym__indented_chunk_start] = ACTIONS(174), + [sym_atx_h1_marker] = ACTIONS(177), + [sym_atx_h2_marker] = ACTIONS(180), + [sym_atx_h3_marker] = ACTIONS(183), + [sym_atx_h4_marker] = ACTIONS(186), + [sym_atx_h5_marker] = ACTIONS(189), + [sym_atx_h6_marker] = ACTIONS(192), + [sym__thematic_break] = ACTIONS(195), + [sym__list_marker_minus] = ACTIONS(198), + [sym__list_marker_plus] = ACTIONS(201), + [sym__list_marker_star] = ACTIONS(204), + [sym__list_marker_parenthesis] = ACTIONS(207), + [sym__list_marker_dot] = ACTIONS(210), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(198), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(201), + [sym__list_marker_star_dont_interrupt] = ACTIONS(204), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(207), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(210), + [sym__fenced_code_block_start_backtick] = ACTIONS(213), + [sym__fenced_code_block_start_tilde] = ACTIONS(216), + [sym__blank_line_start] = ACTIONS(219), + [sym__html_block_1_start] = ACTIONS(222), + [sym__html_block_2_start] = ACTIONS(225), + [sym__html_block_3_start] = ACTIONS(228), + [sym__html_block_4_start] = ACTIONS(231), + [sym__html_block_5_start] = ACTIONS(234), + [sym__html_block_6_start] = ACTIONS(237), + [sym__html_block_7_start] = ACTIONS(240), + [sym__pipe_table_start] = ACTIONS(243), + }, + [36] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(240), + [sym_section] = STATE(364), + [sym__section1] = STATE(440), + [sym__section2] = STATE(440), + [sym__section3] = STATE(440), + [sym__section4] = STATE(440), + [sym__section5] = STATE(440), + [sym__section6] = STATE(440), + [sym_thematic_break] = STATE(240), + [sym__atx_heading1] = STATE(44), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading1] = STATE(43), + [sym__setext_heading2] = STATE(50), + [sym_indented_code_block] = STATE(240), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(240), + [sym_html_block] = STATE(240), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(240), + [sym_paragraph] = STATE(128), + [sym__blank_line] = STATE(240), + [sym_block_quote] = STATE(240), + [sym_list] = STATE(240), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(240), + [aux_sym_document_repeat1] = STATE(29), + [aux_sym_document_repeat2] = STATE(364), + [aux_sym_paragraph_repeat1] = STATE(396), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(246), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [37] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(37), + [sym__section2] = STATE(236), + [sym__section3] = STATE(236), + [sym__section4] = STATE(236), + [sym__section5] = STATE(236), + [sym__section6] = STATE(236), + [sym_thematic_break] = STATE(37), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(37), + [sym_html_block] = STATE(37), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(37), + [sym_paragraph] = STATE(187), + [sym__blank_line] = STATE(37), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(37), + [aux_sym__section1_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(403), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(248), + [anon_sym_RBRACK] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_COMMA] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_DOT] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(251), + [anon_sym_AT] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym__] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RBRACE] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [aux_sym__word_token1] = ACTIONS(251), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(251), + [aux_sym__word_token2] = ACTIONS(251), + [sym__whitespace] = ACTIONS(254), + [sym__soft_line_ending] = ACTIONS(257), + [sym__block_close] = ACTIONS(260), + [sym__block_quote_start] = ACTIONS(262), + [sym__indented_chunk_start] = ACTIONS(265), + [sym_atx_h1_marker] = ACTIONS(260), + [sym_atx_h2_marker] = ACTIONS(268), + [sym_atx_h3_marker] = ACTIONS(271), + [sym_atx_h4_marker] = ACTIONS(274), + [sym_atx_h5_marker] = ACTIONS(277), + [sym_atx_h6_marker] = ACTIONS(280), + [sym__thematic_break] = ACTIONS(283), + [sym__list_marker_minus] = ACTIONS(286), + [sym__list_marker_plus] = ACTIONS(289), + [sym__list_marker_star] = ACTIONS(292), + [sym__list_marker_parenthesis] = ACTIONS(295), + [sym__list_marker_dot] = ACTIONS(298), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(286), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(289), + [sym__list_marker_star_dont_interrupt] = ACTIONS(292), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(295), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(298), + [sym__fenced_code_block_start_backtick] = ACTIONS(301), + [sym__fenced_code_block_start_tilde] = ACTIONS(304), + [sym__blank_line_start] = ACTIONS(307), + [sym__html_block_1_start] = ACTIONS(310), + [sym__html_block_2_start] = ACTIONS(313), + [sym__html_block_3_start] = ACTIONS(316), + [sym__html_block_4_start] = ACTIONS(319), + [sym__html_block_5_start] = ACTIONS(322), + [sym__html_block_6_start] = ACTIONS(325), + [sym__html_block_7_start] = ACTIONS(328), + [sym__pipe_table_start] = ACTIONS(331), + }, + [38] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(37), + [sym__section2] = STATE(236), + [sym__section3] = STATE(236), + [sym__section4] = STATE(236), + [sym__section5] = STATE(236), + [sym__section6] = STATE(236), + [sym_thematic_break] = STATE(37), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(37), + [sym_html_block] = STATE(37), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(37), + [sym_paragraph] = STATE(187), + [sym__blank_line] = STATE(37), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(37), + [aux_sym__section1_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(403), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(334), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(334), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [39] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(41), + [sym__section2] = STATE(347), + [sym__section3] = STATE(347), + [sym__section4] = STATE(347), + [sym__section5] = STATE(347), + [sym__section6] = STATE(347), + [sym_thematic_break] = STATE(41), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading2] = STATE(50), + [sym_indented_code_block] = STATE(41), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(41), + [sym_html_block] = STATE(41), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(41), + [sym_paragraph] = STATE(164), + [sym__blank_line] = STATE(41), + [sym_block_quote] = STATE(41), + [sym_list] = STATE(41), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(41), + [aux_sym__section1_repeat1] = STATE(41), + [aux_sym_paragraph_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(334), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(334), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [40] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(37), + [sym__section2] = STATE(236), + [sym__section3] = STATE(236), + [sym__section4] = STATE(236), + [sym__section5] = STATE(236), + [sym__section6] = STATE(236), + [sym_thematic_break] = STATE(37), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(37), + [sym_html_block] = STATE(37), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(37), + [sym_paragraph] = STATE(187), + [sym__blank_line] = STATE(37), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(37), + [aux_sym__section1_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(403), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(334), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(334), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [41] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(41), + [sym__section2] = STATE(347), + [sym__section3] = STATE(347), + [sym__section4] = STATE(347), + [sym__section5] = STATE(347), + [sym__section6] = STATE(347), + [sym_thematic_break] = STATE(41), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading2] = STATE(50), + [sym_indented_code_block] = STATE(41), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(41), + [sym_html_block] = STATE(41), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(41), + [sym_paragraph] = STATE(164), + [sym__blank_line] = STATE(41), + [sym_block_quote] = STATE(41), + [sym_list] = STATE(41), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(41), + [aux_sym__section1_repeat1] = STATE(41), + [aux_sym_paragraph_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(248), + [anon_sym_RBRACK] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_BANG] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [anon_sym_POUND] = ACTIONS(251), + [anon_sym_DOLLAR] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_SQUOTE] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_COMMA] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_DOT] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(251), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(251), + [anon_sym_AT] = ACTIONS(251), + [anon_sym_BSLASH] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym__] = ACTIONS(251), + [anon_sym_BQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RBRACE] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(251), + [anon_sym_LPAREN] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [aux_sym__word_token1] = ACTIONS(251), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(251), + [aux_sym__word_token2] = ACTIONS(251), + [sym__whitespace] = ACTIONS(336), + [sym__soft_line_ending] = ACTIONS(257), + [sym__block_quote_start] = ACTIONS(339), + [sym__indented_chunk_start] = ACTIONS(342), + [sym_atx_h1_marker] = ACTIONS(260), + [sym_atx_h2_marker] = ACTIONS(345), + [sym_atx_h3_marker] = ACTIONS(348), + [sym_atx_h4_marker] = ACTIONS(351), + [sym_atx_h5_marker] = ACTIONS(354), + [sym_atx_h6_marker] = ACTIONS(357), + [sym__thematic_break] = ACTIONS(360), + [sym__list_marker_minus] = ACTIONS(286), + [sym__list_marker_plus] = ACTIONS(289), + [sym__list_marker_star] = ACTIONS(292), + [sym__list_marker_parenthesis] = ACTIONS(295), + [sym__list_marker_dot] = ACTIONS(298), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(286), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(289), + [sym__list_marker_star_dont_interrupt] = ACTIONS(292), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(295), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(298), + [sym__fenced_code_block_start_backtick] = ACTIONS(363), + [sym__fenced_code_block_start_tilde] = ACTIONS(366), + [sym__blank_line_start] = ACTIONS(369), + [sym__html_block_1_start] = ACTIONS(372), + [sym__html_block_2_start] = ACTIONS(375), + [sym__html_block_3_start] = ACTIONS(378), + [sym__html_block_4_start] = ACTIONS(381), + [sym__html_block_5_start] = ACTIONS(384), + [sym__html_block_6_start] = ACTIONS(387), + [sym__html_block_7_start] = ACTIONS(390), + [sym__pipe_table_start] = ACTIONS(393), + }, + [42] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(41), + [sym__section2] = STATE(347), + [sym__section3] = STATE(347), + [sym__section4] = STATE(347), + [sym__section5] = STATE(347), + [sym__section6] = STATE(347), + [sym_thematic_break] = STATE(41), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading2] = STATE(50), + [sym_indented_code_block] = STATE(41), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(41), + [sym_html_block] = STATE(41), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(41), + [sym_paragraph] = STATE(164), + [sym__blank_line] = STATE(41), + [sym_block_quote] = STATE(41), + [sym_list] = STATE(41), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(41), + [aux_sym__section1_repeat1] = STATE(41), + [aux_sym_paragraph_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(334), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(334), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [43] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(42), + [sym__section2] = STATE(347), + [sym__section3] = STATE(347), + [sym__section4] = STATE(347), + [sym__section5] = STATE(347), + [sym__section6] = STATE(347), + [sym_thematic_break] = STATE(42), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading2] = STATE(50), + [sym_indented_code_block] = STATE(42), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(42), + [sym_html_block] = STATE(42), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(42), + [sym_paragraph] = STATE(164), + [sym__blank_line] = STATE(42), + [sym_block_quote] = STATE(42), + [sym_list] = STATE(42), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(42), + [aux_sym__section1_repeat1] = STATE(42), + [aux_sym_paragraph_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(396), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [44] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(39), + [sym__section2] = STATE(347), + [sym__section3] = STATE(347), + [sym__section4] = STATE(347), + [sym__section5] = STATE(347), + [sym__section6] = STATE(347), + [sym_thematic_break] = STATE(39), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading2] = STATE(50), + [sym_indented_code_block] = STATE(39), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(39), + [sym_html_block] = STATE(39), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(39), + [sym_paragraph] = STATE(164), + [sym__blank_line] = STATE(39), + [sym_block_quote] = STATE(39), + [sym_list] = STATE(39), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(39), + [aux_sym__section1_repeat1] = STATE(39), + [aux_sym_paragraph_repeat1] = STATE(409), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(396), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [45] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(38), + [sym__section2] = STATE(236), + [sym__section3] = STATE(236), + [sym__section4] = STATE(236), + [sym__section5] = STATE(236), + [sym__section6] = STATE(236), + [sym_thematic_break] = STATE(38), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(38), + [sym_html_block] = STATE(38), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(38), + [sym_paragraph] = STATE(187), + [sym__blank_line] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(38), + [aux_sym__section1_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(403), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(396), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(396), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [46] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(40), + [sym__section2] = STATE(236), + [sym__section3] = STATE(236), + [sym__section4] = STATE(236), + [sym__section5] = STATE(236), + [sym__section6] = STATE(236), + [sym_thematic_break] = STATE(40), + [sym__atx_heading2] = STATE(55), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym__setext_heading2] = STATE(56), + [sym_indented_code_block] = STATE(40), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(40), + [sym_html_block] = STATE(40), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(40), + [sym_paragraph] = STATE(187), + [sym__blank_line] = STATE(40), + [sym_block_quote] = STATE(40), + [sym_list] = STATE(40), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(40), + [aux_sym__section1_repeat1] = STATE(40), + [aux_sym_paragraph_repeat1] = STATE(403), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(396), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(396), + [sym_atx_h2_marker] = ACTIONS(79), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [47] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(51), + [sym__section3] = STATE(340), + [sym__section4] = STATE(340), + [sym__section5] = STATE(340), + [sym__section6] = STATE(340), + [sym_thematic_break] = STATE(51), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(51), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(51), + [sym_html_block] = STATE(51), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(51), + [sym_paragraph] = STATE(51), + [sym__blank_line] = STATE(51), + [sym_block_quote] = STATE(51), + [sym_list] = STATE(51), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(51), + [aux_sym__section2_repeat1] = STATE(51), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(398), + [sym_atx_h2_marker] = ACTIONS(398), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [48] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(53), + [sym__section3] = STATE(235), + [sym__section4] = STATE(235), + [sym__section5] = STATE(235), + [sym__section6] = STATE(235), + [sym_thematic_break] = STATE(53), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(53), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(53), + [aux_sym__section2_repeat1] = STATE(53), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(398), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(398), + [sym_atx_h2_marker] = ACTIONS(398), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [49] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(52), + [sym__section3] = STATE(340), + [sym__section4] = STATE(340), + [sym__section5] = STATE(340), + [sym__section6] = STATE(340), + [sym_thematic_break] = STATE(52), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(52), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(52), + [sym_html_block] = STATE(52), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(52), + [sym_paragraph] = STATE(52), + [sym__blank_line] = STATE(52), + [sym_block_quote] = STATE(52), + [sym_list] = STATE(52), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(52), + [aux_sym__section2_repeat1] = STATE(52), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(400), + [sym_atx_h2_marker] = ACTIONS(400), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [50] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(47), + [sym__section3] = STATE(340), + [sym__section4] = STATE(340), + [sym__section5] = STATE(340), + [sym__section6] = STATE(340), + [sym_thematic_break] = STATE(47), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(47), + [sym__blank_line] = STATE(47), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(47), + [aux_sym__section2_repeat1] = STATE(47), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(400), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(400), + [sym_atx_h2_marker] = ACTIONS(400), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [51] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(51), + [sym__section3] = STATE(340), + [sym__section4] = STATE(340), + [sym__section5] = STATE(340), + [sym__section6] = STATE(340), + [sym_thematic_break] = STATE(51), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(51), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(51), + [sym_html_block] = STATE(51), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(51), + [sym_paragraph] = STATE(51), + [sym__blank_line] = STATE(51), + [sym_block_quote] = STATE(51), + [sym_list] = STATE(51), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(51), + [aux_sym__section2_repeat1] = STATE(51), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(407), + [anon_sym_POUND] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym__] = ACTIONS(407), + [anon_sym_BQUOTE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_TILDE] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(407), + [aux_sym__word_token1] = ACTIONS(407), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(407), + [aux_sym__word_token2] = ACTIONS(407), + [sym__whitespace] = ACTIONS(410), + [sym__soft_line_ending] = ACTIONS(413), + [sym__block_quote_start] = ACTIONS(416), + [sym__indented_chunk_start] = ACTIONS(419), + [sym_atx_h1_marker] = ACTIONS(402), + [sym_atx_h2_marker] = ACTIONS(402), + [sym_atx_h3_marker] = ACTIONS(422), + [sym_atx_h4_marker] = ACTIONS(425), + [sym_atx_h5_marker] = ACTIONS(428), + [sym_atx_h6_marker] = ACTIONS(431), + [sym__thematic_break] = ACTIONS(434), + [sym__list_marker_minus] = ACTIONS(437), + [sym__list_marker_plus] = ACTIONS(440), + [sym__list_marker_star] = ACTIONS(443), + [sym__list_marker_parenthesis] = ACTIONS(446), + [sym__list_marker_dot] = ACTIONS(449), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(437), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(440), + [sym__list_marker_star_dont_interrupt] = ACTIONS(443), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(446), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(449), + [sym__fenced_code_block_start_backtick] = ACTIONS(452), + [sym__fenced_code_block_start_tilde] = ACTIONS(455), + [sym__blank_line_start] = ACTIONS(458), + [sym__html_block_1_start] = ACTIONS(461), + [sym__html_block_2_start] = ACTIONS(464), + [sym__html_block_3_start] = ACTIONS(467), + [sym__html_block_4_start] = ACTIONS(470), + [sym__html_block_5_start] = ACTIONS(473), + [sym__html_block_6_start] = ACTIONS(476), + [sym__html_block_7_start] = ACTIONS(479), + [sym__pipe_table_start] = ACTIONS(482), + }, + [52] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(51), + [sym__section3] = STATE(340), + [sym__section4] = STATE(340), + [sym__section5] = STATE(340), + [sym__section6] = STATE(340), + [sym_thematic_break] = STATE(51), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(51), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(51), + [sym_html_block] = STATE(51), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(51), + [sym_paragraph] = STATE(51), + [sym__blank_line] = STATE(51), + [sym_block_quote] = STATE(51), + [sym_list] = STATE(51), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(51), + [aux_sym__section2_repeat1] = STATE(51), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(398), + [sym_atx_h2_marker] = ACTIONS(398), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [53] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(53), + [sym__section3] = STATE(235), + [sym__section4] = STATE(235), + [sym__section5] = STATE(235), + [sym__section6] = STATE(235), + [sym_thematic_break] = STATE(53), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(53), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(53), + [aux_sym__section2_repeat1] = STATE(53), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(407), + [anon_sym_POUND] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), + [anon_sym_SQUOTE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(407), + [anon_sym_SLASH] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_CARET] = ACTIONS(407), + [anon_sym__] = ACTIONS(407), + [anon_sym_BQUOTE] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_TILDE] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(407), + [aux_sym__word_token1] = ACTIONS(407), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(407), + [aux_sym__word_token2] = ACTIONS(407), + [sym__whitespace] = ACTIONS(485), + [sym__soft_line_ending] = ACTIONS(413), + [sym__block_close] = ACTIONS(402), + [sym__block_quote_start] = ACTIONS(488), + [sym__indented_chunk_start] = ACTIONS(491), + [sym_atx_h1_marker] = ACTIONS(402), + [sym_atx_h2_marker] = ACTIONS(402), + [sym_atx_h3_marker] = ACTIONS(494), + [sym_atx_h4_marker] = ACTIONS(497), + [sym_atx_h5_marker] = ACTIONS(500), + [sym_atx_h6_marker] = ACTIONS(503), + [sym__thematic_break] = ACTIONS(506), + [sym__list_marker_minus] = ACTIONS(437), + [sym__list_marker_plus] = ACTIONS(440), + [sym__list_marker_star] = ACTIONS(443), + [sym__list_marker_parenthesis] = ACTIONS(446), + [sym__list_marker_dot] = ACTIONS(449), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(437), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(440), + [sym__list_marker_star_dont_interrupt] = ACTIONS(443), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(446), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(449), + [sym__fenced_code_block_start_backtick] = ACTIONS(509), + [sym__fenced_code_block_start_tilde] = ACTIONS(512), + [sym__blank_line_start] = ACTIONS(515), + [sym__html_block_1_start] = ACTIONS(518), + [sym__html_block_2_start] = ACTIONS(521), + [sym__html_block_3_start] = ACTIONS(524), + [sym__html_block_4_start] = ACTIONS(527), + [sym__html_block_5_start] = ACTIONS(530), + [sym__html_block_6_start] = ACTIONS(533), + [sym__html_block_7_start] = ACTIONS(536), + [sym__pipe_table_start] = ACTIONS(539), + }, + [54] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(53), + [sym__section3] = STATE(235), + [sym__section4] = STATE(235), + [sym__section5] = STATE(235), + [sym__section6] = STATE(235), + [sym_thematic_break] = STATE(53), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(53), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(53), + [aux_sym__section2_repeat1] = STATE(53), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(398), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(398), + [sym_atx_h2_marker] = ACTIONS(398), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [55] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(48), + [sym__section3] = STATE(235), + [sym__section4] = STATE(235), + [sym__section5] = STATE(235), + [sym__section6] = STATE(235), + [sym_thematic_break] = STATE(48), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(48), + [sym_html_block] = STATE(48), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(48), + [sym_paragraph] = STATE(48), + [sym__blank_line] = STATE(48), + [sym_block_quote] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(48), + [aux_sym__section2_repeat1] = STATE(48), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(400), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(400), + [sym_atx_h2_marker] = ACTIONS(400), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [56] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(54), + [sym__section3] = STATE(235), + [sym__section4] = STATE(235), + [sym__section5] = STATE(235), + [sym__section6] = STATE(235), + [sym_thematic_break] = STATE(54), + [sym__atx_heading3] = STATE(62), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(54), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(54), + [sym_html_block] = STATE(54), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(54), + [sym_paragraph] = STATE(54), + [sym__blank_line] = STATE(54), + [sym_block_quote] = STATE(54), + [sym_list] = STATE(54), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(54), + [aux_sym__section2_repeat1] = STATE(54), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(400), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(400), + [sym_atx_h2_marker] = ACTIONS(400), + [sym_atx_h3_marker] = ACTIONS(81), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [57] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(59), + [sym__section4] = STATE(343), + [sym__section5] = STATE(343), + [sym__section6] = STATE(343), + [sym_thematic_break] = STATE(59), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(59), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(59), + [sym_html_block] = STATE(59), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(59), + [sym_paragraph] = STATE(59), + [sym__blank_line] = STATE(59), + [sym_block_quote] = STATE(59), + [sym_list] = STATE(59), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(59), + [aux_sym__section3_repeat1] = STATE(59), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(542), + [sym_atx_h2_marker] = ACTIONS(542), + [sym_atx_h3_marker] = ACTIONS(542), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [58] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(60), + [sym__section4] = STATE(234), + [sym__section5] = STATE(234), + [sym__section6] = STATE(234), + [sym_thematic_break] = STATE(60), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(60), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(60), + [sym_html_block] = STATE(60), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(60), + [sym_paragraph] = STATE(60), + [sym__blank_line] = STATE(60), + [sym_block_quote] = STATE(60), + [sym_list] = STATE(60), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(60), + [aux_sym__section3_repeat1] = STATE(60), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(544), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(544), + [sym_atx_h2_marker] = ACTIONS(544), + [sym_atx_h3_marker] = ACTIONS(544), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [59] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(61), + [sym__section4] = STATE(343), + [sym__section5] = STATE(343), + [sym__section6] = STATE(343), + [sym_thematic_break] = STATE(61), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(61), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(61), + [sym_html_block] = STATE(61), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(61), + [sym_paragraph] = STATE(61), + [sym__blank_line] = STATE(61), + [sym_block_quote] = STATE(61), + [sym_list] = STATE(61), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(61), + [aux_sym__section3_repeat1] = STATE(61), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(544), + [sym_atx_h2_marker] = ACTIONS(544), + [sym_atx_h3_marker] = ACTIONS(544), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [60] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(60), + [sym__section4] = STATE(234), + [sym__section5] = STATE(234), + [sym__section6] = STATE(234), + [sym_thematic_break] = STATE(60), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(60), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(60), + [sym_html_block] = STATE(60), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(60), + [sym_paragraph] = STATE(60), + [sym__blank_line] = STATE(60), + [sym_block_quote] = STATE(60), + [sym_list] = STATE(60), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(60), + [aux_sym__section3_repeat1] = STATE(60), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_BANG] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_POUND] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(549), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(549), + [anon_sym_BSLASH] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym__] = ACTIONS(549), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(549), + [aux_sym__word_token1] = ACTIONS(549), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(549), + [aux_sym__word_token2] = ACTIONS(549), + [sym__whitespace] = ACTIONS(552), + [sym__soft_line_ending] = ACTIONS(555), + [sym__block_close] = ACTIONS(558), + [sym__block_quote_start] = ACTIONS(560), + [sym__indented_chunk_start] = ACTIONS(563), + [sym_atx_h1_marker] = ACTIONS(558), + [sym_atx_h2_marker] = ACTIONS(558), + [sym_atx_h3_marker] = ACTIONS(558), + [sym_atx_h4_marker] = ACTIONS(566), + [sym_atx_h5_marker] = ACTIONS(569), + [sym_atx_h6_marker] = ACTIONS(572), + [sym__thematic_break] = ACTIONS(575), + [sym__list_marker_minus] = ACTIONS(578), + [sym__list_marker_plus] = ACTIONS(581), + [sym__list_marker_star] = ACTIONS(584), + [sym__list_marker_parenthesis] = ACTIONS(587), + [sym__list_marker_dot] = ACTIONS(590), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(578), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(581), + [sym__list_marker_star_dont_interrupt] = ACTIONS(584), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(587), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(590), + [sym__fenced_code_block_start_backtick] = ACTIONS(593), + [sym__fenced_code_block_start_tilde] = ACTIONS(596), + [sym__blank_line_start] = ACTIONS(599), + [sym__html_block_1_start] = ACTIONS(602), + [sym__html_block_2_start] = ACTIONS(605), + [sym__html_block_3_start] = ACTIONS(608), + [sym__html_block_4_start] = ACTIONS(611), + [sym__html_block_5_start] = ACTIONS(614), + [sym__html_block_6_start] = ACTIONS(617), + [sym__html_block_7_start] = ACTIONS(620), + [sym__pipe_table_start] = ACTIONS(623), + }, + [61] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(61), + [sym__section4] = STATE(343), + [sym__section5] = STATE(343), + [sym__section6] = STATE(343), + [sym_thematic_break] = STATE(61), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(61), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(61), + [sym_html_block] = STATE(61), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(61), + [sym_paragraph] = STATE(61), + [sym__blank_line] = STATE(61), + [sym_block_quote] = STATE(61), + [sym_list] = STATE(61), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(61), + [aux_sym__section3_repeat1] = STATE(61), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_BANG] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_POUND] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PERCENT] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(549), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_DOT] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(549), + [anon_sym_BSLASH] = ACTIONS(549), + [anon_sym_CARET] = ACTIONS(549), + [anon_sym__] = ACTIONS(549), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(549), + [aux_sym__word_token1] = ACTIONS(549), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(549), + [aux_sym__word_token2] = ACTIONS(549), + [sym__whitespace] = ACTIONS(626), + [sym__soft_line_ending] = ACTIONS(555), + [sym__block_quote_start] = ACTIONS(629), + [sym__indented_chunk_start] = ACTIONS(632), + [sym_atx_h1_marker] = ACTIONS(558), + [sym_atx_h2_marker] = ACTIONS(558), + [sym_atx_h3_marker] = ACTIONS(558), + [sym_atx_h4_marker] = ACTIONS(635), + [sym_atx_h5_marker] = ACTIONS(638), + [sym_atx_h6_marker] = ACTIONS(641), + [sym__thematic_break] = ACTIONS(644), + [sym__list_marker_minus] = ACTIONS(578), + [sym__list_marker_plus] = ACTIONS(581), + [sym__list_marker_star] = ACTIONS(584), + [sym__list_marker_parenthesis] = ACTIONS(587), + [sym__list_marker_dot] = ACTIONS(590), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(578), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(581), + [sym__list_marker_star_dont_interrupt] = ACTIONS(584), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(587), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(590), + [sym__fenced_code_block_start_backtick] = ACTIONS(647), + [sym__fenced_code_block_start_tilde] = ACTIONS(650), + [sym__blank_line_start] = ACTIONS(653), + [sym__html_block_1_start] = ACTIONS(656), + [sym__html_block_2_start] = ACTIONS(659), + [sym__html_block_3_start] = ACTIONS(662), + [sym__html_block_4_start] = ACTIONS(665), + [sym__html_block_5_start] = ACTIONS(668), + [sym__html_block_6_start] = ACTIONS(671), + [sym__html_block_7_start] = ACTIONS(674), + [sym__pipe_table_start] = ACTIONS(677), + }, + [62] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(58), + [sym__section4] = STATE(234), + [sym__section5] = STATE(234), + [sym__section6] = STATE(234), + [sym_thematic_break] = STATE(58), + [sym__atx_heading4] = STATE(65), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(58), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(58), + [sym_html_block] = STATE(58), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(58), + [sym_paragraph] = STATE(58), + [sym__blank_line] = STATE(58), + [sym_block_quote] = STATE(58), + [sym_list] = STATE(58), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(58), + [aux_sym__section3_repeat1] = STATE(58), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(542), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(542), + [sym_atx_h2_marker] = ACTIONS(542), + [sym_atx_h3_marker] = ACTIONS(542), + [sym_atx_h4_marker] = ACTIONS(83), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [63] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(64), + [sym__section5] = STATE(342), + [sym__section6] = STATE(342), + [sym_thematic_break] = STATE(64), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(64), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(64), + [sym_html_block] = STATE(64), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(64), + [sym_paragraph] = STATE(64), + [sym__blank_line] = STATE(64), + [sym_block_quote] = STATE(64), + [sym_list] = STATE(64), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(64), + [aux_sym__section4_repeat1] = STATE(64), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(680), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(680), + [sym_atx_h2_marker] = ACTIONS(680), + [sym_atx_h3_marker] = ACTIONS(680), + [sym_atx_h4_marker] = ACTIONS(680), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [64] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(64), + [sym__section5] = STATE(342), + [sym__section6] = STATE(342), + [sym_thematic_break] = STATE(64), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(64), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(64), + [sym_html_block] = STATE(64), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(64), + [sym_paragraph] = STATE(64), + [sym__blank_line] = STATE(64), + [sym_block_quote] = STATE(64), + [sym_list] = STATE(64), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(64), + [aux_sym__section4_repeat1] = STATE(64), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(687), + [anon_sym_POUND] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(687), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_COMMA] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(687), + [anon_sym_SLASH] = ACTIONS(687), + [anon_sym_COLON] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(687), + [anon_sym_QMARK] = ACTIONS(687), + [anon_sym_AT] = ACTIONS(687), + [anon_sym_BSLASH] = ACTIONS(687), + [anon_sym_CARET] = ACTIONS(687), + [anon_sym__] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(687), + [anon_sym_PIPE] = ACTIONS(687), + [anon_sym_RBRACE] = ACTIONS(687), + [anon_sym_TILDE] = ACTIONS(687), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(687), + [aux_sym__word_token1] = ACTIONS(687), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(687), + [aux_sym__word_token2] = ACTIONS(687), + [sym__whitespace] = ACTIONS(690), + [sym__soft_line_ending] = ACTIONS(693), + [sym__block_quote_start] = ACTIONS(696), + [sym__indented_chunk_start] = ACTIONS(699), + [sym_atx_h1_marker] = ACTIONS(682), + [sym_atx_h2_marker] = ACTIONS(682), + [sym_atx_h3_marker] = ACTIONS(682), + [sym_atx_h4_marker] = ACTIONS(682), + [sym_atx_h5_marker] = ACTIONS(702), + [sym_atx_h6_marker] = ACTIONS(705), + [sym__thematic_break] = ACTIONS(708), + [sym__list_marker_minus] = ACTIONS(711), + [sym__list_marker_plus] = ACTIONS(714), + [sym__list_marker_star] = ACTIONS(717), + [sym__list_marker_parenthesis] = ACTIONS(720), + [sym__list_marker_dot] = ACTIONS(723), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(711), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(717), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(720), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(723), + [sym__fenced_code_block_start_backtick] = ACTIONS(726), + [sym__fenced_code_block_start_tilde] = ACTIONS(729), + [sym__blank_line_start] = ACTIONS(732), + [sym__html_block_1_start] = ACTIONS(735), + [sym__html_block_2_start] = ACTIONS(738), + [sym__html_block_3_start] = ACTIONS(741), + [sym__html_block_4_start] = ACTIONS(744), + [sym__html_block_5_start] = ACTIONS(747), + [sym__html_block_6_start] = ACTIONS(750), + [sym__html_block_7_start] = ACTIONS(753), + [sym__pipe_table_start] = ACTIONS(756), + }, + [65] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(67), + [sym__section5] = STATE(233), + [sym__section6] = STATE(233), + [sym_thematic_break] = STATE(67), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(67), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(67), + [sym_html_block] = STATE(67), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(67), + [sym_paragraph] = STATE(67), + [sym__blank_line] = STATE(67), + [sym_block_quote] = STATE(67), + [sym_list] = STATE(67), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(67), + [aux_sym__section4_repeat1] = STATE(67), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(759), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(759), + [sym_atx_h2_marker] = ACTIONS(759), + [sym_atx_h3_marker] = ACTIONS(759), + [sym_atx_h4_marker] = ACTIONS(759), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [66] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(66), + [sym__section5] = STATE(233), + [sym__section6] = STATE(233), + [sym_thematic_break] = STATE(66), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(66), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(66), + [sym_html_block] = STATE(66), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(66), + [sym_paragraph] = STATE(66), + [sym__blank_line] = STATE(66), + [sym_block_quote] = STATE(66), + [sym_list] = STATE(66), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(66), + [aux_sym__section4_repeat1] = STATE(66), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(684), + [anon_sym_RBRACK] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(687), + [anon_sym_GT] = ACTIONS(687), + [anon_sym_BANG] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(687), + [anon_sym_POUND] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(687), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(687), + [anon_sym_SQUOTE] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_COMMA] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(687), + [anon_sym_SLASH] = ACTIONS(687), + [anon_sym_COLON] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(687), + [anon_sym_EQ] = ACTIONS(687), + [anon_sym_QMARK] = ACTIONS(687), + [anon_sym_AT] = ACTIONS(687), + [anon_sym_BSLASH] = ACTIONS(687), + [anon_sym_CARET] = ACTIONS(687), + [anon_sym__] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(687), + [anon_sym_PIPE] = ACTIONS(687), + [anon_sym_RBRACE] = ACTIONS(687), + [anon_sym_TILDE] = ACTIONS(687), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(687), + [aux_sym__word_token1] = ACTIONS(687), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(687), + [aux_sym__word_token2] = ACTIONS(687), + [sym__whitespace] = ACTIONS(761), + [sym__soft_line_ending] = ACTIONS(693), + [sym__block_close] = ACTIONS(682), + [sym__block_quote_start] = ACTIONS(764), + [sym__indented_chunk_start] = ACTIONS(767), + [sym_atx_h1_marker] = ACTIONS(682), + [sym_atx_h2_marker] = ACTIONS(682), + [sym_atx_h3_marker] = ACTIONS(682), + [sym_atx_h4_marker] = ACTIONS(682), + [sym_atx_h5_marker] = ACTIONS(770), + [sym_atx_h6_marker] = ACTIONS(773), + [sym__thematic_break] = ACTIONS(776), + [sym__list_marker_minus] = ACTIONS(711), + [sym__list_marker_plus] = ACTIONS(714), + [sym__list_marker_star] = ACTIONS(717), + [sym__list_marker_parenthesis] = ACTIONS(720), + [sym__list_marker_dot] = ACTIONS(723), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(711), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(717), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(720), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(723), + [sym__fenced_code_block_start_backtick] = ACTIONS(779), + [sym__fenced_code_block_start_tilde] = ACTIONS(782), + [sym__blank_line_start] = ACTIONS(785), + [sym__html_block_1_start] = ACTIONS(788), + [sym__html_block_2_start] = ACTIONS(791), + [sym__html_block_3_start] = ACTIONS(794), + [sym__html_block_4_start] = ACTIONS(797), + [sym__html_block_5_start] = ACTIONS(800), + [sym__html_block_6_start] = ACTIONS(803), + [sym__html_block_7_start] = ACTIONS(806), + [sym__pipe_table_start] = ACTIONS(809), + }, + [67] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(66), + [sym__section5] = STATE(233), + [sym__section6] = STATE(233), + [sym_thematic_break] = STATE(66), + [sym__atx_heading5] = STATE(74), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(66), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(66), + [sym_html_block] = STATE(66), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(66), + [sym_paragraph] = STATE(66), + [sym__blank_line] = STATE(66), + [sym_block_quote] = STATE(66), + [sym_list] = STATE(66), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(66), + [aux_sym__section4_repeat1] = STATE(66), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(680), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(680), + [sym_atx_h2_marker] = ACTIONS(680), + [sym_atx_h3_marker] = ACTIONS(680), + [sym_atx_h4_marker] = ACTIONS(680), + [sym_atx_h5_marker] = ACTIONS(85), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [68] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(63), + [sym__section5] = STATE(342), + [sym__section6] = STATE(342), + [sym_thematic_break] = STATE(63), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(63), + [aux_sym__section4_repeat1] = STATE(63), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(759), + [sym_atx_h2_marker] = ACTIONS(759), + [sym_atx_h3_marker] = ACTIONS(759), + [sym_atx_h4_marker] = ACTIONS(759), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [69] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(69), + [sym__section6] = STATE(232), + [sym_thematic_break] = STATE(69), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(69), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(69), + [sym_html_block] = STATE(69), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(69), + [sym_paragraph] = STATE(69), + [sym__blank_line] = STATE(69), + [sym_block_quote] = STATE(69), + [sym_list] = STATE(69), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(69), + [aux_sym__section5_repeat1] = STATE(69), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_PERCENT] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_COLON] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_EQ] = ACTIONS(815), + [anon_sym_QMARK] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(815), + [anon_sym_BSLASH] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym__] = ACTIONS(815), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [aux_sym__word_token1] = ACTIONS(815), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(815), + [aux_sym__word_token2] = ACTIONS(815), + [sym__whitespace] = ACTIONS(818), + [sym__soft_line_ending] = ACTIONS(821), + [sym__block_close] = ACTIONS(824), + [sym__block_quote_start] = ACTIONS(826), + [sym__indented_chunk_start] = ACTIONS(829), + [sym_atx_h1_marker] = ACTIONS(824), + [sym_atx_h2_marker] = ACTIONS(824), + [sym_atx_h3_marker] = ACTIONS(824), + [sym_atx_h4_marker] = ACTIONS(824), + [sym_atx_h5_marker] = ACTIONS(824), + [sym_atx_h6_marker] = ACTIONS(832), + [sym__thematic_break] = ACTIONS(835), + [sym__list_marker_minus] = ACTIONS(838), + [sym__list_marker_plus] = ACTIONS(841), + [sym__list_marker_star] = ACTIONS(844), + [sym__list_marker_parenthesis] = ACTIONS(847), + [sym__list_marker_dot] = ACTIONS(850), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(838), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(841), + [sym__list_marker_star_dont_interrupt] = ACTIONS(844), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(847), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(850), + [sym__fenced_code_block_start_backtick] = ACTIONS(853), + [sym__fenced_code_block_start_tilde] = ACTIONS(856), + [sym__blank_line_start] = ACTIONS(859), + [sym__html_block_1_start] = ACTIONS(862), + [sym__html_block_2_start] = ACTIONS(865), + [sym__html_block_3_start] = ACTIONS(868), + [sym__html_block_4_start] = ACTIONS(871), + [sym__html_block_5_start] = ACTIONS(874), + [sym__html_block_6_start] = ACTIONS(877), + [sym__html_block_7_start] = ACTIONS(880), + [sym__pipe_table_start] = ACTIONS(883), + }, + [70] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(72), + [sym__section6] = STATE(341), + [sym_thematic_break] = STATE(72), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(72), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(72), + [sym_html_block] = STATE(72), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(72), + [sym_paragraph] = STATE(72), + [sym__blank_line] = STATE(72), + [sym_block_quote] = STATE(72), + [sym_list] = STATE(72), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(72), + [aux_sym__section5_repeat1] = STATE(72), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(886), + [sym_atx_h2_marker] = ACTIONS(886), + [sym_atx_h3_marker] = ACTIONS(886), + [sym_atx_h4_marker] = ACTIONS(886), + [sym_atx_h5_marker] = ACTIONS(886), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [71] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(70), + [sym__section6] = STATE(341), + [sym_thematic_break] = STATE(70), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(70), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(70), + [sym_html_block] = STATE(70), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(70), + [sym_paragraph] = STATE(70), + [sym__blank_line] = STATE(70), + [sym_block_quote] = STATE(70), + [sym_list] = STATE(70), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(70), + [aux_sym__section5_repeat1] = STATE(70), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(888), + [sym_atx_h2_marker] = ACTIONS(888), + [sym_atx_h3_marker] = ACTIONS(888), + [sym_atx_h4_marker] = ACTIONS(888), + [sym_atx_h5_marker] = ACTIONS(888), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [72] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(72), + [sym__section6] = STATE(341), + [sym_thematic_break] = STATE(72), + [sym__atx_heading6] = STATE(77), + [sym_indented_code_block] = STATE(72), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(72), + [sym_html_block] = STATE(72), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(72), + [sym_paragraph] = STATE(72), + [sym__blank_line] = STATE(72), + [sym_block_quote] = STATE(72), + [sym_list] = STATE(72), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(72), + [aux_sym__section5_repeat1] = STATE(72), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(815), + [anon_sym_DQUOTE] = ACTIONS(815), + [anon_sym_POUND] = ACTIONS(815), + [anon_sym_DOLLAR] = ACTIONS(815), + [anon_sym_PERCENT] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(815), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_SLASH] = ACTIONS(815), + [anon_sym_COLON] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_EQ] = ACTIONS(815), + [anon_sym_QMARK] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(815), + [anon_sym_BSLASH] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym__] = ACTIONS(815), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_PIPE] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [aux_sym__word_token1] = ACTIONS(815), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(815), + [aux_sym__word_token2] = ACTIONS(815), + [sym__whitespace] = ACTIONS(890), + [sym__soft_line_ending] = ACTIONS(821), + [sym__block_quote_start] = ACTIONS(893), + [sym__indented_chunk_start] = ACTIONS(896), + [sym_atx_h1_marker] = ACTIONS(824), + [sym_atx_h2_marker] = ACTIONS(824), + [sym_atx_h3_marker] = ACTIONS(824), + [sym_atx_h4_marker] = ACTIONS(824), + [sym_atx_h5_marker] = ACTIONS(824), + [sym_atx_h6_marker] = ACTIONS(899), + [sym__thematic_break] = ACTIONS(902), + [sym__list_marker_minus] = ACTIONS(838), + [sym__list_marker_plus] = ACTIONS(841), + [sym__list_marker_star] = ACTIONS(844), + [sym__list_marker_parenthesis] = ACTIONS(847), + [sym__list_marker_dot] = ACTIONS(850), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(838), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(841), + [sym__list_marker_star_dont_interrupt] = ACTIONS(844), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(847), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(850), + [sym__fenced_code_block_start_backtick] = ACTIONS(905), + [sym__fenced_code_block_start_tilde] = ACTIONS(908), + [sym__blank_line_start] = ACTIONS(911), + [sym__html_block_1_start] = ACTIONS(914), + [sym__html_block_2_start] = ACTIONS(917), + [sym__html_block_3_start] = ACTIONS(920), + [sym__html_block_4_start] = ACTIONS(923), + [sym__html_block_5_start] = ACTIONS(926), + [sym__html_block_6_start] = ACTIONS(929), + [sym__html_block_7_start] = ACTIONS(932), + [sym__pipe_table_start] = ACTIONS(935), + }, + [73] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(69), + [sym__section6] = STATE(232), + [sym_thematic_break] = STATE(69), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(69), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(69), + [sym_html_block] = STATE(69), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(69), + [sym_paragraph] = STATE(69), + [sym__blank_line] = STATE(69), + [sym_block_quote] = STATE(69), + [sym_list] = STATE(69), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(69), + [aux_sym__section5_repeat1] = STATE(69), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(886), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(886), + [sym_atx_h2_marker] = ACTIONS(886), + [sym_atx_h3_marker] = ACTIONS(886), + [sym_atx_h4_marker] = ACTIONS(886), + [sym_atx_h5_marker] = ACTIONS(886), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [74] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(73), + [sym__section6] = STATE(232), + [sym_thematic_break] = STATE(73), + [sym__atx_heading6] = STATE(75), + [sym_indented_code_block] = STATE(73), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(73), + [sym_html_block] = STATE(73), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(73), + [sym_paragraph] = STATE(73), + [sym__blank_line] = STATE(73), + [sym_block_quote] = STATE(73), + [sym_list] = STATE(73), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(73), + [aux_sym__section5_repeat1] = STATE(73), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(888), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(888), + [sym_atx_h2_marker] = ACTIONS(888), + [sym_atx_h3_marker] = ACTIONS(888), + [sym_atx_h4_marker] = ACTIONS(888), + [sym_atx_h5_marker] = ACTIONS(888), + [sym_atx_h6_marker] = ACTIONS(87), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [75] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(279), + [sym_thematic_break] = STATE(279), + [sym_indented_code_block] = STATE(279), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(279), + [sym_html_block] = STATE(279), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(279), + [sym_paragraph] = STATE(279), + [sym__blank_line] = STATE(279), + [sym_block_quote] = STATE(279), + [sym_list] = STATE(279), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(279), + [aux_sym_document_repeat1] = STATE(80), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(938), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(938), + [sym_atx_h2_marker] = ACTIONS(938), + [sym_atx_h3_marker] = ACTIONS(938), + [sym_atx_h4_marker] = ACTIONS(938), + [sym_atx_h5_marker] = ACTIONS(938), + [sym_atx_h6_marker] = ACTIONS(938), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [76] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(240), + [sym_thematic_break] = STATE(240), + [sym_indented_code_block] = STATE(240), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(240), + [sym_html_block] = STATE(240), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(240), + [sym_paragraph] = STATE(240), + [sym__blank_line] = STATE(240), + [sym_block_quote] = STATE(240), + [sym_list] = STATE(240), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(240), + [aux_sym_document_repeat1] = STATE(79), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(940), + [sym_atx_h2_marker] = ACTIONS(940), + [sym_atx_h3_marker] = ACTIONS(940), + [sym_atx_h4_marker] = ACTIONS(940), + [sym_atx_h5_marker] = ACTIONS(940), + [sym_atx_h6_marker] = ACTIONS(940), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [77] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(240), + [sym_thematic_break] = STATE(240), + [sym_indented_code_block] = STATE(240), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(240), + [sym_html_block] = STATE(240), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(240), + [sym_paragraph] = STATE(240), + [sym__blank_line] = STATE(240), + [sym_block_quote] = STATE(240), + [sym_list] = STATE(240), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(240), + [aux_sym_document_repeat1] = STATE(76), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(938), + [sym_atx_h2_marker] = ACTIONS(938), + [sym_atx_h3_marker] = ACTIONS(938), + [sym_atx_h4_marker] = ACTIONS(938), + [sym_atx_h5_marker] = ACTIONS(938), + [sym_atx_h6_marker] = ACTIONS(938), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(41), + [sym__fenced_code_block_start_tilde] = ACTIONS(43), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(47), + [sym__html_block_2_start] = ACTIONS(49), + [sym__html_block_3_start] = ACTIONS(51), + [sym__html_block_4_start] = ACTIONS(53), + [sym__html_block_5_start] = ACTIONS(55), + [sym__html_block_6_start] = ACTIONS(57), + [sym__html_block_7_start] = ACTIONS(59), + [sym__pipe_table_start] = ACTIONS(63), + }, + [78] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(279), + [sym_thematic_break] = STATE(279), + [sym_indented_code_block] = STATE(279), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(279), + [sym_html_block] = STATE(279), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(279), + [sym_paragraph] = STATE(279), + [sym__blank_line] = STATE(279), + [sym_block_quote] = STATE(279), + [sym_list] = STATE(279), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(279), + [aux_sym_document_repeat1] = STATE(78), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(945), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym_BSLASH] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym__] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [aux_sym__word_token1] = ACTIONS(945), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(945), + [aux_sym__word_token2] = ACTIONS(945), + [sym__whitespace] = ACTIONS(948), + [sym__soft_line_ending] = ACTIONS(951), + [sym__block_close] = ACTIONS(954), + [sym__block_quote_start] = ACTIONS(956), + [sym__indented_chunk_start] = ACTIONS(959), + [sym_atx_h1_marker] = ACTIONS(954), + [sym_atx_h2_marker] = ACTIONS(954), + [sym_atx_h3_marker] = ACTIONS(954), + [sym_atx_h4_marker] = ACTIONS(954), + [sym_atx_h5_marker] = ACTIONS(954), + [sym_atx_h6_marker] = ACTIONS(954), + [sym__thematic_break] = ACTIONS(962), + [sym__list_marker_minus] = ACTIONS(965), + [sym__list_marker_plus] = ACTIONS(968), + [sym__list_marker_star] = ACTIONS(971), + [sym__list_marker_parenthesis] = ACTIONS(974), + [sym__list_marker_dot] = ACTIONS(977), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(968), + [sym__list_marker_star_dont_interrupt] = ACTIONS(971), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(974), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(977), + [sym__fenced_code_block_start_backtick] = ACTIONS(980), + [sym__fenced_code_block_start_tilde] = ACTIONS(983), + [sym__blank_line_start] = ACTIONS(986), + [sym__html_block_1_start] = ACTIONS(989), + [sym__html_block_2_start] = ACTIONS(992), + [sym__html_block_3_start] = ACTIONS(995), + [sym__html_block_4_start] = ACTIONS(998), + [sym__html_block_5_start] = ACTIONS(1001), + [sym__html_block_6_start] = ACTIONS(1004), + [sym__html_block_7_start] = ACTIONS(1007), + [sym__pipe_table_start] = ACTIONS(1010), + }, + [79] = { + [sym_link_label] = STATE(908), + [sym__block_not_section] = STATE(240), + [sym_thematic_break] = STATE(240), + [sym_indented_code_block] = STATE(240), + [sym__indented_chunk] = STATE(95), + [sym_fenced_code_block] = STATE(240), + [sym_html_block] = STATE(240), + [sym__html_block_1] = STATE(241), + [sym__html_block_2] = STATE(241), + [sym__html_block_3] = STATE(241), + [sym__html_block_4] = STATE(241), + [sym__html_block_5] = STATE(241), + [sym__html_block_6] = STATE(241), + [sym__html_block_7] = STATE(241), + [sym_link_reference_definition] = STATE(240), + [sym_paragraph] = STATE(240), + [sym__blank_line] = STATE(240), + [sym_block_quote] = STATE(240), + [sym_list] = STATE(240), + [sym__list_plus] = STATE(242), + [sym__list_minus] = STATE(242), + [sym__list_star] = STATE(242), + [sym__list_dot] = STATE(242), + [sym__list_parenthesis] = STATE(242), + [sym_list_marker_plus] = STATE(6), + [sym_list_marker_minus] = STATE(5), + [sym_list_marker_star] = STATE(4), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_plus] = STATE(81), + [sym__list_item_minus] = STATE(102), + [sym__list_item_star] = STATE(100), + [sym__list_item_dot] = STATE(83), + [sym__list_item_parenthesis] = STATE(87), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(240), + [aux_sym_document_repeat1] = STATE(79), + [aux_sym_paragraph_repeat1] = STATE(406), + [aux_sym__list_plus_repeat1] = STATE(81), + [aux_sym__list_minus_repeat1] = STATE(102), + [aux_sym__list_star_repeat1] = STATE(100), + [aux_sym__list_dot_repeat1] = STATE(83), + [aux_sym__list_parenthesis_repeat1] = STATE(87), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(942), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(945), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym_BSLASH] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym__] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [aux_sym__word_token1] = ACTIONS(945), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(945), + [aux_sym__word_token2] = ACTIONS(945), + [sym__whitespace] = ACTIONS(1013), + [sym__soft_line_ending] = ACTIONS(951), + [sym__block_quote_start] = ACTIONS(1016), + [sym__indented_chunk_start] = ACTIONS(1019), + [sym_atx_h1_marker] = ACTIONS(954), + [sym_atx_h2_marker] = ACTIONS(954), + [sym_atx_h3_marker] = ACTIONS(954), + [sym_atx_h4_marker] = ACTIONS(954), + [sym_atx_h5_marker] = ACTIONS(954), + [sym_atx_h6_marker] = ACTIONS(954), + [sym__thematic_break] = ACTIONS(1022), + [sym__list_marker_minus] = ACTIONS(965), + [sym__list_marker_plus] = ACTIONS(968), + [sym__list_marker_star] = ACTIONS(971), + [sym__list_marker_parenthesis] = ACTIONS(974), + [sym__list_marker_dot] = ACTIONS(977), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(968), + [sym__list_marker_star_dont_interrupt] = ACTIONS(971), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(974), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(977), + [sym__fenced_code_block_start_backtick] = ACTIONS(1025), + [sym__fenced_code_block_start_tilde] = ACTIONS(1028), + [sym__blank_line_start] = ACTIONS(1031), + [sym__html_block_1_start] = ACTIONS(1034), + [sym__html_block_2_start] = ACTIONS(1037), + [sym__html_block_3_start] = ACTIONS(1040), + [sym__html_block_4_start] = ACTIONS(1043), + [sym__html_block_5_start] = ACTIONS(1046), + [sym__html_block_6_start] = ACTIONS(1049), + [sym__html_block_7_start] = ACTIONS(1052), + [sym__pipe_table_start] = ACTIONS(1055), + }, + [80] = { + [sym_link_label] = STATE(933), + [sym__block_not_section] = STATE(279), + [sym_thematic_break] = STATE(279), + [sym_indented_code_block] = STATE(279), + [sym__indented_chunk] = STATE(88), + [sym_fenced_code_block] = STATE(279), + [sym_html_block] = STATE(279), + [sym__html_block_1] = STATE(267), + [sym__html_block_2] = STATE(267), + [sym__html_block_3] = STATE(267), + [sym__html_block_4] = STATE(267), + [sym__html_block_5] = STATE(267), + [sym__html_block_6] = STATE(267), + [sym__html_block_7] = STATE(267), + [sym_link_reference_definition] = STATE(279), + [sym_paragraph] = STATE(279), + [sym__blank_line] = STATE(279), + [sym_block_quote] = STATE(279), + [sym_list] = STATE(279), + [sym__list_plus] = STATE(263), + [sym__list_minus] = STATE(263), + [sym__list_star] = STATE(263), + [sym__list_dot] = STATE(263), + [sym__list_parenthesis] = STATE(263), + [sym_list_marker_plus] = STATE(10), + [sym_list_marker_minus] = STATE(11), + [sym_list_marker_star] = STATE(2), + [sym_list_marker_dot] = STATE(9), + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_plus] = STATE(86), + [sym__list_item_minus] = STATE(85), + [sym__list_item_star] = STATE(84), + [sym__list_item_dot] = STATE(94), + [sym__list_item_parenthesis] = STATE(104), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [sym_pipe_table] = STATE(279), + [aux_sym_document_repeat1] = STATE(78), + [aux_sym_paragraph_repeat1] = STATE(394), + [aux_sym__list_plus_repeat1] = STATE(86), + [aux_sym__list_minus_repeat1] = STATE(85), + [aux_sym__list_star_repeat1] = STATE(84), + [aux_sym__list_dot_repeat1] = STATE(94), + [aux_sym__list_parenthesis_repeat1] = STATE(104), + [aux_sym__line_repeat1] = STATE(528), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(69), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(940), + [sym__block_quote_start] = ACTIONS(73), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(940), + [sym_atx_h2_marker] = ACTIONS(940), + [sym_atx_h3_marker] = ACTIONS(940), + [sym_atx_h4_marker] = ACTIONS(940), + [sym_atx_h5_marker] = ACTIONS(940), + [sym_atx_h6_marker] = ACTIONS(940), + [sym__thematic_break] = ACTIONS(89), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(91), + [sym__fenced_code_block_start_tilde] = ACTIONS(93), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(97), + [sym__html_block_2_start] = ACTIONS(99), + [sym__html_block_3_start] = ACTIONS(101), + [sym__html_block_4_start] = ACTIONS(103), + [sym__html_block_5_start] = ACTIONS(105), + [sym__html_block_6_start] = ACTIONS(107), + [sym__html_block_7_start] = ACTIONS(109), + [sym__pipe_table_start] = ACTIONS(111), + }, + [81] = { + [sym_list_marker_plus] = STATE(6), + [sym__list_item_plus] = STATE(82), + [aux_sym__list_plus_repeat1] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_RBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_COMMA] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym__] = ACTIONS(1058), + [anon_sym_BQUOTE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_RPAREN] = ACTIONS(1058), + [aux_sym__word_token1] = ACTIONS(1058), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1058), + [aux_sym__word_token2] = ACTIONS(1058), + [sym__whitespace] = ACTIONS(1058), + [sym__soft_line_ending] = ACTIONS(1058), + [sym__block_quote_start] = ACTIONS(1058), + [sym__indented_chunk_start] = ACTIONS(1058), + [sym_atx_h1_marker] = ACTIONS(1058), + [sym_atx_h2_marker] = ACTIONS(1058), + [sym_atx_h3_marker] = ACTIONS(1058), + [sym_atx_h4_marker] = ACTIONS(1058), + [sym_atx_h5_marker] = ACTIONS(1058), + [sym_atx_h6_marker] = ACTIONS(1058), + [sym__thematic_break] = ACTIONS(1058), + [sym__list_marker_minus] = ACTIONS(1058), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(1058), + [sym__list_marker_parenthesis] = ACTIONS(1058), + [sym__list_marker_dot] = ACTIONS(1058), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1058), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1058), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1058), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1058), + [sym__fenced_code_block_start_backtick] = ACTIONS(1058), + [sym__fenced_code_block_start_tilde] = ACTIONS(1058), + [sym__blank_line_start] = ACTIONS(1058), + [sym__html_block_1_start] = ACTIONS(1058), + [sym__html_block_2_start] = ACTIONS(1058), + [sym__html_block_3_start] = ACTIONS(1058), + [sym__html_block_4_start] = ACTIONS(1058), + [sym__html_block_5_start] = ACTIONS(1058), + [sym__html_block_6_start] = ACTIONS(1058), + [sym__html_block_7_start] = ACTIONS(1058), + [sym__pipe_table_start] = ACTIONS(1058), + }, + [82] = { + [sym_list_marker_plus] = STATE(6), + [sym__list_item_plus] = STATE(82), + [aux_sym__list_plus_repeat1] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_RBRACK] = ACTIONS(1062), + [anon_sym_LT] = ACTIONS(1062), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_PERCENT] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_COLON] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_BSLASH] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1062), + [anon_sym__] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(1062), + [aux_sym__word_token1] = ACTIONS(1062), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1062), + [aux_sym__word_token2] = ACTIONS(1062), + [sym__whitespace] = ACTIONS(1062), + [sym__soft_line_ending] = ACTIONS(1062), + [sym__block_quote_start] = ACTIONS(1062), + [sym__indented_chunk_start] = ACTIONS(1062), + [sym_atx_h1_marker] = ACTIONS(1062), + [sym_atx_h2_marker] = ACTIONS(1062), + [sym_atx_h3_marker] = ACTIONS(1062), + [sym_atx_h4_marker] = ACTIONS(1062), + [sym_atx_h5_marker] = ACTIONS(1062), + [sym_atx_h6_marker] = ACTIONS(1062), + [sym__thematic_break] = ACTIONS(1062), + [sym__list_marker_minus] = ACTIONS(1062), + [sym__list_marker_plus] = ACTIONS(1066), + [sym__list_marker_star] = ACTIONS(1062), + [sym__list_marker_parenthesis] = ACTIONS(1062), + [sym__list_marker_dot] = ACTIONS(1062), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1066), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1062), + [sym__fenced_code_block_start_backtick] = ACTIONS(1062), + [sym__fenced_code_block_start_tilde] = ACTIONS(1062), + [sym__blank_line_start] = ACTIONS(1062), + [sym__html_block_1_start] = ACTIONS(1062), + [sym__html_block_2_start] = ACTIONS(1062), + [sym__html_block_3_start] = ACTIONS(1062), + [sym__html_block_4_start] = ACTIONS(1062), + [sym__html_block_5_start] = ACTIONS(1062), + [sym__html_block_6_start] = ACTIONS(1062), + [sym__html_block_7_start] = ACTIONS(1062), + [sym__pipe_table_start] = ACTIONS(1062), + }, + [83] = { + [sym_list_marker_dot] = STATE(3), + [sym__list_item_dot] = STATE(91), + [aux_sym__list_dot_repeat1] = STATE(91), + [ts_builtin_sym_end] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_RBRACK] = ACTIONS(1069), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [anon_sym_POUND] = ACTIONS(1069), + [anon_sym_DOLLAR] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_COMMA] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_DOT] = ACTIONS(1069), + [anon_sym_SLASH] = ACTIONS(1069), + [anon_sym_COLON] = ACTIONS(1069), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_EQ] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1069), + [anon_sym_AT] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1069), + [anon_sym__] = ACTIONS(1069), + [anon_sym_BQUOTE] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1069), + [anon_sym_RBRACE] = ACTIONS(1069), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(1069), + [anon_sym_RPAREN] = ACTIONS(1069), + [aux_sym__word_token1] = ACTIONS(1069), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1069), + [aux_sym__word_token2] = ACTIONS(1069), + [sym__whitespace] = ACTIONS(1069), + [sym__soft_line_ending] = ACTIONS(1069), + [sym__block_quote_start] = ACTIONS(1069), + [sym__indented_chunk_start] = ACTIONS(1069), + [sym_atx_h1_marker] = ACTIONS(1069), + [sym_atx_h2_marker] = ACTIONS(1069), + [sym_atx_h3_marker] = ACTIONS(1069), + [sym_atx_h4_marker] = ACTIONS(1069), + [sym_atx_h5_marker] = ACTIONS(1069), + [sym_atx_h6_marker] = ACTIONS(1069), + [sym__thematic_break] = ACTIONS(1069), + [sym__list_marker_minus] = ACTIONS(1069), + [sym__list_marker_plus] = ACTIONS(1069), + [sym__list_marker_star] = ACTIONS(1069), + [sym__list_marker_parenthesis] = ACTIONS(1069), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1069), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1069), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1069), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1069), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(1069), + [sym__fenced_code_block_start_tilde] = ACTIONS(1069), + [sym__blank_line_start] = ACTIONS(1069), + [sym__html_block_1_start] = ACTIONS(1069), + [sym__html_block_2_start] = ACTIONS(1069), + [sym__html_block_3_start] = ACTIONS(1069), + [sym__html_block_4_start] = ACTIONS(1069), + [sym__html_block_5_start] = ACTIONS(1069), + [sym__html_block_6_start] = ACTIONS(1069), + [sym__html_block_7_start] = ACTIONS(1069), + [sym__pipe_table_start] = ACTIONS(1069), + }, + [84] = { + [sym_list_marker_star] = STATE(2), + [sym__list_item_star] = STATE(101), + [aux_sym__list_star_repeat1] = STATE(101), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_RBRACK] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1075), + [anon_sym_GT] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_POUND] = ACTIONS(1075), + [anon_sym_DOLLAR] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1075), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_COMMA] = ACTIONS(1075), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_COLON] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1075), + [anon_sym_EQ] = ACTIONS(1075), + [anon_sym_QMARK] = ACTIONS(1075), + [anon_sym_AT] = ACTIONS(1075), + [anon_sym_BSLASH] = ACTIONS(1075), + [anon_sym_CARET] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1075), + [anon_sym_BQUOTE] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1075), + [anon_sym_TILDE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1075), + [aux_sym__word_token1] = ACTIONS(1075), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1075), + [aux_sym__word_token2] = ACTIONS(1075), + [sym__whitespace] = ACTIONS(1075), + [sym__soft_line_ending] = ACTIONS(1075), + [sym__block_close] = ACTIONS(1075), + [sym__block_quote_start] = ACTIONS(1075), + [sym__indented_chunk_start] = ACTIONS(1075), + [sym_atx_h1_marker] = ACTIONS(1075), + [sym_atx_h2_marker] = ACTIONS(1075), + [sym_atx_h3_marker] = ACTIONS(1075), + [sym_atx_h4_marker] = ACTIONS(1075), + [sym_atx_h5_marker] = ACTIONS(1075), + [sym_atx_h6_marker] = ACTIONS(1075), + [sym__thematic_break] = ACTIONS(1075), + [sym__list_marker_minus] = ACTIONS(1075), + [sym__list_marker_plus] = ACTIONS(1075), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(1075), + [sym__list_marker_dot] = ACTIONS(1075), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1075), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1075), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1075), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1075), + [sym__fenced_code_block_start_backtick] = ACTIONS(1075), + [sym__fenced_code_block_start_tilde] = ACTIONS(1075), + [sym__blank_line_start] = ACTIONS(1075), + [sym__html_block_1_start] = ACTIONS(1075), + [sym__html_block_2_start] = ACTIONS(1075), + [sym__html_block_3_start] = ACTIONS(1075), + [sym__html_block_4_start] = ACTIONS(1075), + [sym__html_block_5_start] = ACTIONS(1075), + [sym__html_block_6_start] = ACTIONS(1075), + [sym__html_block_7_start] = ACTIONS(1075), + [sym__pipe_table_start] = ACTIONS(1075), + }, + [85] = { + [sym_list_marker_minus] = STATE(11), + [sym__list_item_minus] = STATE(106), + [aux_sym__list_minus_repeat1] = STATE(106), + [anon_sym_LBRACK] = ACTIONS(1077), + [anon_sym_RBRACK] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_POUND] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1079), + [anon_sym_PERCENT] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_COMMA] = ACTIONS(1079), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_SLASH] = ACTIONS(1079), + [anon_sym_COLON] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1079), + [anon_sym_EQ] = ACTIONS(1079), + [anon_sym_QMARK] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(1079), + [anon_sym_BSLASH] = ACTIONS(1079), + [anon_sym_CARET] = ACTIONS(1079), + [anon_sym__] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(1079), + [aux_sym__word_token1] = ACTIONS(1079), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1079), + [aux_sym__word_token2] = ACTIONS(1079), + [sym__whitespace] = ACTIONS(1079), + [sym__soft_line_ending] = ACTIONS(1079), + [sym__block_close] = ACTIONS(1079), + [sym__block_quote_start] = ACTIONS(1079), + [sym__indented_chunk_start] = ACTIONS(1079), + [sym_atx_h1_marker] = ACTIONS(1079), + [sym_atx_h2_marker] = ACTIONS(1079), + [sym_atx_h3_marker] = ACTIONS(1079), + [sym_atx_h4_marker] = ACTIONS(1079), + [sym_atx_h5_marker] = ACTIONS(1079), + [sym_atx_h6_marker] = ACTIONS(1079), + [sym__thematic_break] = ACTIONS(1079), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(1079), + [sym__list_marker_star] = ACTIONS(1079), + [sym__list_marker_parenthesis] = ACTIONS(1079), + [sym__list_marker_dot] = ACTIONS(1079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1079), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1079), + [sym__fenced_code_block_start_backtick] = ACTIONS(1079), + [sym__fenced_code_block_start_tilde] = ACTIONS(1079), + [sym__blank_line_start] = ACTIONS(1079), + [sym__html_block_1_start] = ACTIONS(1079), + [sym__html_block_2_start] = ACTIONS(1079), + [sym__html_block_3_start] = ACTIONS(1079), + [sym__html_block_4_start] = ACTIONS(1079), + [sym__html_block_5_start] = ACTIONS(1079), + [sym__html_block_6_start] = ACTIONS(1079), + [sym__html_block_7_start] = ACTIONS(1079), + [sym__pipe_table_start] = ACTIONS(1079), + }, + [86] = { + [sym_list_marker_plus] = STATE(10), + [sym__list_item_plus] = STATE(103), + [aux_sym__list_plus_repeat1] = STATE(103), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_RBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_COMMA] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1058), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(1058), + [anon_sym_BSLASH] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym__] = ACTIONS(1058), + [anon_sym_BQUOTE] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_TILDE] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_RPAREN] = ACTIONS(1058), + [aux_sym__word_token1] = ACTIONS(1058), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1058), + [aux_sym__word_token2] = ACTIONS(1058), + [sym__whitespace] = ACTIONS(1058), + [sym__soft_line_ending] = ACTIONS(1058), + [sym__block_close] = ACTIONS(1058), + [sym__block_quote_start] = ACTIONS(1058), + [sym__indented_chunk_start] = ACTIONS(1058), + [sym_atx_h1_marker] = ACTIONS(1058), + [sym_atx_h2_marker] = ACTIONS(1058), + [sym_atx_h3_marker] = ACTIONS(1058), + [sym_atx_h4_marker] = ACTIONS(1058), + [sym_atx_h5_marker] = ACTIONS(1058), + [sym_atx_h6_marker] = ACTIONS(1058), + [sym__thematic_break] = ACTIONS(1058), + [sym__list_marker_minus] = ACTIONS(1058), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(1058), + [sym__list_marker_parenthesis] = ACTIONS(1058), + [sym__list_marker_dot] = ACTIONS(1058), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1058), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1058), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1058), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1058), + [sym__fenced_code_block_start_backtick] = ACTIONS(1058), + [sym__fenced_code_block_start_tilde] = ACTIONS(1058), + [sym__blank_line_start] = ACTIONS(1058), + [sym__html_block_1_start] = ACTIONS(1058), + [sym__html_block_2_start] = ACTIONS(1058), + [sym__html_block_3_start] = ACTIONS(1058), + [sym__html_block_4_start] = ACTIONS(1058), + [sym__html_block_5_start] = ACTIONS(1058), + [sym__html_block_6_start] = ACTIONS(1058), + [sym__html_block_7_start] = ACTIONS(1058), + [sym__pipe_table_start] = ACTIONS(1058), + }, + [87] = { + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_parenthesis] = STATE(90), + [aux_sym__list_parenthesis_repeat1] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_RBRACK] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [anon_sym_PERCENT] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_SLASH] = ACTIONS(1081), + [anon_sym_COLON] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1081), + [anon_sym_QMARK] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(1081), + [anon_sym_BSLASH] = ACTIONS(1081), + [anon_sym_CARET] = ACTIONS(1081), + [anon_sym__] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1081), + [aux_sym__word_token1] = ACTIONS(1081), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1081), + [aux_sym__word_token2] = ACTIONS(1081), + [sym__whitespace] = ACTIONS(1081), + [sym__soft_line_ending] = ACTIONS(1081), + [sym__block_quote_start] = ACTIONS(1081), + [sym__indented_chunk_start] = ACTIONS(1081), + [sym_atx_h1_marker] = ACTIONS(1081), + [sym_atx_h2_marker] = ACTIONS(1081), + [sym_atx_h3_marker] = ACTIONS(1081), + [sym_atx_h4_marker] = ACTIONS(1081), + [sym_atx_h5_marker] = ACTIONS(1081), + [sym_atx_h6_marker] = ACTIONS(1081), + [sym__thematic_break] = ACTIONS(1081), + [sym__list_marker_minus] = ACTIONS(1081), + [sym__list_marker_plus] = ACTIONS(1081), + [sym__list_marker_star] = ACTIONS(1081), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1081), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1081), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1081), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1081), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1081), + [sym__fenced_code_block_start_backtick] = ACTIONS(1081), + [sym__fenced_code_block_start_tilde] = ACTIONS(1081), + [sym__blank_line_start] = ACTIONS(1081), + [sym__html_block_1_start] = ACTIONS(1081), + [sym__html_block_2_start] = ACTIONS(1081), + [sym__html_block_3_start] = ACTIONS(1081), + [sym__html_block_4_start] = ACTIONS(1081), + [sym__html_block_5_start] = ACTIONS(1081), + [sym__html_block_6_start] = ACTIONS(1081), + [sym__html_block_7_start] = ACTIONS(1081), + [sym__pipe_table_start] = ACTIONS(1081), + }, + [88] = { + [sym__indented_chunk] = STATE(107), + [sym__blank_line] = STATE(107), + [aux_sym_indented_code_block_repeat1] = STATE(107), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_RBRACK] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(1087), + [anon_sym_COLON] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_AT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_BQUOTE] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1087), + [aux_sym__word_token1] = ACTIONS(1087), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1087), + [aux_sym__word_token2] = ACTIONS(1087), + [sym__whitespace] = ACTIONS(1087), + [sym__soft_line_ending] = ACTIONS(1087), + [sym__block_close] = ACTIONS(1087), + [sym__block_quote_start] = ACTIONS(1087), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(1087), + [sym_atx_h2_marker] = ACTIONS(1087), + [sym_atx_h3_marker] = ACTIONS(1087), + [sym_atx_h4_marker] = ACTIONS(1087), + [sym_atx_h5_marker] = ACTIONS(1087), + [sym_atx_h6_marker] = ACTIONS(1087), + [sym__thematic_break] = ACTIONS(1087), + [sym__list_marker_minus] = ACTIONS(1087), + [sym__list_marker_plus] = ACTIONS(1087), + [sym__list_marker_star] = ACTIONS(1087), + [sym__list_marker_parenthesis] = ACTIONS(1087), + [sym__list_marker_dot] = ACTIONS(1087), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1087), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1087), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1087), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1087), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1087), + [sym__fenced_code_block_start_backtick] = ACTIONS(1087), + [sym__fenced_code_block_start_tilde] = ACTIONS(1087), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(1087), + [sym__html_block_2_start] = ACTIONS(1087), + [sym__html_block_3_start] = ACTIONS(1087), + [sym__html_block_4_start] = ACTIONS(1087), + [sym__html_block_5_start] = ACTIONS(1087), + [sym__html_block_6_start] = ACTIONS(1087), + [sym__html_block_7_start] = ACTIONS(1087), + [sym__pipe_table_start] = ACTIONS(1087), + }, + [89] = { + [sym__indented_chunk] = STATE(89), + [sym__blank_line] = STATE(89), + [aux_sym_indented_code_block_repeat1] = STATE(89), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [anon_sym_POUND] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_DOT] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_COLON] = ACTIONS(1091), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_EQ] = ACTIONS(1091), + [anon_sym_QMARK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(1091), + [anon_sym_BSLASH] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym__] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_RPAREN] = ACTIONS(1091), + [aux_sym__word_token1] = ACTIONS(1091), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1091), + [aux_sym__word_token2] = ACTIONS(1091), + [sym__whitespace] = ACTIONS(1091), + [sym__soft_line_ending] = ACTIONS(1091), + [sym__block_close] = ACTIONS(1091), + [sym__block_quote_start] = ACTIONS(1091), + [sym__indented_chunk_start] = ACTIONS(1093), + [sym_atx_h1_marker] = ACTIONS(1091), + [sym_atx_h2_marker] = ACTIONS(1091), + [sym_atx_h3_marker] = ACTIONS(1091), + [sym_atx_h4_marker] = ACTIONS(1091), + [sym_atx_h5_marker] = ACTIONS(1091), + [sym_atx_h6_marker] = ACTIONS(1091), + [sym__thematic_break] = ACTIONS(1091), + [sym__list_marker_minus] = ACTIONS(1091), + [sym__list_marker_plus] = ACTIONS(1091), + [sym__list_marker_star] = ACTIONS(1091), + [sym__list_marker_parenthesis] = ACTIONS(1091), + [sym__list_marker_dot] = ACTIONS(1091), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1091), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1091), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1091), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1091), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1091), + [sym__fenced_code_block_start_backtick] = ACTIONS(1091), + [sym__fenced_code_block_start_tilde] = ACTIONS(1091), + [sym__blank_line_start] = ACTIONS(1096), + [sym__html_block_1_start] = ACTIONS(1091), + [sym__html_block_2_start] = ACTIONS(1091), + [sym__html_block_3_start] = ACTIONS(1091), + [sym__html_block_4_start] = ACTIONS(1091), + [sym__html_block_5_start] = ACTIONS(1091), + [sym__html_block_6_start] = ACTIONS(1091), + [sym__html_block_7_start] = ACTIONS(1091), + [sym__pipe_table_start] = ACTIONS(1091), + }, + [90] = { + [sym_list_marker_parenthesis] = STATE(7), + [sym__list_item_parenthesis] = STATE(90), + [aux_sym__list_parenthesis_repeat1] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_RBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_GT] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(1099), + [anon_sym_DOLLAR] = ACTIONS(1099), + [anon_sym_PERCENT] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_SQUOTE] = ACTIONS(1099), + [anon_sym_STAR] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(1099), + [anon_sym_DASH] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1099), + [anon_sym_SLASH] = ACTIONS(1099), + [anon_sym_COLON] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_QMARK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(1099), + [anon_sym_BSLASH] = ACTIONS(1099), + [anon_sym_CARET] = ACTIONS(1099), + [anon_sym__] = ACTIONS(1099), + [anon_sym_BQUOTE] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_PIPE] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_RPAREN] = ACTIONS(1099), + [aux_sym__word_token1] = ACTIONS(1099), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1099), + [aux_sym__word_token2] = ACTIONS(1099), + [sym__whitespace] = ACTIONS(1099), + [sym__soft_line_ending] = ACTIONS(1099), + [sym__block_quote_start] = ACTIONS(1099), + [sym__indented_chunk_start] = ACTIONS(1099), + [sym_atx_h1_marker] = ACTIONS(1099), + [sym_atx_h2_marker] = ACTIONS(1099), + [sym_atx_h3_marker] = ACTIONS(1099), + [sym_atx_h4_marker] = ACTIONS(1099), + [sym_atx_h5_marker] = ACTIONS(1099), + [sym_atx_h6_marker] = ACTIONS(1099), + [sym__thematic_break] = ACTIONS(1099), + [sym__list_marker_minus] = ACTIONS(1099), + [sym__list_marker_plus] = ACTIONS(1099), + [sym__list_marker_star] = ACTIONS(1099), + [sym__list_marker_parenthesis] = ACTIONS(1103), + [sym__list_marker_dot] = ACTIONS(1099), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1099), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1099), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1099), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1103), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1099), + [sym__fenced_code_block_start_backtick] = ACTIONS(1099), + [sym__fenced_code_block_start_tilde] = ACTIONS(1099), + [sym__blank_line_start] = ACTIONS(1099), + [sym__html_block_1_start] = ACTIONS(1099), + [sym__html_block_2_start] = ACTIONS(1099), + [sym__html_block_3_start] = ACTIONS(1099), + [sym__html_block_4_start] = ACTIONS(1099), + [sym__html_block_5_start] = ACTIONS(1099), + [sym__html_block_6_start] = ACTIONS(1099), + [sym__html_block_7_start] = ACTIONS(1099), + [sym__pipe_table_start] = ACTIONS(1099), + }, + [91] = { + [sym_list_marker_dot] = STATE(3), + [sym__list_item_dot] = STATE(91), + [aux_sym__list_dot_repeat1] = STATE(91), + [ts_builtin_sym_end] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_RBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_POUND] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1106), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_COMMA] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_DOT] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1106), + [anon_sym_COLON] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_QMARK] = ACTIONS(1106), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_BSLASH] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym__] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(1106), + [aux_sym__word_token1] = ACTIONS(1106), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1106), + [aux_sym__word_token2] = ACTIONS(1106), + [sym__whitespace] = ACTIONS(1106), + [sym__soft_line_ending] = ACTIONS(1106), + [sym__block_quote_start] = ACTIONS(1106), + [sym__indented_chunk_start] = ACTIONS(1106), + [sym_atx_h1_marker] = ACTIONS(1106), + [sym_atx_h2_marker] = ACTIONS(1106), + [sym_atx_h3_marker] = ACTIONS(1106), + [sym_atx_h4_marker] = ACTIONS(1106), + [sym_atx_h5_marker] = ACTIONS(1106), + [sym_atx_h6_marker] = ACTIONS(1106), + [sym__thematic_break] = ACTIONS(1106), + [sym__list_marker_minus] = ACTIONS(1106), + [sym__list_marker_plus] = ACTIONS(1106), + [sym__list_marker_star] = ACTIONS(1106), + [sym__list_marker_parenthesis] = ACTIONS(1106), + [sym__list_marker_dot] = ACTIONS(1110), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1110), + [sym__fenced_code_block_start_backtick] = ACTIONS(1106), + [sym__fenced_code_block_start_tilde] = ACTIONS(1106), + [sym__blank_line_start] = ACTIONS(1106), + [sym__html_block_1_start] = ACTIONS(1106), + [sym__html_block_2_start] = ACTIONS(1106), + [sym__html_block_3_start] = ACTIONS(1106), + [sym__html_block_4_start] = ACTIONS(1106), + [sym__html_block_5_start] = ACTIONS(1106), + [sym__html_block_6_start] = ACTIONS(1106), + [sym__html_block_7_start] = ACTIONS(1106), + [sym__pipe_table_start] = ACTIONS(1106), + }, + [92] = { + [sym_list_marker_star] = STATE(4), + [sym__list_item_star] = STATE(92), + [aux_sym__list_star_repeat1] = STATE(92), + [ts_builtin_sym_end] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_RBRACK] = ACTIONS(1113), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1113), + [anon_sym_PERCENT] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_COMMA] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_COLON] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1113), + [anon_sym_BSLASH] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym__] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1113), + [aux_sym__word_token1] = ACTIONS(1113), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1113), + [aux_sym__word_token2] = ACTIONS(1113), + [sym__whitespace] = ACTIONS(1113), + [sym__soft_line_ending] = ACTIONS(1113), + [sym__block_quote_start] = ACTIONS(1113), + [sym__indented_chunk_start] = ACTIONS(1113), + [sym_atx_h1_marker] = ACTIONS(1113), + [sym_atx_h2_marker] = ACTIONS(1113), + [sym_atx_h3_marker] = ACTIONS(1113), + [sym_atx_h4_marker] = ACTIONS(1113), + [sym_atx_h5_marker] = ACTIONS(1113), + [sym_atx_h6_marker] = ACTIONS(1113), + [sym__thematic_break] = ACTIONS(1113), + [sym__list_marker_minus] = ACTIONS(1113), + [sym__list_marker_plus] = ACTIONS(1113), + [sym__list_marker_star] = ACTIONS(1117), + [sym__list_marker_parenthesis] = ACTIONS(1113), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1117), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__fenced_code_block_start_backtick] = ACTIONS(1113), + [sym__fenced_code_block_start_tilde] = ACTIONS(1113), + [sym__blank_line_start] = ACTIONS(1113), + [sym__html_block_1_start] = ACTIONS(1113), + [sym__html_block_2_start] = ACTIONS(1113), + [sym__html_block_3_start] = ACTIONS(1113), + [sym__html_block_4_start] = ACTIONS(1113), + [sym__html_block_5_start] = ACTIONS(1113), + [sym__html_block_6_start] = ACTIONS(1113), + [sym__html_block_7_start] = ACTIONS(1113), + [sym__pipe_table_start] = ACTIONS(1113), + }, + [93] = { + [sym_list_marker_minus] = STATE(5), + [sym__list_item_minus] = STATE(93), + [aux_sym__list_minus_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_POUND] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_PERCENT] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1120), + [anon_sym_SLASH] = ACTIONS(1120), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_BSLASH] = ACTIONS(1120), + [anon_sym_CARET] = ACTIONS(1120), + [anon_sym__] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [aux_sym__word_token1] = ACTIONS(1120), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1120), + [aux_sym__word_token2] = ACTIONS(1120), + [sym__whitespace] = ACTIONS(1120), + [sym__soft_line_ending] = ACTIONS(1120), + [sym__block_quote_start] = ACTIONS(1120), + [sym__indented_chunk_start] = ACTIONS(1120), + [sym_atx_h1_marker] = ACTIONS(1120), + [sym_atx_h2_marker] = ACTIONS(1120), + [sym_atx_h3_marker] = ACTIONS(1120), + [sym_atx_h4_marker] = ACTIONS(1120), + [sym_atx_h5_marker] = ACTIONS(1120), + [sym_atx_h6_marker] = ACTIONS(1120), + [sym__thematic_break] = ACTIONS(1120), + [sym__list_marker_minus] = ACTIONS(1124), + [sym__list_marker_plus] = ACTIONS(1120), + [sym__list_marker_star] = ACTIONS(1120), + [sym__list_marker_parenthesis] = ACTIONS(1120), + [sym__list_marker_dot] = ACTIONS(1120), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1120), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1120), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1120), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1120), + [sym__fenced_code_block_start_backtick] = ACTIONS(1120), + [sym__fenced_code_block_start_tilde] = ACTIONS(1120), + [sym__blank_line_start] = ACTIONS(1120), + [sym__html_block_1_start] = ACTIONS(1120), + [sym__html_block_2_start] = ACTIONS(1120), + [sym__html_block_3_start] = ACTIONS(1120), + [sym__html_block_4_start] = ACTIONS(1120), + [sym__html_block_5_start] = ACTIONS(1120), + [sym__html_block_6_start] = ACTIONS(1120), + [sym__html_block_7_start] = ACTIONS(1120), + [sym__pipe_table_start] = ACTIONS(1120), + }, + [94] = { + [sym_list_marker_dot] = STATE(9), + [sym__list_item_dot] = STATE(99), + [aux_sym__list_dot_repeat1] = STATE(99), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_RBRACK] = ACTIONS(1069), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [anon_sym_POUND] = ACTIONS(1069), + [anon_sym_DOLLAR] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_SQUOTE] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_COMMA] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_DOT] = ACTIONS(1069), + [anon_sym_SLASH] = ACTIONS(1069), + [anon_sym_COLON] = ACTIONS(1069), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_EQ] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1069), + [anon_sym_AT] = ACTIONS(1069), + [anon_sym_BSLASH] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1069), + [anon_sym__] = ACTIONS(1069), + [anon_sym_BQUOTE] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1069), + [anon_sym_RBRACE] = ACTIONS(1069), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(1069), + [anon_sym_RPAREN] = ACTIONS(1069), + [aux_sym__word_token1] = ACTIONS(1069), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1069), + [aux_sym__word_token2] = ACTIONS(1069), + [sym__whitespace] = ACTIONS(1069), + [sym__soft_line_ending] = ACTIONS(1069), + [sym__block_close] = ACTIONS(1069), + [sym__block_quote_start] = ACTIONS(1069), + [sym__indented_chunk_start] = ACTIONS(1069), + [sym_atx_h1_marker] = ACTIONS(1069), + [sym_atx_h2_marker] = ACTIONS(1069), + [sym_atx_h3_marker] = ACTIONS(1069), + [sym_atx_h4_marker] = ACTIONS(1069), + [sym_atx_h5_marker] = ACTIONS(1069), + [sym_atx_h6_marker] = ACTIONS(1069), + [sym__thematic_break] = ACTIONS(1069), + [sym__list_marker_minus] = ACTIONS(1069), + [sym__list_marker_plus] = ACTIONS(1069), + [sym__list_marker_star] = ACTIONS(1069), + [sym__list_marker_parenthesis] = ACTIONS(1069), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1069), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1069), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1069), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1069), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__fenced_code_block_start_backtick] = ACTIONS(1069), + [sym__fenced_code_block_start_tilde] = ACTIONS(1069), + [sym__blank_line_start] = ACTIONS(1069), + [sym__html_block_1_start] = ACTIONS(1069), + [sym__html_block_2_start] = ACTIONS(1069), + [sym__html_block_3_start] = ACTIONS(1069), + [sym__html_block_4_start] = ACTIONS(1069), + [sym__html_block_5_start] = ACTIONS(1069), + [sym__html_block_6_start] = ACTIONS(1069), + [sym__html_block_7_start] = ACTIONS(1069), + [sym__pipe_table_start] = ACTIONS(1069), + }, + [95] = { + [sym__indented_chunk] = STATE(96), + [sym__blank_line] = STATE(96), + [aux_sym_indented_code_block_repeat1] = STATE(96), + [ts_builtin_sym_end] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_RBRACK] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1087), + [anon_sym_POUND] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1087), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1087), + [anon_sym_SQUOTE] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_COMMA] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(1087), + [anon_sym_COLON] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(1087), + [anon_sym_AT] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1087), + [anon_sym_BQUOTE] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1087), + [aux_sym__word_token1] = ACTIONS(1087), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1087), + [aux_sym__word_token2] = ACTIONS(1087), + [sym__whitespace] = ACTIONS(1087), + [sym__soft_line_ending] = ACTIONS(1087), + [sym__block_quote_start] = ACTIONS(1087), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1087), + [sym_atx_h2_marker] = ACTIONS(1087), + [sym_atx_h3_marker] = ACTIONS(1087), + [sym_atx_h4_marker] = ACTIONS(1087), + [sym_atx_h5_marker] = ACTIONS(1087), + [sym_atx_h6_marker] = ACTIONS(1087), + [sym__thematic_break] = ACTIONS(1087), + [sym__list_marker_minus] = ACTIONS(1087), + [sym__list_marker_plus] = ACTIONS(1087), + [sym__list_marker_star] = ACTIONS(1087), + [sym__list_marker_parenthesis] = ACTIONS(1087), + [sym__list_marker_dot] = ACTIONS(1087), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1087), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1087), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1087), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1087), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1087), + [sym__fenced_code_block_start_backtick] = ACTIONS(1087), + [sym__fenced_code_block_start_tilde] = ACTIONS(1087), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(1087), + [sym__html_block_2_start] = ACTIONS(1087), + [sym__html_block_3_start] = ACTIONS(1087), + [sym__html_block_4_start] = ACTIONS(1087), + [sym__html_block_5_start] = ACTIONS(1087), + [sym__html_block_6_start] = ACTIONS(1087), + [sym__html_block_7_start] = ACTIONS(1087), + [sym__pipe_table_start] = ACTIONS(1087), + }, + [96] = { + [sym__indented_chunk] = STATE(108), + [sym__blank_line] = STATE(108), + [aux_sym_indented_code_block_repeat1] = STATE(108), + [ts_builtin_sym_end] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1127), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1127), + [anon_sym_DOLLAR] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_COLON] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_QMARK] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1127), + [anon_sym_BSLASH] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym__] = ACTIONS(1127), + [anon_sym_BQUOTE] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1127), + [aux_sym__word_token1] = ACTIONS(1127), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1127), + [aux_sym__word_token2] = ACTIONS(1127), + [sym__whitespace] = ACTIONS(1127), + [sym__soft_line_ending] = ACTIONS(1127), + [sym__block_quote_start] = ACTIONS(1127), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1127), + [sym_atx_h2_marker] = ACTIONS(1127), + [sym_atx_h3_marker] = ACTIONS(1127), + [sym_atx_h4_marker] = ACTIONS(1127), + [sym_atx_h5_marker] = ACTIONS(1127), + [sym_atx_h6_marker] = ACTIONS(1127), + [sym__thematic_break] = ACTIONS(1127), + [sym__list_marker_minus] = ACTIONS(1127), + [sym__list_marker_plus] = ACTIONS(1127), + [sym__list_marker_star] = ACTIONS(1127), + [sym__list_marker_parenthesis] = ACTIONS(1127), + [sym__list_marker_dot] = ACTIONS(1127), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1127), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1127), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1127), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1127), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1127), + [sym__fenced_code_block_start_backtick] = ACTIONS(1127), + [sym__fenced_code_block_start_tilde] = ACTIONS(1127), + [sym__blank_line_start] = ACTIONS(45), + [sym__html_block_1_start] = ACTIONS(1127), + [sym__html_block_2_start] = ACTIONS(1127), + [sym__html_block_3_start] = ACTIONS(1127), + [sym__html_block_4_start] = ACTIONS(1127), + [sym__html_block_5_start] = ACTIONS(1127), + [sym__html_block_6_start] = ACTIONS(1127), + [sym__html_block_7_start] = ACTIONS(1127), + [sym__pipe_table_start] = ACTIONS(1127), + }, + [97] = { + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_parenthesis] = STATE(97), + [aux_sym__list_parenthesis_repeat1] = STATE(97), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_RBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_GT] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(1099), + [anon_sym_DOLLAR] = ACTIONS(1099), + [anon_sym_PERCENT] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_SQUOTE] = ACTIONS(1099), + [anon_sym_STAR] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(1099), + [anon_sym_DASH] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1099), + [anon_sym_SLASH] = ACTIONS(1099), + [anon_sym_COLON] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_QMARK] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(1099), + [anon_sym_BSLASH] = ACTIONS(1099), + [anon_sym_CARET] = ACTIONS(1099), + [anon_sym__] = ACTIONS(1099), + [anon_sym_BQUOTE] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_PIPE] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_RPAREN] = ACTIONS(1099), + [aux_sym__word_token1] = ACTIONS(1099), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1099), + [aux_sym__word_token2] = ACTIONS(1099), + [sym__whitespace] = ACTIONS(1099), + [sym__soft_line_ending] = ACTIONS(1099), + [sym__block_close] = ACTIONS(1099), + [sym__block_quote_start] = ACTIONS(1099), + [sym__indented_chunk_start] = ACTIONS(1099), + [sym_atx_h1_marker] = ACTIONS(1099), + [sym_atx_h2_marker] = ACTIONS(1099), + [sym_atx_h3_marker] = ACTIONS(1099), + [sym_atx_h4_marker] = ACTIONS(1099), + [sym_atx_h5_marker] = ACTIONS(1099), + [sym_atx_h6_marker] = ACTIONS(1099), + [sym__thematic_break] = ACTIONS(1099), + [sym__list_marker_minus] = ACTIONS(1099), + [sym__list_marker_plus] = ACTIONS(1099), + [sym__list_marker_star] = ACTIONS(1099), + [sym__list_marker_parenthesis] = ACTIONS(1103), + [sym__list_marker_dot] = ACTIONS(1099), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1099), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1099), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1099), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1103), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1099), + [sym__fenced_code_block_start_backtick] = ACTIONS(1099), + [sym__fenced_code_block_start_tilde] = ACTIONS(1099), + [sym__blank_line_start] = ACTIONS(1099), + [sym__html_block_1_start] = ACTIONS(1099), + [sym__html_block_2_start] = ACTIONS(1099), + [sym__html_block_3_start] = ACTIONS(1099), + [sym__html_block_4_start] = ACTIONS(1099), + [sym__html_block_5_start] = ACTIONS(1099), + [sym__html_block_6_start] = ACTIONS(1099), + [sym__html_block_7_start] = ACTIONS(1099), + [sym__pipe_table_start] = ACTIONS(1099), + }, + [98] = { + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_RBRACK] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_BSLASH] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym__] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [aux_sym__word_token1] = ACTIONS(1133), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1133), + [aux_sym__word_token2] = ACTIONS(1133), + [sym__whitespace] = ACTIONS(1133), + [sym__soft_line_ending] = ACTIONS(1133), + [sym__block_close] = ACTIONS(1133), + [sym_block_continuation] = ACTIONS(1135), + [sym__block_quote_start] = ACTIONS(1133), + [sym__indented_chunk_start] = ACTIONS(1133), + [sym_atx_h1_marker] = ACTIONS(1133), + [sym_atx_h2_marker] = ACTIONS(1133), + [sym_atx_h3_marker] = ACTIONS(1133), + [sym_atx_h4_marker] = ACTIONS(1133), + [sym_atx_h5_marker] = ACTIONS(1133), + [sym_atx_h6_marker] = ACTIONS(1133), + [sym_setext_h1_underline] = ACTIONS(1133), + [sym_setext_h2_underline] = ACTIONS(1133), + [sym__thematic_break] = ACTIONS(1133), + [sym__list_marker_minus] = ACTIONS(1133), + [sym__list_marker_plus] = ACTIONS(1133), + [sym__list_marker_star] = ACTIONS(1133), + [sym__list_marker_parenthesis] = ACTIONS(1133), + [sym__list_marker_dot] = ACTIONS(1133), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1133), + [sym__fenced_code_block_start_backtick] = ACTIONS(1133), + [sym__fenced_code_block_start_tilde] = ACTIONS(1133), + [sym__blank_line_start] = ACTIONS(1133), + [sym__html_block_1_start] = ACTIONS(1133), + [sym__html_block_2_start] = ACTIONS(1133), + [sym__html_block_3_start] = ACTIONS(1133), + [sym__html_block_4_start] = ACTIONS(1133), + [sym__html_block_5_start] = ACTIONS(1133), + [sym__html_block_6_start] = ACTIONS(1133), + [sym__html_block_7_start] = ACTIONS(1133), + [sym__pipe_table_start] = ACTIONS(1133), + }, + [99] = { + [sym_list_marker_dot] = STATE(9), + [sym__list_item_dot] = STATE(99), + [aux_sym__list_dot_repeat1] = STATE(99), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_RBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_GT] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1106), + [anon_sym_POUND] = ACTIONS(1106), + [anon_sym_DOLLAR] = ACTIONS(1106), + [anon_sym_PERCENT] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_PLUS] = ACTIONS(1106), + [anon_sym_COMMA] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_DOT] = ACTIONS(1106), + [anon_sym_SLASH] = ACTIONS(1106), + [anon_sym_COLON] = ACTIONS(1106), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_EQ] = ACTIONS(1106), + [anon_sym_QMARK] = ACTIONS(1106), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_BSLASH] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1106), + [anon_sym__] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_TILDE] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_RPAREN] = ACTIONS(1106), + [aux_sym__word_token1] = ACTIONS(1106), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1106), + [aux_sym__word_token2] = ACTIONS(1106), + [sym__whitespace] = ACTIONS(1106), + [sym__soft_line_ending] = ACTIONS(1106), + [sym__block_close] = ACTIONS(1106), + [sym__block_quote_start] = ACTIONS(1106), + [sym__indented_chunk_start] = ACTIONS(1106), + [sym_atx_h1_marker] = ACTIONS(1106), + [sym_atx_h2_marker] = ACTIONS(1106), + [sym_atx_h3_marker] = ACTIONS(1106), + [sym_atx_h4_marker] = ACTIONS(1106), + [sym_atx_h5_marker] = ACTIONS(1106), + [sym_atx_h6_marker] = ACTIONS(1106), + [sym__thematic_break] = ACTIONS(1106), + [sym__list_marker_minus] = ACTIONS(1106), + [sym__list_marker_plus] = ACTIONS(1106), + [sym__list_marker_star] = ACTIONS(1106), + [sym__list_marker_parenthesis] = ACTIONS(1106), + [sym__list_marker_dot] = ACTIONS(1110), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1110), + [sym__fenced_code_block_start_backtick] = ACTIONS(1106), + [sym__fenced_code_block_start_tilde] = ACTIONS(1106), + [sym__blank_line_start] = ACTIONS(1106), + [sym__html_block_1_start] = ACTIONS(1106), + [sym__html_block_2_start] = ACTIONS(1106), + [sym__html_block_3_start] = ACTIONS(1106), + [sym__html_block_4_start] = ACTIONS(1106), + [sym__html_block_5_start] = ACTIONS(1106), + [sym__html_block_6_start] = ACTIONS(1106), + [sym__html_block_7_start] = ACTIONS(1106), + [sym__pipe_table_start] = ACTIONS(1106), + }, + [100] = { + [sym_list_marker_star] = STATE(4), + [sym__list_item_star] = STATE(92), + [aux_sym__list_star_repeat1] = STATE(92), + [ts_builtin_sym_end] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_RBRACK] = ACTIONS(1075), + [anon_sym_LT] = ACTIONS(1075), + [anon_sym_GT] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_POUND] = ACTIONS(1075), + [anon_sym_DOLLAR] = ACTIONS(1075), + [anon_sym_PERCENT] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1075), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_COMMA] = ACTIONS(1075), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_COLON] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(1075), + [anon_sym_EQ] = ACTIONS(1075), + [anon_sym_QMARK] = ACTIONS(1075), + [anon_sym_AT] = ACTIONS(1075), + [anon_sym_BSLASH] = ACTIONS(1075), + [anon_sym_CARET] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1075), + [anon_sym_BQUOTE] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1075), + [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_RBRACE] = ACTIONS(1075), + [anon_sym_TILDE] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_RPAREN] = ACTIONS(1075), + [aux_sym__word_token1] = ACTIONS(1075), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1075), + [aux_sym__word_token2] = ACTIONS(1075), + [sym__whitespace] = ACTIONS(1075), + [sym__soft_line_ending] = ACTIONS(1075), + [sym__block_quote_start] = ACTIONS(1075), + [sym__indented_chunk_start] = ACTIONS(1075), + [sym_atx_h1_marker] = ACTIONS(1075), + [sym_atx_h2_marker] = ACTIONS(1075), + [sym_atx_h3_marker] = ACTIONS(1075), + [sym_atx_h4_marker] = ACTIONS(1075), + [sym_atx_h5_marker] = ACTIONS(1075), + [sym_atx_h6_marker] = ACTIONS(1075), + [sym__thematic_break] = ACTIONS(1075), + [sym__list_marker_minus] = ACTIONS(1075), + [sym__list_marker_plus] = ACTIONS(1075), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(1075), + [sym__list_marker_dot] = ACTIONS(1075), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1075), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1075), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1075), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1075), + [sym__fenced_code_block_start_backtick] = ACTIONS(1075), + [sym__fenced_code_block_start_tilde] = ACTIONS(1075), + [sym__blank_line_start] = ACTIONS(1075), + [sym__html_block_1_start] = ACTIONS(1075), + [sym__html_block_2_start] = ACTIONS(1075), + [sym__html_block_3_start] = ACTIONS(1075), + [sym__html_block_4_start] = ACTIONS(1075), + [sym__html_block_5_start] = ACTIONS(1075), + [sym__html_block_6_start] = ACTIONS(1075), + [sym__html_block_7_start] = ACTIONS(1075), + [sym__pipe_table_start] = ACTIONS(1075), + }, + [101] = { + [sym_list_marker_star] = STATE(2), + [sym__list_item_star] = STATE(101), + [aux_sym__list_star_repeat1] = STATE(101), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_RBRACK] = ACTIONS(1113), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_POUND] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1113), + [anon_sym_PERCENT] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1113), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_COMMA] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_COLON] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_QMARK] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1113), + [anon_sym_BSLASH] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym__] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1113), + [aux_sym__word_token1] = ACTIONS(1113), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1113), + [aux_sym__word_token2] = ACTIONS(1113), + [sym__whitespace] = ACTIONS(1113), + [sym__soft_line_ending] = ACTIONS(1113), + [sym__block_close] = ACTIONS(1113), + [sym__block_quote_start] = ACTIONS(1113), + [sym__indented_chunk_start] = ACTIONS(1113), + [sym_atx_h1_marker] = ACTIONS(1113), + [sym_atx_h2_marker] = ACTIONS(1113), + [sym_atx_h3_marker] = ACTIONS(1113), + [sym_atx_h4_marker] = ACTIONS(1113), + [sym_atx_h5_marker] = ACTIONS(1113), + [sym_atx_h6_marker] = ACTIONS(1113), + [sym__thematic_break] = ACTIONS(1113), + [sym__list_marker_minus] = ACTIONS(1113), + [sym__list_marker_plus] = ACTIONS(1113), + [sym__list_marker_star] = ACTIONS(1117), + [sym__list_marker_parenthesis] = ACTIONS(1113), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1117), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__fenced_code_block_start_backtick] = ACTIONS(1113), + [sym__fenced_code_block_start_tilde] = ACTIONS(1113), + [sym__blank_line_start] = ACTIONS(1113), + [sym__html_block_1_start] = ACTIONS(1113), + [sym__html_block_2_start] = ACTIONS(1113), + [sym__html_block_3_start] = ACTIONS(1113), + [sym__html_block_4_start] = ACTIONS(1113), + [sym__html_block_5_start] = ACTIONS(1113), + [sym__html_block_6_start] = ACTIONS(1113), + [sym__html_block_7_start] = ACTIONS(1113), + [sym__pipe_table_start] = ACTIONS(1113), + }, + [102] = { + [sym_list_marker_minus] = STATE(5), + [sym__list_item_minus] = STATE(93), + [aux_sym__list_minus_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1077), + [anon_sym_RBRACK] = ACTIONS(1079), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_POUND] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1079), + [anon_sym_PERCENT] = ACTIONS(1079), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_COMMA] = ACTIONS(1079), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_SLASH] = ACTIONS(1079), + [anon_sym_COLON] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1079), + [anon_sym_EQ] = ACTIONS(1079), + [anon_sym_QMARK] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(1079), + [anon_sym_BSLASH] = ACTIONS(1079), + [anon_sym_CARET] = ACTIONS(1079), + [anon_sym__] = ACTIONS(1079), + [anon_sym_BQUOTE] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_PIPE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1079), + [anon_sym_RPAREN] = ACTIONS(1079), + [aux_sym__word_token1] = ACTIONS(1079), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1079), + [aux_sym__word_token2] = ACTIONS(1079), + [sym__whitespace] = ACTIONS(1079), + [sym__soft_line_ending] = ACTIONS(1079), + [sym__block_quote_start] = ACTIONS(1079), + [sym__indented_chunk_start] = ACTIONS(1079), + [sym_atx_h1_marker] = ACTIONS(1079), + [sym_atx_h2_marker] = ACTIONS(1079), + [sym_atx_h3_marker] = ACTIONS(1079), + [sym_atx_h4_marker] = ACTIONS(1079), + [sym_atx_h5_marker] = ACTIONS(1079), + [sym_atx_h6_marker] = ACTIONS(1079), + [sym__thematic_break] = ACTIONS(1079), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(1079), + [sym__list_marker_star] = ACTIONS(1079), + [sym__list_marker_parenthesis] = ACTIONS(1079), + [sym__list_marker_dot] = ACTIONS(1079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1079), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1079), + [sym__fenced_code_block_start_backtick] = ACTIONS(1079), + [sym__fenced_code_block_start_tilde] = ACTIONS(1079), + [sym__blank_line_start] = ACTIONS(1079), + [sym__html_block_1_start] = ACTIONS(1079), + [sym__html_block_2_start] = ACTIONS(1079), + [sym__html_block_3_start] = ACTIONS(1079), + [sym__html_block_4_start] = ACTIONS(1079), + [sym__html_block_5_start] = ACTIONS(1079), + [sym__html_block_6_start] = ACTIONS(1079), + [sym__html_block_7_start] = ACTIONS(1079), + [sym__pipe_table_start] = ACTIONS(1079), + }, + [103] = { + [sym_list_marker_plus] = STATE(10), + [sym__list_item_plus] = STATE(103), + [aux_sym__list_plus_repeat1] = STATE(103), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_RBRACK] = ACTIONS(1062), + [anon_sym_LT] = ACTIONS(1062), + [anon_sym_GT] = ACTIONS(1062), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_PERCENT] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(1062), + [anon_sym_SQUOTE] = ACTIONS(1062), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(1062), + [anon_sym_COLON] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_BSLASH] = ACTIONS(1062), + [anon_sym_CARET] = ACTIONS(1062), + [anon_sym__] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1062), + [anon_sym_PIPE] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_TILDE] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_RPAREN] = ACTIONS(1062), + [aux_sym__word_token1] = ACTIONS(1062), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1062), + [aux_sym__word_token2] = ACTIONS(1062), + [sym__whitespace] = ACTIONS(1062), + [sym__soft_line_ending] = ACTIONS(1062), + [sym__block_close] = ACTIONS(1062), + [sym__block_quote_start] = ACTIONS(1062), + [sym__indented_chunk_start] = ACTIONS(1062), + [sym_atx_h1_marker] = ACTIONS(1062), + [sym_atx_h2_marker] = ACTIONS(1062), + [sym_atx_h3_marker] = ACTIONS(1062), + [sym_atx_h4_marker] = ACTIONS(1062), + [sym_atx_h5_marker] = ACTIONS(1062), + [sym_atx_h6_marker] = ACTIONS(1062), + [sym__thematic_break] = ACTIONS(1062), + [sym__list_marker_minus] = ACTIONS(1062), + [sym__list_marker_plus] = ACTIONS(1066), + [sym__list_marker_star] = ACTIONS(1062), + [sym__list_marker_parenthesis] = ACTIONS(1062), + [sym__list_marker_dot] = ACTIONS(1062), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1066), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1062), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1062), + [sym__fenced_code_block_start_backtick] = ACTIONS(1062), + [sym__fenced_code_block_start_tilde] = ACTIONS(1062), + [sym__blank_line_start] = ACTIONS(1062), + [sym__html_block_1_start] = ACTIONS(1062), + [sym__html_block_2_start] = ACTIONS(1062), + [sym__html_block_3_start] = ACTIONS(1062), + [sym__html_block_4_start] = ACTIONS(1062), + [sym__html_block_5_start] = ACTIONS(1062), + [sym__html_block_6_start] = ACTIONS(1062), + [sym__html_block_7_start] = ACTIONS(1062), + [sym__pipe_table_start] = ACTIONS(1062), + }, + [104] = { + [sym_list_marker_parenthesis] = STATE(8), + [sym__list_item_parenthesis] = STATE(97), + [aux_sym__list_parenthesis_repeat1] = STATE(97), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_RBRACK] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [anon_sym_POUND] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [anon_sym_PERCENT] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_SLASH] = ACTIONS(1081), + [anon_sym_COLON] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(1081), + [anon_sym_QMARK] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(1081), + [anon_sym_BSLASH] = ACTIONS(1081), + [anon_sym_CARET] = ACTIONS(1081), + [anon_sym__] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1081), + [aux_sym__word_token1] = ACTIONS(1081), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1081), + [aux_sym__word_token2] = ACTIONS(1081), + [sym__whitespace] = ACTIONS(1081), + [sym__soft_line_ending] = ACTIONS(1081), + [sym__block_close] = ACTIONS(1081), + [sym__block_quote_start] = ACTIONS(1081), + [sym__indented_chunk_start] = ACTIONS(1081), + [sym_atx_h1_marker] = ACTIONS(1081), + [sym_atx_h2_marker] = ACTIONS(1081), + [sym_atx_h3_marker] = ACTIONS(1081), + [sym_atx_h4_marker] = ACTIONS(1081), + [sym_atx_h5_marker] = ACTIONS(1081), + [sym_atx_h6_marker] = ACTIONS(1081), + [sym__thematic_break] = ACTIONS(1081), + [sym__list_marker_minus] = ACTIONS(1081), + [sym__list_marker_plus] = ACTIONS(1081), + [sym__list_marker_star] = ACTIONS(1081), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1081), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1081), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1081), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1081), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1081), + [sym__fenced_code_block_start_backtick] = ACTIONS(1081), + [sym__fenced_code_block_start_tilde] = ACTIONS(1081), + [sym__blank_line_start] = ACTIONS(1081), + [sym__html_block_1_start] = ACTIONS(1081), + [sym__html_block_2_start] = ACTIONS(1081), + [sym__html_block_3_start] = ACTIONS(1081), + [sym__html_block_4_start] = ACTIONS(1081), + [sym__html_block_5_start] = ACTIONS(1081), + [sym__html_block_6_start] = ACTIONS(1081), + [sym__html_block_7_start] = ACTIONS(1081), + [sym__pipe_table_start] = ACTIONS(1081), + }, + [105] = { + [ts_builtin_sym_end] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_RBRACK] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_BSLASH] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym__] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [aux_sym__word_token1] = ACTIONS(1133), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1133), + [aux_sym__word_token2] = ACTIONS(1133), + [sym__whitespace] = ACTIONS(1133), + [sym__soft_line_ending] = ACTIONS(1133), + [sym_block_continuation] = ACTIONS(1137), + [sym__block_quote_start] = ACTIONS(1133), + [sym__indented_chunk_start] = ACTIONS(1133), + [sym_atx_h1_marker] = ACTIONS(1133), + [sym_atx_h2_marker] = ACTIONS(1133), + [sym_atx_h3_marker] = ACTIONS(1133), + [sym_atx_h4_marker] = ACTIONS(1133), + [sym_atx_h5_marker] = ACTIONS(1133), + [sym_atx_h6_marker] = ACTIONS(1133), + [sym_setext_h1_underline] = ACTIONS(1133), + [sym_setext_h2_underline] = ACTIONS(1133), + [sym__thematic_break] = ACTIONS(1133), + [sym__list_marker_minus] = ACTIONS(1133), + [sym__list_marker_plus] = ACTIONS(1133), + [sym__list_marker_star] = ACTIONS(1133), + [sym__list_marker_parenthesis] = ACTIONS(1133), + [sym__list_marker_dot] = ACTIONS(1133), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1133), + [sym__fenced_code_block_start_backtick] = ACTIONS(1133), + [sym__fenced_code_block_start_tilde] = ACTIONS(1133), + [sym__blank_line_start] = ACTIONS(1133), + [sym__html_block_1_start] = ACTIONS(1133), + [sym__html_block_2_start] = ACTIONS(1133), + [sym__html_block_3_start] = ACTIONS(1133), + [sym__html_block_4_start] = ACTIONS(1133), + [sym__html_block_5_start] = ACTIONS(1133), + [sym__html_block_6_start] = ACTIONS(1133), + [sym__html_block_7_start] = ACTIONS(1133), + [sym__pipe_table_start] = ACTIONS(1133), + }, + [106] = { + [sym_list_marker_minus] = STATE(11), + [sym__list_item_minus] = STATE(106), + [aux_sym__list_minus_repeat1] = STATE(106), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_RBRACK] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_POUND] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_PERCENT] = ACTIONS(1120), + [anon_sym_AMP] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_STAR] = ACTIONS(1120), + [anon_sym_PLUS] = ACTIONS(1120), + [anon_sym_COMMA] = ACTIONS(1120), + [anon_sym_DASH] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1120), + [anon_sym_SLASH] = ACTIONS(1120), + [anon_sym_COLON] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_EQ] = ACTIONS(1120), + [anon_sym_QMARK] = ACTIONS(1120), + [anon_sym_AT] = ACTIONS(1120), + [anon_sym_BSLASH] = ACTIONS(1120), + [anon_sym_CARET] = ACTIONS(1120), + [anon_sym__] = ACTIONS(1120), + [anon_sym_BQUOTE] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_PIPE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_RPAREN] = ACTIONS(1120), + [aux_sym__word_token1] = ACTIONS(1120), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1120), + [aux_sym__word_token2] = ACTIONS(1120), + [sym__whitespace] = ACTIONS(1120), + [sym__soft_line_ending] = ACTIONS(1120), + [sym__block_close] = ACTIONS(1120), + [sym__block_quote_start] = ACTIONS(1120), + [sym__indented_chunk_start] = ACTIONS(1120), + [sym_atx_h1_marker] = ACTIONS(1120), + [sym_atx_h2_marker] = ACTIONS(1120), + [sym_atx_h3_marker] = ACTIONS(1120), + [sym_atx_h4_marker] = ACTIONS(1120), + [sym_atx_h5_marker] = ACTIONS(1120), + [sym_atx_h6_marker] = ACTIONS(1120), + [sym__thematic_break] = ACTIONS(1120), + [sym__list_marker_minus] = ACTIONS(1124), + [sym__list_marker_plus] = ACTIONS(1120), + [sym__list_marker_star] = ACTIONS(1120), + [sym__list_marker_parenthesis] = ACTIONS(1120), + [sym__list_marker_dot] = ACTIONS(1120), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1120), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1120), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1120), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1120), + [sym__fenced_code_block_start_backtick] = ACTIONS(1120), + [sym__fenced_code_block_start_tilde] = ACTIONS(1120), + [sym__blank_line_start] = ACTIONS(1120), + [sym__html_block_1_start] = ACTIONS(1120), + [sym__html_block_2_start] = ACTIONS(1120), + [sym__html_block_3_start] = ACTIONS(1120), + [sym__html_block_4_start] = ACTIONS(1120), + [sym__html_block_5_start] = ACTIONS(1120), + [sym__html_block_6_start] = ACTIONS(1120), + [sym__html_block_7_start] = ACTIONS(1120), + [sym__pipe_table_start] = ACTIONS(1120), + }, + [107] = { + [sym__indented_chunk] = STATE(89), + [sym__blank_line] = STATE(89), + [aux_sym_indented_code_block_repeat1] = STATE(89), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1127), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1127), + [anon_sym_DOLLAR] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_SQUOTE] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_DOT] = ACTIONS(1127), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_COLON] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_QMARK] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1127), + [anon_sym_BSLASH] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym__] = ACTIONS(1127), + [anon_sym_BQUOTE] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1127), + [aux_sym__word_token1] = ACTIONS(1127), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1127), + [aux_sym__word_token2] = ACTIONS(1127), + [sym__whitespace] = ACTIONS(1127), + [sym__soft_line_ending] = ACTIONS(1127), + [sym__block_close] = ACTIONS(1127), + [sym__block_quote_start] = ACTIONS(1127), + [sym__indented_chunk_start] = ACTIONS(75), + [sym_atx_h1_marker] = ACTIONS(1127), + [sym_atx_h2_marker] = ACTIONS(1127), + [sym_atx_h3_marker] = ACTIONS(1127), + [sym_atx_h4_marker] = ACTIONS(1127), + [sym_atx_h5_marker] = ACTIONS(1127), + [sym_atx_h6_marker] = ACTIONS(1127), + [sym__thematic_break] = ACTIONS(1127), + [sym__list_marker_minus] = ACTIONS(1127), + [sym__list_marker_plus] = ACTIONS(1127), + [sym__list_marker_star] = ACTIONS(1127), + [sym__list_marker_parenthesis] = ACTIONS(1127), + [sym__list_marker_dot] = ACTIONS(1127), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1127), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1127), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1127), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1127), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1127), + [sym__fenced_code_block_start_backtick] = ACTIONS(1127), + [sym__fenced_code_block_start_tilde] = ACTIONS(1127), + [sym__blank_line_start] = ACTIONS(95), + [sym__html_block_1_start] = ACTIONS(1127), + [sym__html_block_2_start] = ACTIONS(1127), + [sym__html_block_3_start] = ACTIONS(1127), + [sym__html_block_4_start] = ACTIONS(1127), + [sym__html_block_5_start] = ACTIONS(1127), + [sym__html_block_6_start] = ACTIONS(1127), + [sym__html_block_7_start] = ACTIONS(1127), + [sym__pipe_table_start] = ACTIONS(1127), + }, + [108] = { + [sym__indented_chunk] = STATE(108), + [sym__blank_line] = STATE(108), + [aux_sym_indented_code_block_repeat1] = STATE(108), + [ts_builtin_sym_end] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1091), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1091), + [anon_sym_POUND] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1091), + [anon_sym_PERCENT] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_COMMA] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_DOT] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_COLON] = ACTIONS(1091), + [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_EQ] = ACTIONS(1091), + [anon_sym_QMARK] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(1091), + [anon_sym_BSLASH] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym__] = ACTIONS(1091), + [anon_sym_BQUOTE] = ACTIONS(1091), + [anon_sym_LBRACE] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1091), + [anon_sym_RPAREN] = ACTIONS(1091), + [aux_sym__word_token1] = ACTIONS(1091), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1091), + [aux_sym__word_token2] = ACTIONS(1091), + [sym__whitespace] = ACTIONS(1091), + [sym__soft_line_ending] = ACTIONS(1091), + [sym__block_quote_start] = ACTIONS(1091), + [sym__indented_chunk_start] = ACTIONS(1139), + [sym_atx_h1_marker] = ACTIONS(1091), + [sym_atx_h2_marker] = ACTIONS(1091), + [sym_atx_h3_marker] = ACTIONS(1091), + [sym_atx_h4_marker] = ACTIONS(1091), + [sym_atx_h5_marker] = ACTIONS(1091), + [sym_atx_h6_marker] = ACTIONS(1091), + [sym__thematic_break] = ACTIONS(1091), + [sym__list_marker_minus] = ACTIONS(1091), + [sym__list_marker_plus] = ACTIONS(1091), + [sym__list_marker_star] = ACTIONS(1091), + [sym__list_marker_parenthesis] = ACTIONS(1091), + [sym__list_marker_dot] = ACTIONS(1091), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1091), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1091), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1091), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1091), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1091), + [sym__fenced_code_block_start_backtick] = ACTIONS(1091), + [sym__fenced_code_block_start_tilde] = ACTIONS(1091), + [sym__blank_line_start] = ACTIONS(1142), + [sym__html_block_1_start] = ACTIONS(1091), + [sym__html_block_2_start] = ACTIONS(1091), + [sym__html_block_3_start] = ACTIONS(1091), + [sym__html_block_4_start] = ACTIONS(1091), + [sym__html_block_5_start] = ACTIONS(1091), + [sym__html_block_6_start] = ACTIONS(1091), + [sym__html_block_7_start] = ACTIONS(1091), + [sym__pipe_table_start] = ACTIONS(1091), + }, + [109] = { + [sym_link_title] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_POUND] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_COMMA] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_DOT] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_COLON] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(1145), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1145), + [anon_sym_BSLASH] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1145), + [anon_sym__] = ACTIONS(1145), + [anon_sym_BQUOTE] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_RPAREN] = ACTIONS(1145), + [aux_sym__word_token1] = ACTIONS(1145), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1145), + [aux_sym__word_token2] = ACTIONS(1145), + [sym__whitespace] = ACTIONS(1158), + [sym__soft_line_ending] = ACTIONS(1145), + [sym__block_quote_start] = ACTIONS(1145), + [sym__indented_chunk_start] = ACTIONS(1145), + [sym_atx_h1_marker] = ACTIONS(1145), + [sym_atx_h2_marker] = ACTIONS(1145), + [sym_atx_h3_marker] = ACTIONS(1145), + [sym_atx_h4_marker] = ACTIONS(1145), + [sym_atx_h5_marker] = ACTIONS(1145), + [sym_atx_h6_marker] = ACTIONS(1145), + [sym__thematic_break] = ACTIONS(1145), + [sym__list_marker_minus] = ACTIONS(1145), + [sym__list_marker_plus] = ACTIONS(1145), + [sym__list_marker_star] = ACTIONS(1145), + [sym__list_marker_parenthesis] = ACTIONS(1145), + [sym__list_marker_dot] = ACTIONS(1145), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1145), + [sym__fenced_code_block_start_backtick] = ACTIONS(1145), + [sym__fenced_code_block_start_tilde] = ACTIONS(1145), + [sym__blank_line_start] = ACTIONS(1145), + [sym__html_block_1_start] = ACTIONS(1145), + [sym__html_block_2_start] = ACTIONS(1145), + [sym__html_block_3_start] = ACTIONS(1145), + [sym__html_block_4_start] = ACTIONS(1145), + [sym__html_block_5_start] = ACTIONS(1145), + [sym__html_block_6_start] = ACTIONS(1145), + [sym__html_block_7_start] = ACTIONS(1145), + [sym__no_indented_chunk] = ACTIONS(1161), + [sym__pipe_table_start] = ACTIONS(1145), + }, + [110] = { + [sym_link_title] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(1163), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_RBRACK] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(1163), + [anon_sym_GT] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_POUND] = ACTIONS(1163), + [anon_sym_DOLLAR] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_DOT] = ACTIONS(1163), + [anon_sym_SLASH] = ACTIONS(1163), + [anon_sym_COLON] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_EQ] = ACTIONS(1163), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_AT] = ACTIONS(1163), + [anon_sym_BSLASH] = ACTIONS(1163), + [anon_sym_CARET] = ACTIONS(1163), + [anon_sym__] = ACTIONS(1163), + [anon_sym_BQUOTE] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RPAREN] = ACTIONS(1163), + [aux_sym__word_token1] = ACTIONS(1163), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1163), + [aux_sym__word_token2] = ACTIONS(1163), + [sym__whitespace] = ACTIONS(1176), + [sym__soft_line_ending] = ACTIONS(1163), + [sym__block_quote_start] = ACTIONS(1163), + [sym__indented_chunk_start] = ACTIONS(1163), + [sym_atx_h1_marker] = ACTIONS(1163), + [sym_atx_h2_marker] = ACTIONS(1163), + [sym_atx_h3_marker] = ACTIONS(1163), + [sym_atx_h4_marker] = ACTIONS(1163), + [sym_atx_h5_marker] = ACTIONS(1163), + [sym_atx_h6_marker] = ACTIONS(1163), + [sym__thematic_break] = ACTIONS(1163), + [sym__list_marker_minus] = ACTIONS(1163), + [sym__list_marker_plus] = ACTIONS(1163), + [sym__list_marker_star] = ACTIONS(1163), + [sym__list_marker_parenthesis] = ACTIONS(1163), + [sym__list_marker_dot] = ACTIONS(1163), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1163), + [sym__fenced_code_block_start_backtick] = ACTIONS(1163), + [sym__fenced_code_block_start_tilde] = ACTIONS(1163), + [sym__blank_line_start] = ACTIONS(1163), + [sym__html_block_1_start] = ACTIONS(1163), + [sym__html_block_2_start] = ACTIONS(1163), + [sym__html_block_3_start] = ACTIONS(1163), + [sym__html_block_4_start] = ACTIONS(1163), + [sym__html_block_5_start] = ACTIONS(1163), + [sym__html_block_6_start] = ACTIONS(1163), + [sym__html_block_7_start] = ACTIONS(1163), + [sym__no_indented_chunk] = ACTIONS(1179), + [sym__pipe_table_start] = ACTIONS(1163), + }, + [111] = { + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_RBRACK] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_BSLASH] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym__] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [aux_sym__word_token1] = ACTIONS(1133), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1133), + [aux_sym__word_token2] = ACTIONS(1133), + [sym__whitespace] = ACTIONS(1133), + [sym__soft_line_ending] = ACTIONS(1133), + [sym__block_close] = ACTIONS(1133), + [sym_block_continuation] = ACTIONS(1181), + [sym__block_quote_start] = ACTIONS(1133), + [sym__indented_chunk_start] = ACTIONS(1133), + [sym_atx_h1_marker] = ACTIONS(1133), + [sym_atx_h2_marker] = ACTIONS(1133), + [sym_atx_h3_marker] = ACTIONS(1133), + [sym_atx_h4_marker] = ACTIONS(1133), + [sym_atx_h5_marker] = ACTIONS(1133), + [sym_atx_h6_marker] = ACTIONS(1133), + [sym_setext_h2_underline] = ACTIONS(1133), + [sym__thematic_break] = ACTIONS(1133), + [sym__list_marker_minus] = ACTIONS(1133), + [sym__list_marker_plus] = ACTIONS(1133), + [sym__list_marker_star] = ACTIONS(1133), + [sym__list_marker_parenthesis] = ACTIONS(1133), + [sym__list_marker_dot] = ACTIONS(1133), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1133), + [sym__fenced_code_block_start_backtick] = ACTIONS(1133), + [sym__fenced_code_block_start_tilde] = ACTIONS(1133), + [sym__blank_line_start] = ACTIONS(1133), + [sym__html_block_1_start] = ACTIONS(1133), + [sym__html_block_2_start] = ACTIONS(1133), + [sym__html_block_3_start] = ACTIONS(1133), + [sym__html_block_4_start] = ACTIONS(1133), + [sym__html_block_5_start] = ACTIONS(1133), + [sym__html_block_6_start] = ACTIONS(1133), + [sym__html_block_7_start] = ACTIONS(1133), + [sym__pipe_table_start] = ACTIONS(1133), + }, + [112] = { + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_BSLASH] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [aux_sym__word_token1] = ACTIONS(1185), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1185), + [aux_sym__word_token2] = ACTIONS(1185), + [sym__whitespace] = ACTIONS(1185), + [sym__soft_line_ending] = ACTIONS(1185), + [sym__block_close] = ACTIONS(1185), + [sym__block_quote_start] = ACTIONS(1185), + [sym__indented_chunk_start] = ACTIONS(1185), + [sym_atx_h1_marker] = ACTIONS(1185), + [sym_atx_h2_marker] = ACTIONS(1185), + [sym_atx_h3_marker] = ACTIONS(1185), + [sym_atx_h4_marker] = ACTIONS(1185), + [sym_atx_h5_marker] = ACTIONS(1185), + [sym_atx_h6_marker] = ACTIONS(1185), + [sym_setext_h1_underline] = ACTIONS(1185), + [sym_setext_h2_underline] = ACTIONS(1185), + [sym__thematic_break] = ACTIONS(1185), + [sym__list_marker_minus] = ACTIONS(1185), + [sym__list_marker_plus] = ACTIONS(1185), + [sym__list_marker_star] = ACTIONS(1185), + [sym__list_marker_parenthesis] = ACTIONS(1185), + [sym__list_marker_dot] = ACTIONS(1185), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1185), + [sym__fenced_code_block_start_tilde] = ACTIONS(1185), + [sym__blank_line_start] = ACTIONS(1185), + [sym__html_block_1_start] = ACTIONS(1185), + [sym__html_block_2_start] = ACTIONS(1185), + [sym__html_block_3_start] = ACTIONS(1185), + [sym__html_block_4_start] = ACTIONS(1185), + [sym__html_block_5_start] = ACTIONS(1185), + [sym__html_block_6_start] = ACTIONS(1185), + [sym__html_block_7_start] = ACTIONS(1185), + [sym__pipe_table_start] = ACTIONS(1185), + }, + [113] = { + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [anon_sym_POUND] = ACTIONS(1189), + [anon_sym_DOLLAR] = ACTIONS(1189), + [anon_sym_PERCENT] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_COMMA] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1189), + [anon_sym_COLON] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_AT] = ACTIONS(1189), + [anon_sym_BSLASH] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1189), + [anon_sym__] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_RPAREN] = ACTIONS(1189), + [aux_sym__word_token1] = ACTIONS(1189), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1189), + [aux_sym__word_token2] = ACTIONS(1189), + [sym__whitespace] = ACTIONS(1189), + [sym__soft_line_ending] = ACTIONS(1189), + [sym__block_close] = ACTIONS(1189), + [sym_block_continuation] = ACTIONS(1191), + [sym__block_quote_start] = ACTIONS(1189), + [sym__indented_chunk_start] = ACTIONS(1189), + [sym_atx_h1_marker] = ACTIONS(1189), + [sym_atx_h2_marker] = ACTIONS(1189), + [sym_atx_h3_marker] = ACTIONS(1189), + [sym_atx_h4_marker] = ACTIONS(1189), + [sym_atx_h5_marker] = ACTIONS(1189), + [sym_atx_h6_marker] = ACTIONS(1189), + [sym__thematic_break] = ACTIONS(1189), + [sym__list_marker_minus] = ACTIONS(1189), + [sym__list_marker_plus] = ACTIONS(1189), + [sym__list_marker_star] = ACTIONS(1189), + [sym__list_marker_parenthesis] = ACTIONS(1189), + [sym__list_marker_dot] = ACTIONS(1189), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1189), + [sym__fenced_code_block_start_backtick] = ACTIONS(1189), + [sym__fenced_code_block_start_tilde] = ACTIONS(1189), + [sym__blank_line_start] = ACTIONS(1189), + [sym__html_block_1_start] = ACTIONS(1189), + [sym__html_block_2_start] = ACTIONS(1189), + [sym__html_block_3_start] = ACTIONS(1189), + [sym__html_block_4_start] = ACTIONS(1189), + [sym__html_block_5_start] = ACTIONS(1189), + [sym__html_block_6_start] = ACTIONS(1189), + [sym__html_block_7_start] = ACTIONS(1189), + [sym__no_indented_chunk] = ACTIONS(1189), + [sym__pipe_table_start] = ACTIONS(1189), + }, + [114] = { + [sym_link_title] = STATE(741), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym__] = ACTIONS(1195), + [anon_sym_BQUOTE] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1203), + [anon_sym_RPAREN] = ACTIONS(1195), + [aux_sym__word_token1] = ACTIONS(1195), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1195), + [aux_sym__word_token2] = ACTIONS(1195), + [sym__whitespace] = ACTIONS(1206), + [sym__soft_line_ending] = ACTIONS(1195), + [sym__block_close] = ACTIONS(1195), + [sym__block_quote_start] = ACTIONS(1195), + [sym__indented_chunk_start] = ACTIONS(1195), + [sym_atx_h1_marker] = ACTIONS(1195), + [sym_atx_h2_marker] = ACTIONS(1195), + [sym_atx_h3_marker] = ACTIONS(1195), + [sym_atx_h4_marker] = ACTIONS(1195), + [sym_atx_h5_marker] = ACTIONS(1195), + [sym_atx_h6_marker] = ACTIONS(1195), + [sym__thematic_break] = ACTIONS(1195), + [sym__list_marker_minus] = ACTIONS(1195), + [sym__list_marker_plus] = ACTIONS(1195), + [sym__list_marker_star] = ACTIONS(1195), + [sym__list_marker_parenthesis] = ACTIONS(1195), + [sym__list_marker_dot] = ACTIONS(1195), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1195), + [sym__fenced_code_block_start_backtick] = ACTIONS(1195), + [sym__fenced_code_block_start_tilde] = ACTIONS(1195), + [sym__blank_line_start] = ACTIONS(1195), + [sym__html_block_1_start] = ACTIONS(1195), + [sym__html_block_2_start] = ACTIONS(1195), + [sym__html_block_3_start] = ACTIONS(1195), + [sym__html_block_4_start] = ACTIONS(1195), + [sym__html_block_5_start] = ACTIONS(1195), + [sym__html_block_6_start] = ACTIONS(1195), + [sym__html_block_7_start] = ACTIONS(1195), + [sym__no_indented_chunk] = ACTIONS(1209), + [sym__pipe_table_start] = ACTIONS(1195), + }, + [115] = { + [sym_link_title] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1211), + [anon_sym_BSLASH] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym__] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1211), + [aux_sym__word_token1] = ACTIONS(1211), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1211), + [aux_sym__word_token2] = ACTIONS(1211), + [sym__whitespace] = ACTIONS(1224), + [sym__soft_line_ending] = ACTIONS(1211), + [sym__block_quote_start] = ACTIONS(1211), + [sym__indented_chunk_start] = ACTIONS(1211), + [sym_atx_h1_marker] = ACTIONS(1211), + [sym_atx_h2_marker] = ACTIONS(1211), + [sym_atx_h3_marker] = ACTIONS(1211), + [sym_atx_h4_marker] = ACTIONS(1211), + [sym_atx_h5_marker] = ACTIONS(1211), + [sym_atx_h6_marker] = ACTIONS(1211), + [sym__thematic_break] = ACTIONS(1211), + [sym__list_marker_minus] = ACTIONS(1211), + [sym__list_marker_plus] = ACTIONS(1211), + [sym__list_marker_star] = ACTIONS(1211), + [sym__list_marker_parenthesis] = ACTIONS(1211), + [sym__list_marker_dot] = ACTIONS(1211), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1211), + [sym__fenced_code_block_start_backtick] = ACTIONS(1211), + [sym__fenced_code_block_start_tilde] = ACTIONS(1211), + [sym__blank_line_start] = ACTIONS(1211), + [sym__html_block_1_start] = ACTIONS(1211), + [sym__html_block_2_start] = ACTIONS(1211), + [sym__html_block_3_start] = ACTIONS(1211), + [sym__html_block_4_start] = ACTIONS(1211), + [sym__html_block_5_start] = ACTIONS(1211), + [sym__html_block_6_start] = ACTIONS(1211), + [sym__html_block_7_start] = ACTIONS(1211), + [sym__no_indented_chunk] = ACTIONS(1227), + [sym__pipe_table_start] = ACTIONS(1211), + }, + [116] = { + [sym_link_title] = STATE(743), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1215), + [anon_sym_POUND] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1211), + [anon_sym_BSLASH] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym__] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1211), + [aux_sym__word_token1] = ACTIONS(1211), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1211), + [aux_sym__word_token2] = ACTIONS(1211), + [sym__whitespace] = ACTIONS(1229), + [sym__soft_line_ending] = ACTIONS(1211), + [sym__block_close] = ACTIONS(1211), + [sym__block_quote_start] = ACTIONS(1211), + [sym__indented_chunk_start] = ACTIONS(1211), + [sym_atx_h1_marker] = ACTIONS(1211), + [sym_atx_h2_marker] = ACTIONS(1211), + [sym_atx_h3_marker] = ACTIONS(1211), + [sym_atx_h4_marker] = ACTIONS(1211), + [sym_atx_h5_marker] = ACTIONS(1211), + [sym_atx_h6_marker] = ACTIONS(1211), + [sym__thematic_break] = ACTIONS(1211), + [sym__list_marker_minus] = ACTIONS(1211), + [sym__list_marker_plus] = ACTIONS(1211), + [sym__list_marker_star] = ACTIONS(1211), + [sym__list_marker_parenthesis] = ACTIONS(1211), + [sym__list_marker_dot] = ACTIONS(1211), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1211), + [sym__fenced_code_block_start_backtick] = ACTIONS(1211), + [sym__fenced_code_block_start_tilde] = ACTIONS(1211), + [sym__blank_line_start] = ACTIONS(1211), + [sym__html_block_1_start] = ACTIONS(1211), + [sym__html_block_2_start] = ACTIONS(1211), + [sym__html_block_3_start] = ACTIONS(1211), + [sym__html_block_4_start] = ACTIONS(1211), + [sym__html_block_5_start] = ACTIONS(1211), + [sym__html_block_6_start] = ACTIONS(1211), + [sym__html_block_7_start] = ACTIONS(1211), + [sym__no_indented_chunk] = ACTIONS(1232), + [sym__pipe_table_start] = ACTIONS(1211), + }, + [117] = { + [sym_link_title] = STATE(718), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_POUND] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_COMMA] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_DOT] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_COLON] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(1145), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1145), + [anon_sym_BSLASH] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1145), + [anon_sym__] = ACTIONS(1145), + [anon_sym_BQUOTE] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1155), + [anon_sym_RPAREN] = ACTIONS(1145), + [aux_sym__word_token1] = ACTIONS(1145), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1145), + [aux_sym__word_token2] = ACTIONS(1145), + [sym__whitespace] = ACTIONS(1234), + [sym__soft_line_ending] = ACTIONS(1145), + [sym__block_close] = ACTIONS(1145), + [sym__block_quote_start] = ACTIONS(1145), + [sym__indented_chunk_start] = ACTIONS(1145), + [sym_atx_h1_marker] = ACTIONS(1145), + [sym_atx_h2_marker] = ACTIONS(1145), + [sym_atx_h3_marker] = ACTIONS(1145), + [sym_atx_h4_marker] = ACTIONS(1145), + [sym_atx_h5_marker] = ACTIONS(1145), + [sym_atx_h6_marker] = ACTIONS(1145), + [sym__thematic_break] = ACTIONS(1145), + [sym__list_marker_minus] = ACTIONS(1145), + [sym__list_marker_plus] = ACTIONS(1145), + [sym__list_marker_star] = ACTIONS(1145), + [sym__list_marker_parenthesis] = ACTIONS(1145), + [sym__list_marker_dot] = ACTIONS(1145), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1145), + [sym__fenced_code_block_start_backtick] = ACTIONS(1145), + [sym__fenced_code_block_start_tilde] = ACTIONS(1145), + [sym__blank_line_start] = ACTIONS(1145), + [sym__html_block_1_start] = ACTIONS(1145), + [sym__html_block_2_start] = ACTIONS(1145), + [sym__html_block_3_start] = ACTIONS(1145), + [sym__html_block_4_start] = ACTIONS(1145), + [sym__html_block_5_start] = ACTIONS(1145), + [sym__html_block_6_start] = ACTIONS(1145), + [sym__html_block_7_start] = ACTIONS(1145), + [sym__no_indented_chunk] = ACTIONS(1237), + [sym__pipe_table_start] = ACTIONS(1145), + }, + [118] = { + [ts_builtin_sym_end] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_BSLASH] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [aux_sym__word_token1] = ACTIONS(1239), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1239), + [aux_sym__word_token2] = ACTIONS(1239), + [sym__whitespace] = ACTIONS(1239), + [sym__soft_line_ending] = ACTIONS(1239), + [sym__block_quote_start] = ACTIONS(1239), + [sym__indented_chunk_start] = ACTIONS(1239), + [sym_atx_h1_marker] = ACTIONS(1239), + [sym_atx_h2_marker] = ACTIONS(1239), + [sym_atx_h3_marker] = ACTIONS(1239), + [sym_atx_h4_marker] = ACTIONS(1239), + [sym_atx_h5_marker] = ACTIONS(1239), + [sym_atx_h6_marker] = ACTIONS(1239), + [sym_setext_h1_underline] = ACTIONS(1239), + [sym_setext_h2_underline] = ACTIONS(1239), + [sym__thematic_break] = ACTIONS(1239), + [sym__list_marker_minus] = ACTIONS(1239), + [sym__list_marker_plus] = ACTIONS(1239), + [sym__list_marker_star] = ACTIONS(1239), + [sym__list_marker_parenthesis] = ACTIONS(1239), + [sym__list_marker_dot] = ACTIONS(1239), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1239), + [sym__fenced_code_block_start_backtick] = ACTIONS(1239), + [sym__fenced_code_block_start_tilde] = ACTIONS(1239), + [sym__blank_line_start] = ACTIONS(1239), + [sym__html_block_1_start] = ACTIONS(1239), + [sym__html_block_2_start] = ACTIONS(1239), + [sym__html_block_3_start] = ACTIONS(1239), + [sym__html_block_4_start] = ACTIONS(1239), + [sym__html_block_5_start] = ACTIONS(1239), + [sym__html_block_6_start] = ACTIONS(1239), + [sym__html_block_7_start] = ACTIONS(1239), + [sym__pipe_table_start] = ACTIONS(1239), + }, + [119] = { + [sym_link_title] = STATE(730), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_RBRACK] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(1163), + [anon_sym_GT] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1167), + [anon_sym_POUND] = ACTIONS(1163), + [anon_sym_DOLLAR] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_DOT] = ACTIONS(1163), + [anon_sym_SLASH] = ACTIONS(1163), + [anon_sym_COLON] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_EQ] = ACTIONS(1163), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_AT] = ACTIONS(1163), + [anon_sym_BSLASH] = ACTIONS(1163), + [anon_sym_CARET] = ACTIONS(1163), + [anon_sym__] = ACTIONS(1163), + [anon_sym_BQUOTE] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RPAREN] = ACTIONS(1163), + [aux_sym__word_token1] = ACTIONS(1163), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1163), + [aux_sym__word_token2] = ACTIONS(1163), + [sym__whitespace] = ACTIONS(1243), + [sym__soft_line_ending] = ACTIONS(1163), + [sym__block_close] = ACTIONS(1163), + [sym__block_quote_start] = ACTIONS(1163), + [sym__indented_chunk_start] = ACTIONS(1163), + [sym_atx_h1_marker] = ACTIONS(1163), + [sym_atx_h2_marker] = ACTIONS(1163), + [sym_atx_h3_marker] = ACTIONS(1163), + [sym_atx_h4_marker] = ACTIONS(1163), + [sym_atx_h5_marker] = ACTIONS(1163), + [sym_atx_h6_marker] = ACTIONS(1163), + [sym__thematic_break] = ACTIONS(1163), + [sym__list_marker_minus] = ACTIONS(1163), + [sym__list_marker_plus] = ACTIONS(1163), + [sym__list_marker_star] = ACTIONS(1163), + [sym__list_marker_parenthesis] = ACTIONS(1163), + [sym__list_marker_dot] = ACTIONS(1163), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1163), + [sym__fenced_code_block_start_backtick] = ACTIONS(1163), + [sym__fenced_code_block_start_tilde] = ACTIONS(1163), + [sym__blank_line_start] = ACTIONS(1163), + [sym__html_block_1_start] = ACTIONS(1163), + [sym__html_block_2_start] = ACTIONS(1163), + [sym__html_block_3_start] = ACTIONS(1163), + [sym__html_block_4_start] = ACTIONS(1163), + [sym__html_block_5_start] = ACTIONS(1163), + [sym__html_block_6_start] = ACTIONS(1163), + [sym__html_block_7_start] = ACTIONS(1163), + [sym__no_indented_chunk] = ACTIONS(1246), + [sym__pipe_table_start] = ACTIONS(1163), + }, + [120] = { + [sym_link_title] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_RBRACK] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_PERCENT] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_COMMA] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_DOT] = ACTIONS(1248), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_COLON] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1248), + [anon_sym_BSLASH] = ACTIONS(1248), + [anon_sym_CARET] = ACTIONS(1248), + [anon_sym__] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1248), + [aux_sym__word_token1] = ACTIONS(1248), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1248), + [aux_sym__word_token2] = ACTIONS(1248), + [sym__whitespace] = ACTIONS(1261), + [sym__soft_line_ending] = ACTIONS(1248), + [sym__block_quote_start] = ACTIONS(1248), + [sym__indented_chunk_start] = ACTIONS(1248), + [sym_atx_h1_marker] = ACTIONS(1248), + [sym_atx_h2_marker] = ACTIONS(1248), + [sym_atx_h3_marker] = ACTIONS(1248), + [sym_atx_h4_marker] = ACTIONS(1248), + [sym_atx_h5_marker] = ACTIONS(1248), + [sym_atx_h6_marker] = ACTIONS(1248), + [sym__thematic_break] = ACTIONS(1248), + [sym__list_marker_minus] = ACTIONS(1248), + [sym__list_marker_plus] = ACTIONS(1248), + [sym__list_marker_star] = ACTIONS(1248), + [sym__list_marker_parenthesis] = ACTIONS(1248), + [sym__list_marker_dot] = ACTIONS(1248), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1248), + [sym__fenced_code_block_start_backtick] = ACTIONS(1248), + [sym__fenced_code_block_start_tilde] = ACTIONS(1248), + [sym__blank_line_start] = ACTIONS(1248), + [sym__html_block_1_start] = ACTIONS(1248), + [sym__html_block_2_start] = ACTIONS(1248), + [sym__html_block_3_start] = ACTIONS(1248), + [sym__html_block_4_start] = ACTIONS(1248), + [sym__html_block_5_start] = ACTIONS(1248), + [sym__html_block_6_start] = ACTIONS(1248), + [sym__html_block_7_start] = ACTIONS(1248), + [sym__no_indented_chunk] = ACTIONS(1264), + [sym__pipe_table_start] = ACTIONS(1248), + }, + [121] = { + [sym_link_title] = STATE(724), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_RBRACK] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_PERCENT] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_COMMA] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_DOT] = ACTIONS(1248), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_COLON] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1248), + [anon_sym_BSLASH] = ACTIONS(1248), + [anon_sym_CARET] = ACTIONS(1248), + [anon_sym__] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_RPAREN] = ACTIONS(1248), + [aux_sym__word_token1] = ACTIONS(1248), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1248), + [aux_sym__word_token2] = ACTIONS(1248), + [sym__whitespace] = ACTIONS(1266), + [sym__soft_line_ending] = ACTIONS(1248), + [sym__block_close] = ACTIONS(1248), + [sym__block_quote_start] = ACTIONS(1248), + [sym__indented_chunk_start] = ACTIONS(1248), + [sym_atx_h1_marker] = ACTIONS(1248), + [sym_atx_h2_marker] = ACTIONS(1248), + [sym_atx_h3_marker] = ACTIONS(1248), + [sym_atx_h4_marker] = ACTIONS(1248), + [sym_atx_h5_marker] = ACTIONS(1248), + [sym_atx_h6_marker] = ACTIONS(1248), + [sym__thematic_break] = ACTIONS(1248), + [sym__list_marker_minus] = ACTIONS(1248), + [sym__list_marker_plus] = ACTIONS(1248), + [sym__list_marker_star] = ACTIONS(1248), + [sym__list_marker_parenthesis] = ACTIONS(1248), + [sym__list_marker_dot] = ACTIONS(1248), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1248), + [sym__fenced_code_block_start_backtick] = ACTIONS(1248), + [sym__fenced_code_block_start_tilde] = ACTIONS(1248), + [sym__blank_line_start] = ACTIONS(1248), + [sym__html_block_1_start] = ACTIONS(1248), + [sym__html_block_2_start] = ACTIONS(1248), + [sym__html_block_3_start] = ACTIONS(1248), + [sym__html_block_4_start] = ACTIONS(1248), + [sym__html_block_5_start] = ACTIONS(1248), + [sym__html_block_6_start] = ACTIONS(1248), + [sym__html_block_7_start] = ACTIONS(1248), + [sym__no_indented_chunk] = ACTIONS(1269), + [sym__pipe_table_start] = ACTIONS(1248), + }, + [122] = { + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_BSLASH] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [aux_sym__word_token1] = ACTIONS(1239), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1239), + [aux_sym__word_token2] = ACTIONS(1239), + [sym__whitespace] = ACTIONS(1239), + [sym__soft_line_ending] = ACTIONS(1239), + [sym__block_close] = ACTIONS(1239), + [sym__block_quote_start] = ACTIONS(1239), + [sym__indented_chunk_start] = ACTIONS(1239), + [sym_atx_h1_marker] = ACTIONS(1239), + [sym_atx_h2_marker] = ACTIONS(1239), + [sym_atx_h3_marker] = ACTIONS(1239), + [sym_atx_h4_marker] = ACTIONS(1239), + [sym_atx_h5_marker] = ACTIONS(1239), + [sym_atx_h6_marker] = ACTIONS(1239), + [sym_setext_h1_underline] = ACTIONS(1239), + [sym_setext_h2_underline] = ACTIONS(1239), + [sym__thematic_break] = ACTIONS(1239), + [sym__list_marker_minus] = ACTIONS(1239), + [sym__list_marker_plus] = ACTIONS(1239), + [sym__list_marker_star] = ACTIONS(1239), + [sym__list_marker_parenthesis] = ACTIONS(1239), + [sym__list_marker_dot] = ACTIONS(1239), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1239), + [sym__fenced_code_block_start_backtick] = ACTIONS(1239), + [sym__fenced_code_block_start_tilde] = ACTIONS(1239), + [sym__blank_line_start] = ACTIONS(1239), + [sym__html_block_1_start] = ACTIONS(1239), + [sym__html_block_2_start] = ACTIONS(1239), + [sym__html_block_3_start] = ACTIONS(1239), + [sym__html_block_4_start] = ACTIONS(1239), + [sym__html_block_5_start] = ACTIONS(1239), + [sym__html_block_6_start] = ACTIONS(1239), + [sym__html_block_7_start] = ACTIONS(1239), + [sym__pipe_table_start] = ACTIONS(1239), + }, + [123] = { + [ts_builtin_sym_end] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_BSLASH] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [aux_sym__word_token1] = ACTIONS(1185), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1185), + [aux_sym__word_token2] = ACTIONS(1185), + [sym__whitespace] = ACTIONS(1185), + [sym__soft_line_ending] = ACTIONS(1185), + [sym__block_quote_start] = ACTIONS(1185), + [sym__indented_chunk_start] = ACTIONS(1185), + [sym_atx_h1_marker] = ACTIONS(1185), + [sym_atx_h2_marker] = ACTIONS(1185), + [sym_atx_h3_marker] = ACTIONS(1185), + [sym_atx_h4_marker] = ACTIONS(1185), + [sym_atx_h5_marker] = ACTIONS(1185), + [sym_atx_h6_marker] = ACTIONS(1185), + [sym_setext_h1_underline] = ACTIONS(1185), + [sym_setext_h2_underline] = ACTIONS(1185), + [sym__thematic_break] = ACTIONS(1185), + [sym__list_marker_minus] = ACTIONS(1185), + [sym__list_marker_plus] = ACTIONS(1185), + [sym__list_marker_star] = ACTIONS(1185), + [sym__list_marker_parenthesis] = ACTIONS(1185), + [sym__list_marker_dot] = ACTIONS(1185), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1185), + [sym__fenced_code_block_start_tilde] = ACTIONS(1185), + [sym__blank_line_start] = ACTIONS(1185), + [sym__html_block_1_start] = ACTIONS(1185), + [sym__html_block_2_start] = ACTIONS(1185), + [sym__html_block_3_start] = ACTIONS(1185), + [sym__html_block_4_start] = ACTIONS(1185), + [sym__html_block_5_start] = ACTIONS(1185), + [sym__html_block_6_start] = ACTIONS(1185), + [sym__html_block_7_start] = ACTIONS(1185), + [sym__pipe_table_start] = ACTIONS(1185), + }, + [124] = { + [ts_builtin_sym_end] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_RBRACK] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_BSLASH] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym__] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [aux_sym__word_token1] = ACTIONS(1133), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1133), + [aux_sym__word_token2] = ACTIONS(1133), + [sym__whitespace] = ACTIONS(1133), + [sym__soft_line_ending] = ACTIONS(1133), + [sym_block_continuation] = ACTIONS(1271), + [sym__block_quote_start] = ACTIONS(1133), + [sym__indented_chunk_start] = ACTIONS(1133), + [sym_atx_h1_marker] = ACTIONS(1133), + [sym_atx_h2_marker] = ACTIONS(1133), + [sym_atx_h3_marker] = ACTIONS(1133), + [sym_atx_h4_marker] = ACTIONS(1133), + [sym_atx_h5_marker] = ACTIONS(1133), + [sym_atx_h6_marker] = ACTIONS(1133), + [sym_setext_h2_underline] = ACTIONS(1133), + [sym__thematic_break] = ACTIONS(1133), + [sym__list_marker_minus] = ACTIONS(1133), + [sym__list_marker_plus] = ACTIONS(1133), + [sym__list_marker_star] = ACTIONS(1133), + [sym__list_marker_parenthesis] = ACTIONS(1133), + [sym__list_marker_dot] = ACTIONS(1133), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1133), + [sym__fenced_code_block_start_backtick] = ACTIONS(1133), + [sym__fenced_code_block_start_tilde] = ACTIONS(1133), + [sym__blank_line_start] = ACTIONS(1133), + [sym__html_block_1_start] = ACTIONS(1133), + [sym__html_block_2_start] = ACTIONS(1133), + [sym__html_block_3_start] = ACTIONS(1133), + [sym__html_block_4_start] = ACTIONS(1133), + [sym__html_block_5_start] = ACTIONS(1133), + [sym__html_block_6_start] = ACTIONS(1133), + [sym__html_block_7_start] = ACTIONS(1133), + [sym__pipe_table_start] = ACTIONS(1133), + }, + [125] = { + [sym_link_title] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym__] = ACTIONS(1195), + [anon_sym_BQUOTE] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1203), + [anon_sym_RPAREN] = ACTIONS(1195), + [aux_sym__word_token1] = ACTIONS(1195), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1195), + [aux_sym__word_token2] = ACTIONS(1195), + [sym__whitespace] = ACTIONS(1273), + [sym__soft_line_ending] = ACTIONS(1195), + [sym__block_quote_start] = ACTIONS(1195), + [sym__indented_chunk_start] = ACTIONS(1195), + [sym_atx_h1_marker] = ACTIONS(1195), + [sym_atx_h2_marker] = ACTIONS(1195), + [sym_atx_h3_marker] = ACTIONS(1195), + [sym_atx_h4_marker] = ACTIONS(1195), + [sym_atx_h5_marker] = ACTIONS(1195), + [sym_atx_h6_marker] = ACTIONS(1195), + [sym__thematic_break] = ACTIONS(1195), + [sym__list_marker_minus] = ACTIONS(1195), + [sym__list_marker_plus] = ACTIONS(1195), + [sym__list_marker_star] = ACTIONS(1195), + [sym__list_marker_parenthesis] = ACTIONS(1195), + [sym__list_marker_dot] = ACTIONS(1195), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1195), + [sym__fenced_code_block_start_backtick] = ACTIONS(1195), + [sym__fenced_code_block_start_tilde] = ACTIONS(1195), + [sym__blank_line_start] = ACTIONS(1195), + [sym__html_block_1_start] = ACTIONS(1195), + [sym__html_block_2_start] = ACTIONS(1195), + [sym__html_block_3_start] = ACTIONS(1195), + [sym__html_block_4_start] = ACTIONS(1195), + [sym__html_block_5_start] = ACTIONS(1195), + [sym__html_block_6_start] = ACTIONS(1195), + [sym__html_block_7_start] = ACTIONS(1195), + [sym__no_indented_chunk] = ACTIONS(1276), + [sym__pipe_table_start] = ACTIONS(1195), + }, + [126] = { + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_GT] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1280), + [anon_sym_PERCENT] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_COMMA] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_DOT] = ACTIONS(1280), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_COLON] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1280), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym__] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_RPAREN] = ACTIONS(1280), + [aux_sym__word_token1] = ACTIONS(1280), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1280), + [aux_sym__word_token2] = ACTIONS(1280), + [sym__whitespace] = ACTIONS(1280), + [sym__soft_line_ending] = ACTIONS(1280), + [sym__block_close] = ACTIONS(1280), + [sym__block_quote_start] = ACTIONS(1280), + [sym__indented_chunk_start] = ACTIONS(1280), + [sym_atx_h1_marker] = ACTIONS(1280), + [sym_atx_h2_marker] = ACTIONS(1280), + [sym_atx_h3_marker] = ACTIONS(1280), + [sym_atx_h4_marker] = ACTIONS(1280), + [sym_atx_h5_marker] = ACTIONS(1280), + [sym_atx_h6_marker] = ACTIONS(1280), + [sym_setext_h1_underline] = ACTIONS(1282), + [sym_setext_h2_underline] = ACTIONS(1284), + [sym__thematic_break] = ACTIONS(1280), + [sym__list_marker_minus] = ACTIONS(1280), + [sym__list_marker_plus] = ACTIONS(1280), + [sym__list_marker_star] = ACTIONS(1280), + [sym__list_marker_parenthesis] = ACTIONS(1280), + [sym__list_marker_dot] = ACTIONS(1280), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1280), + [sym__fenced_code_block_start_backtick] = ACTIONS(1280), + [sym__fenced_code_block_start_tilde] = ACTIONS(1280), + [sym__blank_line_start] = ACTIONS(1280), + [sym__html_block_1_start] = ACTIONS(1280), + [sym__html_block_2_start] = ACTIONS(1280), + [sym__html_block_3_start] = ACTIONS(1280), + [sym__html_block_4_start] = ACTIONS(1280), + [sym__html_block_5_start] = ACTIONS(1280), + [sym__html_block_6_start] = ACTIONS(1280), + [sym__html_block_7_start] = ACTIONS(1280), + [sym__pipe_table_start] = ACTIONS(1280), + }, + [127] = { + [ts_builtin_sym_end] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [anon_sym_POUND] = ACTIONS(1189), + [anon_sym_DOLLAR] = ACTIONS(1189), + [anon_sym_PERCENT] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_COMMA] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1189), + [anon_sym_COLON] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_AT] = ACTIONS(1189), + [anon_sym_BSLASH] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1189), + [anon_sym__] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_RPAREN] = ACTIONS(1189), + [aux_sym__word_token1] = ACTIONS(1189), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1189), + [aux_sym__word_token2] = ACTIONS(1189), + [sym__whitespace] = ACTIONS(1189), + [sym__soft_line_ending] = ACTIONS(1189), + [sym_block_continuation] = ACTIONS(1286), + [sym__block_quote_start] = ACTIONS(1189), + [sym__indented_chunk_start] = ACTIONS(1189), + [sym_atx_h1_marker] = ACTIONS(1189), + [sym_atx_h2_marker] = ACTIONS(1189), + [sym_atx_h3_marker] = ACTIONS(1189), + [sym_atx_h4_marker] = ACTIONS(1189), + [sym_atx_h5_marker] = ACTIONS(1189), + [sym_atx_h6_marker] = ACTIONS(1189), + [sym__thematic_break] = ACTIONS(1189), + [sym__list_marker_minus] = ACTIONS(1189), + [sym__list_marker_plus] = ACTIONS(1189), + [sym__list_marker_star] = ACTIONS(1189), + [sym__list_marker_parenthesis] = ACTIONS(1189), + [sym__list_marker_dot] = ACTIONS(1189), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1189), + [sym__fenced_code_block_start_backtick] = ACTIONS(1189), + [sym__fenced_code_block_start_tilde] = ACTIONS(1189), + [sym__blank_line_start] = ACTIONS(1189), + [sym__html_block_1_start] = ACTIONS(1189), + [sym__html_block_2_start] = ACTIONS(1189), + [sym__html_block_3_start] = ACTIONS(1189), + [sym__html_block_4_start] = ACTIONS(1189), + [sym__html_block_5_start] = ACTIONS(1189), + [sym__html_block_6_start] = ACTIONS(1189), + [sym__html_block_7_start] = ACTIONS(1189), + [sym__no_indented_chunk] = ACTIONS(1189), + [sym__pipe_table_start] = ACTIONS(1189), + }, + [128] = { + [ts_builtin_sym_end] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_GT] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1280), + [anon_sym_PERCENT] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_COMMA] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_DOT] = ACTIONS(1280), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_COLON] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1280), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym__] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_RPAREN] = ACTIONS(1280), + [aux_sym__word_token1] = ACTIONS(1280), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1280), + [aux_sym__word_token2] = ACTIONS(1280), + [sym__whitespace] = ACTIONS(1280), + [sym__soft_line_ending] = ACTIONS(1280), + [sym__block_quote_start] = ACTIONS(1280), + [sym__indented_chunk_start] = ACTIONS(1280), + [sym_atx_h1_marker] = ACTIONS(1280), + [sym_atx_h2_marker] = ACTIONS(1280), + [sym_atx_h3_marker] = ACTIONS(1280), + [sym_atx_h4_marker] = ACTIONS(1280), + [sym_atx_h5_marker] = ACTIONS(1280), + [sym_atx_h6_marker] = ACTIONS(1280), + [sym_setext_h1_underline] = ACTIONS(1288), + [sym_setext_h2_underline] = ACTIONS(1290), + [sym__thematic_break] = ACTIONS(1280), + [sym__list_marker_minus] = ACTIONS(1280), + [sym__list_marker_plus] = ACTIONS(1280), + [sym__list_marker_star] = ACTIONS(1280), + [sym__list_marker_parenthesis] = ACTIONS(1280), + [sym__list_marker_dot] = ACTIONS(1280), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1280), + [sym__fenced_code_block_start_backtick] = ACTIONS(1280), + [sym__fenced_code_block_start_tilde] = ACTIONS(1280), + [sym__blank_line_start] = ACTIONS(1280), + [sym__html_block_1_start] = ACTIONS(1280), + [sym__html_block_2_start] = ACTIONS(1280), + [sym__html_block_3_start] = ACTIONS(1280), + [sym__html_block_4_start] = ACTIONS(1280), + [sym__html_block_5_start] = ACTIONS(1280), + [sym__html_block_6_start] = ACTIONS(1280), + [sym__html_block_7_start] = ACTIONS(1280), + [sym__pipe_table_start] = ACTIONS(1280), + }, + [129] = { + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_RBRACK] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_COMMA] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_DOT] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_COLON] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_AT] = ACTIONS(1294), + [anon_sym_BSLASH] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym__] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [aux_sym__word_token1] = ACTIONS(1294), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1294), + [aux_sym__word_token2] = ACTIONS(1294), + [sym__whitespace] = ACTIONS(1294), + [sym__soft_line_ending] = ACTIONS(1294), + [sym__block_close] = ACTIONS(1294), + [sym_block_continuation] = ACTIONS(1296), + [sym__block_quote_start] = ACTIONS(1294), + [sym__indented_chunk_start] = ACTIONS(1294), + [sym_atx_h1_marker] = ACTIONS(1294), + [sym_atx_h2_marker] = ACTIONS(1294), + [sym_atx_h3_marker] = ACTIONS(1294), + [sym_atx_h4_marker] = ACTIONS(1294), + [sym_atx_h5_marker] = ACTIONS(1294), + [sym_atx_h6_marker] = ACTIONS(1294), + [sym__thematic_break] = ACTIONS(1294), + [sym__list_marker_minus] = ACTIONS(1294), + [sym__list_marker_plus] = ACTIONS(1294), + [sym__list_marker_star] = ACTIONS(1294), + [sym__list_marker_parenthesis] = ACTIONS(1294), + [sym__list_marker_dot] = ACTIONS(1294), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1294), + [sym__fenced_code_block_start_backtick] = ACTIONS(1294), + [sym__fenced_code_block_start_tilde] = ACTIONS(1294), + [sym__blank_line_start] = ACTIONS(1294), + [sym__html_block_1_start] = ACTIONS(1294), + [sym__html_block_2_start] = ACTIONS(1294), + [sym__html_block_3_start] = ACTIONS(1294), + [sym__html_block_4_start] = ACTIONS(1294), + [sym__html_block_5_start] = ACTIONS(1294), + [sym__html_block_6_start] = ACTIONS(1294), + [sym__html_block_7_start] = ACTIONS(1294), + [sym__pipe_table_start] = ACTIONS(1294), + }, + [130] = { + [ts_builtin_sym_end] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_GT] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1298), + [anon_sym_PERCENT] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_COMMA] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_DOT] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(1298), + [anon_sym_COLON] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_EQ] = ACTIONS(1298), + [anon_sym_QMARK] = ACTIONS(1298), + [anon_sym_AT] = ACTIONS(1298), + [anon_sym_BSLASH] = ACTIONS(1298), + [anon_sym_CARET] = ACTIONS(1298), + [anon_sym__] = ACTIONS(1298), + [anon_sym_BQUOTE] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(1298), + [aux_sym__word_token1] = ACTIONS(1298), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1298), + [aux_sym__word_token2] = ACTIONS(1298), + [sym__whitespace] = ACTIONS(1298), + [sym__soft_line_ending] = ACTIONS(1298), + [sym_block_continuation] = ACTIONS(1302), + [sym__block_quote_start] = ACTIONS(1298), + [sym__indented_chunk_start] = ACTIONS(1298), + [sym_atx_h1_marker] = ACTIONS(1298), + [sym_atx_h2_marker] = ACTIONS(1298), + [sym_atx_h3_marker] = ACTIONS(1298), + [sym_atx_h4_marker] = ACTIONS(1298), + [sym_atx_h5_marker] = ACTIONS(1298), + [sym_atx_h6_marker] = ACTIONS(1298), + [sym__thematic_break] = ACTIONS(1298), + [sym__list_marker_minus] = ACTIONS(1298), + [sym__list_marker_plus] = ACTIONS(1298), + [sym__list_marker_star] = ACTIONS(1298), + [sym__list_marker_parenthesis] = ACTIONS(1298), + [sym__list_marker_dot] = ACTIONS(1298), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1298), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1298), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1298), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1298), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1298), + [sym__fenced_code_block_start_backtick] = ACTIONS(1298), + [sym__fenced_code_block_start_tilde] = ACTIONS(1298), + [sym__blank_line_start] = ACTIONS(1298), + [sym__html_block_1_start] = ACTIONS(1298), + [sym__html_block_2_start] = ACTIONS(1298), + [sym__html_block_3_start] = ACTIONS(1298), + [sym__html_block_4_start] = ACTIONS(1298), + [sym__html_block_5_start] = ACTIONS(1298), + [sym__html_block_6_start] = ACTIONS(1298), + [sym__html_block_7_start] = ACTIONS(1298), + [sym__pipe_table_start] = ACTIONS(1298), + }, + [131] = { + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1306), + [anon_sym_PERCENT] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_COMMA] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_DOT] = ACTIONS(1306), + [anon_sym_SLASH] = ACTIONS(1306), + [anon_sym_COLON] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_QMARK] = ACTIONS(1306), + [anon_sym_AT] = ACTIONS(1306), + [anon_sym_BSLASH] = ACTIONS(1306), + [anon_sym_CARET] = ACTIONS(1306), + [anon_sym__] = ACTIONS(1306), + [anon_sym_BQUOTE] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1306), + [aux_sym__word_token1] = ACTIONS(1306), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1306), + [aux_sym__word_token2] = ACTIONS(1306), + [sym__whitespace] = ACTIONS(1306), + [sym__soft_line_ending] = ACTIONS(1306), + [sym__block_close] = ACTIONS(1306), + [sym_block_continuation] = ACTIONS(1308), + [sym__block_quote_start] = ACTIONS(1306), + [sym__indented_chunk_start] = ACTIONS(1306), + [sym_atx_h1_marker] = ACTIONS(1306), + [sym_atx_h2_marker] = ACTIONS(1306), + [sym_atx_h3_marker] = ACTIONS(1306), + [sym_atx_h4_marker] = ACTIONS(1306), + [sym_atx_h5_marker] = ACTIONS(1306), + [sym_atx_h6_marker] = ACTIONS(1306), + [sym__thematic_break] = ACTIONS(1306), + [sym__list_marker_minus] = ACTIONS(1306), + [sym__list_marker_plus] = ACTIONS(1306), + [sym__list_marker_star] = ACTIONS(1306), + [sym__list_marker_parenthesis] = ACTIONS(1306), + [sym__list_marker_dot] = ACTIONS(1306), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1306), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1306), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1306), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1306), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1306), + [sym__fenced_code_block_start_backtick] = ACTIONS(1306), + [sym__fenced_code_block_start_tilde] = ACTIONS(1306), + [sym__blank_line_start] = ACTIONS(1306), + [sym__html_block_1_start] = ACTIONS(1306), + [sym__html_block_2_start] = ACTIONS(1306), + [sym__html_block_3_start] = ACTIONS(1306), + [sym__html_block_4_start] = ACTIONS(1306), + [sym__html_block_5_start] = ACTIONS(1306), + [sym__html_block_6_start] = ACTIONS(1306), + [sym__html_block_7_start] = ACTIONS(1306), + [sym__pipe_table_start] = ACTIONS(1306), + }, + [132] = { + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_COLON] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym__] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1312), + [aux_sym__word_token1] = ACTIONS(1312), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1312), + [aux_sym__word_token2] = ACTIONS(1312), + [sym__whitespace] = ACTIONS(1312), + [sym__soft_line_ending] = ACTIONS(1312), + [sym__block_close] = ACTIONS(1312), + [sym_block_continuation] = ACTIONS(1314), + [sym__block_quote_start] = ACTIONS(1312), + [sym__indented_chunk_start] = ACTIONS(1312), + [sym_atx_h1_marker] = ACTIONS(1312), + [sym_atx_h2_marker] = ACTIONS(1312), + [sym_atx_h3_marker] = ACTIONS(1312), + [sym_atx_h4_marker] = ACTIONS(1312), + [sym_atx_h5_marker] = ACTIONS(1312), + [sym_atx_h6_marker] = ACTIONS(1312), + [sym__thematic_break] = ACTIONS(1312), + [sym__list_marker_minus] = ACTIONS(1312), + [sym__list_marker_plus] = ACTIONS(1312), + [sym__list_marker_star] = ACTIONS(1312), + [sym__list_marker_parenthesis] = ACTIONS(1312), + [sym__list_marker_dot] = ACTIONS(1312), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1312), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1312), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1312), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1312), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1312), + [sym__fenced_code_block_start_backtick] = ACTIONS(1312), + [sym__fenced_code_block_start_tilde] = ACTIONS(1312), + [sym__blank_line_start] = ACTIONS(1312), + [sym__html_block_1_start] = ACTIONS(1312), + [sym__html_block_2_start] = ACTIONS(1312), + [sym__html_block_3_start] = ACTIONS(1312), + [sym__html_block_4_start] = ACTIONS(1312), + [sym__html_block_5_start] = ACTIONS(1312), + [sym__html_block_6_start] = ACTIONS(1312), + [sym__html_block_7_start] = ACTIONS(1312), + [sym__pipe_table_start] = ACTIONS(1312), + }, + [133] = { + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_COMMA] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_DOT] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), + [anon_sym_COLON] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1318), + [anon_sym_AT] = ACTIONS(1318), + [anon_sym_BSLASH] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1318), + [anon_sym__] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [aux_sym__word_token1] = ACTIONS(1318), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1318), + [aux_sym__word_token2] = ACTIONS(1318), + [sym__whitespace] = ACTIONS(1318), + [sym__soft_line_ending] = ACTIONS(1318), + [sym__block_close] = ACTIONS(1318), + [sym__block_quote_start] = ACTIONS(1318), + [sym__indented_chunk_start] = ACTIONS(1318), + [sym_atx_h1_marker] = ACTIONS(1318), + [sym_atx_h2_marker] = ACTIONS(1318), + [sym_atx_h3_marker] = ACTIONS(1318), + [sym_atx_h4_marker] = ACTIONS(1318), + [sym_atx_h5_marker] = ACTIONS(1318), + [sym_atx_h6_marker] = ACTIONS(1318), + [sym__thematic_break] = ACTIONS(1318), + [sym__list_marker_minus] = ACTIONS(1318), + [sym__list_marker_plus] = ACTIONS(1318), + [sym__list_marker_star] = ACTIONS(1318), + [sym__list_marker_parenthesis] = ACTIONS(1318), + [sym__list_marker_dot] = ACTIONS(1318), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1318), + [sym__fenced_code_block_start_backtick] = ACTIONS(1318), + [sym__fenced_code_block_start_tilde] = ACTIONS(1318), + [sym__blank_line_start] = ACTIONS(1318), + [sym__html_block_1_start] = ACTIONS(1318), + [sym__html_block_2_start] = ACTIONS(1318), + [sym__html_block_3_start] = ACTIONS(1318), + [sym__html_block_4_start] = ACTIONS(1318), + [sym__html_block_5_start] = ACTIONS(1318), + [sym__html_block_6_start] = ACTIONS(1318), + [sym__html_block_7_start] = ACTIONS(1318), + [sym__no_indented_chunk] = ACTIONS(1318), + [sym__pipe_table_start] = ACTIONS(1318), + }, + [134] = { + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [anon_sym_POUND] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_PERCENT] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_DOT] = ACTIONS(1322), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1322), + [anon_sym_AT] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1322), + [anon_sym_CARET] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(1322), + [aux_sym__word_token1] = ACTIONS(1322), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1322), + [aux_sym__word_token2] = ACTIONS(1322), + [sym__whitespace] = ACTIONS(1322), + [sym__soft_line_ending] = ACTIONS(1322), + [sym__block_close] = ACTIONS(1322), + [sym_block_continuation] = ACTIONS(1324), + [sym__block_quote_start] = ACTIONS(1322), + [sym__indented_chunk_start] = ACTIONS(1322), + [sym_atx_h1_marker] = ACTIONS(1322), + [sym_atx_h2_marker] = ACTIONS(1322), + [sym_atx_h3_marker] = ACTIONS(1322), + [sym_atx_h4_marker] = ACTIONS(1322), + [sym_atx_h5_marker] = ACTIONS(1322), + [sym_atx_h6_marker] = ACTIONS(1322), + [sym__thematic_break] = ACTIONS(1322), + [sym__list_marker_minus] = ACTIONS(1322), + [sym__list_marker_plus] = ACTIONS(1322), + [sym__list_marker_star] = ACTIONS(1322), + [sym__list_marker_parenthesis] = ACTIONS(1322), + [sym__list_marker_dot] = ACTIONS(1322), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1322), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1322), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1322), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1322), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1322), + [sym__fenced_code_block_start_backtick] = ACTIONS(1322), + [sym__fenced_code_block_start_tilde] = ACTIONS(1322), + [sym__blank_line_start] = ACTIONS(1322), + [sym__html_block_1_start] = ACTIONS(1322), + [sym__html_block_2_start] = ACTIONS(1322), + [sym__html_block_3_start] = ACTIONS(1322), + [sym__html_block_4_start] = ACTIONS(1322), + [sym__html_block_5_start] = ACTIONS(1322), + [sym__html_block_6_start] = ACTIONS(1322), + [sym__html_block_7_start] = ACTIONS(1322), + [sym__pipe_table_start] = ACTIONS(1322), + }, + [135] = { + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_BSLASH] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [aux_sym__word_token1] = ACTIONS(1185), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1185), + [aux_sym__word_token2] = ACTIONS(1185), + [sym__whitespace] = ACTIONS(1185), + [sym__soft_line_ending] = ACTIONS(1185), + [sym__block_close] = ACTIONS(1185), + [sym__block_quote_start] = ACTIONS(1185), + [sym__indented_chunk_start] = ACTIONS(1185), + [sym_atx_h1_marker] = ACTIONS(1185), + [sym_atx_h2_marker] = ACTIONS(1185), + [sym_atx_h3_marker] = ACTIONS(1185), + [sym_atx_h4_marker] = ACTIONS(1185), + [sym_atx_h5_marker] = ACTIONS(1185), + [sym_atx_h6_marker] = ACTIONS(1185), + [sym_setext_h2_underline] = ACTIONS(1185), + [sym__thematic_break] = ACTIONS(1185), + [sym__list_marker_minus] = ACTIONS(1185), + [sym__list_marker_plus] = ACTIONS(1185), + [sym__list_marker_star] = ACTIONS(1185), + [sym__list_marker_parenthesis] = ACTIONS(1185), + [sym__list_marker_dot] = ACTIONS(1185), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1185), + [sym__fenced_code_block_start_tilde] = ACTIONS(1185), + [sym__blank_line_start] = ACTIONS(1185), + [sym__html_block_1_start] = ACTIONS(1185), + [sym__html_block_2_start] = ACTIONS(1185), + [sym__html_block_3_start] = ACTIONS(1185), + [sym__html_block_4_start] = ACTIONS(1185), + [sym__html_block_5_start] = ACTIONS(1185), + [sym__html_block_6_start] = ACTIONS(1185), + [sym__html_block_7_start] = ACTIONS(1185), + [sym__pipe_table_start] = ACTIONS(1185), + }, + [136] = { + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_RBRACK] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_GT] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [anon_sym_POUND] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1328), + [anon_sym_PERCENT] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_COMMA] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_DOT] = ACTIONS(1328), + [anon_sym_SLASH] = ACTIONS(1328), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_EQ] = ACTIONS(1328), + [anon_sym_QMARK] = ACTIONS(1328), + [anon_sym_AT] = ACTIONS(1328), + [anon_sym_BSLASH] = ACTIONS(1328), + [anon_sym_CARET] = ACTIONS(1328), + [anon_sym__] = ACTIONS(1328), + [anon_sym_BQUOTE] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(1328), + [aux_sym__word_token1] = ACTIONS(1328), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1328), + [aux_sym__word_token2] = ACTIONS(1328), + [sym__whitespace] = ACTIONS(1328), + [sym__soft_line_ending] = ACTIONS(1328), + [sym__block_close] = ACTIONS(1328), + [sym_block_continuation] = ACTIONS(1330), + [sym__block_quote_start] = ACTIONS(1328), + [sym__indented_chunk_start] = ACTIONS(1328), + [sym_atx_h1_marker] = ACTIONS(1328), + [sym_atx_h2_marker] = ACTIONS(1328), + [sym_atx_h3_marker] = ACTIONS(1328), + [sym_atx_h4_marker] = ACTIONS(1328), + [sym_atx_h5_marker] = ACTIONS(1328), + [sym_atx_h6_marker] = ACTIONS(1328), + [sym__thematic_break] = ACTIONS(1328), + [sym__list_marker_minus] = ACTIONS(1328), + [sym__list_marker_plus] = ACTIONS(1328), + [sym__list_marker_star] = ACTIONS(1328), + [sym__list_marker_parenthesis] = ACTIONS(1328), + [sym__list_marker_dot] = ACTIONS(1328), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1328), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1328), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1328), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1328), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1328), + [sym__fenced_code_block_start_backtick] = ACTIONS(1328), + [sym__fenced_code_block_start_tilde] = ACTIONS(1328), + [sym__blank_line_start] = ACTIONS(1328), + [sym__html_block_1_start] = ACTIONS(1328), + [sym__html_block_2_start] = ACTIONS(1328), + [sym__html_block_3_start] = ACTIONS(1328), + [sym__html_block_4_start] = ACTIONS(1328), + [sym__html_block_5_start] = ACTIONS(1328), + [sym__html_block_6_start] = ACTIONS(1328), + [sym__html_block_7_start] = ACTIONS(1328), + [sym__pipe_table_start] = ACTIONS(1328), + }, + [137] = { + [ts_builtin_sym_end] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [anon_sym_POUND] = ACTIONS(1189), + [anon_sym_DOLLAR] = ACTIONS(1189), + [anon_sym_PERCENT] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_COMMA] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1189), + [anon_sym_COLON] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_AT] = ACTIONS(1189), + [anon_sym_BSLASH] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1189), + [anon_sym__] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_RPAREN] = ACTIONS(1189), + [aux_sym__word_token1] = ACTIONS(1189), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1189), + [aux_sym__word_token2] = ACTIONS(1189), + [sym__whitespace] = ACTIONS(1189), + [sym__soft_line_ending] = ACTIONS(1189), + [sym_block_continuation] = ACTIONS(1332), + [sym__block_quote_start] = ACTIONS(1189), + [sym__indented_chunk_start] = ACTIONS(1189), + [sym_atx_h1_marker] = ACTIONS(1189), + [sym_atx_h2_marker] = ACTIONS(1189), + [sym_atx_h3_marker] = ACTIONS(1189), + [sym_atx_h4_marker] = ACTIONS(1189), + [sym_atx_h5_marker] = ACTIONS(1189), + [sym_atx_h6_marker] = ACTIONS(1189), + [sym__thematic_break] = ACTIONS(1189), + [sym__list_marker_minus] = ACTIONS(1189), + [sym__list_marker_plus] = ACTIONS(1189), + [sym__list_marker_star] = ACTIONS(1189), + [sym__list_marker_parenthesis] = ACTIONS(1189), + [sym__list_marker_dot] = ACTIONS(1189), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1189), + [sym__fenced_code_block_start_backtick] = ACTIONS(1189), + [sym__fenced_code_block_start_tilde] = ACTIONS(1189), + [sym__blank_line_start] = ACTIONS(1189), + [sym__html_block_1_start] = ACTIONS(1189), + [sym__html_block_2_start] = ACTIONS(1189), + [sym__html_block_3_start] = ACTIONS(1189), + [sym__html_block_4_start] = ACTIONS(1189), + [sym__html_block_5_start] = ACTIONS(1189), + [sym__html_block_6_start] = ACTIONS(1189), + [sym__html_block_7_start] = ACTIONS(1189), + [sym__pipe_table_start] = ACTIONS(1189), + }, + [138] = { + [ts_builtin_sym_end] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_COMMA] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_DOT] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), + [anon_sym_COLON] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1318), + [anon_sym_AT] = ACTIONS(1318), + [anon_sym_BSLASH] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1318), + [anon_sym__] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [aux_sym__word_token1] = ACTIONS(1318), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1318), + [aux_sym__word_token2] = ACTIONS(1318), + [sym__whitespace] = ACTIONS(1318), + [sym__soft_line_ending] = ACTIONS(1318), + [sym__block_quote_start] = ACTIONS(1318), + [sym__indented_chunk_start] = ACTIONS(1318), + [sym_atx_h1_marker] = ACTIONS(1318), + [sym_atx_h2_marker] = ACTIONS(1318), + [sym_atx_h3_marker] = ACTIONS(1318), + [sym_atx_h4_marker] = ACTIONS(1318), + [sym_atx_h5_marker] = ACTIONS(1318), + [sym_atx_h6_marker] = ACTIONS(1318), + [sym__thematic_break] = ACTIONS(1318), + [sym__list_marker_minus] = ACTIONS(1318), + [sym__list_marker_plus] = ACTIONS(1318), + [sym__list_marker_star] = ACTIONS(1318), + [sym__list_marker_parenthesis] = ACTIONS(1318), + [sym__list_marker_dot] = ACTIONS(1318), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1318), + [sym__fenced_code_block_start_backtick] = ACTIONS(1318), + [sym__fenced_code_block_start_tilde] = ACTIONS(1318), + [sym__blank_line_start] = ACTIONS(1318), + [sym__html_block_1_start] = ACTIONS(1318), + [sym__html_block_2_start] = ACTIONS(1318), + [sym__html_block_3_start] = ACTIONS(1318), + [sym__html_block_4_start] = ACTIONS(1318), + [sym__html_block_5_start] = ACTIONS(1318), + [sym__html_block_6_start] = ACTIONS(1318), + [sym__html_block_7_start] = ACTIONS(1318), + [sym__no_indented_chunk] = ACTIONS(1318), + [sym__pipe_table_start] = ACTIONS(1318), + }, + [139] = { + [ts_builtin_sym_end] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_BSLASH] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [aux_sym__word_token1] = ACTIONS(1185), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1185), + [aux_sym__word_token2] = ACTIONS(1185), + [sym__whitespace] = ACTIONS(1185), + [sym__soft_line_ending] = ACTIONS(1185), + [sym__block_quote_start] = ACTIONS(1185), + [sym__indented_chunk_start] = ACTIONS(1185), + [sym_atx_h1_marker] = ACTIONS(1185), + [sym_atx_h2_marker] = ACTIONS(1185), + [sym_atx_h3_marker] = ACTIONS(1185), + [sym_atx_h4_marker] = ACTIONS(1185), + [sym_atx_h5_marker] = ACTIONS(1185), + [sym_atx_h6_marker] = ACTIONS(1185), + [sym_setext_h2_underline] = ACTIONS(1185), + [sym__thematic_break] = ACTIONS(1185), + [sym__list_marker_minus] = ACTIONS(1185), + [sym__list_marker_plus] = ACTIONS(1185), + [sym__list_marker_star] = ACTIONS(1185), + [sym__list_marker_parenthesis] = ACTIONS(1185), + [sym__list_marker_dot] = ACTIONS(1185), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1185), + [sym__fenced_code_block_start_tilde] = ACTIONS(1185), + [sym__blank_line_start] = ACTIONS(1185), + [sym__html_block_1_start] = ACTIONS(1185), + [sym__html_block_2_start] = ACTIONS(1185), + [sym__html_block_3_start] = ACTIONS(1185), + [sym__html_block_4_start] = ACTIONS(1185), + [sym__html_block_5_start] = ACTIONS(1185), + [sym__html_block_6_start] = ACTIONS(1185), + [sym__html_block_7_start] = ACTIONS(1185), + [sym__pipe_table_start] = ACTIONS(1185), + }, + [140] = { + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_RBRACK] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(1336), + [anon_sym_COLON] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym__] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_RPAREN] = ACTIONS(1336), + [aux_sym__word_token1] = ACTIONS(1336), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1336), + [aux_sym__word_token2] = ACTIONS(1336), + [sym__whitespace] = ACTIONS(1336), + [sym__soft_line_ending] = ACTIONS(1336), + [sym__block_close] = ACTIONS(1336), + [sym_block_continuation] = ACTIONS(1338), + [sym__block_quote_start] = ACTIONS(1336), + [sym__indented_chunk_start] = ACTIONS(1336), + [sym_atx_h1_marker] = ACTIONS(1336), + [sym_atx_h2_marker] = ACTIONS(1336), + [sym_atx_h3_marker] = ACTIONS(1336), + [sym_atx_h4_marker] = ACTIONS(1336), + [sym_atx_h5_marker] = ACTIONS(1336), + [sym_atx_h6_marker] = ACTIONS(1336), + [sym__thematic_break] = ACTIONS(1336), + [sym__list_marker_minus] = ACTIONS(1336), + [sym__list_marker_plus] = ACTIONS(1336), + [sym__list_marker_star] = ACTIONS(1336), + [sym__list_marker_parenthesis] = ACTIONS(1336), + [sym__list_marker_dot] = ACTIONS(1336), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1336), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1336), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1336), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1336), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1336), + [sym__fenced_code_block_start_backtick] = ACTIONS(1336), + [sym__fenced_code_block_start_tilde] = ACTIONS(1336), + [sym__blank_line_start] = ACTIONS(1336), + [sym__html_block_1_start] = ACTIONS(1336), + [sym__html_block_2_start] = ACTIONS(1336), + [sym__html_block_3_start] = ACTIONS(1336), + [sym__html_block_4_start] = ACTIONS(1336), + [sym__html_block_5_start] = ACTIONS(1336), + [sym__html_block_6_start] = ACTIONS(1336), + [sym__html_block_7_start] = ACTIONS(1336), + [sym__pipe_table_start] = ACTIONS(1336), + }, + [141] = { + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [anon_sym_POUND] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_COMMA] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_DOT] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_COLON] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_AT] = ACTIONS(1342), + [anon_sym_BSLASH] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym__] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [aux_sym__word_token1] = ACTIONS(1342), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1342), + [aux_sym__word_token2] = ACTIONS(1342), + [sym__whitespace] = ACTIONS(1342), + [sym__soft_line_ending] = ACTIONS(1342), + [sym__block_close] = ACTIONS(1342), + [sym_block_continuation] = ACTIONS(1344), + [sym__block_quote_start] = ACTIONS(1342), + [sym__indented_chunk_start] = ACTIONS(1342), + [sym_atx_h1_marker] = ACTIONS(1342), + [sym_atx_h2_marker] = ACTIONS(1342), + [sym_atx_h3_marker] = ACTIONS(1342), + [sym_atx_h4_marker] = ACTIONS(1342), + [sym_atx_h5_marker] = ACTIONS(1342), + [sym_atx_h6_marker] = ACTIONS(1342), + [sym__thematic_break] = ACTIONS(1342), + [sym__list_marker_minus] = ACTIONS(1342), + [sym__list_marker_plus] = ACTIONS(1342), + [sym__list_marker_star] = ACTIONS(1342), + [sym__list_marker_parenthesis] = ACTIONS(1342), + [sym__list_marker_dot] = ACTIONS(1342), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), + [sym__fenced_code_block_start_backtick] = ACTIONS(1342), + [sym__fenced_code_block_start_tilde] = ACTIONS(1342), + [sym__blank_line_start] = ACTIONS(1342), + [sym__html_block_1_start] = ACTIONS(1342), + [sym__html_block_2_start] = ACTIONS(1342), + [sym__html_block_3_start] = ACTIONS(1342), + [sym__html_block_4_start] = ACTIONS(1342), + [sym__html_block_5_start] = ACTIONS(1342), + [sym__html_block_6_start] = ACTIONS(1342), + [sym__html_block_7_start] = ACTIONS(1342), + [sym__pipe_table_start] = ACTIONS(1342), + }, + [142] = { + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_GT] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1298), + [anon_sym_PERCENT] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_COMMA] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_DOT] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(1298), + [anon_sym_COLON] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_EQ] = ACTIONS(1298), + [anon_sym_QMARK] = ACTIONS(1298), + [anon_sym_AT] = ACTIONS(1298), + [anon_sym_BSLASH] = ACTIONS(1298), + [anon_sym_CARET] = ACTIONS(1298), + [anon_sym__] = ACTIONS(1298), + [anon_sym_BQUOTE] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_RPAREN] = ACTIONS(1298), + [aux_sym__word_token1] = ACTIONS(1298), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1298), + [aux_sym__word_token2] = ACTIONS(1298), + [sym__whitespace] = ACTIONS(1298), + [sym__soft_line_ending] = ACTIONS(1298), + [sym__block_close] = ACTIONS(1298), + [sym_block_continuation] = ACTIONS(1346), + [sym__block_quote_start] = ACTIONS(1298), + [sym__indented_chunk_start] = ACTIONS(1298), + [sym_atx_h1_marker] = ACTIONS(1298), + [sym_atx_h2_marker] = ACTIONS(1298), + [sym_atx_h3_marker] = ACTIONS(1298), + [sym_atx_h4_marker] = ACTIONS(1298), + [sym_atx_h5_marker] = ACTIONS(1298), + [sym_atx_h6_marker] = ACTIONS(1298), + [sym__thematic_break] = ACTIONS(1298), + [sym__list_marker_minus] = ACTIONS(1298), + [sym__list_marker_plus] = ACTIONS(1298), + [sym__list_marker_star] = ACTIONS(1298), + [sym__list_marker_parenthesis] = ACTIONS(1298), + [sym__list_marker_dot] = ACTIONS(1298), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1298), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1298), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1298), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1298), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1298), + [sym__fenced_code_block_start_backtick] = ACTIONS(1298), + [sym__fenced_code_block_start_tilde] = ACTIONS(1298), + [sym__blank_line_start] = ACTIONS(1298), + [sym__html_block_1_start] = ACTIONS(1298), + [sym__html_block_2_start] = ACTIONS(1298), + [sym__html_block_3_start] = ACTIONS(1298), + [sym__html_block_4_start] = ACTIONS(1298), + [sym__html_block_5_start] = ACTIONS(1298), + [sym__html_block_6_start] = ACTIONS(1298), + [sym__html_block_7_start] = ACTIONS(1298), + [sym__pipe_table_start] = ACTIONS(1298), + }, + [143] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [aux_sym__word_token1] = ACTIONS(1348), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1348), + [aux_sym__word_token2] = ACTIONS(1348), + [sym__whitespace] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym_block_continuation] = ACTIONS(1352), + [sym__block_quote_start] = ACTIONS(1348), + [sym__indented_chunk_start] = ACTIONS(1348), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(1348), + [sym__html_block_1_start] = ACTIONS(1348), + [sym__html_block_2_start] = ACTIONS(1348), + [sym__html_block_3_start] = ACTIONS(1348), + [sym__html_block_4_start] = ACTIONS(1348), + [sym__html_block_5_start] = ACTIONS(1348), + [sym__html_block_6_start] = ACTIONS(1348), + [sym__html_block_7_start] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + }, + [144] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DOT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_AT] = ACTIONS(1354), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym__] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [aux_sym__word_token1] = ACTIONS(1354), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1354), + [aux_sym__word_token2] = ACTIONS(1354), + [sym__whitespace] = ACTIONS(1354), + [sym__soft_line_ending] = ACTIONS(1354), + [sym_block_continuation] = ACTIONS(1358), + [sym__block_quote_start] = ACTIONS(1354), + [sym__indented_chunk_start] = ACTIONS(1354), + [sym_atx_h1_marker] = ACTIONS(1354), + [sym_atx_h2_marker] = ACTIONS(1354), + [sym_atx_h3_marker] = ACTIONS(1354), + [sym_atx_h4_marker] = ACTIONS(1354), + [sym_atx_h5_marker] = ACTIONS(1354), + [sym_atx_h6_marker] = ACTIONS(1354), + [sym__thematic_break] = ACTIONS(1354), + [sym__list_marker_minus] = ACTIONS(1354), + [sym__list_marker_plus] = ACTIONS(1354), + [sym__list_marker_star] = ACTIONS(1354), + [sym__list_marker_parenthesis] = ACTIONS(1354), + [sym__list_marker_dot] = ACTIONS(1354), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), + [sym__fenced_code_block_start_backtick] = ACTIONS(1354), + [sym__fenced_code_block_start_tilde] = ACTIONS(1354), + [sym__blank_line_start] = ACTIONS(1354), + [sym__html_block_1_start] = ACTIONS(1354), + [sym__html_block_2_start] = ACTIONS(1354), + [sym__html_block_3_start] = ACTIONS(1354), + [sym__html_block_4_start] = ACTIONS(1354), + [sym__html_block_5_start] = ACTIONS(1354), + [sym__html_block_6_start] = ACTIONS(1354), + [sym__html_block_7_start] = ACTIONS(1354), + [sym__pipe_table_start] = ACTIONS(1354), + }, + [145] = { + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_COLON] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_AT] = ACTIONS(1362), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym__] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [aux_sym__word_token1] = ACTIONS(1362), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1362), + [aux_sym__word_token2] = ACTIONS(1362), + [sym__whitespace] = ACTIONS(1362), + [sym__soft_line_ending] = ACTIONS(1362), + [sym__block_close] = ACTIONS(1362), + [sym_block_continuation] = ACTIONS(1364), + [sym__block_quote_start] = ACTIONS(1362), + [sym__indented_chunk_start] = ACTIONS(1362), + [sym_atx_h1_marker] = ACTIONS(1362), + [sym_atx_h2_marker] = ACTIONS(1362), + [sym_atx_h3_marker] = ACTIONS(1362), + [sym_atx_h4_marker] = ACTIONS(1362), + [sym_atx_h5_marker] = ACTIONS(1362), + [sym_atx_h6_marker] = ACTIONS(1362), + [sym__thematic_break] = ACTIONS(1362), + [sym__list_marker_minus] = ACTIONS(1362), + [sym__list_marker_plus] = ACTIONS(1362), + [sym__list_marker_star] = ACTIONS(1362), + [sym__list_marker_parenthesis] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(1362), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), + [sym__fenced_code_block_start_backtick] = ACTIONS(1362), + [sym__fenced_code_block_start_tilde] = ACTIONS(1362), + [sym__blank_line_start] = ACTIONS(1362), + [sym__html_block_1_start] = ACTIONS(1362), + [sym__html_block_2_start] = ACTIONS(1362), + [sym__html_block_3_start] = ACTIONS(1362), + [sym__html_block_4_start] = ACTIONS(1362), + [sym__html_block_5_start] = ACTIONS(1362), + [sym__html_block_6_start] = ACTIONS(1362), + [sym__html_block_7_start] = ACTIONS(1362), + [sym__pipe_table_start] = ACTIONS(1362), + }, + [146] = { + [ts_builtin_sym_end] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [aux_sym__word_token1] = ACTIONS(1366), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1366), + [aux_sym__word_token2] = ACTIONS(1366), + [sym__whitespace] = ACTIONS(1366), + [sym__soft_line_ending] = ACTIONS(1366), + [sym_block_continuation] = ACTIONS(1370), + [sym__block_quote_start] = ACTIONS(1366), + [sym__indented_chunk_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(1366), + [sym_atx_h6_marker] = ACTIONS(1366), + [sym__thematic_break] = ACTIONS(1366), + [sym__list_marker_minus] = ACTIONS(1366), + [sym__list_marker_plus] = ACTIONS(1366), + [sym__list_marker_star] = ACTIONS(1366), + [sym__list_marker_parenthesis] = ACTIONS(1366), + [sym__list_marker_dot] = ACTIONS(1366), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1366), + [sym__fenced_code_block_start_backtick] = ACTIONS(1366), + [sym__fenced_code_block_start_tilde] = ACTIONS(1366), + [sym__blank_line_start] = ACTIONS(1366), + [sym__html_block_1_start] = ACTIONS(1366), + [sym__html_block_2_start] = ACTIONS(1366), + [sym__html_block_3_start] = ACTIONS(1366), + [sym__html_block_4_start] = ACTIONS(1366), + [sym__html_block_5_start] = ACTIONS(1366), + [sym__html_block_6_start] = ACTIONS(1366), + [sym__html_block_7_start] = ACTIONS(1366), + [sym__pipe_table_start] = ACTIONS(1366), + }, + [147] = { + [ts_builtin_sym_end] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_RBRACK] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_COMMA] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_COLON] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_QMARK] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1372), + [anon_sym_BSLASH] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1372), + [anon_sym__] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1372), + [aux_sym__word_token1] = ACTIONS(1372), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1372), + [aux_sym__word_token2] = ACTIONS(1372), + [sym__whitespace] = ACTIONS(1372), + [sym__soft_line_ending] = ACTIONS(1372), + [sym_block_continuation] = ACTIONS(1376), + [sym__block_quote_start] = ACTIONS(1372), + [sym__indented_chunk_start] = ACTIONS(1372), + [sym_atx_h1_marker] = ACTIONS(1372), + [sym_atx_h2_marker] = ACTIONS(1372), + [sym_atx_h3_marker] = ACTIONS(1372), + [sym_atx_h4_marker] = ACTIONS(1372), + [sym_atx_h5_marker] = ACTIONS(1372), + [sym_atx_h6_marker] = ACTIONS(1372), + [sym__thematic_break] = ACTIONS(1372), + [sym__list_marker_minus] = ACTIONS(1372), + [sym__list_marker_plus] = ACTIONS(1372), + [sym__list_marker_star] = ACTIONS(1372), + [sym__list_marker_parenthesis] = ACTIONS(1372), + [sym__list_marker_dot] = ACTIONS(1372), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1372), + [sym__fenced_code_block_start_backtick] = ACTIONS(1372), + [sym__fenced_code_block_start_tilde] = ACTIONS(1372), + [sym__blank_line_start] = ACTIONS(1372), + [sym__html_block_1_start] = ACTIONS(1372), + [sym__html_block_2_start] = ACTIONS(1372), + [sym__html_block_3_start] = ACTIONS(1372), + [sym__html_block_4_start] = ACTIONS(1372), + [sym__html_block_5_start] = ACTIONS(1372), + [sym__html_block_6_start] = ACTIONS(1372), + [sym__html_block_7_start] = ACTIONS(1372), + [sym__pipe_table_start] = ACTIONS(1372), + }, + [148] = { + [sym__blank_line] = STATE(894), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_GT] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1280), + [anon_sym_PERCENT] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_COMMA] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_DOT] = ACTIONS(1280), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_COLON] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1280), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym__] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_RPAREN] = ACTIONS(1280), + [aux_sym__word_token1] = ACTIONS(1280), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1280), + [aux_sym__word_token2] = ACTIONS(1280), + [sym__whitespace] = ACTIONS(1280), + [sym__soft_line_ending] = ACTIONS(1280), + [sym__block_close] = ACTIONS(1280), + [sym__block_quote_start] = ACTIONS(1280), + [sym__indented_chunk_start] = ACTIONS(1280), + [sym_atx_h1_marker] = ACTIONS(1280), + [sym_atx_h2_marker] = ACTIONS(1280), + [sym_atx_h3_marker] = ACTIONS(1280), + [sym_atx_h4_marker] = ACTIONS(1280), + [sym_atx_h5_marker] = ACTIONS(1280), + [sym_atx_h6_marker] = ACTIONS(1280), + [sym__thematic_break] = ACTIONS(1280), + [sym__list_marker_minus] = ACTIONS(1280), + [sym__list_marker_plus] = ACTIONS(1280), + [sym__list_marker_star] = ACTIONS(1280), + [sym__list_marker_parenthesis] = ACTIONS(1280), + [sym__list_marker_dot] = ACTIONS(1280), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1280), + [sym__fenced_code_block_start_backtick] = ACTIONS(1280), + [sym__fenced_code_block_start_tilde] = ACTIONS(1280), + [sym__blank_line_start] = ACTIONS(1378), + [sym__html_block_1_start] = ACTIONS(1280), + [sym__html_block_2_start] = ACTIONS(1280), + [sym__html_block_3_start] = ACTIONS(1280), + [sym__html_block_4_start] = ACTIONS(1280), + [sym__html_block_5_start] = ACTIONS(1280), + [sym__html_block_6_start] = ACTIONS(1280), + [sym__html_block_7_start] = ACTIONS(1280), + [sym__pipe_table_start] = ACTIONS(1280), + }, + [149] = { + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_RBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_GT] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1382), + [anon_sym_COLON] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_BSLASH] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym__] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1382), + [aux_sym__word_token1] = ACTIONS(1382), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1382), + [aux_sym__word_token2] = ACTIONS(1382), + [sym__whitespace] = ACTIONS(1382), + [sym__soft_line_ending] = ACTIONS(1382), + [sym__block_close] = ACTIONS(1382), + [sym_block_continuation] = ACTIONS(1384), + [sym__block_quote_start] = ACTIONS(1382), + [sym__indented_chunk_start] = ACTIONS(1382), + [sym_atx_h1_marker] = ACTIONS(1382), + [sym_atx_h2_marker] = ACTIONS(1382), + [sym_atx_h3_marker] = ACTIONS(1382), + [sym_atx_h4_marker] = ACTIONS(1382), + [sym_atx_h5_marker] = ACTIONS(1382), + [sym_atx_h6_marker] = ACTIONS(1382), + [sym__thematic_break] = ACTIONS(1382), + [sym__list_marker_minus] = ACTIONS(1382), + [sym__list_marker_plus] = ACTIONS(1382), + [sym__list_marker_star] = ACTIONS(1382), + [sym__list_marker_parenthesis] = ACTIONS(1382), + [sym__list_marker_dot] = ACTIONS(1382), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym__html_block_1_start] = ACTIONS(1382), + [sym__html_block_2_start] = ACTIONS(1382), + [sym__html_block_3_start] = ACTIONS(1382), + [sym__html_block_4_start] = ACTIONS(1382), + [sym__html_block_5_start] = ACTIONS(1382), + [sym__html_block_6_start] = ACTIONS(1382), + [sym__html_block_7_start] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + }, + [150] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_RBRACK] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_COMMA] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_DOT] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_COLON] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_AT] = ACTIONS(1294), + [anon_sym_BSLASH] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym__] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [aux_sym__word_token1] = ACTIONS(1294), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1294), + [aux_sym__word_token2] = ACTIONS(1294), + [sym__whitespace] = ACTIONS(1294), + [sym__soft_line_ending] = ACTIONS(1294), + [sym_block_continuation] = ACTIONS(1386), + [sym__block_quote_start] = ACTIONS(1294), + [sym__indented_chunk_start] = ACTIONS(1294), + [sym_atx_h1_marker] = ACTIONS(1294), + [sym_atx_h2_marker] = ACTIONS(1294), + [sym_atx_h3_marker] = ACTIONS(1294), + [sym_atx_h4_marker] = ACTIONS(1294), + [sym_atx_h5_marker] = ACTIONS(1294), + [sym_atx_h6_marker] = ACTIONS(1294), + [sym__thematic_break] = ACTIONS(1294), + [sym__list_marker_minus] = ACTIONS(1294), + [sym__list_marker_plus] = ACTIONS(1294), + [sym__list_marker_star] = ACTIONS(1294), + [sym__list_marker_parenthesis] = ACTIONS(1294), + [sym__list_marker_dot] = ACTIONS(1294), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1294), + [sym__fenced_code_block_start_backtick] = ACTIONS(1294), + [sym__fenced_code_block_start_tilde] = ACTIONS(1294), + [sym__blank_line_start] = ACTIONS(1294), + [sym__html_block_1_start] = ACTIONS(1294), + [sym__html_block_2_start] = ACTIONS(1294), + [sym__html_block_3_start] = ACTIONS(1294), + [sym__html_block_4_start] = ACTIONS(1294), + [sym__html_block_5_start] = ACTIONS(1294), + [sym__html_block_6_start] = ACTIONS(1294), + [sym__html_block_7_start] = ACTIONS(1294), + [sym__pipe_table_start] = ACTIONS(1294), + }, + [151] = { + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [aux_sym__word_token1] = ACTIONS(1366), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1366), + [aux_sym__word_token2] = ACTIONS(1366), + [sym__whitespace] = ACTIONS(1366), + [sym__soft_line_ending] = ACTIONS(1366), + [sym__block_close] = ACTIONS(1366), + [sym_block_continuation] = ACTIONS(1388), + [sym__block_quote_start] = ACTIONS(1366), + [sym__indented_chunk_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(1366), + [sym_atx_h6_marker] = ACTIONS(1366), + [sym__thematic_break] = ACTIONS(1366), + [sym__list_marker_minus] = ACTIONS(1366), + [sym__list_marker_plus] = ACTIONS(1366), + [sym__list_marker_star] = ACTIONS(1366), + [sym__list_marker_parenthesis] = ACTIONS(1366), + [sym__list_marker_dot] = ACTIONS(1366), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1366), + [sym__fenced_code_block_start_backtick] = ACTIONS(1366), + [sym__fenced_code_block_start_tilde] = ACTIONS(1366), + [sym__blank_line_start] = ACTIONS(1366), + [sym__html_block_1_start] = ACTIONS(1366), + [sym__html_block_2_start] = ACTIONS(1366), + [sym__html_block_3_start] = ACTIONS(1366), + [sym__html_block_4_start] = ACTIONS(1366), + [sym__html_block_5_start] = ACTIONS(1366), + [sym__html_block_6_start] = ACTIONS(1366), + [sym__html_block_7_start] = ACTIONS(1366), + [sym__pipe_table_start] = ACTIONS(1366), + }, + [152] = { + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_GT] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_PERCENT] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_COMMA] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_DOT] = ACTIONS(1392), + [anon_sym_SLASH] = ACTIONS(1392), + [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_BSLASH] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(1392), + [anon_sym__] = ACTIONS(1392), + [anon_sym_BQUOTE] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_RPAREN] = ACTIONS(1392), + [aux_sym__word_token1] = ACTIONS(1392), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1392), + [aux_sym__word_token2] = ACTIONS(1392), + [sym__whitespace] = ACTIONS(1392), + [sym__soft_line_ending] = ACTIONS(1392), + [sym__block_close] = ACTIONS(1392), + [sym_block_continuation] = ACTIONS(1394), + [sym__block_quote_start] = ACTIONS(1392), + [sym__indented_chunk_start] = ACTIONS(1392), + [sym_atx_h1_marker] = ACTIONS(1392), + [sym_atx_h2_marker] = ACTIONS(1392), + [sym_atx_h3_marker] = ACTIONS(1392), + [sym_atx_h4_marker] = ACTIONS(1392), + [sym_atx_h5_marker] = ACTIONS(1392), + [sym_atx_h6_marker] = ACTIONS(1392), + [sym__thematic_break] = ACTIONS(1392), + [sym__list_marker_minus] = ACTIONS(1392), + [sym__list_marker_plus] = ACTIONS(1392), + [sym__list_marker_star] = ACTIONS(1392), + [sym__list_marker_parenthesis] = ACTIONS(1392), + [sym__list_marker_dot] = ACTIONS(1392), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1392), + [sym__fenced_code_block_start_backtick] = ACTIONS(1392), + [sym__fenced_code_block_start_tilde] = ACTIONS(1392), + [sym__blank_line_start] = ACTIONS(1392), + [sym__html_block_1_start] = ACTIONS(1392), + [sym__html_block_2_start] = ACTIONS(1392), + [sym__html_block_3_start] = ACTIONS(1392), + [sym__html_block_4_start] = ACTIONS(1392), + [sym__html_block_5_start] = ACTIONS(1392), + [sym__html_block_6_start] = ACTIONS(1392), + [sym__html_block_7_start] = ACTIONS(1392), + [sym__pipe_table_start] = ACTIONS(1392), + }, + [153] = { + [ts_builtin_sym_end] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_RBRACK] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(1336), + [anon_sym_COLON] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym__] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_RPAREN] = ACTIONS(1336), + [aux_sym__word_token1] = ACTIONS(1336), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1336), + [aux_sym__word_token2] = ACTIONS(1336), + [sym__whitespace] = ACTIONS(1336), + [sym__soft_line_ending] = ACTIONS(1336), + [sym_block_continuation] = ACTIONS(1396), + [sym__block_quote_start] = ACTIONS(1336), + [sym__indented_chunk_start] = ACTIONS(1336), + [sym_atx_h1_marker] = ACTIONS(1336), + [sym_atx_h2_marker] = ACTIONS(1336), + [sym_atx_h3_marker] = ACTIONS(1336), + [sym_atx_h4_marker] = ACTIONS(1336), + [sym_atx_h5_marker] = ACTIONS(1336), + [sym_atx_h6_marker] = ACTIONS(1336), + [sym__thematic_break] = ACTIONS(1336), + [sym__list_marker_minus] = ACTIONS(1336), + [sym__list_marker_plus] = ACTIONS(1336), + [sym__list_marker_star] = ACTIONS(1336), + [sym__list_marker_parenthesis] = ACTIONS(1336), + [sym__list_marker_dot] = ACTIONS(1336), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1336), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1336), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1336), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1336), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1336), + [sym__fenced_code_block_start_backtick] = ACTIONS(1336), + [sym__fenced_code_block_start_tilde] = ACTIONS(1336), + [sym__blank_line_start] = ACTIONS(1336), + [sym__html_block_1_start] = ACTIONS(1336), + [sym__html_block_2_start] = ACTIONS(1336), + [sym__html_block_3_start] = ACTIONS(1336), + [sym__html_block_4_start] = ACTIONS(1336), + [sym__html_block_5_start] = ACTIONS(1336), + [sym__html_block_6_start] = ACTIONS(1336), + [sym__html_block_7_start] = ACTIONS(1336), + [sym__pipe_table_start] = ACTIONS(1336), + }, + [154] = { + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_RBRACK] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_COLON] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_BSLASH] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym__] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [aux_sym__word_token1] = ACTIONS(1400), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1400), + [aux_sym__word_token2] = ACTIONS(1400), + [sym__whitespace] = ACTIONS(1400), + [sym__soft_line_ending] = ACTIONS(1400), + [sym__block_close] = ACTIONS(1400), + [sym_block_continuation] = ACTIONS(1402), + [sym__block_quote_start] = ACTIONS(1400), + [sym__indented_chunk_start] = ACTIONS(1400), + [sym_atx_h1_marker] = ACTIONS(1400), + [sym_atx_h2_marker] = ACTIONS(1400), + [sym_atx_h3_marker] = ACTIONS(1400), + [sym_atx_h4_marker] = ACTIONS(1400), + [sym_atx_h5_marker] = ACTIONS(1400), + [sym_atx_h6_marker] = ACTIONS(1400), + [sym__thematic_break] = ACTIONS(1400), + [sym__list_marker_minus] = ACTIONS(1400), + [sym__list_marker_plus] = ACTIONS(1400), + [sym__list_marker_star] = ACTIONS(1400), + [sym__list_marker_parenthesis] = ACTIONS(1400), + [sym__list_marker_dot] = ACTIONS(1400), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1400), + [sym__fenced_code_block_start_backtick] = ACTIONS(1400), + [sym__fenced_code_block_start_tilde] = ACTIONS(1400), + [sym__blank_line_start] = ACTIONS(1400), + [sym__html_block_1_start] = ACTIONS(1400), + [sym__html_block_2_start] = ACTIONS(1400), + [sym__html_block_3_start] = ACTIONS(1400), + [sym__html_block_4_start] = ACTIONS(1400), + [sym__html_block_5_start] = ACTIONS(1400), + [sym__html_block_6_start] = ACTIONS(1400), + [sym__html_block_7_start] = ACTIONS(1400), + [sym__pipe_table_start] = ACTIONS(1400), + }, + [155] = { + [anon_sym_LBRACK] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [anon_sym_POUND] = ACTIONS(1189), + [anon_sym_DOLLAR] = ACTIONS(1189), + [anon_sym_PERCENT] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SQUOTE] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_COMMA] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1189), + [anon_sym_COLON] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_AT] = ACTIONS(1189), + [anon_sym_BSLASH] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1189), + [anon_sym__] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_RPAREN] = ACTIONS(1189), + [aux_sym__word_token1] = ACTIONS(1189), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1189), + [aux_sym__word_token2] = ACTIONS(1189), + [sym__whitespace] = ACTIONS(1189), + [sym__soft_line_ending] = ACTIONS(1189), + [sym__block_close] = ACTIONS(1189), + [sym_block_continuation] = ACTIONS(1404), + [sym__block_quote_start] = ACTIONS(1189), + [sym__indented_chunk_start] = ACTIONS(1189), + [sym_atx_h1_marker] = ACTIONS(1189), + [sym_atx_h2_marker] = ACTIONS(1189), + [sym_atx_h3_marker] = ACTIONS(1189), + [sym_atx_h4_marker] = ACTIONS(1189), + [sym_atx_h5_marker] = ACTIONS(1189), + [sym_atx_h6_marker] = ACTIONS(1189), + [sym__thematic_break] = ACTIONS(1189), + [sym__list_marker_minus] = ACTIONS(1189), + [sym__list_marker_plus] = ACTIONS(1189), + [sym__list_marker_star] = ACTIONS(1189), + [sym__list_marker_parenthesis] = ACTIONS(1189), + [sym__list_marker_dot] = ACTIONS(1189), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1189), + [sym__fenced_code_block_start_backtick] = ACTIONS(1189), + [sym__fenced_code_block_start_tilde] = ACTIONS(1189), + [sym__blank_line_start] = ACTIONS(1189), + [sym__html_block_1_start] = ACTIONS(1189), + [sym__html_block_2_start] = ACTIONS(1189), + [sym__html_block_3_start] = ACTIONS(1189), + [sym__html_block_4_start] = ACTIONS(1189), + [sym__html_block_5_start] = ACTIONS(1189), + [sym__html_block_6_start] = ACTIONS(1189), + [sym__html_block_7_start] = ACTIONS(1189), + [sym__pipe_table_start] = ACTIONS(1189), + }, + [156] = { + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_PERCENT] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1408), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1408), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1408), + [anon_sym_BSLASH] = ACTIONS(1408), + [anon_sym_CARET] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [aux_sym__word_token1] = ACTIONS(1408), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1408), + [aux_sym__word_token2] = ACTIONS(1408), + [sym__whitespace] = ACTIONS(1408), + [sym__soft_line_ending] = ACTIONS(1408), + [sym__block_close] = ACTIONS(1408), + [sym_block_continuation] = ACTIONS(1410), + [sym__block_quote_start] = ACTIONS(1408), + [sym__indented_chunk_start] = ACTIONS(1408), + [sym_atx_h1_marker] = ACTIONS(1408), + [sym_atx_h2_marker] = ACTIONS(1408), + [sym_atx_h3_marker] = ACTIONS(1408), + [sym_atx_h4_marker] = ACTIONS(1408), + [sym_atx_h5_marker] = ACTIONS(1408), + [sym_atx_h6_marker] = ACTIONS(1408), + [sym__thematic_break] = ACTIONS(1408), + [sym__list_marker_minus] = ACTIONS(1408), + [sym__list_marker_plus] = ACTIONS(1408), + [sym__list_marker_star] = ACTIONS(1408), + [sym__list_marker_parenthesis] = ACTIONS(1408), + [sym__list_marker_dot] = ACTIONS(1408), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1408), + [sym__fenced_code_block_start_backtick] = ACTIONS(1408), + [sym__fenced_code_block_start_tilde] = ACTIONS(1408), + [sym__blank_line_start] = ACTIONS(1408), + [sym__html_block_1_start] = ACTIONS(1408), + [sym__html_block_2_start] = ACTIONS(1408), + [sym__html_block_3_start] = ACTIONS(1408), + [sym__html_block_4_start] = ACTIONS(1408), + [sym__html_block_5_start] = ACTIONS(1408), + [sym__html_block_6_start] = ACTIONS(1408), + [sym__html_block_7_start] = ACTIONS(1408), + [sym__pipe_table_start] = ACTIONS(1408), + }, + [157] = { + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_RBRACK] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_COMMA] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_COLON] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_QMARK] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1372), + [anon_sym_BSLASH] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1372), + [anon_sym__] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1372), + [aux_sym__word_token1] = ACTIONS(1372), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1372), + [aux_sym__word_token2] = ACTIONS(1372), + [sym__whitespace] = ACTIONS(1372), + [sym__soft_line_ending] = ACTIONS(1372), + [sym__block_close] = ACTIONS(1372), + [sym_block_continuation] = ACTIONS(1412), + [sym__block_quote_start] = ACTIONS(1372), + [sym__indented_chunk_start] = ACTIONS(1372), + [sym_atx_h1_marker] = ACTIONS(1372), + [sym_atx_h2_marker] = ACTIONS(1372), + [sym_atx_h3_marker] = ACTIONS(1372), + [sym_atx_h4_marker] = ACTIONS(1372), + [sym_atx_h5_marker] = ACTIONS(1372), + [sym_atx_h6_marker] = ACTIONS(1372), + [sym__thematic_break] = ACTIONS(1372), + [sym__list_marker_minus] = ACTIONS(1372), + [sym__list_marker_plus] = ACTIONS(1372), + [sym__list_marker_star] = ACTIONS(1372), + [sym__list_marker_parenthesis] = ACTIONS(1372), + [sym__list_marker_dot] = ACTIONS(1372), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1372), + [sym__fenced_code_block_start_backtick] = ACTIONS(1372), + [sym__fenced_code_block_start_tilde] = ACTIONS(1372), + [sym__blank_line_start] = ACTIONS(1372), + [sym__html_block_1_start] = ACTIONS(1372), + [sym__html_block_2_start] = ACTIONS(1372), + [sym__html_block_3_start] = ACTIONS(1372), + [sym__html_block_4_start] = ACTIONS(1372), + [sym__html_block_5_start] = ACTIONS(1372), + [sym__html_block_6_start] = ACTIONS(1372), + [sym__html_block_7_start] = ACTIONS(1372), + [sym__pipe_table_start] = ACTIONS(1372), + }, + [158] = { + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym__] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(1416), + [aux_sym__word_token1] = ACTIONS(1416), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1416), + [aux_sym__word_token2] = ACTIONS(1416), + [sym__whitespace] = ACTIONS(1416), + [sym__soft_line_ending] = ACTIONS(1416), + [sym__block_close] = ACTIONS(1416), + [sym_block_continuation] = ACTIONS(1418), + [sym__block_quote_start] = ACTIONS(1416), + [sym__indented_chunk_start] = ACTIONS(1416), + [sym_atx_h1_marker] = ACTIONS(1416), + [sym_atx_h2_marker] = ACTIONS(1416), + [sym_atx_h3_marker] = ACTIONS(1416), + [sym_atx_h4_marker] = ACTIONS(1416), + [sym_atx_h5_marker] = ACTIONS(1416), + [sym_atx_h6_marker] = ACTIONS(1416), + [sym__thematic_break] = ACTIONS(1416), + [sym__list_marker_minus] = ACTIONS(1416), + [sym__list_marker_plus] = ACTIONS(1416), + [sym__list_marker_star] = ACTIONS(1416), + [sym__list_marker_parenthesis] = ACTIONS(1416), + [sym__list_marker_dot] = ACTIONS(1416), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1416), + [sym__fenced_code_block_start_backtick] = ACTIONS(1416), + [sym__fenced_code_block_start_tilde] = ACTIONS(1416), + [sym__blank_line_start] = ACTIONS(1416), + [sym__html_block_1_start] = ACTIONS(1416), + [sym__html_block_2_start] = ACTIONS(1416), + [sym__html_block_3_start] = ACTIONS(1416), + [sym__html_block_4_start] = ACTIONS(1416), + [sym__html_block_5_start] = ACTIONS(1416), + [sym__html_block_6_start] = ACTIONS(1416), + [sym__html_block_7_start] = ACTIONS(1416), + [sym__pipe_table_start] = ACTIONS(1416), + }, + [159] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [anon_sym_POUND] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1322), + [anon_sym_PERCENT] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_DOT] = ACTIONS(1322), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1322), + [anon_sym_AT] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1322), + [anon_sym_CARET] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(1322), + [aux_sym__word_token1] = ACTIONS(1322), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1322), + [aux_sym__word_token2] = ACTIONS(1322), + [sym__whitespace] = ACTIONS(1322), + [sym__soft_line_ending] = ACTIONS(1322), + [sym_block_continuation] = ACTIONS(1420), + [sym__block_quote_start] = ACTIONS(1322), + [sym__indented_chunk_start] = ACTIONS(1322), + [sym_atx_h1_marker] = ACTIONS(1322), + [sym_atx_h2_marker] = ACTIONS(1322), + [sym_atx_h3_marker] = ACTIONS(1322), + [sym_atx_h4_marker] = ACTIONS(1322), + [sym_atx_h5_marker] = ACTIONS(1322), + [sym_atx_h6_marker] = ACTIONS(1322), + [sym__thematic_break] = ACTIONS(1322), + [sym__list_marker_minus] = ACTIONS(1322), + [sym__list_marker_plus] = ACTIONS(1322), + [sym__list_marker_star] = ACTIONS(1322), + [sym__list_marker_parenthesis] = ACTIONS(1322), + [sym__list_marker_dot] = ACTIONS(1322), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1322), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1322), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1322), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1322), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1322), + [sym__fenced_code_block_start_backtick] = ACTIONS(1322), + [sym__fenced_code_block_start_tilde] = ACTIONS(1322), + [sym__blank_line_start] = ACTIONS(1322), + [sym__html_block_1_start] = ACTIONS(1322), + [sym__html_block_2_start] = ACTIONS(1322), + [sym__html_block_3_start] = ACTIONS(1322), + [sym__html_block_4_start] = ACTIONS(1322), + [sym__html_block_5_start] = ACTIONS(1322), + [sym__html_block_6_start] = ACTIONS(1322), + [sym__html_block_7_start] = ACTIONS(1322), + [sym__pipe_table_start] = ACTIONS(1322), + }, + [160] = { + [ts_builtin_sym_end] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_SLASH] = ACTIONS(1312), + [anon_sym_COLON] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym__] = ACTIONS(1312), + [anon_sym_BQUOTE] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_RPAREN] = ACTIONS(1312), + [aux_sym__word_token1] = ACTIONS(1312), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1312), + [aux_sym__word_token2] = ACTIONS(1312), + [sym__whitespace] = ACTIONS(1312), + [sym__soft_line_ending] = ACTIONS(1312), + [sym_block_continuation] = ACTIONS(1422), + [sym__block_quote_start] = ACTIONS(1312), + [sym__indented_chunk_start] = ACTIONS(1312), + [sym_atx_h1_marker] = ACTIONS(1312), + [sym_atx_h2_marker] = ACTIONS(1312), + [sym_atx_h3_marker] = ACTIONS(1312), + [sym_atx_h4_marker] = ACTIONS(1312), + [sym_atx_h5_marker] = ACTIONS(1312), + [sym_atx_h6_marker] = ACTIONS(1312), + [sym__thematic_break] = ACTIONS(1312), + [sym__list_marker_minus] = ACTIONS(1312), + [sym__list_marker_plus] = ACTIONS(1312), + [sym__list_marker_star] = ACTIONS(1312), + [sym__list_marker_parenthesis] = ACTIONS(1312), + [sym__list_marker_dot] = ACTIONS(1312), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1312), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1312), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1312), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1312), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1312), + [sym__fenced_code_block_start_backtick] = ACTIONS(1312), + [sym__fenced_code_block_start_tilde] = ACTIONS(1312), + [sym__blank_line_start] = ACTIONS(1312), + [sym__html_block_1_start] = ACTIONS(1312), + [sym__html_block_2_start] = ACTIONS(1312), + [sym__html_block_3_start] = ACTIONS(1312), + [sym__html_block_4_start] = ACTIONS(1312), + [sym__html_block_5_start] = ACTIONS(1312), + [sym__html_block_6_start] = ACTIONS(1312), + [sym__html_block_7_start] = ACTIONS(1312), + [sym__pipe_table_start] = ACTIONS(1312), + }, + [161] = { + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_RBRACK] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_BSLASH] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym__] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [aux_sym__word_token1] = ACTIONS(1133), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1133), + [aux_sym__word_token2] = ACTIONS(1133), + [sym__whitespace] = ACTIONS(1133), + [sym__soft_line_ending] = ACTIONS(1133), + [sym__block_close] = ACTIONS(1133), + [sym_block_continuation] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1133), + [sym__indented_chunk_start] = ACTIONS(1133), + [sym_atx_h1_marker] = ACTIONS(1133), + [sym_atx_h2_marker] = ACTIONS(1133), + [sym_atx_h3_marker] = ACTIONS(1133), + [sym_atx_h4_marker] = ACTIONS(1133), + [sym_atx_h5_marker] = ACTIONS(1133), + [sym_atx_h6_marker] = ACTIONS(1133), + [sym__thematic_break] = ACTIONS(1133), + [sym__list_marker_minus] = ACTIONS(1133), + [sym__list_marker_plus] = ACTIONS(1133), + [sym__list_marker_star] = ACTIONS(1133), + [sym__list_marker_parenthesis] = ACTIONS(1133), + [sym__list_marker_dot] = ACTIONS(1133), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1133), + [sym__fenced_code_block_start_backtick] = ACTIONS(1133), + [sym__fenced_code_block_start_tilde] = ACTIONS(1133), + [sym__blank_line_start] = ACTIONS(1133), + [sym__html_block_1_start] = ACTIONS(1133), + [sym__html_block_2_start] = ACTIONS(1133), + [sym__html_block_3_start] = ACTIONS(1133), + [sym__html_block_4_start] = ACTIONS(1133), + [sym__html_block_5_start] = ACTIONS(1133), + [sym__html_block_6_start] = ACTIONS(1133), + [sym__html_block_7_start] = ACTIONS(1133), + [sym__pipe_table_start] = ACTIONS(1133), + }, + [162] = { + [ts_builtin_sym_end] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1306), + [anon_sym_PERCENT] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_COMMA] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_DOT] = ACTIONS(1306), + [anon_sym_SLASH] = ACTIONS(1306), + [anon_sym_COLON] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_QMARK] = ACTIONS(1306), + [anon_sym_AT] = ACTIONS(1306), + [anon_sym_BSLASH] = ACTIONS(1306), + [anon_sym_CARET] = ACTIONS(1306), + [anon_sym__] = ACTIONS(1306), + [anon_sym_BQUOTE] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1306), + [aux_sym__word_token1] = ACTIONS(1306), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1306), + [aux_sym__word_token2] = ACTIONS(1306), + [sym__whitespace] = ACTIONS(1306), + [sym__soft_line_ending] = ACTIONS(1306), + [sym_block_continuation] = ACTIONS(1426), + [sym__block_quote_start] = ACTIONS(1306), + [sym__indented_chunk_start] = ACTIONS(1306), + [sym_atx_h1_marker] = ACTIONS(1306), + [sym_atx_h2_marker] = ACTIONS(1306), + [sym_atx_h3_marker] = ACTIONS(1306), + [sym_atx_h4_marker] = ACTIONS(1306), + [sym_atx_h5_marker] = ACTIONS(1306), + [sym_atx_h6_marker] = ACTIONS(1306), + [sym__thematic_break] = ACTIONS(1306), + [sym__list_marker_minus] = ACTIONS(1306), + [sym__list_marker_plus] = ACTIONS(1306), + [sym__list_marker_star] = ACTIONS(1306), + [sym__list_marker_parenthesis] = ACTIONS(1306), + [sym__list_marker_dot] = ACTIONS(1306), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1306), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1306), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1306), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1306), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1306), + [sym__fenced_code_block_start_backtick] = ACTIONS(1306), + [sym__fenced_code_block_start_tilde] = ACTIONS(1306), + [sym__blank_line_start] = ACTIONS(1306), + [sym__html_block_1_start] = ACTIONS(1306), + [sym__html_block_2_start] = ACTIONS(1306), + [sym__html_block_3_start] = ACTIONS(1306), + [sym__html_block_4_start] = ACTIONS(1306), + [sym__html_block_5_start] = ACTIONS(1306), + [sym__html_block_6_start] = ACTIONS(1306), + [sym__html_block_7_start] = ACTIONS(1306), + [sym__pipe_table_start] = ACTIONS(1306), + }, + [163] = { + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_COLON] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym__] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [aux_sym__word_token1] = ACTIONS(1430), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1430), + [aux_sym__word_token2] = ACTIONS(1430), + [sym__whitespace] = ACTIONS(1430), + [sym__soft_line_ending] = ACTIONS(1430), + [sym__block_close] = ACTIONS(1430), + [sym_block_continuation] = ACTIONS(1432), + [sym__block_quote_start] = ACTIONS(1430), + [sym__indented_chunk_start] = ACTIONS(1430), + [sym_atx_h1_marker] = ACTIONS(1430), + [sym_atx_h2_marker] = ACTIONS(1430), + [sym_atx_h3_marker] = ACTIONS(1430), + [sym_atx_h4_marker] = ACTIONS(1430), + [sym_atx_h5_marker] = ACTIONS(1430), + [sym_atx_h6_marker] = ACTIONS(1430), + [sym__thematic_break] = ACTIONS(1430), + [sym__list_marker_minus] = ACTIONS(1430), + [sym__list_marker_plus] = ACTIONS(1430), + [sym__list_marker_star] = ACTIONS(1430), + [sym__list_marker_parenthesis] = ACTIONS(1430), + [sym__list_marker_dot] = ACTIONS(1430), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1430), + [sym__fenced_code_block_start_backtick] = ACTIONS(1430), + [sym__fenced_code_block_start_tilde] = ACTIONS(1430), + [sym__blank_line_start] = ACTIONS(1430), + [sym__html_block_1_start] = ACTIONS(1430), + [sym__html_block_2_start] = ACTIONS(1430), + [sym__html_block_3_start] = ACTIONS(1430), + [sym__html_block_4_start] = ACTIONS(1430), + [sym__html_block_5_start] = ACTIONS(1430), + [sym__html_block_6_start] = ACTIONS(1430), + [sym__html_block_7_start] = ACTIONS(1430), + [sym__pipe_table_start] = ACTIONS(1430), + }, + [164] = { + [ts_builtin_sym_end] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_GT] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1280), + [anon_sym_PERCENT] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_COMMA] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_DOT] = ACTIONS(1280), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_COLON] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1280), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym__] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_RPAREN] = ACTIONS(1280), + [aux_sym__word_token1] = ACTIONS(1280), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1280), + [aux_sym__word_token2] = ACTIONS(1280), + [sym__whitespace] = ACTIONS(1280), + [sym__soft_line_ending] = ACTIONS(1280), + [sym__block_quote_start] = ACTIONS(1280), + [sym__indented_chunk_start] = ACTIONS(1280), + [sym_atx_h1_marker] = ACTIONS(1280), + [sym_atx_h2_marker] = ACTIONS(1280), + [sym_atx_h3_marker] = ACTIONS(1280), + [sym_atx_h4_marker] = ACTIONS(1280), + [sym_atx_h5_marker] = ACTIONS(1280), + [sym_atx_h6_marker] = ACTIONS(1280), + [sym_setext_h2_underline] = ACTIONS(1290), + [sym__thematic_break] = ACTIONS(1280), + [sym__list_marker_minus] = ACTIONS(1280), + [sym__list_marker_plus] = ACTIONS(1280), + [sym__list_marker_star] = ACTIONS(1280), + [sym__list_marker_parenthesis] = ACTIONS(1280), + [sym__list_marker_dot] = ACTIONS(1280), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1280), + [sym__fenced_code_block_start_backtick] = ACTIONS(1280), + [sym__fenced_code_block_start_tilde] = ACTIONS(1280), + [sym__blank_line_start] = ACTIONS(1280), + [sym__html_block_1_start] = ACTIONS(1280), + [sym__html_block_2_start] = ACTIONS(1280), + [sym__html_block_3_start] = ACTIONS(1280), + [sym__html_block_4_start] = ACTIONS(1280), + [sym__html_block_5_start] = ACTIONS(1280), + [sym__html_block_6_start] = ACTIONS(1280), + [sym__html_block_7_start] = ACTIONS(1280), + [sym__pipe_table_start] = ACTIONS(1280), + }, + [165] = { + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_COLON] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym__] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [aux_sym__word_token1] = ACTIONS(1436), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1436), + [aux_sym__word_token2] = ACTIONS(1436), + [sym__whitespace] = ACTIONS(1436), + [sym__soft_line_ending] = ACTIONS(1436), + [sym__block_close] = ACTIONS(1436), + [sym_block_continuation] = ACTIONS(1438), + [sym__block_quote_start] = ACTIONS(1436), + [sym__indented_chunk_start] = ACTIONS(1436), + [sym_atx_h1_marker] = ACTIONS(1436), + [sym_atx_h2_marker] = ACTIONS(1436), + [sym_atx_h3_marker] = ACTIONS(1436), + [sym_atx_h4_marker] = ACTIONS(1436), + [sym_atx_h5_marker] = ACTIONS(1436), + [sym_atx_h6_marker] = ACTIONS(1436), + [sym__thematic_break] = ACTIONS(1436), + [sym__list_marker_minus] = ACTIONS(1436), + [sym__list_marker_plus] = ACTIONS(1436), + [sym__list_marker_star] = ACTIONS(1436), + [sym__list_marker_parenthesis] = ACTIONS(1436), + [sym__list_marker_dot] = ACTIONS(1436), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__fenced_code_block_start_backtick] = ACTIONS(1436), + [sym__fenced_code_block_start_tilde] = ACTIONS(1436), + [sym__blank_line_start] = ACTIONS(1436), + [sym__html_block_1_start] = ACTIONS(1436), + [sym__html_block_2_start] = ACTIONS(1436), + [sym__html_block_3_start] = ACTIONS(1436), + [sym__html_block_4_start] = ACTIONS(1436), + [sym__html_block_5_start] = ACTIONS(1436), + [sym__html_block_6_start] = ACTIONS(1436), + [sym__html_block_7_start] = ACTIONS(1436), + [sym__pipe_table_start] = ACTIONS(1436), + }, + [166] = { + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_COLON] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [aux_sym__word_token1] = ACTIONS(1442), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1442), + [aux_sym__word_token2] = ACTIONS(1442), + [sym__whitespace] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_close] = ACTIONS(1442), + [sym_block_continuation] = ACTIONS(1444), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym__html_block_1_start] = ACTIONS(1442), + [sym__html_block_2_start] = ACTIONS(1442), + [sym__html_block_3_start] = ACTIONS(1442), + [sym__html_block_4_start] = ACTIONS(1442), + [sym__html_block_5_start] = ACTIONS(1442), + [sym__html_block_6_start] = ACTIONS(1442), + [sym__html_block_7_start] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + }, + [167] = { + [ts_builtin_sym_end] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_RBRACK] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_GT] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [anon_sym_POUND] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1328), + [anon_sym_PERCENT] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_COMMA] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_DOT] = ACTIONS(1328), + [anon_sym_SLASH] = ACTIONS(1328), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_EQ] = ACTIONS(1328), + [anon_sym_QMARK] = ACTIONS(1328), + [anon_sym_AT] = ACTIONS(1328), + [anon_sym_BSLASH] = ACTIONS(1328), + [anon_sym_CARET] = ACTIONS(1328), + [anon_sym__] = ACTIONS(1328), + [anon_sym_BQUOTE] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(1328), + [aux_sym__word_token1] = ACTIONS(1328), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1328), + [aux_sym__word_token2] = ACTIONS(1328), + [sym__whitespace] = ACTIONS(1328), + [sym__soft_line_ending] = ACTIONS(1328), + [sym_block_continuation] = ACTIONS(1446), + [sym__block_quote_start] = ACTIONS(1328), + [sym__indented_chunk_start] = ACTIONS(1328), + [sym_atx_h1_marker] = ACTIONS(1328), + [sym_atx_h2_marker] = ACTIONS(1328), + [sym_atx_h3_marker] = ACTIONS(1328), + [sym_atx_h4_marker] = ACTIONS(1328), + [sym_atx_h5_marker] = ACTIONS(1328), + [sym_atx_h6_marker] = ACTIONS(1328), + [sym__thematic_break] = ACTIONS(1328), + [sym__list_marker_minus] = ACTIONS(1328), + [sym__list_marker_plus] = ACTIONS(1328), + [sym__list_marker_star] = ACTIONS(1328), + [sym__list_marker_parenthesis] = ACTIONS(1328), + [sym__list_marker_dot] = ACTIONS(1328), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1328), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1328), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1328), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1328), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1328), + [sym__fenced_code_block_start_backtick] = ACTIONS(1328), + [sym__fenced_code_block_start_tilde] = ACTIONS(1328), + [sym__blank_line_start] = ACTIONS(1328), + [sym__html_block_1_start] = ACTIONS(1328), + [sym__html_block_2_start] = ACTIONS(1328), + [sym__html_block_3_start] = ACTIONS(1328), + [sym__html_block_4_start] = ACTIONS(1328), + [sym__html_block_5_start] = ACTIONS(1328), + [sym__html_block_6_start] = ACTIONS(1328), + [sym__html_block_7_start] = ACTIONS(1328), + [sym__pipe_table_start] = ACTIONS(1328), + }, + [168] = { + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_RBRACK] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_DOLLAR] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1450), + [anon_sym_SLASH] = ACTIONS(1450), + [anon_sym_COLON] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_QMARK] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1450), + [anon_sym__] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [aux_sym__word_token1] = ACTIONS(1450), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1450), + [aux_sym__word_token2] = ACTIONS(1450), + [sym__whitespace] = ACTIONS(1450), + [sym__soft_line_ending] = ACTIONS(1450), + [sym__block_close] = ACTIONS(1450), + [sym_block_continuation] = ACTIONS(1452), + [sym__block_quote_start] = ACTIONS(1450), + [sym__indented_chunk_start] = ACTIONS(1450), + [sym_atx_h1_marker] = ACTIONS(1450), + [sym_atx_h2_marker] = ACTIONS(1450), + [sym_atx_h3_marker] = ACTIONS(1450), + [sym_atx_h4_marker] = ACTIONS(1450), + [sym_atx_h5_marker] = ACTIONS(1450), + [sym_atx_h6_marker] = ACTIONS(1450), + [sym__thematic_break] = ACTIONS(1450), + [sym__list_marker_minus] = ACTIONS(1450), + [sym__list_marker_plus] = ACTIONS(1450), + [sym__list_marker_star] = ACTIONS(1450), + [sym__list_marker_parenthesis] = ACTIONS(1450), + [sym__list_marker_dot] = ACTIONS(1450), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), + [sym__fenced_code_block_start_backtick] = ACTIONS(1450), + [sym__fenced_code_block_start_tilde] = ACTIONS(1450), + [sym__blank_line_start] = ACTIONS(1450), + [sym__html_block_1_start] = ACTIONS(1450), + [sym__html_block_2_start] = ACTIONS(1450), + [sym__html_block_3_start] = ACTIONS(1450), + [sym__html_block_4_start] = ACTIONS(1450), + [sym__html_block_5_start] = ACTIONS(1450), + [sym__html_block_6_start] = ACTIONS(1450), + [sym__html_block_7_start] = ACTIONS(1450), + [sym__pipe_table_start] = ACTIONS(1450), + }, + [169] = { + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1456), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym__] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [aux_sym__word_token1] = ACTIONS(1456), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1456), + [aux_sym__word_token2] = ACTIONS(1456), + [sym__whitespace] = ACTIONS(1456), + [sym__soft_line_ending] = ACTIONS(1456), + [sym__block_close] = ACTIONS(1456), + [sym_block_continuation] = ACTIONS(1458), + [sym__block_quote_start] = ACTIONS(1456), + [sym__indented_chunk_start] = ACTIONS(1456), + [sym_atx_h1_marker] = ACTIONS(1456), + [sym_atx_h2_marker] = ACTIONS(1456), + [sym_atx_h3_marker] = ACTIONS(1456), + [sym_atx_h4_marker] = ACTIONS(1456), + [sym_atx_h5_marker] = ACTIONS(1456), + [sym_atx_h6_marker] = ACTIONS(1456), + [sym__thematic_break] = ACTIONS(1456), + [sym__list_marker_minus] = ACTIONS(1456), + [sym__list_marker_plus] = ACTIONS(1456), + [sym__list_marker_star] = ACTIONS(1456), + [sym__list_marker_parenthesis] = ACTIONS(1456), + [sym__list_marker_dot] = ACTIONS(1456), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), + [sym__fenced_code_block_start_backtick] = ACTIONS(1456), + [sym__fenced_code_block_start_tilde] = ACTIONS(1456), + [sym__blank_line_start] = ACTIONS(1456), + [sym__html_block_1_start] = ACTIONS(1456), + [sym__html_block_2_start] = ACTIONS(1456), + [sym__html_block_3_start] = ACTIONS(1456), + [sym__html_block_4_start] = ACTIONS(1456), + [sym__html_block_5_start] = ACTIONS(1456), + [sym__html_block_6_start] = ACTIONS(1456), + [sym__html_block_7_start] = ACTIONS(1456), + [sym__pipe_table_start] = ACTIONS(1456), + }, + [170] = { + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1462), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(1462), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym__] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [aux_sym__word_token1] = ACTIONS(1462), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1462), + [aux_sym__word_token2] = ACTIONS(1462), + [sym__whitespace] = ACTIONS(1462), + [sym__soft_line_ending] = ACTIONS(1462), + [sym__block_close] = ACTIONS(1462), + [sym_block_continuation] = ACTIONS(1464), + [sym__block_quote_start] = ACTIONS(1462), + [sym__indented_chunk_start] = ACTIONS(1462), + [sym_atx_h1_marker] = ACTIONS(1462), + [sym_atx_h2_marker] = ACTIONS(1462), + [sym_atx_h3_marker] = ACTIONS(1462), + [sym_atx_h4_marker] = ACTIONS(1462), + [sym_atx_h5_marker] = ACTIONS(1462), + [sym_atx_h6_marker] = ACTIONS(1462), + [sym__thematic_break] = ACTIONS(1462), + [sym__list_marker_minus] = ACTIONS(1462), + [sym__list_marker_plus] = ACTIONS(1462), + [sym__list_marker_star] = ACTIONS(1462), + [sym__list_marker_parenthesis] = ACTIONS(1462), + [sym__list_marker_dot] = ACTIONS(1462), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1462), + [sym__fenced_code_block_start_backtick] = ACTIONS(1462), + [sym__fenced_code_block_start_tilde] = ACTIONS(1462), + [sym__blank_line_start] = ACTIONS(1462), + [sym__html_block_1_start] = ACTIONS(1462), + [sym__html_block_2_start] = ACTIONS(1462), + [sym__html_block_3_start] = ACTIONS(1462), + [sym__html_block_4_start] = ACTIONS(1462), + [sym__html_block_5_start] = ACTIONS(1462), + [sym__html_block_6_start] = ACTIONS(1462), + [sym__html_block_7_start] = ACTIONS(1462), + [sym__pipe_table_start] = ACTIONS(1462), + }, + [171] = { + [ts_builtin_sym_end] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_BSLASH] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [aux_sym__word_token1] = ACTIONS(1239), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1239), + [aux_sym__word_token2] = ACTIONS(1239), + [sym__whitespace] = ACTIONS(1239), + [sym__soft_line_ending] = ACTIONS(1239), + [sym__block_quote_start] = ACTIONS(1239), + [sym__indented_chunk_start] = ACTIONS(1239), + [sym_atx_h1_marker] = ACTIONS(1239), + [sym_atx_h2_marker] = ACTIONS(1239), + [sym_atx_h3_marker] = ACTIONS(1239), + [sym_atx_h4_marker] = ACTIONS(1239), + [sym_atx_h5_marker] = ACTIONS(1239), + [sym_atx_h6_marker] = ACTIONS(1239), + [sym_setext_h2_underline] = ACTIONS(1239), + [sym__thematic_break] = ACTIONS(1239), + [sym__list_marker_minus] = ACTIONS(1239), + [sym__list_marker_plus] = ACTIONS(1239), + [sym__list_marker_star] = ACTIONS(1239), + [sym__list_marker_parenthesis] = ACTIONS(1239), + [sym__list_marker_dot] = ACTIONS(1239), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1239), + [sym__fenced_code_block_start_backtick] = ACTIONS(1239), + [sym__fenced_code_block_start_tilde] = ACTIONS(1239), + [sym__blank_line_start] = ACTIONS(1239), + [sym__html_block_1_start] = ACTIONS(1239), + [sym__html_block_2_start] = ACTIONS(1239), + [sym__html_block_3_start] = ACTIONS(1239), + [sym__html_block_4_start] = ACTIONS(1239), + [sym__html_block_5_start] = ACTIONS(1239), + [sym__html_block_6_start] = ACTIONS(1239), + [sym__html_block_7_start] = ACTIONS(1239), + [sym__pipe_table_start] = ACTIONS(1239), + }, + [172] = { + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_COLON] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [aux_sym__word_token1] = ACTIONS(1468), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1468), + [aux_sym__word_token2] = ACTIONS(1468), + [sym__whitespace] = ACTIONS(1468), + [sym__soft_line_ending] = ACTIONS(1468), + [sym__block_close] = ACTIONS(1468), + [sym_block_continuation] = ACTIONS(1470), + [sym__block_quote_start] = ACTIONS(1468), + [sym__indented_chunk_start] = ACTIONS(1468), + [sym_atx_h1_marker] = ACTIONS(1468), + [sym_atx_h2_marker] = ACTIONS(1468), + [sym_atx_h3_marker] = ACTIONS(1468), + [sym_atx_h4_marker] = ACTIONS(1468), + [sym_atx_h5_marker] = ACTIONS(1468), + [sym_atx_h6_marker] = ACTIONS(1468), + [sym__thematic_break] = ACTIONS(1468), + [sym__list_marker_minus] = ACTIONS(1468), + [sym__list_marker_plus] = ACTIONS(1468), + [sym__list_marker_star] = ACTIONS(1468), + [sym__list_marker_parenthesis] = ACTIONS(1468), + [sym__list_marker_dot] = ACTIONS(1468), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), + [sym__fenced_code_block_start_backtick] = ACTIONS(1468), + [sym__fenced_code_block_start_tilde] = ACTIONS(1468), + [sym__blank_line_start] = ACTIONS(1468), + [sym__html_block_1_start] = ACTIONS(1468), + [sym__html_block_2_start] = ACTIONS(1468), + [sym__html_block_3_start] = ACTIONS(1468), + [sym__html_block_4_start] = ACTIONS(1468), + [sym__html_block_5_start] = ACTIONS(1468), + [sym__html_block_6_start] = ACTIONS(1468), + [sym__html_block_7_start] = ACTIONS(1468), + [sym__pipe_table_start] = ACTIONS(1468), + }, + [173] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_RBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_GT] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1382), + [anon_sym_COLON] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_BSLASH] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym__] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1382), + [aux_sym__word_token1] = ACTIONS(1382), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1382), + [aux_sym__word_token2] = ACTIONS(1382), + [sym__whitespace] = ACTIONS(1382), + [sym__soft_line_ending] = ACTIONS(1382), + [sym_block_continuation] = ACTIONS(1472), + [sym__block_quote_start] = ACTIONS(1382), + [sym__indented_chunk_start] = ACTIONS(1382), + [sym_atx_h1_marker] = ACTIONS(1382), + [sym_atx_h2_marker] = ACTIONS(1382), + [sym_atx_h3_marker] = ACTIONS(1382), + [sym_atx_h4_marker] = ACTIONS(1382), + [sym_atx_h5_marker] = ACTIONS(1382), + [sym_atx_h6_marker] = ACTIONS(1382), + [sym__thematic_break] = ACTIONS(1382), + [sym__list_marker_minus] = ACTIONS(1382), + [sym__list_marker_plus] = ACTIONS(1382), + [sym__list_marker_star] = ACTIONS(1382), + [sym__list_marker_parenthesis] = ACTIONS(1382), + [sym__list_marker_dot] = ACTIONS(1382), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym__html_block_1_start] = ACTIONS(1382), + [sym__html_block_2_start] = ACTIONS(1382), + [sym__html_block_3_start] = ACTIONS(1382), + [sym__html_block_4_start] = ACTIONS(1382), + [sym__html_block_5_start] = ACTIONS(1382), + [sym__html_block_6_start] = ACTIONS(1382), + [sym__html_block_7_start] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + }, + [174] = { + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_COLON] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [aux_sym__word_token1] = ACTIONS(1476), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1476), + [aux_sym__word_token2] = ACTIONS(1476), + [sym__whitespace] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym__block_close] = ACTIONS(1476), + [sym_block_continuation] = ACTIONS(1478), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym__html_block_1_start] = ACTIONS(1476), + [sym__html_block_2_start] = ACTIONS(1476), + [sym__html_block_3_start] = ACTIONS(1476), + [sym__html_block_4_start] = ACTIONS(1476), + [sym__html_block_5_start] = ACTIONS(1476), + [sym__html_block_6_start] = ACTIONS(1476), + [sym__html_block_7_start] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + }, + [175] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_COLON] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [aux_sym__word_token1] = ACTIONS(1476), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1476), + [aux_sym__word_token2] = ACTIONS(1476), + [sym__whitespace] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym_block_continuation] = ACTIONS(1480), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym__html_block_1_start] = ACTIONS(1476), + [sym__html_block_2_start] = ACTIONS(1476), + [sym__html_block_3_start] = ACTIONS(1476), + [sym__html_block_4_start] = ACTIONS(1476), + [sym__html_block_5_start] = ACTIONS(1476), + [sym__html_block_6_start] = ACTIONS(1476), + [sym__html_block_7_start] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + }, + [176] = { + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_BSLASH] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [aux_sym__word_token1] = ACTIONS(1239), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1239), + [aux_sym__word_token2] = ACTIONS(1239), + [sym__whitespace] = ACTIONS(1239), + [sym__soft_line_ending] = ACTIONS(1239), + [sym__block_close] = ACTIONS(1239), + [sym__block_quote_start] = ACTIONS(1239), + [sym__indented_chunk_start] = ACTIONS(1239), + [sym_atx_h1_marker] = ACTIONS(1239), + [sym_atx_h2_marker] = ACTIONS(1239), + [sym_atx_h3_marker] = ACTIONS(1239), + [sym_atx_h4_marker] = ACTIONS(1239), + [sym_atx_h5_marker] = ACTIONS(1239), + [sym_atx_h6_marker] = ACTIONS(1239), + [sym_setext_h2_underline] = ACTIONS(1239), + [sym__thematic_break] = ACTIONS(1239), + [sym__list_marker_minus] = ACTIONS(1239), + [sym__list_marker_plus] = ACTIONS(1239), + [sym__list_marker_star] = ACTIONS(1239), + [sym__list_marker_parenthesis] = ACTIONS(1239), + [sym__list_marker_dot] = ACTIONS(1239), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1239), + [sym__fenced_code_block_start_backtick] = ACTIONS(1239), + [sym__fenced_code_block_start_tilde] = ACTIONS(1239), + [sym__blank_line_start] = ACTIONS(1239), + [sym__html_block_1_start] = ACTIONS(1239), + [sym__html_block_2_start] = ACTIONS(1239), + [sym__html_block_3_start] = ACTIONS(1239), + [sym__html_block_4_start] = ACTIONS(1239), + [sym__html_block_5_start] = ACTIONS(1239), + [sym__html_block_6_start] = ACTIONS(1239), + [sym__html_block_7_start] = ACTIONS(1239), + [sym__pipe_table_start] = ACTIONS(1239), + }, + [177] = { + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_COLON] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [aux_sym__word_token1] = ACTIONS(1484), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1484), + [aux_sym__word_token2] = ACTIONS(1484), + [sym__whitespace] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_close] = ACTIONS(1484), + [sym_block_continuation] = ACTIONS(1486), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym__html_block_1_start] = ACTIONS(1484), + [sym__html_block_2_start] = ACTIONS(1484), + [sym__html_block_3_start] = ACTIONS(1484), + [sym__html_block_4_start] = ACTIONS(1484), + [sym__html_block_5_start] = ACTIONS(1484), + [sym__html_block_6_start] = ACTIONS(1484), + [sym__html_block_7_start] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + }, + [178] = { + [ts_builtin_sym_end] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [anon_sym_POUND] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_COMMA] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_DOT] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_COLON] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_AT] = ACTIONS(1342), + [anon_sym_BSLASH] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym__] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [aux_sym__word_token1] = ACTIONS(1342), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1342), + [aux_sym__word_token2] = ACTIONS(1342), + [sym__whitespace] = ACTIONS(1342), + [sym__soft_line_ending] = ACTIONS(1342), + [sym_block_continuation] = ACTIONS(1488), + [sym__block_quote_start] = ACTIONS(1342), + [sym__indented_chunk_start] = ACTIONS(1342), + [sym_atx_h1_marker] = ACTIONS(1342), + [sym_atx_h2_marker] = ACTIONS(1342), + [sym_atx_h3_marker] = ACTIONS(1342), + [sym_atx_h4_marker] = ACTIONS(1342), + [sym_atx_h5_marker] = ACTIONS(1342), + [sym_atx_h6_marker] = ACTIONS(1342), + [sym__thematic_break] = ACTIONS(1342), + [sym__list_marker_minus] = ACTIONS(1342), + [sym__list_marker_plus] = ACTIONS(1342), + [sym__list_marker_star] = ACTIONS(1342), + [sym__list_marker_parenthesis] = ACTIONS(1342), + [sym__list_marker_dot] = ACTIONS(1342), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), + [sym__fenced_code_block_start_backtick] = ACTIONS(1342), + [sym__fenced_code_block_start_tilde] = ACTIONS(1342), + [sym__blank_line_start] = ACTIONS(1342), + [sym__html_block_1_start] = ACTIONS(1342), + [sym__html_block_2_start] = ACTIONS(1342), + [sym__html_block_3_start] = ACTIONS(1342), + [sym__html_block_4_start] = ACTIONS(1342), + [sym__html_block_5_start] = ACTIONS(1342), + [sym__html_block_6_start] = ACTIONS(1342), + [sym__html_block_7_start] = ACTIONS(1342), + [sym__pipe_table_start] = ACTIONS(1342), + }, + [179] = { + [ts_builtin_sym_end] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_COLON] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym__] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [aux_sym__word_token1] = ACTIONS(1430), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1430), + [aux_sym__word_token2] = ACTIONS(1430), + [sym__whitespace] = ACTIONS(1430), + [sym__soft_line_ending] = ACTIONS(1430), + [sym_block_continuation] = ACTIONS(1490), + [sym__block_quote_start] = ACTIONS(1430), + [sym__indented_chunk_start] = ACTIONS(1430), + [sym_atx_h1_marker] = ACTIONS(1430), + [sym_atx_h2_marker] = ACTIONS(1430), + [sym_atx_h3_marker] = ACTIONS(1430), + [sym_atx_h4_marker] = ACTIONS(1430), + [sym_atx_h5_marker] = ACTIONS(1430), + [sym_atx_h6_marker] = ACTIONS(1430), + [sym__thematic_break] = ACTIONS(1430), + [sym__list_marker_minus] = ACTIONS(1430), + [sym__list_marker_plus] = ACTIONS(1430), + [sym__list_marker_star] = ACTIONS(1430), + [sym__list_marker_parenthesis] = ACTIONS(1430), + [sym__list_marker_dot] = ACTIONS(1430), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1430), + [sym__fenced_code_block_start_backtick] = ACTIONS(1430), + [sym__fenced_code_block_start_tilde] = ACTIONS(1430), + [sym__blank_line_start] = ACTIONS(1430), + [sym__html_block_1_start] = ACTIONS(1430), + [sym__html_block_2_start] = ACTIONS(1430), + [sym__html_block_3_start] = ACTIONS(1430), + [sym__html_block_4_start] = ACTIONS(1430), + [sym__html_block_5_start] = ACTIONS(1430), + [sym__html_block_6_start] = ACTIONS(1430), + [sym__html_block_7_start] = ACTIONS(1430), + [sym__pipe_table_start] = ACTIONS(1430), + }, + [180] = { + [ts_builtin_sym_end] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_COLON] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym__] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [aux_sym__word_token1] = ACTIONS(1436), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1436), + [aux_sym__word_token2] = ACTIONS(1436), + [sym__whitespace] = ACTIONS(1436), + [sym__soft_line_ending] = ACTIONS(1436), + [sym_block_continuation] = ACTIONS(1492), + [sym__block_quote_start] = ACTIONS(1436), + [sym__indented_chunk_start] = ACTIONS(1436), + [sym_atx_h1_marker] = ACTIONS(1436), + [sym_atx_h2_marker] = ACTIONS(1436), + [sym_atx_h3_marker] = ACTIONS(1436), + [sym_atx_h4_marker] = ACTIONS(1436), + [sym_atx_h5_marker] = ACTIONS(1436), + [sym_atx_h6_marker] = ACTIONS(1436), + [sym__thematic_break] = ACTIONS(1436), + [sym__list_marker_minus] = ACTIONS(1436), + [sym__list_marker_plus] = ACTIONS(1436), + [sym__list_marker_star] = ACTIONS(1436), + [sym__list_marker_parenthesis] = ACTIONS(1436), + [sym__list_marker_dot] = ACTIONS(1436), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__fenced_code_block_start_backtick] = ACTIONS(1436), + [sym__fenced_code_block_start_tilde] = ACTIONS(1436), + [sym__blank_line_start] = ACTIONS(1436), + [sym__html_block_1_start] = ACTIONS(1436), + [sym__html_block_2_start] = ACTIONS(1436), + [sym__html_block_3_start] = ACTIONS(1436), + [sym__html_block_4_start] = ACTIONS(1436), + [sym__html_block_5_start] = ACTIONS(1436), + [sym__html_block_6_start] = ACTIONS(1436), + [sym__html_block_7_start] = ACTIONS(1436), + [sym__pipe_table_start] = ACTIONS(1436), + }, + [181] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_COLON] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [aux_sym__word_token1] = ACTIONS(1442), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1442), + [aux_sym__word_token2] = ACTIONS(1442), + [sym__whitespace] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym_block_continuation] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym__html_block_1_start] = ACTIONS(1442), + [sym__html_block_2_start] = ACTIONS(1442), + [sym__html_block_3_start] = ACTIONS(1442), + [sym__html_block_4_start] = ACTIONS(1442), + [sym__html_block_5_start] = ACTIONS(1442), + [sym__html_block_6_start] = ACTIONS(1442), + [sym__html_block_7_start] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + }, + [182] = { + [ts_builtin_sym_end] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_RBRACK] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_DOLLAR] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1450), + [anon_sym_SLASH] = ACTIONS(1450), + [anon_sym_COLON] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_QMARK] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1450), + [anon_sym__] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [aux_sym__word_token1] = ACTIONS(1450), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1450), + [aux_sym__word_token2] = ACTIONS(1450), + [sym__whitespace] = ACTIONS(1450), + [sym__soft_line_ending] = ACTIONS(1450), + [sym_block_continuation] = ACTIONS(1496), + [sym__block_quote_start] = ACTIONS(1450), + [sym__indented_chunk_start] = ACTIONS(1450), + [sym_atx_h1_marker] = ACTIONS(1450), + [sym_atx_h2_marker] = ACTIONS(1450), + [sym_atx_h3_marker] = ACTIONS(1450), + [sym_atx_h4_marker] = ACTIONS(1450), + [sym_atx_h5_marker] = ACTIONS(1450), + [sym_atx_h6_marker] = ACTIONS(1450), + [sym__thematic_break] = ACTIONS(1450), + [sym__list_marker_minus] = ACTIONS(1450), + [sym__list_marker_plus] = ACTIONS(1450), + [sym__list_marker_star] = ACTIONS(1450), + [sym__list_marker_parenthesis] = ACTIONS(1450), + [sym__list_marker_dot] = ACTIONS(1450), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), + [sym__fenced_code_block_start_backtick] = ACTIONS(1450), + [sym__fenced_code_block_start_tilde] = ACTIONS(1450), + [sym__blank_line_start] = ACTIONS(1450), + [sym__html_block_1_start] = ACTIONS(1450), + [sym__html_block_2_start] = ACTIONS(1450), + [sym__html_block_3_start] = ACTIONS(1450), + [sym__html_block_4_start] = ACTIONS(1450), + [sym__html_block_5_start] = ACTIONS(1450), + [sym__html_block_6_start] = ACTIONS(1450), + [sym__html_block_7_start] = ACTIONS(1450), + [sym__pipe_table_start] = ACTIONS(1450), + }, + [183] = { + [ts_builtin_sym_end] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1456), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym__] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [aux_sym__word_token1] = ACTIONS(1456), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1456), + [aux_sym__word_token2] = ACTIONS(1456), + [sym__whitespace] = ACTIONS(1456), + [sym__soft_line_ending] = ACTIONS(1456), + [sym_block_continuation] = ACTIONS(1498), + [sym__block_quote_start] = ACTIONS(1456), + [sym__indented_chunk_start] = ACTIONS(1456), + [sym_atx_h1_marker] = ACTIONS(1456), + [sym_atx_h2_marker] = ACTIONS(1456), + [sym_atx_h3_marker] = ACTIONS(1456), + [sym_atx_h4_marker] = ACTIONS(1456), + [sym_atx_h5_marker] = ACTIONS(1456), + [sym_atx_h6_marker] = ACTIONS(1456), + [sym__thematic_break] = ACTIONS(1456), + [sym__list_marker_minus] = ACTIONS(1456), + [sym__list_marker_plus] = ACTIONS(1456), + [sym__list_marker_star] = ACTIONS(1456), + [sym__list_marker_parenthesis] = ACTIONS(1456), + [sym__list_marker_dot] = ACTIONS(1456), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), + [sym__fenced_code_block_start_backtick] = ACTIONS(1456), + [sym__fenced_code_block_start_tilde] = ACTIONS(1456), + [sym__blank_line_start] = ACTIONS(1456), + [sym__html_block_1_start] = ACTIONS(1456), + [sym__html_block_2_start] = ACTIONS(1456), + [sym__html_block_3_start] = ACTIONS(1456), + [sym__html_block_4_start] = ACTIONS(1456), + [sym__html_block_5_start] = ACTIONS(1456), + [sym__html_block_6_start] = ACTIONS(1456), + [sym__html_block_7_start] = ACTIONS(1456), + [sym__pipe_table_start] = ACTIONS(1456), + }, + [184] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_COLON] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [aux_sym__word_token1] = ACTIONS(1468), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1468), + [aux_sym__word_token2] = ACTIONS(1468), + [sym__whitespace] = ACTIONS(1468), + [sym__soft_line_ending] = ACTIONS(1468), + [sym_block_continuation] = ACTIONS(1500), + [sym__block_quote_start] = ACTIONS(1468), + [sym__indented_chunk_start] = ACTIONS(1468), + [sym_atx_h1_marker] = ACTIONS(1468), + [sym_atx_h2_marker] = ACTIONS(1468), + [sym_atx_h3_marker] = ACTIONS(1468), + [sym_atx_h4_marker] = ACTIONS(1468), + [sym_atx_h5_marker] = ACTIONS(1468), + [sym_atx_h6_marker] = ACTIONS(1468), + [sym__thematic_break] = ACTIONS(1468), + [sym__list_marker_minus] = ACTIONS(1468), + [sym__list_marker_plus] = ACTIONS(1468), + [sym__list_marker_star] = ACTIONS(1468), + [sym__list_marker_parenthesis] = ACTIONS(1468), + [sym__list_marker_dot] = ACTIONS(1468), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), + [sym__fenced_code_block_start_backtick] = ACTIONS(1468), + [sym__fenced_code_block_start_tilde] = ACTIONS(1468), + [sym__blank_line_start] = ACTIONS(1468), + [sym__html_block_1_start] = ACTIONS(1468), + [sym__html_block_2_start] = ACTIONS(1468), + [sym__html_block_3_start] = ACTIONS(1468), + [sym__html_block_4_start] = ACTIONS(1468), + [sym__html_block_5_start] = ACTIONS(1468), + [sym__html_block_6_start] = ACTIONS(1468), + [sym__html_block_7_start] = ACTIONS(1468), + [sym__pipe_table_start] = ACTIONS(1468), + }, + [185] = { + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [aux_sym__word_token1] = ACTIONS(1348), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1348), + [aux_sym__word_token2] = ACTIONS(1348), + [sym__whitespace] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym__block_close] = ACTIONS(1348), + [sym_block_continuation] = ACTIONS(1502), + [sym__block_quote_start] = ACTIONS(1348), + [sym__indented_chunk_start] = ACTIONS(1348), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(1348), + [sym__html_block_1_start] = ACTIONS(1348), + [sym__html_block_2_start] = ACTIONS(1348), + [sym__html_block_3_start] = ACTIONS(1348), + [sym__html_block_4_start] = ACTIONS(1348), + [sym__html_block_5_start] = ACTIONS(1348), + [sym__html_block_6_start] = ACTIONS(1348), + [sym__html_block_7_start] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + }, + [186] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_COLON] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_AT] = ACTIONS(1362), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym__] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [aux_sym__word_token1] = ACTIONS(1362), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1362), + [aux_sym__word_token2] = ACTIONS(1362), + [sym__whitespace] = ACTIONS(1362), + [sym__soft_line_ending] = ACTIONS(1362), + [sym_block_continuation] = ACTIONS(1504), + [sym__block_quote_start] = ACTIONS(1362), + [sym__indented_chunk_start] = ACTIONS(1362), + [sym_atx_h1_marker] = ACTIONS(1362), + [sym_atx_h2_marker] = ACTIONS(1362), + [sym_atx_h3_marker] = ACTIONS(1362), + [sym_atx_h4_marker] = ACTIONS(1362), + [sym_atx_h5_marker] = ACTIONS(1362), + [sym_atx_h6_marker] = ACTIONS(1362), + [sym__thematic_break] = ACTIONS(1362), + [sym__list_marker_minus] = ACTIONS(1362), + [sym__list_marker_plus] = ACTIONS(1362), + [sym__list_marker_star] = ACTIONS(1362), + [sym__list_marker_parenthesis] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(1362), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), + [sym__fenced_code_block_start_backtick] = ACTIONS(1362), + [sym__fenced_code_block_start_tilde] = ACTIONS(1362), + [sym__blank_line_start] = ACTIONS(1362), + [sym__html_block_1_start] = ACTIONS(1362), + [sym__html_block_2_start] = ACTIONS(1362), + [sym__html_block_3_start] = ACTIONS(1362), + [sym__html_block_4_start] = ACTIONS(1362), + [sym__html_block_5_start] = ACTIONS(1362), + [sym__html_block_6_start] = ACTIONS(1362), + [sym__html_block_7_start] = ACTIONS(1362), + [sym__pipe_table_start] = ACTIONS(1362), + }, + [187] = { + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_GT] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1280), + [anon_sym_PERCENT] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_COMMA] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_DOT] = ACTIONS(1280), + [anon_sym_SLASH] = ACTIONS(1280), + [anon_sym_COLON] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_AT] = ACTIONS(1280), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_CARET] = ACTIONS(1280), + [anon_sym__] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_RPAREN] = ACTIONS(1280), + [aux_sym__word_token1] = ACTIONS(1280), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1280), + [aux_sym__word_token2] = ACTIONS(1280), + [sym__whitespace] = ACTIONS(1280), + [sym__soft_line_ending] = ACTIONS(1280), + [sym__block_close] = ACTIONS(1280), + [sym__block_quote_start] = ACTIONS(1280), + [sym__indented_chunk_start] = ACTIONS(1280), + [sym_atx_h1_marker] = ACTIONS(1280), + [sym_atx_h2_marker] = ACTIONS(1280), + [sym_atx_h3_marker] = ACTIONS(1280), + [sym_atx_h4_marker] = ACTIONS(1280), + [sym_atx_h5_marker] = ACTIONS(1280), + [sym_atx_h6_marker] = ACTIONS(1280), + [sym_setext_h2_underline] = ACTIONS(1284), + [sym__thematic_break] = ACTIONS(1280), + [sym__list_marker_minus] = ACTIONS(1280), + [sym__list_marker_plus] = ACTIONS(1280), + [sym__list_marker_star] = ACTIONS(1280), + [sym__list_marker_parenthesis] = ACTIONS(1280), + [sym__list_marker_dot] = ACTIONS(1280), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1280), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1280), + [sym__fenced_code_block_start_backtick] = ACTIONS(1280), + [sym__fenced_code_block_start_tilde] = ACTIONS(1280), + [sym__blank_line_start] = ACTIONS(1280), + [sym__html_block_1_start] = ACTIONS(1280), + [sym__html_block_2_start] = ACTIONS(1280), + [sym__html_block_3_start] = ACTIONS(1280), + [sym__html_block_4_start] = ACTIONS(1280), + [sym__html_block_5_start] = ACTIONS(1280), + [sym__html_block_6_start] = ACTIONS(1280), + [sym__html_block_7_start] = ACTIONS(1280), + [sym__pipe_table_start] = ACTIONS(1280), + }, + [188] = { + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DOT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_AT] = ACTIONS(1354), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym__] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [aux_sym__word_token1] = ACTIONS(1354), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1354), + [aux_sym__word_token2] = ACTIONS(1354), + [sym__whitespace] = ACTIONS(1354), + [sym__soft_line_ending] = ACTIONS(1354), + [sym__block_close] = ACTIONS(1354), + [sym_block_continuation] = ACTIONS(1506), + [sym__block_quote_start] = ACTIONS(1354), + [sym__indented_chunk_start] = ACTIONS(1354), + [sym_atx_h1_marker] = ACTIONS(1354), + [sym_atx_h2_marker] = ACTIONS(1354), + [sym_atx_h3_marker] = ACTIONS(1354), + [sym_atx_h4_marker] = ACTIONS(1354), + [sym_atx_h5_marker] = ACTIONS(1354), + [sym_atx_h6_marker] = ACTIONS(1354), + [sym__thematic_break] = ACTIONS(1354), + [sym__list_marker_minus] = ACTIONS(1354), + [sym__list_marker_plus] = ACTIONS(1354), + [sym__list_marker_star] = ACTIONS(1354), + [sym__list_marker_parenthesis] = ACTIONS(1354), + [sym__list_marker_dot] = ACTIONS(1354), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), + [sym__fenced_code_block_start_backtick] = ACTIONS(1354), + [sym__fenced_code_block_start_tilde] = ACTIONS(1354), + [sym__blank_line_start] = ACTIONS(1354), + [sym__html_block_1_start] = ACTIONS(1354), + [sym__html_block_2_start] = ACTIONS(1354), + [sym__html_block_3_start] = ACTIONS(1354), + [sym__html_block_4_start] = ACTIONS(1354), + [sym__html_block_5_start] = ACTIONS(1354), + [sym__html_block_6_start] = ACTIONS(1354), + [sym__html_block_7_start] = ACTIONS(1354), + [sym__pipe_table_start] = ACTIONS(1354), + }, + [189] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym__] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(1416), + [aux_sym__word_token1] = ACTIONS(1416), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1416), + [aux_sym__word_token2] = ACTIONS(1416), + [sym__whitespace] = ACTIONS(1416), + [sym__soft_line_ending] = ACTIONS(1416), + [sym_block_continuation] = ACTIONS(1508), + [sym__block_quote_start] = ACTIONS(1416), + [sym__indented_chunk_start] = ACTIONS(1416), + [sym_atx_h1_marker] = ACTIONS(1416), + [sym_atx_h2_marker] = ACTIONS(1416), + [sym_atx_h3_marker] = ACTIONS(1416), + [sym_atx_h4_marker] = ACTIONS(1416), + [sym_atx_h5_marker] = ACTIONS(1416), + [sym_atx_h6_marker] = ACTIONS(1416), + [sym__thematic_break] = ACTIONS(1416), + [sym__list_marker_minus] = ACTIONS(1416), + [sym__list_marker_plus] = ACTIONS(1416), + [sym__list_marker_star] = ACTIONS(1416), + [sym__list_marker_parenthesis] = ACTIONS(1416), + [sym__list_marker_dot] = ACTIONS(1416), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1416), + [sym__fenced_code_block_start_backtick] = ACTIONS(1416), + [sym__fenced_code_block_start_tilde] = ACTIONS(1416), + [sym__blank_line_start] = ACTIONS(1416), + [sym__html_block_1_start] = ACTIONS(1416), + [sym__html_block_2_start] = ACTIONS(1416), + [sym__html_block_3_start] = ACTIONS(1416), + [sym__html_block_4_start] = ACTIONS(1416), + [sym__html_block_5_start] = ACTIONS(1416), + [sym__html_block_6_start] = ACTIONS(1416), + [sym__html_block_7_start] = ACTIONS(1416), + [sym__pipe_table_start] = ACTIONS(1416), + }, + [190] = { + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [aux_sym__word_token1] = ACTIONS(1512), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1512), + [aux_sym__word_token2] = ACTIONS(1512), + [sym__whitespace] = ACTIONS(1512), + [sym__soft_line_ending] = ACTIONS(1512), + [sym__block_close] = ACTIONS(1512), + [sym_block_continuation] = ACTIONS(1514), + [sym__block_quote_start] = ACTIONS(1512), + [sym__indented_chunk_start] = ACTIONS(1512), + [sym_atx_h1_marker] = ACTIONS(1512), + [sym_atx_h2_marker] = ACTIONS(1512), + [sym_atx_h3_marker] = ACTIONS(1512), + [sym_atx_h4_marker] = ACTIONS(1512), + [sym_atx_h5_marker] = ACTIONS(1512), + [sym_atx_h6_marker] = ACTIONS(1512), + [sym__thematic_break] = ACTIONS(1512), + [sym__list_marker_minus] = ACTIONS(1512), + [sym__list_marker_plus] = ACTIONS(1512), + [sym__list_marker_star] = ACTIONS(1512), + [sym__list_marker_parenthesis] = ACTIONS(1512), + [sym__list_marker_dot] = ACTIONS(1512), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1512), + [sym__fenced_code_block_start_backtick] = ACTIONS(1512), + [sym__fenced_code_block_start_tilde] = ACTIONS(1512), + [sym__blank_line_start] = ACTIONS(1512), + [sym__html_block_1_start] = ACTIONS(1512), + [sym__html_block_2_start] = ACTIONS(1512), + [sym__html_block_3_start] = ACTIONS(1512), + [sym__html_block_4_start] = ACTIONS(1512), + [sym__html_block_5_start] = ACTIONS(1512), + [sym__html_block_6_start] = ACTIONS(1512), + [sym__html_block_7_start] = ACTIONS(1512), + [sym__pipe_table_start] = ACTIONS(1512), + }, + [191] = { + [ts_builtin_sym_end] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_GT] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_PERCENT] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_COMMA] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_DOT] = ACTIONS(1392), + [anon_sym_SLASH] = ACTIONS(1392), + [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_BSLASH] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(1392), + [anon_sym__] = ACTIONS(1392), + [anon_sym_BQUOTE] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_RPAREN] = ACTIONS(1392), + [aux_sym__word_token1] = ACTIONS(1392), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1392), + [aux_sym__word_token2] = ACTIONS(1392), + [sym__whitespace] = ACTIONS(1392), + [sym__soft_line_ending] = ACTIONS(1392), + [sym_block_continuation] = ACTIONS(1516), + [sym__block_quote_start] = ACTIONS(1392), + [sym__indented_chunk_start] = ACTIONS(1392), + [sym_atx_h1_marker] = ACTIONS(1392), + [sym_atx_h2_marker] = ACTIONS(1392), + [sym_atx_h3_marker] = ACTIONS(1392), + [sym_atx_h4_marker] = ACTIONS(1392), + [sym_atx_h5_marker] = ACTIONS(1392), + [sym_atx_h6_marker] = ACTIONS(1392), + [sym__thematic_break] = ACTIONS(1392), + [sym__list_marker_minus] = ACTIONS(1392), + [sym__list_marker_plus] = ACTIONS(1392), + [sym__list_marker_star] = ACTIONS(1392), + [sym__list_marker_parenthesis] = ACTIONS(1392), + [sym__list_marker_dot] = ACTIONS(1392), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1392), + [sym__fenced_code_block_start_backtick] = ACTIONS(1392), + [sym__fenced_code_block_start_tilde] = ACTIONS(1392), + [sym__blank_line_start] = ACTIONS(1392), + [sym__html_block_1_start] = ACTIONS(1392), + [sym__html_block_2_start] = ACTIONS(1392), + [sym__html_block_3_start] = ACTIONS(1392), + [sym__html_block_4_start] = ACTIONS(1392), + [sym__html_block_5_start] = ACTIONS(1392), + [sym__html_block_6_start] = ACTIONS(1392), + [sym__html_block_7_start] = ACTIONS(1392), + [sym__pipe_table_start] = ACTIONS(1392), + }, + [192] = { + [ts_builtin_sym_end] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_COLON] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_AT] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym__] = ACTIONS(1518), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [aux_sym__word_token1] = ACTIONS(1518), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1518), + [aux_sym__word_token2] = ACTIONS(1518), + [sym__whitespace] = ACTIONS(1518), + [sym__soft_line_ending] = ACTIONS(1518), + [sym_block_continuation] = ACTIONS(1522), + [sym__block_quote_start] = ACTIONS(1518), + [sym__indented_chunk_start] = ACTIONS(1518), + [sym_atx_h1_marker] = ACTIONS(1518), + [sym_atx_h2_marker] = ACTIONS(1518), + [sym_atx_h3_marker] = ACTIONS(1518), + [sym_atx_h4_marker] = ACTIONS(1518), + [sym_atx_h5_marker] = ACTIONS(1518), + [sym_atx_h6_marker] = ACTIONS(1518), + [sym__thematic_break] = ACTIONS(1518), + [sym__list_marker_minus] = ACTIONS(1518), + [sym__list_marker_plus] = ACTIONS(1518), + [sym__list_marker_star] = ACTIONS(1518), + [sym__list_marker_parenthesis] = ACTIONS(1518), + [sym__list_marker_dot] = ACTIONS(1518), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1518), + [sym__fenced_code_block_start_backtick] = ACTIONS(1518), + [sym__fenced_code_block_start_tilde] = ACTIONS(1518), + [sym__blank_line_start] = ACTIONS(1518), + [sym__html_block_1_start] = ACTIONS(1518), + [sym__html_block_2_start] = ACTIONS(1518), + [sym__html_block_3_start] = ACTIONS(1518), + [sym__html_block_4_start] = ACTIONS(1518), + [sym__html_block_5_start] = ACTIONS(1518), + [sym__html_block_6_start] = ACTIONS(1518), + [sym__html_block_7_start] = ACTIONS(1518), + [sym__pipe_table_start] = ACTIONS(1518), + }, + [193] = { + [ts_builtin_sym_end] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_RBRACK] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [anon_sym_POUND] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_BSLASH] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym__] = ACTIONS(1133), + [anon_sym_BQUOTE] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [aux_sym__word_token1] = ACTIONS(1133), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1133), + [aux_sym__word_token2] = ACTIONS(1133), + [sym__whitespace] = ACTIONS(1133), + [sym__soft_line_ending] = ACTIONS(1133), + [sym_block_continuation] = ACTIONS(1524), + [sym__block_quote_start] = ACTIONS(1133), + [sym__indented_chunk_start] = ACTIONS(1133), + [sym_atx_h1_marker] = ACTIONS(1133), + [sym_atx_h2_marker] = ACTIONS(1133), + [sym_atx_h3_marker] = ACTIONS(1133), + [sym_atx_h4_marker] = ACTIONS(1133), + [sym_atx_h5_marker] = ACTIONS(1133), + [sym_atx_h6_marker] = ACTIONS(1133), + [sym__thematic_break] = ACTIONS(1133), + [sym__list_marker_minus] = ACTIONS(1133), + [sym__list_marker_plus] = ACTIONS(1133), + [sym__list_marker_star] = ACTIONS(1133), + [sym__list_marker_parenthesis] = ACTIONS(1133), + [sym__list_marker_dot] = ACTIONS(1133), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1133), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1133), + [sym__fenced_code_block_start_backtick] = ACTIONS(1133), + [sym__fenced_code_block_start_tilde] = ACTIONS(1133), + [sym__blank_line_start] = ACTIONS(1133), + [sym__html_block_1_start] = ACTIONS(1133), + [sym__html_block_2_start] = ACTIONS(1133), + [sym__html_block_3_start] = ACTIONS(1133), + [sym__html_block_4_start] = ACTIONS(1133), + [sym__html_block_5_start] = ACTIONS(1133), + [sym__html_block_6_start] = ACTIONS(1133), + [sym__html_block_7_start] = ACTIONS(1133), + [sym__pipe_table_start] = ACTIONS(1133), + }, + [194] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_COLON] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [aux_sym__word_token1] = ACTIONS(1484), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1484), + [aux_sym__word_token2] = ACTIONS(1484), + [sym__whitespace] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym_block_continuation] = ACTIONS(1526), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym__html_block_1_start] = ACTIONS(1484), + [sym__html_block_2_start] = ACTIONS(1484), + [sym__html_block_3_start] = ACTIONS(1484), + [sym__html_block_4_start] = ACTIONS(1484), + [sym__html_block_5_start] = ACTIONS(1484), + [sym__html_block_6_start] = ACTIONS(1484), + [sym__html_block_7_start] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + }, + [195] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_RBRACK] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_COLON] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_BSLASH] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym__] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [aux_sym__word_token1] = ACTIONS(1400), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1400), + [aux_sym__word_token2] = ACTIONS(1400), + [sym__whitespace] = ACTIONS(1400), + [sym__soft_line_ending] = ACTIONS(1400), + [sym_block_continuation] = ACTIONS(1528), + [sym__block_quote_start] = ACTIONS(1400), + [sym__indented_chunk_start] = ACTIONS(1400), + [sym_atx_h1_marker] = ACTIONS(1400), + [sym_atx_h2_marker] = ACTIONS(1400), + [sym_atx_h3_marker] = ACTIONS(1400), + [sym_atx_h4_marker] = ACTIONS(1400), + [sym_atx_h5_marker] = ACTIONS(1400), + [sym_atx_h6_marker] = ACTIONS(1400), + [sym__thematic_break] = ACTIONS(1400), + [sym__list_marker_minus] = ACTIONS(1400), + [sym__list_marker_plus] = ACTIONS(1400), + [sym__list_marker_star] = ACTIONS(1400), + [sym__list_marker_parenthesis] = ACTIONS(1400), + [sym__list_marker_dot] = ACTIONS(1400), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1400), + [sym__fenced_code_block_start_backtick] = ACTIONS(1400), + [sym__fenced_code_block_start_tilde] = ACTIONS(1400), + [sym__blank_line_start] = ACTIONS(1400), + [sym__html_block_1_start] = ACTIONS(1400), + [sym__html_block_2_start] = ACTIONS(1400), + [sym__html_block_3_start] = ACTIONS(1400), + [sym__html_block_4_start] = ACTIONS(1400), + [sym__html_block_5_start] = ACTIONS(1400), + [sym__html_block_6_start] = ACTIONS(1400), + [sym__html_block_7_start] = ACTIONS(1400), + [sym__pipe_table_start] = ACTIONS(1400), + }, + [196] = { + [ts_builtin_sym_end] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [aux_sym__word_token1] = ACTIONS(1512), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1512), + [aux_sym__word_token2] = ACTIONS(1512), + [sym__whitespace] = ACTIONS(1512), + [sym__soft_line_ending] = ACTIONS(1512), + [sym_block_continuation] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1512), + [sym__indented_chunk_start] = ACTIONS(1512), + [sym_atx_h1_marker] = ACTIONS(1512), + [sym_atx_h2_marker] = ACTIONS(1512), + [sym_atx_h3_marker] = ACTIONS(1512), + [sym_atx_h4_marker] = ACTIONS(1512), + [sym_atx_h5_marker] = ACTIONS(1512), + [sym_atx_h6_marker] = ACTIONS(1512), + [sym__thematic_break] = ACTIONS(1512), + [sym__list_marker_minus] = ACTIONS(1512), + [sym__list_marker_plus] = ACTIONS(1512), + [sym__list_marker_star] = ACTIONS(1512), + [sym__list_marker_parenthesis] = ACTIONS(1512), + [sym__list_marker_dot] = ACTIONS(1512), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1512), + [sym__fenced_code_block_start_backtick] = ACTIONS(1512), + [sym__fenced_code_block_start_tilde] = ACTIONS(1512), + [sym__blank_line_start] = ACTIONS(1512), + [sym__html_block_1_start] = ACTIONS(1512), + [sym__html_block_2_start] = ACTIONS(1512), + [sym__html_block_3_start] = ACTIONS(1512), + [sym__html_block_4_start] = ACTIONS(1512), + [sym__html_block_5_start] = ACTIONS(1512), + [sym__html_block_6_start] = ACTIONS(1512), + [sym__html_block_7_start] = ACTIONS(1512), + [sym__pipe_table_start] = ACTIONS(1512), + }, + [197] = { + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_COLON] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_AT] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym__] = ACTIONS(1518), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [aux_sym__word_token1] = ACTIONS(1518), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1518), + [aux_sym__word_token2] = ACTIONS(1518), + [sym__whitespace] = ACTIONS(1518), + [sym__soft_line_ending] = ACTIONS(1518), + [sym__block_close] = ACTIONS(1518), + [sym_block_continuation] = ACTIONS(1532), + [sym__block_quote_start] = ACTIONS(1518), + [sym__indented_chunk_start] = ACTIONS(1518), + [sym_atx_h1_marker] = ACTIONS(1518), + [sym_atx_h2_marker] = ACTIONS(1518), + [sym_atx_h3_marker] = ACTIONS(1518), + [sym_atx_h4_marker] = ACTIONS(1518), + [sym_atx_h5_marker] = ACTIONS(1518), + [sym_atx_h6_marker] = ACTIONS(1518), + [sym__thematic_break] = ACTIONS(1518), + [sym__list_marker_minus] = ACTIONS(1518), + [sym__list_marker_plus] = ACTIONS(1518), + [sym__list_marker_star] = ACTIONS(1518), + [sym__list_marker_parenthesis] = ACTIONS(1518), + [sym__list_marker_dot] = ACTIONS(1518), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1518), + [sym__fenced_code_block_start_backtick] = ACTIONS(1518), + [sym__fenced_code_block_start_tilde] = ACTIONS(1518), + [sym__blank_line_start] = ACTIONS(1518), + [sym__html_block_1_start] = ACTIONS(1518), + [sym__html_block_2_start] = ACTIONS(1518), + [sym__html_block_3_start] = ACTIONS(1518), + [sym__html_block_4_start] = ACTIONS(1518), + [sym__html_block_5_start] = ACTIONS(1518), + [sym__html_block_6_start] = ACTIONS(1518), + [sym__html_block_7_start] = ACTIONS(1518), + [sym__pipe_table_start] = ACTIONS(1518), + }, + [198] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1462), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(1462), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym__] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [aux_sym__word_token1] = ACTIONS(1462), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1462), + [aux_sym__word_token2] = ACTIONS(1462), + [sym__whitespace] = ACTIONS(1462), + [sym__soft_line_ending] = ACTIONS(1462), + [sym_block_continuation] = ACTIONS(1534), + [sym__block_quote_start] = ACTIONS(1462), + [sym__indented_chunk_start] = ACTIONS(1462), + [sym_atx_h1_marker] = ACTIONS(1462), + [sym_atx_h2_marker] = ACTIONS(1462), + [sym_atx_h3_marker] = ACTIONS(1462), + [sym_atx_h4_marker] = ACTIONS(1462), + [sym_atx_h5_marker] = ACTIONS(1462), + [sym_atx_h6_marker] = ACTIONS(1462), + [sym__thematic_break] = ACTIONS(1462), + [sym__list_marker_minus] = ACTIONS(1462), + [sym__list_marker_plus] = ACTIONS(1462), + [sym__list_marker_star] = ACTIONS(1462), + [sym__list_marker_parenthesis] = ACTIONS(1462), + [sym__list_marker_dot] = ACTIONS(1462), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1462), + [sym__fenced_code_block_start_backtick] = ACTIONS(1462), + [sym__fenced_code_block_start_tilde] = ACTIONS(1462), + [sym__blank_line_start] = ACTIONS(1462), + [sym__html_block_1_start] = ACTIONS(1462), + [sym__html_block_2_start] = ACTIONS(1462), + [sym__html_block_3_start] = ACTIONS(1462), + [sym__html_block_4_start] = ACTIONS(1462), + [sym__html_block_5_start] = ACTIONS(1462), + [sym__html_block_6_start] = ACTIONS(1462), + [sym__html_block_7_start] = ACTIONS(1462), + [sym__pipe_table_start] = ACTIONS(1462), + }, + [199] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_PERCENT] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1408), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1408), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1408), + [anon_sym_BSLASH] = ACTIONS(1408), + [anon_sym_CARET] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [aux_sym__word_token1] = ACTIONS(1408), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1408), + [aux_sym__word_token2] = ACTIONS(1408), + [sym__whitespace] = ACTIONS(1408), + [sym__soft_line_ending] = ACTIONS(1408), + [sym_block_continuation] = ACTIONS(1536), + [sym__block_quote_start] = ACTIONS(1408), + [sym__indented_chunk_start] = ACTIONS(1408), + [sym_atx_h1_marker] = ACTIONS(1408), + [sym_atx_h2_marker] = ACTIONS(1408), + [sym_atx_h3_marker] = ACTIONS(1408), + [sym_atx_h4_marker] = ACTIONS(1408), + [sym_atx_h5_marker] = ACTIONS(1408), + [sym_atx_h6_marker] = ACTIONS(1408), + [sym__thematic_break] = ACTIONS(1408), + [sym__list_marker_minus] = ACTIONS(1408), + [sym__list_marker_plus] = ACTIONS(1408), + [sym__list_marker_star] = ACTIONS(1408), + [sym__list_marker_parenthesis] = ACTIONS(1408), + [sym__list_marker_dot] = ACTIONS(1408), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1408), + [sym__fenced_code_block_start_backtick] = ACTIONS(1408), + [sym__fenced_code_block_start_tilde] = ACTIONS(1408), + [sym__blank_line_start] = ACTIONS(1408), + [sym__html_block_1_start] = ACTIONS(1408), + [sym__html_block_2_start] = ACTIONS(1408), + [sym__html_block_3_start] = ACTIONS(1408), + [sym__html_block_4_start] = ACTIONS(1408), + [sym__html_block_5_start] = ACTIONS(1408), + [sym__html_block_6_start] = ACTIONS(1408), + [sym__html_block_7_start] = ACTIONS(1408), + [sym__pipe_table_start] = ACTIONS(1408), + }, + [200] = { + [ts_builtin_sym_end] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_COMMA] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_DOT] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_COLON] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(1145), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1145), + [anon_sym_BSLASH] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1145), + [anon_sym__] = ACTIONS(1145), + [anon_sym_BQUOTE] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_RPAREN] = ACTIONS(1145), + [aux_sym__word_token1] = ACTIONS(1145), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1145), + [aux_sym__word_token2] = ACTIONS(1145), + [sym__whitespace] = ACTIONS(1145), + [sym__soft_line_ending] = ACTIONS(1145), + [sym__block_quote_start] = ACTIONS(1145), + [sym__indented_chunk_start] = ACTIONS(1145), + [sym_atx_h1_marker] = ACTIONS(1145), + [sym_atx_h2_marker] = ACTIONS(1145), + [sym_atx_h3_marker] = ACTIONS(1145), + [sym_atx_h4_marker] = ACTIONS(1145), + [sym_atx_h5_marker] = ACTIONS(1145), + [sym_atx_h6_marker] = ACTIONS(1145), + [sym__thematic_break] = ACTIONS(1145), + [sym__list_marker_minus] = ACTIONS(1145), + [sym__list_marker_plus] = ACTIONS(1145), + [sym__list_marker_star] = ACTIONS(1145), + [sym__list_marker_parenthesis] = ACTIONS(1145), + [sym__list_marker_dot] = ACTIONS(1145), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1145), + [sym__fenced_code_block_start_backtick] = ACTIONS(1145), + [sym__fenced_code_block_start_tilde] = ACTIONS(1145), + [sym__blank_line_start] = ACTIONS(1145), + [sym__html_block_1_start] = ACTIONS(1145), + [sym__html_block_2_start] = ACTIONS(1145), + [sym__html_block_3_start] = ACTIONS(1145), + [sym__html_block_4_start] = ACTIONS(1145), + [sym__html_block_5_start] = ACTIONS(1145), + [sym__html_block_6_start] = ACTIONS(1145), + [sym__html_block_7_start] = ACTIONS(1145), + [sym__pipe_table_start] = ACTIONS(1145), + }, + [201] = { + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_COLON] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [aux_sym__word_token1] = ACTIONS(1538), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1538), + [aux_sym__word_token2] = ACTIONS(1538), + [sym__whitespace] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_quote_start] = ACTIONS(1538), + [sym__indented_chunk_start] = ACTIONS(1538), + [sym_atx_h1_marker] = ACTIONS(1538), + [sym_atx_h2_marker] = ACTIONS(1538), + [sym_atx_h3_marker] = ACTIONS(1538), + [sym_atx_h4_marker] = ACTIONS(1538), + [sym_atx_h5_marker] = ACTIONS(1538), + [sym_atx_h6_marker] = ACTIONS(1538), + [sym__thematic_break] = ACTIONS(1538), + [sym__list_marker_minus] = ACTIONS(1538), + [sym__list_marker_plus] = ACTIONS(1538), + [sym__list_marker_star] = ACTIONS(1538), + [sym__list_marker_parenthesis] = ACTIONS(1538), + [sym__list_marker_dot] = ACTIONS(1538), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1538), + [sym__fenced_code_block_start_backtick] = ACTIONS(1538), + [sym__fenced_code_block_start_tilde] = ACTIONS(1538), + [sym__blank_line_start] = ACTIONS(1538), + [sym__html_block_1_start] = ACTIONS(1538), + [sym__html_block_2_start] = ACTIONS(1538), + [sym__html_block_3_start] = ACTIONS(1538), + [sym__html_block_4_start] = ACTIONS(1538), + [sym__html_block_5_start] = ACTIONS(1538), + [sym__html_block_6_start] = ACTIONS(1538), + [sym__html_block_7_start] = ACTIONS(1538), + [sym__pipe_table_start] = ACTIONS(1538), + }, + [202] = { + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1462), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(1462), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym__] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [aux_sym__word_token1] = ACTIONS(1462), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1462), + [aux_sym__word_token2] = ACTIONS(1462), + [sym__whitespace] = ACTIONS(1462), + [sym__soft_line_ending] = ACTIONS(1462), + [sym__block_close] = ACTIONS(1462), + [sym__block_quote_start] = ACTIONS(1462), + [sym__indented_chunk_start] = ACTIONS(1462), + [sym_atx_h1_marker] = ACTIONS(1462), + [sym_atx_h2_marker] = ACTIONS(1462), + [sym_atx_h3_marker] = ACTIONS(1462), + [sym_atx_h4_marker] = ACTIONS(1462), + [sym_atx_h5_marker] = ACTIONS(1462), + [sym_atx_h6_marker] = ACTIONS(1462), + [sym__thematic_break] = ACTIONS(1462), + [sym__list_marker_minus] = ACTIONS(1462), + [sym__list_marker_plus] = ACTIONS(1462), + [sym__list_marker_star] = ACTIONS(1462), + [sym__list_marker_parenthesis] = ACTIONS(1462), + [sym__list_marker_dot] = ACTIONS(1462), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1462), + [sym__fenced_code_block_start_backtick] = ACTIONS(1462), + [sym__fenced_code_block_start_tilde] = ACTIONS(1462), + [sym__blank_line_start] = ACTIONS(1462), + [sym__html_block_1_start] = ACTIONS(1462), + [sym__html_block_2_start] = ACTIONS(1462), + [sym__html_block_3_start] = ACTIONS(1462), + [sym__html_block_4_start] = ACTIONS(1462), + [sym__html_block_5_start] = ACTIONS(1462), + [sym__html_block_6_start] = ACTIONS(1462), + [sym__html_block_7_start] = ACTIONS(1462), + [sym__pipe_table_start] = ACTIONS(1462), + }, + [203] = { + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_COLON] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [aux_sym__word_token1] = ACTIONS(1484), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1484), + [aux_sym__word_token2] = ACTIONS(1484), + [sym__whitespace] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_close] = ACTIONS(1484), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym__html_block_1_start] = ACTIONS(1484), + [sym__html_block_2_start] = ACTIONS(1484), + [sym__html_block_3_start] = ACTIONS(1484), + [sym__html_block_4_start] = ACTIONS(1484), + [sym__html_block_5_start] = ACTIONS(1484), + [sym__html_block_6_start] = ACTIONS(1484), + [sym__html_block_7_start] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + }, + [204] = { + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym__] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(1416), + [aux_sym__word_token1] = ACTIONS(1416), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1416), + [aux_sym__word_token2] = ACTIONS(1416), + [sym__whitespace] = ACTIONS(1416), + [sym__soft_line_ending] = ACTIONS(1416), + [sym__block_close] = ACTIONS(1416), + [sym__block_quote_start] = ACTIONS(1416), + [sym__indented_chunk_start] = ACTIONS(1416), + [sym_atx_h1_marker] = ACTIONS(1416), + [sym_atx_h2_marker] = ACTIONS(1416), + [sym_atx_h3_marker] = ACTIONS(1416), + [sym_atx_h4_marker] = ACTIONS(1416), + [sym_atx_h5_marker] = ACTIONS(1416), + [sym_atx_h6_marker] = ACTIONS(1416), + [sym__thematic_break] = ACTIONS(1416), + [sym__list_marker_minus] = ACTIONS(1416), + [sym__list_marker_plus] = ACTIONS(1416), + [sym__list_marker_star] = ACTIONS(1416), + [sym__list_marker_parenthesis] = ACTIONS(1416), + [sym__list_marker_dot] = ACTIONS(1416), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1416), + [sym__fenced_code_block_start_backtick] = ACTIONS(1416), + [sym__fenced_code_block_start_tilde] = ACTIONS(1416), + [sym__blank_line_start] = ACTIONS(1416), + [sym__html_block_1_start] = ACTIONS(1416), + [sym__html_block_2_start] = ACTIONS(1416), + [sym__html_block_3_start] = ACTIONS(1416), + [sym__html_block_4_start] = ACTIONS(1416), + [sym__html_block_5_start] = ACTIONS(1416), + [sym__html_block_6_start] = ACTIONS(1416), + [sym__html_block_7_start] = ACTIONS(1416), + [sym__pipe_table_start] = ACTIONS(1416), + }, + [205] = { + [ts_builtin_sym_end] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_RBRACK] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_COLON] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym__] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [aux_sym__word_token1] = ACTIONS(1542), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1542), + [aux_sym__word_token2] = ACTIONS(1542), + [sym__whitespace] = ACTIONS(1542), + [sym__soft_line_ending] = ACTIONS(1542), + [sym__block_quote_start] = ACTIONS(1542), + [sym__indented_chunk_start] = ACTIONS(1542), + [sym_atx_h1_marker] = ACTIONS(1542), + [sym_atx_h2_marker] = ACTIONS(1542), + [sym_atx_h3_marker] = ACTIONS(1542), + [sym_atx_h4_marker] = ACTIONS(1542), + [sym_atx_h5_marker] = ACTIONS(1542), + [sym_atx_h6_marker] = ACTIONS(1542), + [sym__thematic_break] = ACTIONS(1542), + [sym__list_marker_minus] = ACTIONS(1542), + [sym__list_marker_plus] = ACTIONS(1542), + [sym__list_marker_star] = ACTIONS(1542), + [sym__list_marker_parenthesis] = ACTIONS(1542), + [sym__list_marker_dot] = ACTIONS(1542), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1542), + [sym__fenced_code_block_start_backtick] = ACTIONS(1542), + [sym__fenced_code_block_start_tilde] = ACTIONS(1542), + [sym__blank_line_start] = ACTIONS(1542), + [sym__html_block_1_start] = ACTIONS(1542), + [sym__html_block_2_start] = ACTIONS(1542), + [sym__html_block_3_start] = ACTIONS(1542), + [sym__html_block_4_start] = ACTIONS(1542), + [sym__html_block_5_start] = ACTIONS(1542), + [sym__html_block_6_start] = ACTIONS(1542), + [sym__html_block_7_start] = ACTIONS(1542), + [sym__pipe_table_start] = ACTIONS(1542), + }, + [206] = { + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_PERCENT] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1408), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1408), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1408), + [anon_sym_BSLASH] = ACTIONS(1408), + [anon_sym_CARET] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [aux_sym__word_token1] = ACTIONS(1408), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1408), + [aux_sym__word_token2] = ACTIONS(1408), + [sym__whitespace] = ACTIONS(1408), + [sym__soft_line_ending] = ACTIONS(1408), + [sym__block_close] = ACTIONS(1408), + [sym__block_quote_start] = ACTIONS(1408), + [sym__indented_chunk_start] = ACTIONS(1408), + [sym_atx_h1_marker] = ACTIONS(1408), + [sym_atx_h2_marker] = ACTIONS(1408), + [sym_atx_h3_marker] = ACTIONS(1408), + [sym_atx_h4_marker] = ACTIONS(1408), + [sym_atx_h5_marker] = ACTIONS(1408), + [sym_atx_h6_marker] = ACTIONS(1408), + [sym__thematic_break] = ACTIONS(1408), + [sym__list_marker_minus] = ACTIONS(1408), + [sym__list_marker_plus] = ACTIONS(1408), + [sym__list_marker_star] = ACTIONS(1408), + [sym__list_marker_parenthesis] = ACTIONS(1408), + [sym__list_marker_dot] = ACTIONS(1408), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1408), + [sym__fenced_code_block_start_backtick] = ACTIONS(1408), + [sym__fenced_code_block_start_tilde] = ACTIONS(1408), + [sym__blank_line_start] = ACTIONS(1408), + [sym__html_block_1_start] = ACTIONS(1408), + [sym__html_block_2_start] = ACTIONS(1408), + [sym__html_block_3_start] = ACTIONS(1408), + [sym__html_block_4_start] = ACTIONS(1408), + [sym__html_block_5_start] = ACTIONS(1408), + [sym__html_block_6_start] = ACTIONS(1408), + [sym__html_block_7_start] = ACTIONS(1408), + [sym__pipe_table_start] = ACTIONS(1408), + }, + [207] = { + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_RBRACK] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_COLON] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_BSLASH] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym__] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [aux_sym__word_token1] = ACTIONS(1400), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1400), + [aux_sym__word_token2] = ACTIONS(1400), + [sym__whitespace] = ACTIONS(1400), + [sym__soft_line_ending] = ACTIONS(1400), + [sym__block_close] = ACTIONS(1400), + [sym__block_quote_start] = ACTIONS(1400), + [sym__indented_chunk_start] = ACTIONS(1400), + [sym_atx_h1_marker] = ACTIONS(1400), + [sym_atx_h2_marker] = ACTIONS(1400), + [sym_atx_h3_marker] = ACTIONS(1400), + [sym_atx_h4_marker] = ACTIONS(1400), + [sym_atx_h5_marker] = ACTIONS(1400), + [sym_atx_h6_marker] = ACTIONS(1400), + [sym__thematic_break] = ACTIONS(1400), + [sym__list_marker_minus] = ACTIONS(1400), + [sym__list_marker_plus] = ACTIONS(1400), + [sym__list_marker_star] = ACTIONS(1400), + [sym__list_marker_parenthesis] = ACTIONS(1400), + [sym__list_marker_dot] = ACTIONS(1400), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1400), + [sym__fenced_code_block_start_backtick] = ACTIONS(1400), + [sym__fenced_code_block_start_tilde] = ACTIONS(1400), + [sym__blank_line_start] = ACTIONS(1400), + [sym__html_block_1_start] = ACTIONS(1400), + [sym__html_block_2_start] = ACTIONS(1400), + [sym__html_block_3_start] = ACTIONS(1400), + [sym__html_block_4_start] = ACTIONS(1400), + [sym__html_block_5_start] = ACTIONS(1400), + [sym__html_block_6_start] = ACTIONS(1400), + [sym__html_block_7_start] = ACTIONS(1400), + [sym__pipe_table_start] = ACTIONS(1400), + }, + [208] = { + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_GT] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_PERCENT] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_COMMA] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_DOT] = ACTIONS(1392), + [anon_sym_SLASH] = ACTIONS(1392), + [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_BSLASH] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(1392), + [anon_sym__] = ACTIONS(1392), + [anon_sym_BQUOTE] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_RPAREN] = ACTIONS(1392), + [aux_sym__word_token1] = ACTIONS(1392), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1392), + [aux_sym__word_token2] = ACTIONS(1392), + [sym__whitespace] = ACTIONS(1392), + [sym__soft_line_ending] = ACTIONS(1392), + [sym__block_close] = ACTIONS(1392), + [sym__block_quote_start] = ACTIONS(1392), + [sym__indented_chunk_start] = ACTIONS(1392), + [sym_atx_h1_marker] = ACTIONS(1392), + [sym_atx_h2_marker] = ACTIONS(1392), + [sym_atx_h3_marker] = ACTIONS(1392), + [sym_atx_h4_marker] = ACTIONS(1392), + [sym_atx_h5_marker] = ACTIONS(1392), + [sym_atx_h6_marker] = ACTIONS(1392), + [sym__thematic_break] = ACTIONS(1392), + [sym__list_marker_minus] = ACTIONS(1392), + [sym__list_marker_plus] = ACTIONS(1392), + [sym__list_marker_star] = ACTIONS(1392), + [sym__list_marker_parenthesis] = ACTIONS(1392), + [sym__list_marker_dot] = ACTIONS(1392), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1392), + [sym__fenced_code_block_start_backtick] = ACTIONS(1392), + [sym__fenced_code_block_start_tilde] = ACTIONS(1392), + [sym__blank_line_start] = ACTIONS(1392), + [sym__html_block_1_start] = ACTIONS(1392), + [sym__html_block_2_start] = ACTIONS(1392), + [sym__html_block_3_start] = ACTIONS(1392), + [sym__html_block_4_start] = ACTIONS(1392), + [sym__html_block_5_start] = ACTIONS(1392), + [sym__html_block_6_start] = ACTIONS(1392), + [sym__html_block_7_start] = ACTIONS(1392), + [sym__pipe_table_start] = ACTIONS(1392), + }, + [209] = { + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_COLON] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_AT] = ACTIONS(1362), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym__] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [aux_sym__word_token1] = ACTIONS(1362), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1362), + [aux_sym__word_token2] = ACTIONS(1362), + [sym__whitespace] = ACTIONS(1362), + [sym__soft_line_ending] = ACTIONS(1362), + [sym__block_close] = ACTIONS(1362), + [sym__block_quote_start] = ACTIONS(1362), + [sym__indented_chunk_start] = ACTIONS(1362), + [sym_atx_h1_marker] = ACTIONS(1362), + [sym_atx_h2_marker] = ACTIONS(1362), + [sym_atx_h3_marker] = ACTIONS(1362), + [sym_atx_h4_marker] = ACTIONS(1362), + [sym_atx_h5_marker] = ACTIONS(1362), + [sym_atx_h6_marker] = ACTIONS(1362), + [sym__thematic_break] = ACTIONS(1362), + [sym__list_marker_minus] = ACTIONS(1362), + [sym__list_marker_plus] = ACTIONS(1362), + [sym__list_marker_star] = ACTIONS(1362), + [sym__list_marker_parenthesis] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(1362), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), + [sym__fenced_code_block_start_backtick] = ACTIONS(1362), + [sym__fenced_code_block_start_tilde] = ACTIONS(1362), + [sym__blank_line_start] = ACTIONS(1362), + [sym__html_block_1_start] = ACTIONS(1362), + [sym__html_block_2_start] = ACTIONS(1362), + [sym__html_block_3_start] = ACTIONS(1362), + [sym__html_block_4_start] = ACTIONS(1362), + [sym__html_block_5_start] = ACTIONS(1362), + [sym__html_block_6_start] = ACTIONS(1362), + [sym__html_block_7_start] = ACTIONS(1362), + [sym__pipe_table_start] = ACTIONS(1362), + }, + [210] = { + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_RBRACK] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_COLON] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym__] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [aux_sym__word_token1] = ACTIONS(1542), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1542), + [aux_sym__word_token2] = ACTIONS(1542), + [sym__whitespace] = ACTIONS(1542), + [sym__soft_line_ending] = ACTIONS(1542), + [sym__block_close] = ACTIONS(1542), + [sym__block_quote_start] = ACTIONS(1542), + [sym__indented_chunk_start] = ACTIONS(1542), + [sym_atx_h1_marker] = ACTIONS(1542), + [sym_atx_h2_marker] = ACTIONS(1542), + [sym_atx_h3_marker] = ACTIONS(1542), + [sym_atx_h4_marker] = ACTIONS(1542), + [sym_atx_h5_marker] = ACTIONS(1542), + [sym_atx_h6_marker] = ACTIONS(1542), + [sym__thematic_break] = ACTIONS(1542), + [sym__list_marker_minus] = ACTIONS(1542), + [sym__list_marker_plus] = ACTIONS(1542), + [sym__list_marker_star] = ACTIONS(1542), + [sym__list_marker_parenthesis] = ACTIONS(1542), + [sym__list_marker_dot] = ACTIONS(1542), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1542), + [sym__fenced_code_block_start_backtick] = ACTIONS(1542), + [sym__fenced_code_block_start_tilde] = ACTIONS(1542), + [sym__blank_line_start] = ACTIONS(1542), + [sym__html_block_1_start] = ACTIONS(1542), + [sym__html_block_2_start] = ACTIONS(1542), + [sym__html_block_3_start] = ACTIONS(1542), + [sym__html_block_4_start] = ACTIONS(1542), + [sym__html_block_5_start] = ACTIONS(1542), + [sym__html_block_6_start] = ACTIONS(1542), + [sym__html_block_7_start] = ACTIONS(1542), + [sym__pipe_table_start] = ACTIONS(1542), + }, + [211] = { + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_COLON] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [aux_sym__word_token1] = ACTIONS(1548), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1548), + [aux_sym__word_token2] = ACTIONS(1548), + [sym__whitespace] = ACTIONS(1548), + [sym__soft_line_ending] = ACTIONS(1548), + [sym__block_close] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(1548), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(1548), + [sym__html_block_1_start] = ACTIONS(1548), + [sym__html_block_2_start] = ACTIONS(1548), + [sym__html_block_3_start] = ACTIONS(1548), + [sym__html_block_4_start] = ACTIONS(1548), + [sym__html_block_5_start] = ACTIONS(1548), + [sym__html_block_6_start] = ACTIONS(1548), + [sym__html_block_7_start] = ACTIONS(1548), + [sym__pipe_table_start] = ACTIONS(1548), + }, + [212] = { + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_COLON] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [aux_sym__word_token1] = ACTIONS(1552), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1552), + [aux_sym__word_token2] = ACTIONS(1552), + [sym__whitespace] = ACTIONS(1552), + [sym__soft_line_ending] = ACTIONS(1552), + [sym__block_close] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym__html_block_1_start] = ACTIONS(1552), + [sym__html_block_2_start] = ACTIONS(1552), + [sym__html_block_3_start] = ACTIONS(1552), + [sym__html_block_4_start] = ACTIONS(1552), + [sym__html_block_5_start] = ACTIONS(1552), + [sym__html_block_6_start] = ACTIONS(1552), + [sym__html_block_7_start] = ACTIONS(1552), + [sym__pipe_table_start] = ACTIONS(1552), + }, + [213] = { + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_PERCENT] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_COLON] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(1556), + [anon_sym_CARET] = ACTIONS(1556), + [anon_sym__] = ACTIONS(1556), + [anon_sym_BQUOTE] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [aux_sym__word_token1] = ACTIONS(1556), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1556), + [aux_sym__word_token2] = ACTIONS(1556), + [sym__whitespace] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_close] = ACTIONS(1556), + [sym__block_quote_start] = ACTIONS(1556), + [sym__indented_chunk_start] = ACTIONS(1556), + [sym_atx_h1_marker] = ACTIONS(1556), + [sym_atx_h2_marker] = ACTIONS(1556), + [sym_atx_h3_marker] = ACTIONS(1556), + [sym_atx_h4_marker] = ACTIONS(1556), + [sym_atx_h5_marker] = ACTIONS(1556), + [sym_atx_h6_marker] = ACTIONS(1556), + [sym__thematic_break] = ACTIONS(1556), + [sym__list_marker_minus] = ACTIONS(1556), + [sym__list_marker_plus] = ACTIONS(1556), + [sym__list_marker_star] = ACTIONS(1556), + [sym__list_marker_parenthesis] = ACTIONS(1556), + [sym__list_marker_dot] = ACTIONS(1556), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1556), + [sym__fenced_code_block_start_backtick] = ACTIONS(1556), + [sym__fenced_code_block_start_tilde] = ACTIONS(1556), + [sym__blank_line_start] = ACTIONS(1556), + [sym__html_block_1_start] = ACTIONS(1556), + [sym__html_block_2_start] = ACTIONS(1556), + [sym__html_block_3_start] = ACTIONS(1556), + [sym__html_block_4_start] = ACTIONS(1556), + [sym__html_block_5_start] = ACTIONS(1556), + [sym__html_block_6_start] = ACTIONS(1556), + [sym__html_block_7_start] = ACTIONS(1556), + [sym__pipe_table_start] = ACTIONS(1556), + }, + [214] = { + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_COLON] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_EQ] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1560), + [anon_sym_AT] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1560), + [anon_sym__] = ACTIONS(1560), + [anon_sym_BQUOTE] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [aux_sym__word_token1] = ACTIONS(1560), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1560), + [aux_sym__word_token2] = ACTIONS(1560), + [sym__whitespace] = ACTIONS(1560), + [sym__soft_line_ending] = ACTIONS(1560), + [sym__block_close] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1560), + [sym__indented_chunk_start] = ACTIONS(1560), + [sym_atx_h1_marker] = ACTIONS(1560), + [sym_atx_h2_marker] = ACTIONS(1560), + [sym_atx_h3_marker] = ACTIONS(1560), + [sym_atx_h4_marker] = ACTIONS(1560), + [sym_atx_h5_marker] = ACTIONS(1560), + [sym_atx_h6_marker] = ACTIONS(1560), + [sym__thematic_break] = ACTIONS(1560), + [sym__list_marker_minus] = ACTIONS(1560), + [sym__list_marker_plus] = ACTIONS(1560), + [sym__list_marker_star] = ACTIONS(1560), + [sym__list_marker_parenthesis] = ACTIONS(1560), + [sym__list_marker_dot] = ACTIONS(1560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1560), + [sym__fenced_code_block_start_backtick] = ACTIONS(1560), + [sym__fenced_code_block_start_tilde] = ACTIONS(1560), + [sym__blank_line_start] = ACTIONS(1560), + [sym__html_block_1_start] = ACTIONS(1560), + [sym__html_block_2_start] = ACTIONS(1560), + [sym__html_block_3_start] = ACTIONS(1560), + [sym__html_block_4_start] = ACTIONS(1560), + [sym__html_block_5_start] = ACTIONS(1560), + [sym__html_block_6_start] = ACTIONS(1560), + [sym__html_block_7_start] = ACTIONS(1560), + [sym__pipe_table_start] = ACTIONS(1560), + }, + [215] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_COLON] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_AT] = ACTIONS(1362), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym__] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [aux_sym__word_token1] = ACTIONS(1362), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1362), + [aux_sym__word_token2] = ACTIONS(1362), + [sym__whitespace] = ACTIONS(1362), + [sym__soft_line_ending] = ACTIONS(1362), + [sym__block_quote_start] = ACTIONS(1362), + [sym__indented_chunk_start] = ACTIONS(1362), + [sym_atx_h1_marker] = ACTIONS(1362), + [sym_atx_h2_marker] = ACTIONS(1362), + [sym_atx_h3_marker] = ACTIONS(1362), + [sym_atx_h4_marker] = ACTIONS(1362), + [sym_atx_h5_marker] = ACTIONS(1362), + [sym_atx_h6_marker] = ACTIONS(1362), + [sym__thematic_break] = ACTIONS(1362), + [sym__list_marker_minus] = ACTIONS(1362), + [sym__list_marker_plus] = ACTIONS(1362), + [sym__list_marker_star] = ACTIONS(1362), + [sym__list_marker_parenthesis] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(1362), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), + [sym__fenced_code_block_start_backtick] = ACTIONS(1362), + [sym__fenced_code_block_start_tilde] = ACTIONS(1362), + [sym__blank_line_start] = ACTIONS(1362), + [sym__html_block_1_start] = ACTIONS(1362), + [sym__html_block_2_start] = ACTIONS(1362), + [sym__html_block_3_start] = ACTIONS(1362), + [sym__html_block_4_start] = ACTIONS(1362), + [sym__html_block_5_start] = ACTIONS(1362), + [sym__html_block_6_start] = ACTIONS(1362), + [sym__html_block_7_start] = ACTIONS(1362), + [sym__pipe_table_start] = ACTIONS(1362), + }, + [216] = { + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_BSLASH] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym__] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [aux_sym__word_token1] = ACTIONS(1564), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1564), + [aux_sym__word_token2] = ACTIONS(1564), + [sym__whitespace] = ACTIONS(1564), + [sym__soft_line_ending] = ACTIONS(1564), + [sym__block_close] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(1564), + [sym__indented_chunk_start] = ACTIONS(1564), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(1564), + [sym__thematic_break] = ACTIONS(1564), + [sym__list_marker_minus] = ACTIONS(1564), + [sym__list_marker_plus] = ACTIONS(1564), + [sym__list_marker_star] = ACTIONS(1564), + [sym__list_marker_parenthesis] = ACTIONS(1564), + [sym__list_marker_dot] = ACTIONS(1564), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1564), + [sym__fenced_code_block_start_backtick] = ACTIONS(1564), + [sym__fenced_code_block_start_tilde] = ACTIONS(1564), + [sym__blank_line_start] = ACTIONS(1564), + [sym__html_block_1_start] = ACTIONS(1564), + [sym__html_block_2_start] = ACTIONS(1564), + [sym__html_block_3_start] = ACTIONS(1564), + [sym__html_block_4_start] = ACTIONS(1564), + [sym__html_block_5_start] = ACTIONS(1564), + [sym__html_block_6_start] = ACTIONS(1564), + [sym__html_block_7_start] = ACTIONS(1564), + [sym__pipe_table_start] = ACTIONS(1564), + }, + [217] = { + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_PERCENT] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_COMMA] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_DOT] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_COLON] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1568), + [anon_sym_BSLASH] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym__] = ACTIONS(1568), + [anon_sym_BQUOTE] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_RPAREN] = ACTIONS(1568), + [aux_sym__word_token1] = ACTIONS(1568), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1568), + [aux_sym__word_token2] = ACTIONS(1568), + [sym__whitespace] = ACTIONS(1568), + [sym__soft_line_ending] = ACTIONS(1568), + [sym__block_close] = ACTIONS(1568), + [sym__block_quote_start] = ACTIONS(1568), + [sym__indented_chunk_start] = ACTIONS(1568), + [sym_atx_h1_marker] = ACTIONS(1568), + [sym_atx_h2_marker] = ACTIONS(1568), + [sym_atx_h3_marker] = ACTIONS(1568), + [sym_atx_h4_marker] = ACTIONS(1568), + [sym_atx_h5_marker] = ACTIONS(1568), + [sym_atx_h6_marker] = ACTIONS(1568), + [sym__thematic_break] = ACTIONS(1568), + [sym__list_marker_minus] = ACTIONS(1568), + [sym__list_marker_plus] = ACTIONS(1568), + [sym__list_marker_star] = ACTIONS(1568), + [sym__list_marker_parenthesis] = ACTIONS(1568), + [sym__list_marker_dot] = ACTIONS(1568), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1568), + [sym__fenced_code_block_start_backtick] = ACTIONS(1568), + [sym__fenced_code_block_start_tilde] = ACTIONS(1568), + [sym__blank_line_start] = ACTIONS(1568), + [sym__html_block_1_start] = ACTIONS(1568), + [sym__html_block_2_start] = ACTIONS(1568), + [sym__html_block_3_start] = ACTIONS(1568), + [sym__html_block_4_start] = ACTIONS(1568), + [sym__html_block_5_start] = ACTIONS(1568), + [sym__html_block_6_start] = ACTIONS(1568), + [sym__html_block_7_start] = ACTIONS(1568), + [sym__pipe_table_start] = ACTIONS(1568), + }, + [218] = { + [ts_builtin_sym_end] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_RBRACK] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_GT] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(1392), + [anon_sym_PERCENT] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_COMMA] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_DOT] = ACTIONS(1392), + [anon_sym_SLASH] = ACTIONS(1392), + [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_BSLASH] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(1392), + [anon_sym__] = ACTIONS(1392), + [anon_sym_BQUOTE] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_RPAREN] = ACTIONS(1392), + [aux_sym__word_token1] = ACTIONS(1392), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1392), + [aux_sym__word_token2] = ACTIONS(1392), + [sym__whitespace] = ACTIONS(1392), + [sym__soft_line_ending] = ACTIONS(1392), + [sym__block_quote_start] = ACTIONS(1392), + [sym__indented_chunk_start] = ACTIONS(1392), + [sym_atx_h1_marker] = ACTIONS(1392), + [sym_atx_h2_marker] = ACTIONS(1392), + [sym_atx_h3_marker] = ACTIONS(1392), + [sym_atx_h4_marker] = ACTIONS(1392), + [sym_atx_h5_marker] = ACTIONS(1392), + [sym_atx_h6_marker] = ACTIONS(1392), + [sym__thematic_break] = ACTIONS(1392), + [sym__list_marker_minus] = ACTIONS(1392), + [sym__list_marker_plus] = ACTIONS(1392), + [sym__list_marker_star] = ACTIONS(1392), + [sym__list_marker_parenthesis] = ACTIONS(1392), + [sym__list_marker_dot] = ACTIONS(1392), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1392), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1392), + [sym__fenced_code_block_start_backtick] = ACTIONS(1392), + [sym__fenced_code_block_start_tilde] = ACTIONS(1392), + [sym__blank_line_start] = ACTIONS(1392), + [sym__html_block_1_start] = ACTIONS(1392), + [sym__html_block_2_start] = ACTIONS(1392), + [sym__html_block_3_start] = ACTIONS(1392), + [sym__html_block_4_start] = ACTIONS(1392), + [sym__html_block_5_start] = ACTIONS(1392), + [sym__html_block_6_start] = ACTIONS(1392), + [sym__html_block_7_start] = ACTIONS(1392), + [sym__pipe_table_start] = ACTIONS(1392), + }, + [219] = { + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [anon_sym_POUND] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_COMMA] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_DOT] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_COLON] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_AT] = ACTIONS(1342), + [anon_sym_BSLASH] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym__] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [aux_sym__word_token1] = ACTIONS(1342), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1342), + [aux_sym__word_token2] = ACTIONS(1342), + [sym__whitespace] = ACTIONS(1342), + [sym__soft_line_ending] = ACTIONS(1342), + [sym__block_close] = ACTIONS(1342), + [sym__block_quote_start] = ACTIONS(1342), + [sym__indented_chunk_start] = ACTIONS(1342), + [sym_atx_h1_marker] = ACTIONS(1342), + [sym_atx_h2_marker] = ACTIONS(1342), + [sym_atx_h3_marker] = ACTIONS(1342), + [sym_atx_h4_marker] = ACTIONS(1342), + [sym_atx_h5_marker] = ACTIONS(1342), + [sym_atx_h6_marker] = ACTIONS(1342), + [sym__thematic_break] = ACTIONS(1342), + [sym__list_marker_minus] = ACTIONS(1342), + [sym__list_marker_plus] = ACTIONS(1342), + [sym__list_marker_star] = ACTIONS(1342), + [sym__list_marker_parenthesis] = ACTIONS(1342), + [sym__list_marker_dot] = ACTIONS(1342), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), + [sym__fenced_code_block_start_backtick] = ACTIONS(1342), + [sym__fenced_code_block_start_tilde] = ACTIONS(1342), + [sym__blank_line_start] = ACTIONS(1342), + [sym__html_block_1_start] = ACTIONS(1342), + [sym__html_block_2_start] = ACTIONS(1342), + [sym__html_block_3_start] = ACTIONS(1342), + [sym__html_block_4_start] = ACTIONS(1342), + [sym__html_block_5_start] = ACTIONS(1342), + [sym__html_block_6_start] = ACTIONS(1342), + [sym__html_block_7_start] = ACTIONS(1342), + [sym__pipe_table_start] = ACTIONS(1342), + }, + [220] = { + [ts_builtin_sym_end] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_BSLASH] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [aux_sym__word_token1] = ACTIONS(1239), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1239), + [aux_sym__word_token2] = ACTIONS(1239), + [sym__whitespace] = ACTIONS(1239), + [sym__soft_line_ending] = ACTIONS(1239), + [sym__block_quote_start] = ACTIONS(1239), + [sym__indented_chunk_start] = ACTIONS(1239), + [sym_atx_h1_marker] = ACTIONS(1239), + [sym_atx_h2_marker] = ACTIONS(1239), + [sym_atx_h3_marker] = ACTIONS(1239), + [sym_atx_h4_marker] = ACTIONS(1239), + [sym_atx_h5_marker] = ACTIONS(1239), + [sym_atx_h6_marker] = ACTIONS(1239), + [sym__thematic_break] = ACTIONS(1239), + [sym__list_marker_minus] = ACTIONS(1239), + [sym__list_marker_plus] = ACTIONS(1239), + [sym__list_marker_star] = ACTIONS(1239), + [sym__list_marker_parenthesis] = ACTIONS(1239), + [sym__list_marker_dot] = ACTIONS(1239), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1239), + [sym__fenced_code_block_start_backtick] = ACTIONS(1239), + [sym__fenced_code_block_start_tilde] = ACTIONS(1239), + [sym__blank_line_start] = ACTIONS(1239), + [sym__html_block_1_start] = ACTIONS(1239), + [sym__html_block_2_start] = ACTIONS(1239), + [sym__html_block_3_start] = ACTIONS(1239), + [sym__html_block_4_start] = ACTIONS(1239), + [sym__html_block_5_start] = ACTIONS(1239), + [sym__html_block_6_start] = ACTIONS(1239), + [sym__html_block_7_start] = ACTIONS(1239), + [sym__pipe_table_start] = ACTIONS(1239), + }, + [221] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_RBRACK] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_COLON] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_BSLASH] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym__] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [aux_sym__word_token1] = ACTIONS(1400), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1400), + [aux_sym__word_token2] = ACTIONS(1400), + [sym__whitespace] = ACTIONS(1400), + [sym__soft_line_ending] = ACTIONS(1400), + [sym__block_quote_start] = ACTIONS(1400), + [sym__indented_chunk_start] = ACTIONS(1400), + [sym_atx_h1_marker] = ACTIONS(1400), + [sym_atx_h2_marker] = ACTIONS(1400), + [sym_atx_h3_marker] = ACTIONS(1400), + [sym_atx_h4_marker] = ACTIONS(1400), + [sym_atx_h5_marker] = ACTIONS(1400), + [sym_atx_h6_marker] = ACTIONS(1400), + [sym__thematic_break] = ACTIONS(1400), + [sym__list_marker_minus] = ACTIONS(1400), + [sym__list_marker_plus] = ACTIONS(1400), + [sym__list_marker_star] = ACTIONS(1400), + [sym__list_marker_parenthesis] = ACTIONS(1400), + [sym__list_marker_dot] = ACTIONS(1400), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1400), + [sym__fenced_code_block_start_backtick] = ACTIONS(1400), + [sym__fenced_code_block_start_tilde] = ACTIONS(1400), + [sym__blank_line_start] = ACTIONS(1400), + [sym__html_block_1_start] = ACTIONS(1400), + [sym__html_block_2_start] = ACTIONS(1400), + [sym__html_block_3_start] = ACTIONS(1400), + [sym__html_block_4_start] = ACTIONS(1400), + [sym__html_block_5_start] = ACTIONS(1400), + [sym__html_block_6_start] = ACTIONS(1400), + [sym__html_block_7_start] = ACTIONS(1400), + [sym__pipe_table_start] = ACTIONS(1400), + }, + [222] = { + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_GT] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_PERCENT] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_CARET] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [aux_sym__word_token1] = ACTIONS(1572), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1572), + [aux_sym__word_token2] = ACTIONS(1572), + [sym__whitespace] = ACTIONS(1572), + [sym__soft_line_ending] = ACTIONS(1572), + [sym_block_continuation] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1572), + [sym__indented_chunk_start] = ACTIONS(1572), + [sym_atx_h1_marker] = ACTIONS(1572), + [sym_atx_h2_marker] = ACTIONS(1572), + [sym_atx_h3_marker] = ACTIONS(1572), + [sym_atx_h4_marker] = ACTIONS(1572), + [sym_atx_h5_marker] = ACTIONS(1572), + [sym_atx_h6_marker] = ACTIONS(1572), + [sym__thematic_break] = ACTIONS(1572), + [sym__list_marker_minus] = ACTIONS(1572), + [sym__list_marker_plus] = ACTIONS(1572), + [sym__list_marker_star] = ACTIONS(1572), + [sym__list_marker_parenthesis] = ACTIONS(1572), + [sym__list_marker_dot] = ACTIONS(1572), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1572), + [sym__fenced_code_block_start_backtick] = ACTIONS(1572), + [sym__fenced_code_block_start_tilde] = ACTIONS(1572), + [sym__blank_line_start] = ACTIONS(1572), + [sym__html_block_1_start] = ACTIONS(1572), + [sym__html_block_2_start] = ACTIONS(1572), + [sym__html_block_3_start] = ACTIONS(1572), + [sym__html_block_4_start] = ACTIONS(1572), + [sym__html_block_5_start] = ACTIONS(1572), + [sym__html_block_6_start] = ACTIONS(1572), + [sym__html_block_7_start] = ACTIONS(1572), + [sym__pipe_table_start] = ACTIONS(1572), + }, + [223] = { + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_RBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_GT] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1382), + [anon_sym_COLON] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_BSLASH] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym__] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1382), + [aux_sym__word_token1] = ACTIONS(1382), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1382), + [aux_sym__word_token2] = ACTIONS(1382), + [sym__whitespace] = ACTIONS(1382), + [sym__soft_line_ending] = ACTIONS(1382), + [sym__block_close] = ACTIONS(1382), + [sym__block_quote_start] = ACTIONS(1382), + [sym__indented_chunk_start] = ACTIONS(1382), + [sym_atx_h1_marker] = ACTIONS(1382), + [sym_atx_h2_marker] = ACTIONS(1382), + [sym_atx_h3_marker] = ACTIONS(1382), + [sym_atx_h4_marker] = ACTIONS(1382), + [sym_atx_h5_marker] = ACTIONS(1382), + [sym_atx_h6_marker] = ACTIONS(1382), + [sym__thematic_break] = ACTIONS(1382), + [sym__list_marker_minus] = ACTIONS(1382), + [sym__list_marker_plus] = ACTIONS(1382), + [sym__list_marker_star] = ACTIONS(1382), + [sym__list_marker_parenthesis] = ACTIONS(1382), + [sym__list_marker_dot] = ACTIONS(1382), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym__html_block_1_start] = ACTIONS(1382), + [sym__html_block_2_start] = ACTIONS(1382), + [sym__html_block_3_start] = ACTIONS(1382), + [sym__html_block_4_start] = ACTIONS(1382), + [sym__html_block_5_start] = ACTIONS(1382), + [sym__html_block_6_start] = ACTIONS(1382), + [sym__html_block_7_start] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + }, + [224] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_GT] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_PERCENT] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1408), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1408), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1408), + [anon_sym_BSLASH] = ACTIONS(1408), + [anon_sym_CARET] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [aux_sym__word_token1] = ACTIONS(1408), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1408), + [aux_sym__word_token2] = ACTIONS(1408), + [sym__whitespace] = ACTIONS(1408), + [sym__soft_line_ending] = ACTIONS(1408), + [sym__block_quote_start] = ACTIONS(1408), + [sym__indented_chunk_start] = ACTIONS(1408), + [sym_atx_h1_marker] = ACTIONS(1408), + [sym_atx_h2_marker] = ACTIONS(1408), + [sym_atx_h3_marker] = ACTIONS(1408), + [sym_atx_h4_marker] = ACTIONS(1408), + [sym_atx_h5_marker] = ACTIONS(1408), + [sym_atx_h6_marker] = ACTIONS(1408), + [sym__thematic_break] = ACTIONS(1408), + [sym__list_marker_minus] = ACTIONS(1408), + [sym__list_marker_plus] = ACTIONS(1408), + [sym__list_marker_star] = ACTIONS(1408), + [sym__list_marker_parenthesis] = ACTIONS(1408), + [sym__list_marker_dot] = ACTIONS(1408), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1408), + [sym__fenced_code_block_start_backtick] = ACTIONS(1408), + [sym__fenced_code_block_start_tilde] = ACTIONS(1408), + [sym__blank_line_start] = ACTIONS(1408), + [sym__html_block_1_start] = ACTIONS(1408), + [sym__html_block_2_start] = ACTIONS(1408), + [sym__html_block_3_start] = ACTIONS(1408), + [sym__html_block_4_start] = ACTIONS(1408), + [sym__html_block_5_start] = ACTIONS(1408), + [sym__html_block_6_start] = ACTIONS(1408), + [sym__html_block_7_start] = ACTIONS(1408), + [sym__pipe_table_start] = ACTIONS(1408), + }, + [225] = { + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_DOT] = ACTIONS(1576), + [anon_sym_SLASH] = ACTIONS(1576), + [anon_sym_COLON] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_BSLASH] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym__] = ACTIONS(1576), + [anon_sym_BQUOTE] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [aux_sym__word_token1] = ACTIONS(1576), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1576), + [aux_sym__word_token2] = ACTIONS(1576), + [sym__whitespace] = ACTIONS(1576), + [sym__soft_line_ending] = ACTIONS(1576), + [sym_block_continuation] = ACTIONS(1576), + [sym__block_quote_start] = ACTIONS(1576), + [sym__indented_chunk_start] = ACTIONS(1576), + [sym_atx_h1_marker] = ACTIONS(1576), + [sym_atx_h2_marker] = ACTIONS(1576), + [sym_atx_h3_marker] = ACTIONS(1576), + [sym_atx_h4_marker] = ACTIONS(1576), + [sym_atx_h5_marker] = ACTIONS(1576), + [sym_atx_h6_marker] = ACTIONS(1576), + [sym__thematic_break] = ACTIONS(1576), + [sym__list_marker_minus] = ACTIONS(1576), + [sym__list_marker_plus] = ACTIONS(1576), + [sym__list_marker_star] = ACTIONS(1576), + [sym__list_marker_parenthesis] = ACTIONS(1576), + [sym__list_marker_dot] = ACTIONS(1576), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1576), + [sym__fenced_code_block_start_backtick] = ACTIONS(1576), + [sym__fenced_code_block_start_tilde] = ACTIONS(1576), + [sym__blank_line_start] = ACTIONS(1576), + [sym__html_block_1_start] = ACTIONS(1576), + [sym__html_block_2_start] = ACTIONS(1576), + [sym__html_block_3_start] = ACTIONS(1576), + [sym__html_block_4_start] = ACTIONS(1576), + [sym__html_block_5_start] = ACTIONS(1576), + [sym__html_block_6_start] = ACTIONS(1576), + [sym__html_block_7_start] = ACTIONS(1576), + [sym__pipe_table_start] = ACTIONS(1576), + }, + [226] = { + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_DQUOTE] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_COLON] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_BSLASH] = ACTIONS(1580), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym__] = ACTIONS(1580), + [anon_sym_BQUOTE] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [aux_sym__word_token1] = ACTIONS(1580), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1580), + [aux_sym__word_token2] = ACTIONS(1580), + [sym__whitespace] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), + [sym_block_continuation] = ACTIONS(1580), + [sym__block_quote_start] = ACTIONS(1580), + [sym__indented_chunk_start] = ACTIONS(1580), + [sym_atx_h1_marker] = ACTIONS(1580), + [sym_atx_h2_marker] = ACTIONS(1580), + [sym_atx_h3_marker] = ACTIONS(1580), + [sym_atx_h4_marker] = ACTIONS(1580), + [sym_atx_h5_marker] = ACTIONS(1580), + [sym_atx_h6_marker] = ACTIONS(1580), + [sym__thematic_break] = ACTIONS(1580), + [sym__list_marker_minus] = ACTIONS(1580), + [sym__list_marker_plus] = ACTIONS(1580), + [sym__list_marker_star] = ACTIONS(1580), + [sym__list_marker_parenthesis] = ACTIONS(1580), + [sym__list_marker_dot] = ACTIONS(1580), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1580), + [sym__fenced_code_block_start_backtick] = ACTIONS(1580), + [sym__fenced_code_block_start_tilde] = ACTIONS(1580), + [sym__blank_line_start] = ACTIONS(1580), + [sym__html_block_1_start] = ACTIONS(1580), + [sym__html_block_2_start] = ACTIONS(1580), + [sym__html_block_3_start] = ACTIONS(1580), + [sym__html_block_4_start] = ACTIONS(1580), + [sym__html_block_5_start] = ACTIONS(1580), + [sym__html_block_6_start] = ACTIONS(1580), + [sym__html_block_7_start] = ACTIONS(1580), + [sym__pipe_table_start] = ACTIONS(1580), + }, + [227] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym__] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(1416), + [aux_sym__word_token1] = ACTIONS(1416), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1416), + [aux_sym__word_token2] = ACTIONS(1416), + [sym__whitespace] = ACTIONS(1416), + [sym__soft_line_ending] = ACTIONS(1416), + [sym__block_quote_start] = ACTIONS(1416), + [sym__indented_chunk_start] = ACTIONS(1416), + [sym_atx_h1_marker] = ACTIONS(1416), + [sym_atx_h2_marker] = ACTIONS(1416), + [sym_atx_h3_marker] = ACTIONS(1416), + [sym_atx_h4_marker] = ACTIONS(1416), + [sym_atx_h5_marker] = ACTIONS(1416), + [sym_atx_h6_marker] = ACTIONS(1416), + [sym__thematic_break] = ACTIONS(1416), + [sym__list_marker_minus] = ACTIONS(1416), + [sym__list_marker_plus] = ACTIONS(1416), + [sym__list_marker_star] = ACTIONS(1416), + [sym__list_marker_parenthesis] = ACTIONS(1416), + [sym__list_marker_dot] = ACTIONS(1416), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1416), + [sym__fenced_code_block_start_backtick] = ACTIONS(1416), + [sym__fenced_code_block_start_tilde] = ACTIONS(1416), + [sym__blank_line_start] = ACTIONS(1416), + [sym__html_block_1_start] = ACTIONS(1416), + [sym__html_block_2_start] = ACTIONS(1416), + [sym__html_block_3_start] = ACTIONS(1416), + [sym__html_block_4_start] = ACTIONS(1416), + [sym__html_block_5_start] = ACTIONS(1416), + [sym__html_block_6_start] = ACTIONS(1416), + [sym__html_block_7_start] = ACTIONS(1416), + [sym__pipe_table_start] = ACTIONS(1416), + }, + [228] = { + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_COLON] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_CARET] = ACTIONS(1584), + [anon_sym__] = ACTIONS(1584), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [aux_sym__word_token1] = ACTIONS(1584), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1584), + [aux_sym__word_token2] = ACTIONS(1584), + [sym__whitespace] = ACTIONS(1584), + [sym__soft_line_ending] = ACTIONS(1584), + [sym_block_continuation] = ACTIONS(1584), + [sym__block_quote_start] = ACTIONS(1584), + [sym__indented_chunk_start] = ACTIONS(1584), + [sym_atx_h1_marker] = ACTIONS(1584), + [sym_atx_h2_marker] = ACTIONS(1584), + [sym_atx_h3_marker] = ACTIONS(1584), + [sym_atx_h4_marker] = ACTIONS(1584), + [sym_atx_h5_marker] = ACTIONS(1584), + [sym_atx_h6_marker] = ACTIONS(1584), + [sym__thematic_break] = ACTIONS(1584), + [sym__list_marker_minus] = ACTIONS(1584), + [sym__list_marker_plus] = ACTIONS(1584), + [sym__list_marker_star] = ACTIONS(1584), + [sym__list_marker_parenthesis] = ACTIONS(1584), + [sym__list_marker_dot] = ACTIONS(1584), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1584), + [sym__fenced_code_block_start_backtick] = ACTIONS(1584), + [sym__fenced_code_block_start_tilde] = ACTIONS(1584), + [sym__blank_line_start] = ACTIONS(1584), + [sym__html_block_1_start] = ACTIONS(1584), + [sym__html_block_2_start] = ACTIONS(1584), + [sym__html_block_3_start] = ACTIONS(1584), + [sym__html_block_4_start] = ACTIONS(1584), + [sym__html_block_5_start] = ACTIONS(1584), + [sym__html_block_6_start] = ACTIONS(1584), + [sym__html_block_7_start] = ACTIONS(1584), + [sym__pipe_table_start] = ACTIONS(1584), + }, + [229] = { + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1588), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [aux_sym__word_token1] = ACTIONS(1588), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1588), + [aux_sym__word_token2] = ACTIONS(1588), + [sym__whitespace] = ACTIONS(1588), + [sym__soft_line_ending] = ACTIONS(1588), + [sym_block_continuation] = ACTIONS(1588), + [sym__block_quote_start] = ACTIONS(1588), + [sym__indented_chunk_start] = ACTIONS(1588), + [sym_atx_h1_marker] = ACTIONS(1588), + [sym_atx_h2_marker] = ACTIONS(1588), + [sym_atx_h3_marker] = ACTIONS(1588), + [sym_atx_h4_marker] = ACTIONS(1588), + [sym_atx_h5_marker] = ACTIONS(1588), + [sym_atx_h6_marker] = ACTIONS(1588), + [sym__thematic_break] = ACTIONS(1588), + [sym__list_marker_minus] = ACTIONS(1588), + [sym__list_marker_plus] = ACTIONS(1588), + [sym__list_marker_star] = ACTIONS(1588), + [sym__list_marker_parenthesis] = ACTIONS(1588), + [sym__list_marker_dot] = ACTIONS(1588), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1588), + [sym__fenced_code_block_start_backtick] = ACTIONS(1588), + [sym__fenced_code_block_start_tilde] = ACTIONS(1588), + [sym__blank_line_start] = ACTIONS(1588), + [sym__html_block_1_start] = ACTIONS(1588), + [sym__html_block_2_start] = ACTIONS(1588), + [sym__html_block_3_start] = ACTIONS(1588), + [sym__html_block_4_start] = ACTIONS(1588), + [sym__html_block_5_start] = ACTIONS(1588), + [sym__html_block_6_start] = ACTIONS(1588), + [sym__html_block_7_start] = ACTIONS(1588), + [sym__pipe_table_start] = ACTIONS(1588), + }, + [230] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_COLON] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [aux_sym__word_token1] = ACTIONS(1484), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1484), + [aux_sym__word_token2] = ACTIONS(1484), + [sym__whitespace] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym__html_block_1_start] = ACTIONS(1484), + [sym__html_block_2_start] = ACTIONS(1484), + [sym__html_block_3_start] = ACTIONS(1484), + [sym__html_block_4_start] = ACTIONS(1484), + [sym__html_block_5_start] = ACTIONS(1484), + [sym__html_block_6_start] = ACTIONS(1484), + [sym__html_block_7_start] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + }, + [231] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1462), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(1462), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym__] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [aux_sym__word_token1] = ACTIONS(1462), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1462), + [aux_sym__word_token2] = ACTIONS(1462), + [sym__whitespace] = ACTIONS(1462), + [sym__soft_line_ending] = ACTIONS(1462), + [sym__block_quote_start] = ACTIONS(1462), + [sym__indented_chunk_start] = ACTIONS(1462), + [sym_atx_h1_marker] = ACTIONS(1462), + [sym_atx_h2_marker] = ACTIONS(1462), + [sym_atx_h3_marker] = ACTIONS(1462), + [sym_atx_h4_marker] = ACTIONS(1462), + [sym_atx_h5_marker] = ACTIONS(1462), + [sym_atx_h6_marker] = ACTIONS(1462), + [sym__thematic_break] = ACTIONS(1462), + [sym__list_marker_minus] = ACTIONS(1462), + [sym__list_marker_plus] = ACTIONS(1462), + [sym__list_marker_star] = ACTIONS(1462), + [sym__list_marker_parenthesis] = ACTIONS(1462), + [sym__list_marker_dot] = ACTIONS(1462), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1462), + [sym__fenced_code_block_start_backtick] = ACTIONS(1462), + [sym__fenced_code_block_start_tilde] = ACTIONS(1462), + [sym__blank_line_start] = ACTIONS(1462), + [sym__html_block_1_start] = ACTIONS(1462), + [sym__html_block_2_start] = ACTIONS(1462), + [sym__html_block_3_start] = ACTIONS(1462), + [sym__html_block_4_start] = ACTIONS(1462), + [sym__html_block_5_start] = ACTIONS(1462), + [sym__html_block_6_start] = ACTIONS(1462), + [sym__html_block_7_start] = ACTIONS(1462), + [sym__pipe_table_start] = ACTIONS(1462), + }, + [232] = { + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_DOT] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_COLON] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_BSLASH] = ACTIONS(1592), + [anon_sym_CARET] = ACTIONS(1592), + [anon_sym__] = ACTIONS(1592), + [anon_sym_BQUOTE] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_TILDE] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [aux_sym__word_token1] = ACTIONS(1592), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1592), + [aux_sym__word_token2] = ACTIONS(1592), + [sym__whitespace] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_close] = ACTIONS(1592), + [sym__block_quote_start] = ACTIONS(1592), + [sym__indented_chunk_start] = ACTIONS(1592), + [sym_atx_h1_marker] = ACTIONS(1592), + [sym_atx_h2_marker] = ACTIONS(1592), + [sym_atx_h3_marker] = ACTIONS(1592), + [sym_atx_h4_marker] = ACTIONS(1592), + [sym_atx_h5_marker] = ACTIONS(1592), + [sym_atx_h6_marker] = ACTIONS(1592), + [sym__thematic_break] = ACTIONS(1592), + [sym__list_marker_minus] = ACTIONS(1592), + [sym__list_marker_plus] = ACTIONS(1592), + [sym__list_marker_star] = ACTIONS(1592), + [sym__list_marker_parenthesis] = ACTIONS(1592), + [sym__list_marker_dot] = ACTIONS(1592), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), + [sym__fenced_code_block_start_backtick] = ACTIONS(1592), + [sym__fenced_code_block_start_tilde] = ACTIONS(1592), + [sym__blank_line_start] = ACTIONS(1592), + [sym__html_block_1_start] = ACTIONS(1592), + [sym__html_block_2_start] = ACTIONS(1592), + [sym__html_block_3_start] = ACTIONS(1592), + [sym__html_block_4_start] = ACTIONS(1592), + [sym__html_block_5_start] = ACTIONS(1592), + [sym__html_block_6_start] = ACTIONS(1592), + [sym__html_block_7_start] = ACTIONS(1592), + [sym__pipe_table_start] = ACTIONS(1592), + }, + [233] = { + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_COLON] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1596), + [anon_sym_AT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym__] = ACTIONS(1596), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [aux_sym__word_token1] = ACTIONS(1596), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1596), + [aux_sym__word_token2] = ACTIONS(1596), + [sym__whitespace] = ACTIONS(1596), + [sym__soft_line_ending] = ACTIONS(1596), + [sym__block_close] = ACTIONS(1596), + [sym__block_quote_start] = ACTIONS(1596), + [sym__indented_chunk_start] = ACTIONS(1596), + [sym_atx_h1_marker] = ACTIONS(1596), + [sym_atx_h2_marker] = ACTIONS(1596), + [sym_atx_h3_marker] = ACTIONS(1596), + [sym_atx_h4_marker] = ACTIONS(1596), + [sym_atx_h5_marker] = ACTIONS(1596), + [sym_atx_h6_marker] = ACTIONS(1596), + [sym__thematic_break] = ACTIONS(1596), + [sym__list_marker_minus] = ACTIONS(1596), + [sym__list_marker_plus] = ACTIONS(1596), + [sym__list_marker_star] = ACTIONS(1596), + [sym__list_marker_parenthesis] = ACTIONS(1596), + [sym__list_marker_dot] = ACTIONS(1596), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1596), + [sym__fenced_code_block_start_backtick] = ACTIONS(1596), + [sym__fenced_code_block_start_tilde] = ACTIONS(1596), + [sym__blank_line_start] = ACTIONS(1596), + [sym__html_block_1_start] = ACTIONS(1596), + [sym__html_block_2_start] = ACTIONS(1596), + [sym__html_block_3_start] = ACTIONS(1596), + [sym__html_block_4_start] = ACTIONS(1596), + [sym__html_block_5_start] = ACTIONS(1596), + [sym__html_block_6_start] = ACTIONS(1596), + [sym__html_block_7_start] = ACTIONS(1596), + [sym__pipe_table_start] = ACTIONS(1596), + }, + [234] = { + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1600), + [anon_sym_COLON] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AT] = ACTIONS(1600), + [anon_sym_BSLASH] = ACTIONS(1600), + [anon_sym_CARET] = ACTIONS(1600), + [anon_sym__] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_TILDE] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [aux_sym__word_token1] = ACTIONS(1600), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1600), + [aux_sym__word_token2] = ACTIONS(1600), + [sym__whitespace] = ACTIONS(1600), + [sym__soft_line_ending] = ACTIONS(1600), + [sym__block_close] = ACTIONS(1600), + [sym__block_quote_start] = ACTIONS(1600), + [sym__indented_chunk_start] = ACTIONS(1600), + [sym_atx_h1_marker] = ACTIONS(1600), + [sym_atx_h2_marker] = ACTIONS(1600), + [sym_atx_h3_marker] = ACTIONS(1600), + [sym_atx_h4_marker] = ACTIONS(1600), + [sym_atx_h5_marker] = ACTIONS(1600), + [sym_atx_h6_marker] = ACTIONS(1600), + [sym__thematic_break] = ACTIONS(1600), + [sym__list_marker_minus] = ACTIONS(1600), + [sym__list_marker_plus] = ACTIONS(1600), + [sym__list_marker_star] = ACTIONS(1600), + [sym__list_marker_parenthesis] = ACTIONS(1600), + [sym__list_marker_dot] = ACTIONS(1600), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1600), + [sym__fenced_code_block_start_backtick] = ACTIONS(1600), + [sym__fenced_code_block_start_tilde] = ACTIONS(1600), + [sym__blank_line_start] = ACTIONS(1600), + [sym__html_block_1_start] = ACTIONS(1600), + [sym__html_block_2_start] = ACTIONS(1600), + [sym__html_block_3_start] = ACTIONS(1600), + [sym__html_block_4_start] = ACTIONS(1600), + [sym__html_block_5_start] = ACTIONS(1600), + [sym__html_block_6_start] = ACTIONS(1600), + [sym__html_block_7_start] = ACTIONS(1600), + [sym__pipe_table_start] = ACTIONS(1600), + }, + [235] = { + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_DOLLAR] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_COLON] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_BSLASH] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym__] = ACTIONS(1604), + [anon_sym_BQUOTE] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_RPAREN] = ACTIONS(1604), + [aux_sym__word_token1] = ACTIONS(1604), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1604), + [aux_sym__word_token2] = ACTIONS(1604), + [sym__whitespace] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_close] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1604), + [sym__indented_chunk_start] = ACTIONS(1604), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1604), + [sym__thematic_break] = ACTIONS(1604), + [sym__list_marker_minus] = ACTIONS(1604), + [sym__list_marker_plus] = ACTIONS(1604), + [sym__list_marker_star] = ACTIONS(1604), + [sym__list_marker_parenthesis] = ACTIONS(1604), + [sym__list_marker_dot] = ACTIONS(1604), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1604), + [sym__fenced_code_block_start_backtick] = ACTIONS(1604), + [sym__fenced_code_block_start_tilde] = ACTIONS(1604), + [sym__blank_line_start] = ACTIONS(1604), + [sym__html_block_1_start] = ACTIONS(1604), + [sym__html_block_2_start] = ACTIONS(1604), + [sym__html_block_3_start] = ACTIONS(1604), + [sym__html_block_4_start] = ACTIONS(1604), + [sym__html_block_5_start] = ACTIONS(1604), + [sym__html_block_6_start] = ACTIONS(1604), + [sym__html_block_7_start] = ACTIONS(1604), + [sym__pipe_table_start] = ACTIONS(1604), + }, + [236] = { + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_PERCENT] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_COMMA] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_DOT] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1608), + [anon_sym_COLON] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1608), + [anon_sym_AT] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1608), + [anon_sym__] = ACTIONS(1608), + [anon_sym_BQUOTE] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [aux_sym__word_token1] = ACTIONS(1608), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1608), + [aux_sym__word_token2] = ACTIONS(1608), + [sym__whitespace] = ACTIONS(1608), + [sym__soft_line_ending] = ACTIONS(1608), + [sym__block_close] = ACTIONS(1608), + [sym__block_quote_start] = ACTIONS(1608), + [sym__indented_chunk_start] = ACTIONS(1608), + [sym_atx_h1_marker] = ACTIONS(1608), + [sym_atx_h2_marker] = ACTIONS(1608), + [sym_atx_h3_marker] = ACTIONS(1608), + [sym_atx_h4_marker] = ACTIONS(1608), + [sym_atx_h5_marker] = ACTIONS(1608), + [sym_atx_h6_marker] = ACTIONS(1608), + [sym__thematic_break] = ACTIONS(1608), + [sym__list_marker_minus] = ACTIONS(1608), + [sym__list_marker_plus] = ACTIONS(1608), + [sym__list_marker_star] = ACTIONS(1608), + [sym__list_marker_parenthesis] = ACTIONS(1608), + [sym__list_marker_dot] = ACTIONS(1608), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1608), + [sym__fenced_code_block_start_backtick] = ACTIONS(1608), + [sym__fenced_code_block_start_tilde] = ACTIONS(1608), + [sym__blank_line_start] = ACTIONS(1608), + [sym__html_block_1_start] = ACTIONS(1608), + [sym__html_block_2_start] = ACTIONS(1608), + [sym__html_block_3_start] = ACTIONS(1608), + [sym__html_block_4_start] = ACTIONS(1608), + [sym__html_block_5_start] = ACTIONS(1608), + [sym__html_block_6_start] = ACTIONS(1608), + [sym__html_block_7_start] = ACTIONS(1608), + [sym__pipe_table_start] = ACTIONS(1608), + }, + [237] = { + [ts_builtin_sym_end] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_PERCENT] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1610), + [anon_sym_COLON] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_BSLASH] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym__] = ACTIONS(1610), + [anon_sym_BQUOTE] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [aux_sym__word_token1] = ACTIONS(1610), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1610), + [aux_sym__word_token2] = ACTIONS(1610), + [sym__whitespace] = ACTIONS(1610), + [sym__soft_line_ending] = ACTIONS(1610), + [sym__block_quote_start] = ACTIONS(1610), + [sym__indented_chunk_start] = ACTIONS(1610), + [sym_atx_h1_marker] = ACTIONS(1610), + [sym_atx_h2_marker] = ACTIONS(1610), + [sym_atx_h3_marker] = ACTIONS(1610), + [sym_atx_h4_marker] = ACTIONS(1610), + [sym_atx_h5_marker] = ACTIONS(1610), + [sym_atx_h6_marker] = ACTIONS(1610), + [sym__thematic_break] = ACTIONS(1610), + [sym__list_marker_minus] = ACTIONS(1610), + [sym__list_marker_plus] = ACTIONS(1610), + [sym__list_marker_star] = ACTIONS(1610), + [sym__list_marker_parenthesis] = ACTIONS(1610), + [sym__list_marker_dot] = ACTIONS(1610), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1610), + [sym__fenced_code_block_start_backtick] = ACTIONS(1610), + [sym__fenced_code_block_start_tilde] = ACTIONS(1610), + [sym__blank_line_start] = ACTIONS(1610), + [sym__html_block_1_start] = ACTIONS(1610), + [sym__html_block_2_start] = ACTIONS(1610), + [sym__html_block_3_start] = ACTIONS(1610), + [sym__html_block_4_start] = ACTIONS(1610), + [sym__html_block_5_start] = ACTIONS(1610), + [sym__html_block_6_start] = ACTIONS(1610), + [sym__html_block_7_start] = ACTIONS(1610), + [sym__pipe_table_start] = ACTIONS(1610), + }, + [238] = { + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(1616), + [anon_sym_CARET] = ACTIONS(1616), + [anon_sym__] = ACTIONS(1616), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [aux_sym__word_token1] = ACTIONS(1616), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1616), + [aux_sym__word_token2] = ACTIONS(1616), + [sym__whitespace] = ACTIONS(1616), + [sym__soft_line_ending] = ACTIONS(1616), + [sym__block_close] = ACTIONS(1616), + [sym__block_quote_start] = ACTIONS(1616), + [sym__indented_chunk_start] = ACTIONS(1616), + [sym_atx_h1_marker] = ACTIONS(1616), + [sym_atx_h2_marker] = ACTIONS(1616), + [sym_atx_h3_marker] = ACTIONS(1616), + [sym_atx_h4_marker] = ACTIONS(1616), + [sym_atx_h5_marker] = ACTIONS(1616), + [sym_atx_h6_marker] = ACTIONS(1616), + [sym__thematic_break] = ACTIONS(1616), + [sym__list_marker_minus] = ACTIONS(1616), + [sym__list_marker_plus] = ACTIONS(1616), + [sym__list_marker_star] = ACTIONS(1616), + [sym__list_marker_parenthesis] = ACTIONS(1616), + [sym__list_marker_dot] = ACTIONS(1616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1616), + [sym__fenced_code_block_start_backtick] = ACTIONS(1616), + [sym__fenced_code_block_start_tilde] = ACTIONS(1616), + [sym__blank_line_start] = ACTIONS(1616), + [sym__html_block_1_start] = ACTIONS(1616), + [sym__html_block_2_start] = ACTIONS(1616), + [sym__html_block_3_start] = ACTIONS(1616), + [sym__html_block_4_start] = ACTIONS(1616), + [sym__html_block_5_start] = ACTIONS(1616), + [sym__html_block_6_start] = ACTIONS(1616), + [sym__html_block_7_start] = ACTIONS(1616), + [sym__pipe_table_start] = ACTIONS(1616), + }, + [239] = { + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_RBRACK] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_COLON] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_AT] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1620), + [anon_sym__] = ACTIONS(1620), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_TILDE] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [aux_sym__word_token1] = ACTIONS(1620), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1620), + [aux_sym__word_token2] = ACTIONS(1620), + [sym__whitespace] = ACTIONS(1620), + [sym__soft_line_ending] = ACTIONS(1620), + [sym__block_close] = ACTIONS(1620), + [sym__block_quote_start] = ACTIONS(1620), + [sym__indented_chunk_start] = ACTIONS(1620), + [sym_atx_h1_marker] = ACTIONS(1620), + [sym_atx_h2_marker] = ACTIONS(1620), + [sym_atx_h3_marker] = ACTIONS(1620), + [sym_atx_h4_marker] = ACTIONS(1620), + [sym_atx_h5_marker] = ACTIONS(1620), + [sym_atx_h6_marker] = ACTIONS(1620), + [sym__thematic_break] = ACTIONS(1620), + [sym__list_marker_minus] = ACTIONS(1620), + [sym__list_marker_plus] = ACTIONS(1620), + [sym__list_marker_star] = ACTIONS(1620), + [sym__list_marker_parenthesis] = ACTIONS(1620), + [sym__list_marker_dot] = ACTIONS(1620), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), + [sym__fenced_code_block_start_backtick] = ACTIONS(1620), + [sym__fenced_code_block_start_tilde] = ACTIONS(1620), + [sym__blank_line_start] = ACTIONS(1620), + [sym__html_block_1_start] = ACTIONS(1620), + [sym__html_block_2_start] = ACTIONS(1620), + [sym__html_block_3_start] = ACTIONS(1620), + [sym__html_block_4_start] = ACTIONS(1620), + [sym__html_block_5_start] = ACTIONS(1620), + [sym__html_block_6_start] = ACTIONS(1620), + [sym__html_block_7_start] = ACTIONS(1620), + [sym__pipe_table_start] = ACTIONS(1620), + }, + [240] = { + [ts_builtin_sym_end] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1622), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_BSLASH] = ACTIONS(1622), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), + [anon_sym_BQUOTE] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_TILDE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [aux_sym__word_token1] = ACTIONS(1622), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1622), + [aux_sym__word_token2] = ACTIONS(1622), + [sym__whitespace] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1622), + [sym__indented_chunk_start] = ACTIONS(1622), + [sym_atx_h1_marker] = ACTIONS(1622), + [sym_atx_h2_marker] = ACTIONS(1622), + [sym_atx_h3_marker] = ACTIONS(1622), + [sym_atx_h4_marker] = ACTIONS(1622), + [sym_atx_h5_marker] = ACTIONS(1622), + [sym_atx_h6_marker] = ACTIONS(1622), + [sym__thematic_break] = ACTIONS(1622), + [sym__list_marker_minus] = ACTIONS(1622), + [sym__list_marker_plus] = ACTIONS(1622), + [sym__list_marker_star] = ACTIONS(1622), + [sym__list_marker_parenthesis] = ACTIONS(1622), + [sym__list_marker_dot] = ACTIONS(1622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1622), + [sym__fenced_code_block_start_backtick] = ACTIONS(1622), + [sym__fenced_code_block_start_tilde] = ACTIONS(1622), + [sym__blank_line_start] = ACTIONS(1622), + [sym__html_block_1_start] = ACTIONS(1622), + [sym__html_block_2_start] = ACTIONS(1622), + [sym__html_block_3_start] = ACTIONS(1622), + [sym__html_block_4_start] = ACTIONS(1622), + [sym__html_block_5_start] = ACTIONS(1622), + [sym__html_block_6_start] = ACTIONS(1622), + [sym__html_block_7_start] = ACTIONS(1622), + [sym__pipe_table_start] = ACTIONS(1622), + }, + [241] = { + [ts_builtin_sym_end] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_RBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1626), + [anon_sym_PERCENT] = ACTIONS(1626), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_DOT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1626), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_EQ] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_BSLASH] = ACTIONS(1626), + [anon_sym_CARET] = ACTIONS(1626), + [anon_sym__] = ACTIONS(1626), + [anon_sym_BQUOTE] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1626), + [anon_sym_RPAREN] = ACTIONS(1626), + [aux_sym__word_token1] = ACTIONS(1626), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1626), + [aux_sym__word_token2] = ACTIONS(1626), + [sym__whitespace] = ACTIONS(1626), + [sym__soft_line_ending] = ACTIONS(1626), + [sym__block_quote_start] = ACTIONS(1626), + [sym__indented_chunk_start] = ACTIONS(1626), + [sym_atx_h1_marker] = ACTIONS(1626), + [sym_atx_h2_marker] = ACTIONS(1626), + [sym_atx_h3_marker] = ACTIONS(1626), + [sym_atx_h4_marker] = ACTIONS(1626), + [sym_atx_h5_marker] = ACTIONS(1626), + [sym_atx_h6_marker] = ACTIONS(1626), + [sym__thematic_break] = ACTIONS(1626), + [sym__list_marker_minus] = ACTIONS(1626), + [sym__list_marker_plus] = ACTIONS(1626), + [sym__list_marker_star] = ACTIONS(1626), + [sym__list_marker_parenthesis] = ACTIONS(1626), + [sym__list_marker_dot] = ACTIONS(1626), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1626), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1626), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1626), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1626), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1626), + [sym__fenced_code_block_start_backtick] = ACTIONS(1626), + [sym__fenced_code_block_start_tilde] = ACTIONS(1626), + [sym__blank_line_start] = ACTIONS(1626), + [sym__html_block_1_start] = ACTIONS(1626), + [sym__html_block_2_start] = ACTIONS(1626), + [sym__html_block_3_start] = ACTIONS(1626), + [sym__html_block_4_start] = ACTIONS(1626), + [sym__html_block_5_start] = ACTIONS(1626), + [sym__html_block_6_start] = ACTIONS(1626), + [sym__html_block_7_start] = ACTIONS(1626), + [sym__pipe_table_start] = ACTIONS(1626), + }, + [242] = { + [ts_builtin_sym_end] = ACTIONS(1630), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_RBRACK] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1630), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_PERCENT] = ACTIONS(1630), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_COMMA] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_SLASH] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_AT] = ACTIONS(1630), + [anon_sym_BSLASH] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1630), + [anon_sym__] = ACTIONS(1630), + [anon_sym_BQUOTE] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LPAREN] = ACTIONS(1630), + [anon_sym_RPAREN] = ACTIONS(1630), + [aux_sym__word_token1] = ACTIONS(1630), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1630), + [aux_sym__word_token2] = ACTIONS(1630), + [sym__whitespace] = ACTIONS(1630), + [sym__soft_line_ending] = ACTIONS(1630), + [sym__block_quote_start] = ACTIONS(1630), + [sym__indented_chunk_start] = ACTIONS(1630), + [sym_atx_h1_marker] = ACTIONS(1630), + [sym_atx_h2_marker] = ACTIONS(1630), + [sym_atx_h3_marker] = ACTIONS(1630), + [sym_atx_h4_marker] = ACTIONS(1630), + [sym_atx_h5_marker] = ACTIONS(1630), + [sym_atx_h6_marker] = ACTIONS(1630), + [sym__thematic_break] = ACTIONS(1630), + [sym__list_marker_minus] = ACTIONS(1630), + [sym__list_marker_plus] = ACTIONS(1630), + [sym__list_marker_star] = ACTIONS(1630), + [sym__list_marker_parenthesis] = ACTIONS(1630), + [sym__list_marker_dot] = ACTIONS(1630), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1630), + [sym__fenced_code_block_start_backtick] = ACTIONS(1630), + [sym__fenced_code_block_start_tilde] = ACTIONS(1630), + [sym__blank_line_start] = ACTIONS(1630), + [sym__html_block_1_start] = ACTIONS(1630), + [sym__html_block_2_start] = ACTIONS(1630), + [sym__html_block_3_start] = ACTIONS(1630), + [sym__html_block_4_start] = ACTIONS(1630), + [sym__html_block_5_start] = ACTIONS(1630), + [sym__html_block_6_start] = ACTIONS(1630), + [sym__html_block_7_start] = ACTIONS(1630), + [sym__pipe_table_start] = ACTIONS(1630), + }, + [243] = { + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [aux_sym__word_token1] = ACTIONS(1636), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1636), + [aux_sym__word_token2] = ACTIONS(1636), + [sym__whitespace] = ACTIONS(1636), + [sym__soft_line_ending] = ACTIONS(1636), + [sym__block_close] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym__html_block_1_start] = ACTIONS(1636), + [sym__html_block_2_start] = ACTIONS(1636), + [sym__html_block_3_start] = ACTIONS(1636), + [sym__html_block_4_start] = ACTIONS(1636), + [sym__html_block_5_start] = ACTIONS(1636), + [sym__html_block_6_start] = ACTIONS(1636), + [sym__html_block_7_start] = ACTIONS(1636), + [sym__pipe_table_start] = ACTIONS(1636), + }, + [244] = { + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_COLON] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [aux_sym__word_token1] = ACTIONS(1640), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1640), + [aux_sym__word_token2] = ACTIONS(1640), + [sym__whitespace] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_close] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym__html_block_1_start] = ACTIONS(1640), + [sym__html_block_2_start] = ACTIONS(1640), + [sym__html_block_3_start] = ACTIONS(1640), + [sym__html_block_4_start] = ACTIONS(1640), + [sym__html_block_5_start] = ACTIONS(1640), + [sym__html_block_6_start] = ACTIONS(1640), + [sym__html_block_7_start] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + }, + [245] = { + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PERCENT] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_PLUS] = ACTIONS(1644), + [anon_sym_COMMA] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_DOT] = ACTIONS(1644), + [anon_sym_SLASH] = ACTIONS(1644), + [anon_sym_COLON] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(1644), + [anon_sym_AT] = ACTIONS(1644), + [anon_sym_BSLASH] = ACTIONS(1644), + [anon_sym_CARET] = ACTIONS(1644), + [anon_sym__] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [aux_sym__word_token1] = ACTIONS(1644), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1644), + [aux_sym__word_token2] = ACTIONS(1644), + [sym__whitespace] = ACTIONS(1644), + [sym__soft_line_ending] = ACTIONS(1644), + [sym__block_close] = ACTIONS(1644), + [sym__block_quote_start] = ACTIONS(1644), + [sym__indented_chunk_start] = ACTIONS(1644), + [sym_atx_h1_marker] = ACTIONS(1644), + [sym_atx_h2_marker] = ACTIONS(1644), + [sym_atx_h3_marker] = ACTIONS(1644), + [sym_atx_h4_marker] = ACTIONS(1644), + [sym_atx_h5_marker] = ACTIONS(1644), + [sym_atx_h6_marker] = ACTIONS(1644), + [sym__thematic_break] = ACTIONS(1644), + [sym__list_marker_minus] = ACTIONS(1644), + [sym__list_marker_plus] = ACTIONS(1644), + [sym__list_marker_star] = ACTIONS(1644), + [sym__list_marker_parenthesis] = ACTIONS(1644), + [sym__list_marker_dot] = ACTIONS(1644), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1644), + [sym__fenced_code_block_start_backtick] = ACTIONS(1644), + [sym__fenced_code_block_start_tilde] = ACTIONS(1644), + [sym__blank_line_start] = ACTIONS(1644), + [sym__html_block_1_start] = ACTIONS(1644), + [sym__html_block_2_start] = ACTIONS(1644), + [sym__html_block_3_start] = ACTIONS(1644), + [sym__html_block_4_start] = ACTIONS(1644), + [sym__html_block_5_start] = ACTIONS(1644), + [sym__html_block_6_start] = ACTIONS(1644), + [sym__html_block_7_start] = ACTIONS(1644), + [sym__pipe_table_start] = ACTIONS(1644), + }, + [246] = { + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_PERCENT] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_DOT] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1648), + [anon_sym_COLON] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_AT] = ACTIONS(1648), + [anon_sym_BSLASH] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1648), + [anon_sym__] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [aux_sym__word_token1] = ACTIONS(1648), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1648), + [aux_sym__word_token2] = ACTIONS(1648), + [sym__whitespace] = ACTIONS(1648), + [sym__soft_line_ending] = ACTIONS(1648), + [sym__block_close] = ACTIONS(1648), + [sym__block_quote_start] = ACTIONS(1648), + [sym__indented_chunk_start] = ACTIONS(1648), + [sym_atx_h1_marker] = ACTIONS(1648), + [sym_atx_h2_marker] = ACTIONS(1648), + [sym_atx_h3_marker] = ACTIONS(1648), + [sym_atx_h4_marker] = ACTIONS(1648), + [sym_atx_h5_marker] = ACTIONS(1648), + [sym_atx_h6_marker] = ACTIONS(1648), + [sym__thematic_break] = ACTIONS(1648), + [sym__list_marker_minus] = ACTIONS(1648), + [sym__list_marker_plus] = ACTIONS(1648), + [sym__list_marker_star] = ACTIONS(1648), + [sym__list_marker_parenthesis] = ACTIONS(1648), + [sym__list_marker_dot] = ACTIONS(1648), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1648), + [sym__fenced_code_block_start_backtick] = ACTIONS(1648), + [sym__fenced_code_block_start_tilde] = ACTIONS(1648), + [sym__blank_line_start] = ACTIONS(1648), + [sym__html_block_1_start] = ACTIONS(1648), + [sym__html_block_2_start] = ACTIONS(1648), + [sym__html_block_3_start] = ACTIONS(1648), + [sym__html_block_4_start] = ACTIONS(1648), + [sym__html_block_5_start] = ACTIONS(1648), + [sym__html_block_6_start] = ACTIONS(1648), + [sym__html_block_7_start] = ACTIONS(1648), + [sym__pipe_table_start] = ACTIONS(1648), + }, + [247] = { + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_GT] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_DQUOTE] = ACTIONS(1652), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_DOLLAR] = ACTIONS(1652), + [anon_sym_PERCENT] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_DOT] = ACTIONS(1652), + [anon_sym_SLASH] = ACTIONS(1652), + [anon_sym_COLON] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1652), + [anon_sym_AT] = ACTIONS(1652), + [anon_sym_BSLASH] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym__] = ACTIONS(1652), + [anon_sym_BQUOTE] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [aux_sym__word_token1] = ACTIONS(1652), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1652), + [aux_sym__word_token2] = ACTIONS(1652), + [sym__whitespace] = ACTIONS(1652), + [sym__soft_line_ending] = ACTIONS(1652), + [sym__block_close] = ACTIONS(1652), + [sym__block_quote_start] = ACTIONS(1652), + [sym__indented_chunk_start] = ACTIONS(1652), + [sym_atx_h1_marker] = ACTIONS(1652), + [sym_atx_h2_marker] = ACTIONS(1652), + [sym_atx_h3_marker] = ACTIONS(1652), + [sym_atx_h4_marker] = ACTIONS(1652), + [sym_atx_h5_marker] = ACTIONS(1652), + [sym_atx_h6_marker] = ACTIONS(1652), + [sym__thematic_break] = ACTIONS(1652), + [sym__list_marker_minus] = ACTIONS(1652), + [sym__list_marker_plus] = ACTIONS(1652), + [sym__list_marker_star] = ACTIONS(1652), + [sym__list_marker_parenthesis] = ACTIONS(1652), + [sym__list_marker_dot] = ACTIONS(1652), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1652), + [sym__fenced_code_block_start_backtick] = ACTIONS(1652), + [sym__fenced_code_block_start_tilde] = ACTIONS(1652), + [sym__blank_line_start] = ACTIONS(1652), + [sym__html_block_1_start] = ACTIONS(1652), + [sym__html_block_2_start] = ACTIONS(1652), + [sym__html_block_3_start] = ACTIONS(1652), + [sym__html_block_4_start] = ACTIONS(1652), + [sym__html_block_5_start] = ACTIONS(1652), + [sym__html_block_6_start] = ACTIONS(1652), + [sym__html_block_7_start] = ACTIONS(1652), + [sym__pipe_table_start] = ACTIONS(1652), + }, + [248] = { + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_RBRACK] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(1656), + [anon_sym_GT] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_PERCENT] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SQUOTE] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1656), + [anon_sym_COMMA] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_DOT] = ACTIONS(1656), + [anon_sym_SLASH] = ACTIONS(1656), + [anon_sym_COLON] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_EQ] = ACTIONS(1656), + [anon_sym_QMARK] = ACTIONS(1656), + [anon_sym_AT] = ACTIONS(1656), + [anon_sym_BSLASH] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1656), + [anon_sym__] = ACTIONS(1656), + [anon_sym_BQUOTE] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_RPAREN] = ACTIONS(1656), + [aux_sym__word_token1] = ACTIONS(1656), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1656), + [aux_sym__word_token2] = ACTIONS(1656), + [sym__whitespace] = ACTIONS(1656), + [sym__soft_line_ending] = ACTIONS(1656), + [sym__block_close] = ACTIONS(1656), + [sym__block_quote_start] = ACTIONS(1656), + [sym__indented_chunk_start] = ACTIONS(1656), + [sym_atx_h1_marker] = ACTIONS(1656), + [sym_atx_h2_marker] = ACTIONS(1656), + [sym_atx_h3_marker] = ACTIONS(1656), + [sym_atx_h4_marker] = ACTIONS(1656), + [sym_atx_h5_marker] = ACTIONS(1656), + [sym_atx_h6_marker] = ACTIONS(1656), + [sym__thematic_break] = ACTIONS(1656), + [sym__list_marker_minus] = ACTIONS(1656), + [sym__list_marker_plus] = ACTIONS(1656), + [sym__list_marker_star] = ACTIONS(1656), + [sym__list_marker_parenthesis] = ACTIONS(1656), + [sym__list_marker_dot] = ACTIONS(1656), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1656), + [sym__fenced_code_block_start_backtick] = ACTIONS(1656), + [sym__fenced_code_block_start_tilde] = ACTIONS(1656), + [sym__blank_line_start] = ACTIONS(1656), + [sym__html_block_1_start] = ACTIONS(1656), + [sym__html_block_2_start] = ACTIONS(1656), + [sym__html_block_3_start] = ACTIONS(1656), + [sym__html_block_4_start] = ACTIONS(1656), + [sym__html_block_5_start] = ACTIONS(1656), + [sym__html_block_6_start] = ACTIONS(1656), + [sym__html_block_7_start] = ACTIONS(1656), + [sym__pipe_table_start] = ACTIONS(1656), + }, + [249] = { + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_RBRACK] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(1660), + [anon_sym_GT] = ACTIONS(1660), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_DQUOTE] = ACTIONS(1660), + [anon_sym_POUND] = ACTIONS(1660), + [anon_sym_DOLLAR] = ACTIONS(1660), + [anon_sym_PERCENT] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(1660), + [anon_sym_COMMA] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_DOT] = ACTIONS(1660), + [anon_sym_SLASH] = ACTIONS(1660), + [anon_sym_COLON] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(1660), + [anon_sym_EQ] = ACTIONS(1660), + [anon_sym_QMARK] = ACTIONS(1660), + [anon_sym_AT] = ACTIONS(1660), + [anon_sym_BSLASH] = ACTIONS(1660), + [anon_sym_CARET] = ACTIONS(1660), + [anon_sym__] = ACTIONS(1660), + [anon_sym_BQUOTE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_PIPE] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_TILDE] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(1660), + [anon_sym_RPAREN] = ACTIONS(1660), + [aux_sym__word_token1] = ACTIONS(1660), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1660), + [aux_sym__word_token2] = ACTIONS(1660), + [sym__whitespace] = ACTIONS(1660), + [sym__soft_line_ending] = ACTIONS(1660), + [sym__block_close] = ACTIONS(1660), + [sym__block_quote_start] = ACTIONS(1660), + [sym__indented_chunk_start] = ACTIONS(1660), + [sym_atx_h1_marker] = ACTIONS(1660), + [sym_atx_h2_marker] = ACTIONS(1660), + [sym_atx_h3_marker] = ACTIONS(1660), + [sym_atx_h4_marker] = ACTIONS(1660), + [sym_atx_h5_marker] = ACTIONS(1660), + [sym_atx_h6_marker] = ACTIONS(1660), + [sym__thematic_break] = ACTIONS(1660), + [sym__list_marker_minus] = ACTIONS(1660), + [sym__list_marker_plus] = ACTIONS(1660), + [sym__list_marker_star] = ACTIONS(1660), + [sym__list_marker_parenthesis] = ACTIONS(1660), + [sym__list_marker_dot] = ACTIONS(1660), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1660), + [sym__fenced_code_block_start_backtick] = ACTIONS(1660), + [sym__fenced_code_block_start_tilde] = ACTIONS(1660), + [sym__blank_line_start] = ACTIONS(1660), + [sym__html_block_1_start] = ACTIONS(1660), + [sym__html_block_2_start] = ACTIONS(1660), + [sym__html_block_3_start] = ACTIONS(1660), + [sym__html_block_4_start] = ACTIONS(1660), + [sym__html_block_5_start] = ACTIONS(1660), + [sym__html_block_6_start] = ACTIONS(1660), + [sym__html_block_7_start] = ACTIONS(1660), + [sym__pipe_table_start] = ACTIONS(1660), + }, + [250] = { + [ts_builtin_sym_end] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1211), + [anon_sym_BSLASH] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym__] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1211), + [aux_sym__word_token1] = ACTIONS(1211), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1211), + [aux_sym__word_token2] = ACTIONS(1211), + [sym__whitespace] = ACTIONS(1211), + [sym__soft_line_ending] = ACTIONS(1211), + [sym__block_quote_start] = ACTIONS(1211), + [sym__indented_chunk_start] = ACTIONS(1211), + [sym_atx_h1_marker] = ACTIONS(1211), + [sym_atx_h2_marker] = ACTIONS(1211), + [sym_atx_h3_marker] = ACTIONS(1211), + [sym_atx_h4_marker] = ACTIONS(1211), + [sym_atx_h5_marker] = ACTIONS(1211), + [sym_atx_h6_marker] = ACTIONS(1211), + [sym__thematic_break] = ACTIONS(1211), + [sym__list_marker_minus] = ACTIONS(1211), + [sym__list_marker_plus] = ACTIONS(1211), + [sym__list_marker_star] = ACTIONS(1211), + [sym__list_marker_parenthesis] = ACTIONS(1211), + [sym__list_marker_dot] = ACTIONS(1211), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1211), + [sym__fenced_code_block_start_backtick] = ACTIONS(1211), + [sym__fenced_code_block_start_tilde] = ACTIONS(1211), + [sym__blank_line_start] = ACTIONS(1211), + [sym__html_block_1_start] = ACTIONS(1211), + [sym__html_block_2_start] = ACTIONS(1211), + [sym__html_block_3_start] = ACTIONS(1211), + [sym__html_block_4_start] = ACTIONS(1211), + [sym__html_block_5_start] = ACTIONS(1211), + [sym__html_block_6_start] = ACTIONS(1211), + [sym__html_block_7_start] = ACTIONS(1211), + [sym__pipe_table_start] = ACTIONS(1211), + }, + [251] = { + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1664), + [anon_sym_PERCENT] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_PLUS] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1664), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(1664), + [anon_sym_SLASH] = ACTIONS(1664), + [anon_sym_COLON] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1664), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1664), + [anon_sym_BSLASH] = ACTIONS(1664), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym__] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_TILDE] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1664), + [aux_sym__word_token1] = ACTIONS(1664), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1664), + [aux_sym__word_token2] = ACTIONS(1664), + [sym__whitespace] = ACTIONS(1664), + [sym__soft_line_ending] = ACTIONS(1664), + [sym__block_close] = ACTIONS(1664), + [sym__block_quote_start] = ACTIONS(1664), + [sym__indented_chunk_start] = ACTIONS(1664), + [sym_atx_h1_marker] = ACTIONS(1664), + [sym_atx_h2_marker] = ACTIONS(1664), + [sym_atx_h3_marker] = ACTIONS(1664), + [sym_atx_h4_marker] = ACTIONS(1664), + [sym_atx_h5_marker] = ACTIONS(1664), + [sym_atx_h6_marker] = ACTIONS(1664), + [sym__thematic_break] = ACTIONS(1664), + [sym__list_marker_minus] = ACTIONS(1664), + [sym__list_marker_plus] = ACTIONS(1664), + [sym__list_marker_star] = ACTIONS(1664), + [sym__list_marker_parenthesis] = ACTIONS(1664), + [sym__list_marker_dot] = ACTIONS(1664), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1664), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1664), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1664), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1664), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1664), + [sym__fenced_code_block_start_backtick] = ACTIONS(1664), + [sym__fenced_code_block_start_tilde] = ACTIONS(1664), + [sym__blank_line_start] = ACTIONS(1664), + [sym__html_block_1_start] = ACTIONS(1664), + [sym__html_block_2_start] = ACTIONS(1664), + [sym__html_block_3_start] = ACTIONS(1664), + [sym__html_block_4_start] = ACTIONS(1664), + [sym__html_block_5_start] = ACTIONS(1664), + [sym__html_block_6_start] = ACTIONS(1664), + [sym__html_block_7_start] = ACTIONS(1664), + [sym__pipe_table_start] = ACTIONS(1664), + }, + [252] = { + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_PERCENT] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_DOT] = ACTIONS(1668), + [anon_sym_SLASH] = ACTIONS(1668), + [anon_sym_COLON] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [anon_sym_QMARK] = ACTIONS(1668), + [anon_sym_AT] = ACTIONS(1668), + [anon_sym_BSLASH] = ACTIONS(1668), + [anon_sym_CARET] = ACTIONS(1668), + [anon_sym__] = ACTIONS(1668), + [anon_sym_BQUOTE] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_TILDE] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [aux_sym__word_token1] = ACTIONS(1668), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1668), + [aux_sym__word_token2] = ACTIONS(1668), + [sym__whitespace] = ACTIONS(1668), + [sym__soft_line_ending] = ACTIONS(1668), + [sym__block_close] = ACTIONS(1668), + [sym__block_quote_start] = ACTIONS(1668), + [sym__indented_chunk_start] = ACTIONS(1668), + [sym_atx_h1_marker] = ACTIONS(1668), + [sym_atx_h2_marker] = ACTIONS(1668), + [sym_atx_h3_marker] = ACTIONS(1668), + [sym_atx_h4_marker] = ACTIONS(1668), + [sym_atx_h5_marker] = ACTIONS(1668), + [sym_atx_h6_marker] = ACTIONS(1668), + [sym__thematic_break] = ACTIONS(1668), + [sym__list_marker_minus] = ACTIONS(1668), + [sym__list_marker_plus] = ACTIONS(1668), + [sym__list_marker_star] = ACTIONS(1668), + [sym__list_marker_parenthesis] = ACTIONS(1668), + [sym__list_marker_dot] = ACTIONS(1668), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1668), + [sym__fenced_code_block_start_backtick] = ACTIONS(1668), + [sym__fenced_code_block_start_tilde] = ACTIONS(1668), + [sym__blank_line_start] = ACTIONS(1668), + [sym__html_block_1_start] = ACTIONS(1668), + [sym__html_block_2_start] = ACTIONS(1668), + [sym__html_block_3_start] = ACTIONS(1668), + [sym__html_block_4_start] = ACTIONS(1668), + [sym__html_block_5_start] = ACTIONS(1668), + [sym__html_block_6_start] = ACTIONS(1668), + [sym__html_block_7_start] = ACTIONS(1668), + [sym__pipe_table_start] = ACTIONS(1668), + }, + [253] = { + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_QMARK] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_BSLASH] = ACTIONS(1672), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym__] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [aux_sym__word_token1] = ACTIONS(1672), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1672), + [aux_sym__word_token2] = ACTIONS(1672), + [sym__whitespace] = ACTIONS(1672), + [sym__soft_line_ending] = ACTIONS(1672), + [sym__block_close] = ACTIONS(1672), + [sym__block_quote_start] = ACTIONS(1672), + [sym__indented_chunk_start] = ACTIONS(1672), + [sym_atx_h1_marker] = ACTIONS(1672), + [sym_atx_h2_marker] = ACTIONS(1672), + [sym_atx_h3_marker] = ACTIONS(1672), + [sym_atx_h4_marker] = ACTIONS(1672), + [sym_atx_h5_marker] = ACTIONS(1672), + [sym_atx_h6_marker] = ACTIONS(1672), + [sym__thematic_break] = ACTIONS(1672), + [sym__list_marker_minus] = ACTIONS(1672), + [sym__list_marker_plus] = ACTIONS(1672), + [sym__list_marker_star] = ACTIONS(1672), + [sym__list_marker_parenthesis] = ACTIONS(1672), + [sym__list_marker_dot] = ACTIONS(1672), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1672), + [sym__fenced_code_block_start_tilde] = ACTIONS(1672), + [sym__blank_line_start] = ACTIONS(1672), + [sym__html_block_1_start] = ACTIONS(1672), + [sym__html_block_2_start] = ACTIONS(1672), + [sym__html_block_3_start] = ACTIONS(1672), + [sym__html_block_4_start] = ACTIONS(1672), + [sym__html_block_5_start] = ACTIONS(1672), + [sym__html_block_6_start] = ACTIONS(1672), + [sym__html_block_7_start] = ACTIONS(1672), + [sym__pipe_table_start] = ACTIONS(1672), + }, + [254] = { + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_RBRACK] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_COLON] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1676), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1676), + [anon_sym__] = ACTIONS(1676), + [anon_sym_BQUOTE] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [aux_sym__word_token1] = ACTIONS(1676), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1676), + [aux_sym__word_token2] = ACTIONS(1676), + [sym__whitespace] = ACTIONS(1676), + [sym__soft_line_ending] = ACTIONS(1676), + [sym__block_close] = ACTIONS(1676), + [sym__block_quote_start] = ACTIONS(1676), + [sym__indented_chunk_start] = ACTIONS(1676), + [sym_atx_h1_marker] = ACTIONS(1676), + [sym_atx_h2_marker] = ACTIONS(1676), + [sym_atx_h3_marker] = ACTIONS(1676), + [sym_atx_h4_marker] = ACTIONS(1676), + [sym_atx_h5_marker] = ACTIONS(1676), + [sym_atx_h6_marker] = ACTIONS(1676), + [sym__thematic_break] = ACTIONS(1676), + [sym__list_marker_minus] = ACTIONS(1676), + [sym__list_marker_plus] = ACTIONS(1676), + [sym__list_marker_star] = ACTIONS(1676), + [sym__list_marker_parenthesis] = ACTIONS(1676), + [sym__list_marker_dot] = ACTIONS(1676), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1676), + [sym__fenced_code_block_start_backtick] = ACTIONS(1676), + [sym__fenced_code_block_start_tilde] = ACTIONS(1676), + [sym__blank_line_start] = ACTIONS(1676), + [sym__html_block_1_start] = ACTIONS(1676), + [sym__html_block_2_start] = ACTIONS(1676), + [sym__html_block_3_start] = ACTIONS(1676), + [sym__html_block_4_start] = ACTIONS(1676), + [sym__html_block_5_start] = ACTIONS(1676), + [sym__html_block_6_start] = ACTIONS(1676), + [sym__html_block_7_start] = ACTIONS(1676), + [sym__pipe_table_start] = ACTIONS(1676), + }, + [255] = { + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_RBRACK] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1680), + [anon_sym_PERCENT] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_COMMA] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_SLASH] = ACTIONS(1680), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_QMARK] = ACTIONS(1680), + [anon_sym_AT] = ACTIONS(1680), + [anon_sym_BSLASH] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1680), + [anon_sym__] = ACTIONS(1680), + [anon_sym_BQUOTE] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1680), + [aux_sym__word_token1] = ACTIONS(1680), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1680), + [aux_sym__word_token2] = ACTIONS(1680), + [sym__whitespace] = ACTIONS(1680), + [sym__soft_line_ending] = ACTIONS(1680), + [sym__block_close] = ACTIONS(1680), + [sym__block_quote_start] = ACTIONS(1680), + [sym__indented_chunk_start] = ACTIONS(1680), + [sym_atx_h1_marker] = ACTIONS(1680), + [sym_atx_h2_marker] = ACTIONS(1680), + [sym_atx_h3_marker] = ACTIONS(1680), + [sym_atx_h4_marker] = ACTIONS(1680), + [sym_atx_h5_marker] = ACTIONS(1680), + [sym_atx_h6_marker] = ACTIONS(1680), + [sym__thematic_break] = ACTIONS(1680), + [sym__list_marker_minus] = ACTIONS(1680), + [sym__list_marker_plus] = ACTIONS(1680), + [sym__list_marker_star] = ACTIONS(1680), + [sym__list_marker_parenthesis] = ACTIONS(1680), + [sym__list_marker_dot] = ACTIONS(1680), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1680), + [sym__fenced_code_block_start_backtick] = ACTIONS(1680), + [sym__fenced_code_block_start_tilde] = ACTIONS(1680), + [sym__blank_line_start] = ACTIONS(1680), + [sym__html_block_1_start] = ACTIONS(1680), + [sym__html_block_2_start] = ACTIONS(1680), + [sym__html_block_3_start] = ACTIONS(1680), + [sym__html_block_4_start] = ACTIONS(1680), + [sym__html_block_5_start] = ACTIONS(1680), + [sym__html_block_6_start] = ACTIONS(1680), + [sym__html_block_7_start] = ACTIONS(1680), + [sym__pipe_table_start] = ACTIONS(1680), + }, + [256] = { + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_GT] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_DOLLAR] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1684), + [anon_sym_SLASH] = ACTIONS(1684), + [anon_sym_COLON] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_QMARK] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1684), + [anon_sym_BSLASH] = ACTIONS(1684), + [anon_sym_CARET] = ACTIONS(1684), + [anon_sym__] = ACTIONS(1684), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [aux_sym__word_token1] = ACTIONS(1684), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1684), + [aux_sym__word_token2] = ACTIONS(1684), + [sym__whitespace] = ACTIONS(1684), + [sym__soft_line_ending] = ACTIONS(1684), + [sym__block_close] = ACTIONS(1684), + [sym__block_quote_start] = ACTIONS(1684), + [sym__indented_chunk_start] = ACTIONS(1684), + [sym_atx_h1_marker] = ACTIONS(1684), + [sym_atx_h2_marker] = ACTIONS(1684), + [sym_atx_h3_marker] = ACTIONS(1684), + [sym_atx_h4_marker] = ACTIONS(1684), + [sym_atx_h5_marker] = ACTIONS(1684), + [sym_atx_h6_marker] = ACTIONS(1684), + [sym__thematic_break] = ACTIONS(1684), + [sym__list_marker_minus] = ACTIONS(1684), + [sym__list_marker_plus] = ACTIONS(1684), + [sym__list_marker_star] = ACTIONS(1684), + [sym__list_marker_parenthesis] = ACTIONS(1684), + [sym__list_marker_dot] = ACTIONS(1684), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1684), + [sym__fenced_code_block_start_backtick] = ACTIONS(1684), + [sym__fenced_code_block_start_tilde] = ACTIONS(1684), + [sym__blank_line_start] = ACTIONS(1684), + [sym__html_block_1_start] = ACTIONS(1684), + [sym__html_block_2_start] = ACTIONS(1684), + [sym__html_block_3_start] = ACTIONS(1684), + [sym__html_block_4_start] = ACTIONS(1684), + [sym__html_block_5_start] = ACTIONS(1684), + [sym__html_block_6_start] = ACTIONS(1684), + [sym__html_block_7_start] = ACTIONS(1684), + [sym__pipe_table_start] = ACTIONS(1684), + }, + [257] = { + [ts_builtin_sym_end] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_RBRACK] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_SLASH] = ACTIONS(1686), + [anon_sym_COLON] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_EQ] = ACTIONS(1686), + [anon_sym_QMARK] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym__] = ACTIONS(1686), + [anon_sym_BQUOTE] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_TILDE] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1686), + [aux_sym__word_token1] = ACTIONS(1686), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1686), + [aux_sym__word_token2] = ACTIONS(1686), + [sym__whitespace] = ACTIONS(1686), + [sym__soft_line_ending] = ACTIONS(1686), + [sym__block_quote_start] = ACTIONS(1686), + [sym__indented_chunk_start] = ACTIONS(1686), + [sym_atx_h1_marker] = ACTIONS(1686), + [sym_atx_h2_marker] = ACTIONS(1686), + [sym_atx_h3_marker] = ACTIONS(1686), + [sym_atx_h4_marker] = ACTIONS(1686), + [sym_atx_h5_marker] = ACTIONS(1686), + [sym_atx_h6_marker] = ACTIONS(1686), + [sym__thematic_break] = ACTIONS(1686), + [sym__list_marker_minus] = ACTIONS(1686), + [sym__list_marker_plus] = ACTIONS(1686), + [sym__list_marker_star] = ACTIONS(1686), + [sym__list_marker_parenthesis] = ACTIONS(1686), + [sym__list_marker_dot] = ACTIONS(1686), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1686), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1686), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1686), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1686), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1686), + [sym__fenced_code_block_start_backtick] = ACTIONS(1686), + [sym__fenced_code_block_start_tilde] = ACTIONS(1686), + [sym__blank_line_start] = ACTIONS(1686), + [sym__html_block_1_start] = ACTIONS(1686), + [sym__html_block_2_start] = ACTIONS(1686), + [sym__html_block_3_start] = ACTIONS(1686), + [sym__html_block_4_start] = ACTIONS(1686), + [sym__html_block_5_start] = ACTIONS(1686), + [sym__html_block_6_start] = ACTIONS(1686), + [sym__html_block_7_start] = ACTIONS(1686), + [sym__pipe_table_start] = ACTIONS(1686), + }, + [258] = { + [ts_builtin_sym_end] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_RBRACK] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1690), + [anon_sym_PERCENT] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_SLASH] = ACTIONS(1690), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_EQ] = ACTIONS(1690), + [anon_sym_QMARK] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_BSLASH] = ACTIONS(1690), + [anon_sym_CARET] = ACTIONS(1690), + [anon_sym__] = ACTIONS(1690), + [anon_sym_BQUOTE] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_RPAREN] = ACTIONS(1690), + [aux_sym__word_token1] = ACTIONS(1690), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1690), + [aux_sym__word_token2] = ACTIONS(1690), + [sym__whitespace] = ACTIONS(1690), + [sym__soft_line_ending] = ACTIONS(1690), + [sym__block_quote_start] = ACTIONS(1690), + [sym__indented_chunk_start] = ACTIONS(1690), + [sym_atx_h1_marker] = ACTIONS(1690), + [sym_atx_h2_marker] = ACTIONS(1690), + [sym_atx_h3_marker] = ACTIONS(1690), + [sym_atx_h4_marker] = ACTIONS(1690), + [sym_atx_h5_marker] = ACTIONS(1690), + [sym_atx_h6_marker] = ACTIONS(1690), + [sym__thematic_break] = ACTIONS(1690), + [sym__list_marker_minus] = ACTIONS(1690), + [sym__list_marker_plus] = ACTIONS(1690), + [sym__list_marker_star] = ACTIONS(1690), + [sym__list_marker_parenthesis] = ACTIONS(1690), + [sym__list_marker_dot] = ACTIONS(1690), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1690), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1690), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1690), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1690), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1690), + [sym__fenced_code_block_start_backtick] = ACTIONS(1690), + [sym__fenced_code_block_start_tilde] = ACTIONS(1690), + [sym__blank_line_start] = ACTIONS(1690), + [sym__html_block_1_start] = ACTIONS(1690), + [sym__html_block_2_start] = ACTIONS(1690), + [sym__html_block_3_start] = ACTIONS(1690), + [sym__html_block_4_start] = ACTIONS(1690), + [sym__html_block_5_start] = ACTIONS(1690), + [sym__html_block_6_start] = ACTIONS(1690), + [sym__html_block_7_start] = ACTIONS(1690), + [sym__pipe_table_start] = ACTIONS(1690), + }, + [259] = { + [ts_builtin_sym_end] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_GT] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_DOLLAR] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1684), + [anon_sym_SLASH] = ACTIONS(1684), + [anon_sym_COLON] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_QMARK] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1684), + [anon_sym_BSLASH] = ACTIONS(1684), + [anon_sym_CARET] = ACTIONS(1684), + [anon_sym__] = ACTIONS(1684), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [aux_sym__word_token1] = ACTIONS(1684), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1684), + [aux_sym__word_token2] = ACTIONS(1684), + [sym__whitespace] = ACTIONS(1684), + [sym__soft_line_ending] = ACTIONS(1684), + [sym__block_quote_start] = ACTIONS(1684), + [sym__indented_chunk_start] = ACTIONS(1684), + [sym_atx_h1_marker] = ACTIONS(1684), + [sym_atx_h2_marker] = ACTIONS(1684), + [sym_atx_h3_marker] = ACTIONS(1684), + [sym_atx_h4_marker] = ACTIONS(1684), + [sym_atx_h5_marker] = ACTIONS(1684), + [sym_atx_h6_marker] = ACTIONS(1684), + [sym__thematic_break] = ACTIONS(1684), + [sym__list_marker_minus] = ACTIONS(1684), + [sym__list_marker_plus] = ACTIONS(1684), + [sym__list_marker_star] = ACTIONS(1684), + [sym__list_marker_parenthesis] = ACTIONS(1684), + [sym__list_marker_dot] = ACTIONS(1684), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1684), + [sym__fenced_code_block_start_backtick] = ACTIONS(1684), + [sym__fenced_code_block_start_tilde] = ACTIONS(1684), + [sym__blank_line_start] = ACTIONS(1684), + [sym__html_block_1_start] = ACTIONS(1684), + [sym__html_block_2_start] = ACTIONS(1684), + [sym__html_block_3_start] = ACTIONS(1684), + [sym__html_block_4_start] = ACTIONS(1684), + [sym__html_block_5_start] = ACTIONS(1684), + [sym__html_block_6_start] = ACTIONS(1684), + [sym__html_block_7_start] = ACTIONS(1684), + [sym__pipe_table_start] = ACTIONS(1684), + }, + [260] = { + [ts_builtin_sym_end] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_RBRACK] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1680), + [anon_sym_PERCENT] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_COMMA] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_SLASH] = ACTIONS(1680), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_QMARK] = ACTIONS(1680), + [anon_sym_AT] = ACTIONS(1680), + [anon_sym_BSLASH] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1680), + [anon_sym__] = ACTIONS(1680), + [anon_sym_BQUOTE] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1680), + [aux_sym__word_token1] = ACTIONS(1680), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1680), + [aux_sym__word_token2] = ACTIONS(1680), + [sym__whitespace] = ACTIONS(1680), + [sym__soft_line_ending] = ACTIONS(1680), + [sym__block_quote_start] = ACTIONS(1680), + [sym__indented_chunk_start] = ACTIONS(1680), + [sym_atx_h1_marker] = ACTIONS(1680), + [sym_atx_h2_marker] = ACTIONS(1680), + [sym_atx_h3_marker] = ACTIONS(1680), + [sym_atx_h4_marker] = ACTIONS(1680), + [sym_atx_h5_marker] = ACTIONS(1680), + [sym_atx_h6_marker] = ACTIONS(1680), + [sym__thematic_break] = ACTIONS(1680), + [sym__list_marker_minus] = ACTIONS(1680), + [sym__list_marker_plus] = ACTIONS(1680), + [sym__list_marker_star] = ACTIONS(1680), + [sym__list_marker_parenthesis] = ACTIONS(1680), + [sym__list_marker_dot] = ACTIONS(1680), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1680), + [sym__fenced_code_block_start_backtick] = ACTIONS(1680), + [sym__fenced_code_block_start_tilde] = ACTIONS(1680), + [sym__blank_line_start] = ACTIONS(1680), + [sym__html_block_1_start] = ACTIONS(1680), + [sym__html_block_2_start] = ACTIONS(1680), + [sym__html_block_3_start] = ACTIONS(1680), + [sym__html_block_4_start] = ACTIONS(1680), + [sym__html_block_5_start] = ACTIONS(1680), + [sym__html_block_6_start] = ACTIONS(1680), + [sym__html_block_7_start] = ACTIONS(1680), + [sym__pipe_table_start] = ACTIONS(1680), + }, + [261] = { + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_SLASH] = ACTIONS(1696), + [anon_sym_COLON] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_BSLASH] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym__] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [aux_sym__word_token1] = ACTIONS(1696), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1696), + [aux_sym__word_token2] = ACTIONS(1696), + [sym__whitespace] = ACTIONS(1696), + [sym__soft_line_ending] = ACTIONS(1696), + [sym__block_close] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1696), + [sym__indented_chunk_start] = ACTIONS(1696), + [sym_atx_h1_marker] = ACTIONS(1696), + [sym_atx_h2_marker] = ACTIONS(1696), + [sym_atx_h3_marker] = ACTIONS(1696), + [sym_atx_h4_marker] = ACTIONS(1696), + [sym_atx_h5_marker] = ACTIONS(1696), + [sym_atx_h6_marker] = ACTIONS(1696), + [sym__thematic_break] = ACTIONS(1696), + [sym__list_marker_minus] = ACTIONS(1696), + [sym__list_marker_plus] = ACTIONS(1696), + [sym__list_marker_star] = ACTIONS(1696), + [sym__list_marker_parenthesis] = ACTIONS(1696), + [sym__list_marker_dot] = ACTIONS(1696), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1696), + [sym__fenced_code_block_start_backtick] = ACTIONS(1696), + [sym__fenced_code_block_start_tilde] = ACTIONS(1696), + [sym__blank_line_start] = ACTIONS(1696), + [sym__html_block_1_start] = ACTIONS(1696), + [sym__html_block_2_start] = ACTIONS(1696), + [sym__html_block_3_start] = ACTIONS(1696), + [sym__html_block_4_start] = ACTIONS(1696), + [sym__html_block_5_start] = ACTIONS(1696), + [sym__html_block_6_start] = ACTIONS(1696), + [sym__html_block_7_start] = ACTIONS(1696), + [sym__pipe_table_start] = ACTIONS(1696), + }, + [262] = { + [ts_builtin_sym_end] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_RBRACK] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_COLON] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1676), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1676), + [anon_sym__] = ACTIONS(1676), + [anon_sym_BQUOTE] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [aux_sym__word_token1] = ACTIONS(1676), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1676), + [aux_sym__word_token2] = ACTIONS(1676), + [sym__whitespace] = ACTIONS(1676), + [sym__soft_line_ending] = ACTIONS(1676), + [sym__block_quote_start] = ACTIONS(1676), + [sym__indented_chunk_start] = ACTIONS(1676), + [sym_atx_h1_marker] = ACTIONS(1676), + [sym_atx_h2_marker] = ACTIONS(1676), + [sym_atx_h3_marker] = ACTIONS(1676), + [sym_atx_h4_marker] = ACTIONS(1676), + [sym_atx_h5_marker] = ACTIONS(1676), + [sym_atx_h6_marker] = ACTIONS(1676), + [sym__thematic_break] = ACTIONS(1676), + [sym__list_marker_minus] = ACTIONS(1676), + [sym__list_marker_plus] = ACTIONS(1676), + [sym__list_marker_star] = ACTIONS(1676), + [sym__list_marker_parenthesis] = ACTIONS(1676), + [sym__list_marker_dot] = ACTIONS(1676), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1676), + [sym__fenced_code_block_start_backtick] = ACTIONS(1676), + [sym__fenced_code_block_start_tilde] = ACTIONS(1676), + [sym__blank_line_start] = ACTIONS(1676), + [sym__html_block_1_start] = ACTIONS(1676), + [sym__html_block_2_start] = ACTIONS(1676), + [sym__html_block_3_start] = ACTIONS(1676), + [sym__html_block_4_start] = ACTIONS(1676), + [sym__html_block_5_start] = ACTIONS(1676), + [sym__html_block_6_start] = ACTIONS(1676), + [sym__html_block_7_start] = ACTIONS(1676), + [sym__pipe_table_start] = ACTIONS(1676), + }, + [263] = { + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_RBRACK] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1630), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_PERCENT] = ACTIONS(1630), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_COMMA] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_SLASH] = ACTIONS(1630), + [anon_sym_COLON] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_AT] = ACTIONS(1630), + [anon_sym_BSLASH] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1630), + [anon_sym__] = ACTIONS(1630), + [anon_sym_BQUOTE] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_LPAREN] = ACTIONS(1630), + [anon_sym_RPAREN] = ACTIONS(1630), + [aux_sym__word_token1] = ACTIONS(1630), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1630), + [aux_sym__word_token2] = ACTIONS(1630), + [sym__whitespace] = ACTIONS(1630), + [sym__soft_line_ending] = ACTIONS(1630), + [sym__block_close] = ACTIONS(1630), + [sym__block_quote_start] = ACTIONS(1630), + [sym__indented_chunk_start] = ACTIONS(1630), + [sym_atx_h1_marker] = ACTIONS(1630), + [sym_atx_h2_marker] = ACTIONS(1630), + [sym_atx_h3_marker] = ACTIONS(1630), + [sym_atx_h4_marker] = ACTIONS(1630), + [sym_atx_h5_marker] = ACTIONS(1630), + [sym_atx_h6_marker] = ACTIONS(1630), + [sym__thematic_break] = ACTIONS(1630), + [sym__list_marker_minus] = ACTIONS(1630), + [sym__list_marker_plus] = ACTIONS(1630), + [sym__list_marker_star] = ACTIONS(1630), + [sym__list_marker_parenthesis] = ACTIONS(1630), + [sym__list_marker_dot] = ACTIONS(1630), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1630), + [sym__fenced_code_block_start_backtick] = ACTIONS(1630), + [sym__fenced_code_block_start_tilde] = ACTIONS(1630), + [sym__blank_line_start] = ACTIONS(1630), + [sym__html_block_1_start] = ACTIONS(1630), + [sym__html_block_2_start] = ACTIONS(1630), + [sym__html_block_3_start] = ACTIONS(1630), + [sym__html_block_4_start] = ACTIONS(1630), + [sym__html_block_5_start] = ACTIONS(1630), + [sym__html_block_6_start] = ACTIONS(1630), + [sym__html_block_7_start] = ACTIONS(1630), + [sym__pipe_table_start] = ACTIONS(1630), + }, + [264] = { + [ts_builtin_sym_end] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_COLON] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [aux_sym__word_token1] = ACTIONS(1552), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1552), + [aux_sym__word_token2] = ACTIONS(1552), + [sym__whitespace] = ACTIONS(1552), + [sym__soft_line_ending] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym__html_block_1_start] = ACTIONS(1552), + [sym__html_block_2_start] = ACTIONS(1552), + [sym__html_block_3_start] = ACTIONS(1552), + [sym__html_block_4_start] = ACTIONS(1552), + [sym__html_block_5_start] = ACTIONS(1552), + [sym__html_block_6_start] = ACTIONS(1552), + [sym__html_block_7_start] = ACTIONS(1552), + [sym__pipe_table_start] = ACTIONS(1552), + }, + [265] = { + [ts_builtin_sym_end] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_QMARK] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_BSLASH] = ACTIONS(1672), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym__] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [aux_sym__word_token1] = ACTIONS(1672), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1672), + [aux_sym__word_token2] = ACTIONS(1672), + [sym__whitespace] = ACTIONS(1672), + [sym__soft_line_ending] = ACTIONS(1672), + [sym__block_quote_start] = ACTIONS(1672), + [sym__indented_chunk_start] = ACTIONS(1672), + [sym_atx_h1_marker] = ACTIONS(1672), + [sym_atx_h2_marker] = ACTIONS(1672), + [sym_atx_h3_marker] = ACTIONS(1672), + [sym_atx_h4_marker] = ACTIONS(1672), + [sym_atx_h5_marker] = ACTIONS(1672), + [sym_atx_h6_marker] = ACTIONS(1672), + [sym__thematic_break] = ACTIONS(1672), + [sym__list_marker_minus] = ACTIONS(1672), + [sym__list_marker_plus] = ACTIONS(1672), + [sym__list_marker_star] = ACTIONS(1672), + [sym__list_marker_parenthesis] = ACTIONS(1672), + [sym__list_marker_dot] = ACTIONS(1672), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1672), + [sym__fenced_code_block_start_tilde] = ACTIONS(1672), + [sym__blank_line_start] = ACTIONS(1672), + [sym__html_block_1_start] = ACTIONS(1672), + [sym__html_block_2_start] = ACTIONS(1672), + [sym__html_block_3_start] = ACTIONS(1672), + [sym__html_block_4_start] = ACTIONS(1672), + [sym__html_block_5_start] = ACTIONS(1672), + [sym__html_block_6_start] = ACTIONS(1672), + [sym__html_block_7_start] = ACTIONS(1672), + [sym__pipe_table_start] = ACTIONS(1672), + }, + [266] = { + [ts_builtin_sym_end] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_PERCENT] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_COLON] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(1556), + [anon_sym_CARET] = ACTIONS(1556), + [anon_sym__] = ACTIONS(1556), + [anon_sym_BQUOTE] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [aux_sym__word_token1] = ACTIONS(1556), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1556), + [aux_sym__word_token2] = ACTIONS(1556), + [sym__whitespace] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_quote_start] = ACTIONS(1556), + [sym__indented_chunk_start] = ACTIONS(1556), + [sym_atx_h1_marker] = ACTIONS(1556), + [sym_atx_h2_marker] = ACTIONS(1556), + [sym_atx_h3_marker] = ACTIONS(1556), + [sym_atx_h4_marker] = ACTIONS(1556), + [sym_atx_h5_marker] = ACTIONS(1556), + [sym_atx_h6_marker] = ACTIONS(1556), + [sym__thematic_break] = ACTIONS(1556), + [sym__list_marker_minus] = ACTIONS(1556), + [sym__list_marker_plus] = ACTIONS(1556), + [sym__list_marker_star] = ACTIONS(1556), + [sym__list_marker_parenthesis] = ACTIONS(1556), + [sym__list_marker_dot] = ACTIONS(1556), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1556), + [sym__fenced_code_block_start_backtick] = ACTIONS(1556), + [sym__fenced_code_block_start_tilde] = ACTIONS(1556), + [sym__blank_line_start] = ACTIONS(1556), + [sym__html_block_1_start] = ACTIONS(1556), + [sym__html_block_2_start] = ACTIONS(1556), + [sym__html_block_3_start] = ACTIONS(1556), + [sym__html_block_4_start] = ACTIONS(1556), + [sym__html_block_5_start] = ACTIONS(1556), + [sym__html_block_6_start] = ACTIONS(1556), + [sym__html_block_7_start] = ACTIONS(1556), + [sym__pipe_table_start] = ACTIONS(1556), + }, + [267] = { + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_RBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1626), + [anon_sym_DOLLAR] = ACTIONS(1626), + [anon_sym_PERCENT] = ACTIONS(1626), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_DOT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1626), + [anon_sym_COLON] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_EQ] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_BSLASH] = ACTIONS(1626), + [anon_sym_CARET] = ACTIONS(1626), + [anon_sym__] = ACTIONS(1626), + [anon_sym_BQUOTE] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1626), + [anon_sym_RPAREN] = ACTIONS(1626), + [aux_sym__word_token1] = ACTIONS(1626), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1626), + [aux_sym__word_token2] = ACTIONS(1626), + [sym__whitespace] = ACTIONS(1626), + [sym__soft_line_ending] = ACTIONS(1626), + [sym__block_close] = ACTIONS(1626), + [sym__block_quote_start] = ACTIONS(1626), + [sym__indented_chunk_start] = ACTIONS(1626), + [sym_atx_h1_marker] = ACTIONS(1626), + [sym_atx_h2_marker] = ACTIONS(1626), + [sym_atx_h3_marker] = ACTIONS(1626), + [sym_atx_h4_marker] = ACTIONS(1626), + [sym_atx_h5_marker] = ACTIONS(1626), + [sym_atx_h6_marker] = ACTIONS(1626), + [sym__thematic_break] = ACTIONS(1626), + [sym__list_marker_minus] = ACTIONS(1626), + [sym__list_marker_plus] = ACTIONS(1626), + [sym__list_marker_star] = ACTIONS(1626), + [sym__list_marker_parenthesis] = ACTIONS(1626), + [sym__list_marker_dot] = ACTIONS(1626), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1626), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1626), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1626), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1626), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1626), + [sym__fenced_code_block_start_backtick] = ACTIONS(1626), + [sym__fenced_code_block_start_tilde] = ACTIONS(1626), + [sym__blank_line_start] = ACTIONS(1626), + [sym__html_block_1_start] = ACTIONS(1626), + [sym__html_block_2_start] = ACTIONS(1626), + [sym__html_block_3_start] = ACTIONS(1626), + [sym__html_block_4_start] = ACTIONS(1626), + [sym__html_block_5_start] = ACTIONS(1626), + [sym__html_block_6_start] = ACTIONS(1626), + [sym__html_block_7_start] = ACTIONS(1626), + [sym__pipe_table_start] = ACTIONS(1626), + }, + [268] = { + [ts_builtin_sym_end] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_COLON] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_EQ] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1560), + [anon_sym_AT] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1560), + [anon_sym__] = ACTIONS(1560), + [anon_sym_BQUOTE] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [aux_sym__word_token1] = ACTIONS(1560), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1560), + [aux_sym__word_token2] = ACTIONS(1560), + [sym__whitespace] = ACTIONS(1560), + [sym__soft_line_ending] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1560), + [sym__indented_chunk_start] = ACTIONS(1560), + [sym_atx_h1_marker] = ACTIONS(1560), + [sym_atx_h2_marker] = ACTIONS(1560), + [sym_atx_h3_marker] = ACTIONS(1560), + [sym_atx_h4_marker] = ACTIONS(1560), + [sym_atx_h5_marker] = ACTIONS(1560), + [sym_atx_h6_marker] = ACTIONS(1560), + [sym__thematic_break] = ACTIONS(1560), + [sym__list_marker_minus] = ACTIONS(1560), + [sym__list_marker_plus] = ACTIONS(1560), + [sym__list_marker_star] = ACTIONS(1560), + [sym__list_marker_parenthesis] = ACTIONS(1560), + [sym__list_marker_dot] = ACTIONS(1560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1560), + [sym__fenced_code_block_start_backtick] = ACTIONS(1560), + [sym__fenced_code_block_start_tilde] = ACTIONS(1560), + [sym__blank_line_start] = ACTIONS(1560), + [sym__html_block_1_start] = ACTIONS(1560), + [sym__html_block_2_start] = ACTIONS(1560), + [sym__html_block_3_start] = ACTIONS(1560), + [sym__html_block_4_start] = ACTIONS(1560), + [sym__html_block_5_start] = ACTIONS(1560), + [sym__html_block_6_start] = ACTIONS(1560), + [sym__html_block_7_start] = ACTIONS(1560), + [sym__pipe_table_start] = ACTIONS(1560), + }, + [269] = { + [ts_builtin_sym_end] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_PERCENT] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_DOT] = ACTIONS(1668), + [anon_sym_SLASH] = ACTIONS(1668), + [anon_sym_COLON] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [anon_sym_QMARK] = ACTIONS(1668), + [anon_sym_AT] = ACTIONS(1668), + [anon_sym_BSLASH] = ACTIONS(1668), + [anon_sym_CARET] = ACTIONS(1668), + [anon_sym__] = ACTIONS(1668), + [anon_sym_BQUOTE] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_TILDE] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [aux_sym__word_token1] = ACTIONS(1668), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1668), + [aux_sym__word_token2] = ACTIONS(1668), + [sym__whitespace] = ACTIONS(1668), + [sym__soft_line_ending] = ACTIONS(1668), + [sym__block_quote_start] = ACTIONS(1668), + [sym__indented_chunk_start] = ACTIONS(1668), + [sym_atx_h1_marker] = ACTIONS(1668), + [sym_atx_h2_marker] = ACTIONS(1668), + [sym_atx_h3_marker] = ACTIONS(1668), + [sym_atx_h4_marker] = ACTIONS(1668), + [sym_atx_h5_marker] = ACTIONS(1668), + [sym_atx_h6_marker] = ACTIONS(1668), + [sym__thematic_break] = ACTIONS(1668), + [sym__list_marker_minus] = ACTIONS(1668), + [sym__list_marker_plus] = ACTIONS(1668), + [sym__list_marker_star] = ACTIONS(1668), + [sym__list_marker_parenthesis] = ACTIONS(1668), + [sym__list_marker_dot] = ACTIONS(1668), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1668), + [sym__fenced_code_block_start_backtick] = ACTIONS(1668), + [sym__fenced_code_block_start_tilde] = ACTIONS(1668), + [sym__blank_line_start] = ACTIONS(1668), + [sym__html_block_1_start] = ACTIONS(1668), + [sym__html_block_2_start] = ACTIONS(1668), + [sym__html_block_3_start] = ACTIONS(1668), + [sym__html_block_4_start] = ACTIONS(1668), + [sym__html_block_5_start] = ACTIONS(1668), + [sym__html_block_6_start] = ACTIONS(1668), + [sym__html_block_7_start] = ACTIONS(1668), + [sym__pipe_table_start] = ACTIONS(1668), + }, + [270] = { + [ts_builtin_sym_end] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_COLON] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_BSLASH] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym__] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [aux_sym__word_token1] = ACTIONS(1564), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1564), + [aux_sym__word_token2] = ACTIONS(1564), + [sym__whitespace] = ACTIONS(1564), + [sym__soft_line_ending] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(1564), + [sym__indented_chunk_start] = ACTIONS(1564), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(1564), + [sym__thematic_break] = ACTIONS(1564), + [sym__list_marker_minus] = ACTIONS(1564), + [sym__list_marker_plus] = ACTIONS(1564), + [sym__list_marker_star] = ACTIONS(1564), + [sym__list_marker_parenthesis] = ACTIONS(1564), + [sym__list_marker_dot] = ACTIONS(1564), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1564), + [sym__fenced_code_block_start_backtick] = ACTIONS(1564), + [sym__fenced_code_block_start_tilde] = ACTIONS(1564), + [sym__blank_line_start] = ACTIONS(1564), + [sym__html_block_1_start] = ACTIONS(1564), + [sym__html_block_2_start] = ACTIONS(1564), + [sym__html_block_3_start] = ACTIONS(1564), + [sym__html_block_4_start] = ACTIONS(1564), + [sym__html_block_5_start] = ACTIONS(1564), + [sym__html_block_6_start] = ACTIONS(1564), + [sym__html_block_7_start] = ACTIONS(1564), + [sym__pipe_table_start] = ACTIONS(1564), + }, + [271] = { + [ts_builtin_sym_end] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_COLON] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym__] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [aux_sym__word_token1] = ACTIONS(1430), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1430), + [aux_sym__word_token2] = ACTIONS(1430), + [sym__whitespace] = ACTIONS(1430), + [sym__soft_line_ending] = ACTIONS(1430), + [sym__block_quote_start] = ACTIONS(1430), + [sym__indented_chunk_start] = ACTIONS(1430), + [sym_atx_h1_marker] = ACTIONS(1430), + [sym_atx_h2_marker] = ACTIONS(1430), + [sym_atx_h3_marker] = ACTIONS(1430), + [sym_atx_h4_marker] = ACTIONS(1430), + [sym_atx_h5_marker] = ACTIONS(1430), + [sym_atx_h6_marker] = ACTIONS(1430), + [sym__thematic_break] = ACTIONS(1430), + [sym__list_marker_minus] = ACTIONS(1430), + [sym__list_marker_plus] = ACTIONS(1430), + [sym__list_marker_star] = ACTIONS(1430), + [sym__list_marker_parenthesis] = ACTIONS(1430), + [sym__list_marker_dot] = ACTIONS(1430), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1430), + [sym__fenced_code_block_start_backtick] = ACTIONS(1430), + [sym__fenced_code_block_start_tilde] = ACTIONS(1430), + [sym__blank_line_start] = ACTIONS(1430), + [sym__html_block_1_start] = ACTIONS(1430), + [sym__html_block_2_start] = ACTIONS(1430), + [sym__html_block_3_start] = ACTIONS(1430), + [sym__html_block_4_start] = ACTIONS(1430), + [sym__html_block_5_start] = ACTIONS(1430), + [sym__html_block_6_start] = ACTIONS(1430), + [sym__html_block_7_start] = ACTIONS(1430), + [sym__pipe_table_start] = ACTIONS(1430), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_PERCENT] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_COMMA] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_DOT] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_COLON] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1568), + [anon_sym_BSLASH] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym__] = ACTIONS(1568), + [anon_sym_BQUOTE] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_RPAREN] = ACTIONS(1568), + [aux_sym__word_token1] = ACTIONS(1568), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1568), + [aux_sym__word_token2] = ACTIONS(1568), + [sym__whitespace] = ACTIONS(1568), + [sym__soft_line_ending] = ACTIONS(1568), + [sym__block_quote_start] = ACTIONS(1568), + [sym__indented_chunk_start] = ACTIONS(1568), + [sym_atx_h1_marker] = ACTIONS(1568), + [sym_atx_h2_marker] = ACTIONS(1568), + [sym_atx_h3_marker] = ACTIONS(1568), + [sym_atx_h4_marker] = ACTIONS(1568), + [sym_atx_h5_marker] = ACTIONS(1568), + [sym_atx_h6_marker] = ACTIONS(1568), + [sym__thematic_break] = ACTIONS(1568), + [sym__list_marker_minus] = ACTIONS(1568), + [sym__list_marker_plus] = ACTIONS(1568), + [sym__list_marker_star] = ACTIONS(1568), + [sym__list_marker_parenthesis] = ACTIONS(1568), + [sym__list_marker_dot] = ACTIONS(1568), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1568), + [sym__fenced_code_block_start_backtick] = ACTIONS(1568), + [sym__fenced_code_block_start_tilde] = ACTIONS(1568), + [sym__blank_line_start] = ACTIONS(1568), + [sym__html_block_1_start] = ACTIONS(1568), + [sym__html_block_2_start] = ACTIONS(1568), + [sym__html_block_3_start] = ACTIONS(1568), + [sym__html_block_4_start] = ACTIONS(1568), + [sym__html_block_5_start] = ACTIONS(1568), + [sym__html_block_6_start] = ACTIONS(1568), + [sym__html_block_7_start] = ACTIONS(1568), + [sym__pipe_table_start] = ACTIONS(1568), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_RBRACK] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_POUND] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_DOT] = ACTIONS(1698), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_COLON] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_EQ] = ACTIONS(1698), + [anon_sym_QMARK] = ACTIONS(1698), + [anon_sym_AT] = ACTIONS(1698), + [anon_sym_BSLASH] = ACTIONS(1698), + [anon_sym_CARET] = ACTIONS(1698), + [anon_sym__] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_TILDE] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_RPAREN] = ACTIONS(1698), + [aux_sym__word_token1] = ACTIONS(1698), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1698), + [aux_sym__word_token2] = ACTIONS(1698), + [sym__whitespace] = ACTIONS(1698), + [sym__soft_line_ending] = ACTIONS(1698), + [sym__block_quote_start] = ACTIONS(1698), + [sym__indented_chunk_start] = ACTIONS(1698), + [sym_atx_h1_marker] = ACTIONS(1698), + [sym_atx_h2_marker] = ACTIONS(1698), + [sym_atx_h3_marker] = ACTIONS(1698), + [sym_atx_h4_marker] = ACTIONS(1698), + [sym_atx_h5_marker] = ACTIONS(1698), + [sym_atx_h6_marker] = ACTIONS(1698), + [sym__thematic_break] = ACTIONS(1698), + [sym__list_marker_minus] = ACTIONS(1698), + [sym__list_marker_plus] = ACTIONS(1698), + [sym__list_marker_star] = ACTIONS(1698), + [sym__list_marker_parenthesis] = ACTIONS(1698), + [sym__list_marker_dot] = ACTIONS(1698), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1698), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1698), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1698), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1698), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1698), + [sym__fenced_code_block_start_backtick] = ACTIONS(1698), + [sym__fenced_code_block_start_tilde] = ACTIONS(1698), + [sym__blank_line_start] = ACTIONS(1698), + [sym__html_block_1_start] = ACTIONS(1698), + [sym__html_block_2_start] = ACTIONS(1698), + [sym__html_block_3_start] = ACTIONS(1698), + [sym__html_block_4_start] = ACTIONS(1698), + [sym__html_block_5_start] = ACTIONS(1698), + [sym__html_block_6_start] = ACTIONS(1698), + [sym__html_block_7_start] = ACTIONS(1698), + [sym__pipe_table_start] = ACTIONS(1698), + }, + [274] = { + [ts_builtin_sym_end] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_PERCENT] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_DOT] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1648), + [anon_sym_COLON] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_AT] = ACTIONS(1648), + [anon_sym_BSLASH] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1648), + [anon_sym__] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [aux_sym__word_token1] = ACTIONS(1648), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1648), + [aux_sym__word_token2] = ACTIONS(1648), + [sym__whitespace] = ACTIONS(1648), + [sym__soft_line_ending] = ACTIONS(1648), + [sym__block_quote_start] = ACTIONS(1648), + [sym__indented_chunk_start] = ACTIONS(1648), + [sym_atx_h1_marker] = ACTIONS(1648), + [sym_atx_h2_marker] = ACTIONS(1648), + [sym_atx_h3_marker] = ACTIONS(1648), + [sym_atx_h4_marker] = ACTIONS(1648), + [sym_atx_h5_marker] = ACTIONS(1648), + [sym_atx_h6_marker] = ACTIONS(1648), + [sym__thematic_break] = ACTIONS(1648), + [sym__list_marker_minus] = ACTIONS(1648), + [sym__list_marker_plus] = ACTIONS(1648), + [sym__list_marker_star] = ACTIONS(1648), + [sym__list_marker_parenthesis] = ACTIONS(1648), + [sym__list_marker_dot] = ACTIONS(1648), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1648), + [sym__fenced_code_block_start_backtick] = ACTIONS(1648), + [sym__fenced_code_block_start_tilde] = ACTIONS(1648), + [sym__blank_line_start] = ACTIONS(1648), + [sym__html_block_1_start] = ACTIONS(1648), + [sym__html_block_2_start] = ACTIONS(1648), + [sym__html_block_3_start] = ACTIONS(1648), + [sym__html_block_4_start] = ACTIONS(1648), + [sym__html_block_5_start] = ACTIONS(1648), + [sym__html_block_6_start] = ACTIONS(1648), + [sym__html_block_7_start] = ACTIONS(1648), + [sym__pipe_table_start] = ACTIONS(1648), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_RBRACK] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_PERCENT] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_SLASH] = ACTIONS(1702), + [anon_sym_COLON] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_BSLASH] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym__] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [aux_sym__word_token1] = ACTIONS(1702), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1702), + [aux_sym__word_token2] = ACTIONS(1702), + [sym__whitespace] = ACTIONS(1702), + [sym__soft_line_ending] = ACTIONS(1702), + [sym__block_quote_start] = ACTIONS(1702), + [sym__indented_chunk_start] = ACTIONS(1702), + [sym_atx_h1_marker] = ACTIONS(1702), + [sym_atx_h2_marker] = ACTIONS(1702), + [sym_atx_h3_marker] = ACTIONS(1702), + [sym_atx_h4_marker] = ACTIONS(1702), + [sym_atx_h5_marker] = ACTIONS(1702), + [sym_atx_h6_marker] = ACTIONS(1702), + [sym__thematic_break] = ACTIONS(1702), + [sym__list_marker_minus] = ACTIONS(1702), + [sym__list_marker_plus] = ACTIONS(1702), + [sym__list_marker_star] = ACTIONS(1702), + [sym__list_marker_parenthesis] = ACTIONS(1702), + [sym__list_marker_dot] = ACTIONS(1702), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1702), + [sym__fenced_code_block_start_backtick] = ACTIONS(1702), + [sym__fenced_code_block_start_tilde] = ACTIONS(1702), + [sym__blank_line_start] = ACTIONS(1702), + [sym__html_block_1_start] = ACTIONS(1702), + [sym__html_block_2_start] = ACTIONS(1702), + [sym__html_block_3_start] = ACTIONS(1702), + [sym__html_block_4_start] = ACTIONS(1702), + [sym__html_block_5_start] = ACTIONS(1702), + [sym__html_block_6_start] = ACTIONS(1702), + [sym__html_block_7_start] = ACTIONS(1702), + [sym__pipe_table_start] = ACTIONS(1702), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PERCENT] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_PLUS] = ACTIONS(1644), + [anon_sym_COMMA] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_DOT] = ACTIONS(1644), + [anon_sym_SLASH] = ACTIONS(1644), + [anon_sym_COLON] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(1644), + [anon_sym_AT] = ACTIONS(1644), + [anon_sym_BSLASH] = ACTIONS(1644), + [anon_sym_CARET] = ACTIONS(1644), + [anon_sym__] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [aux_sym__word_token1] = ACTIONS(1644), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1644), + [aux_sym__word_token2] = ACTIONS(1644), + [sym__whitespace] = ACTIONS(1644), + [sym__soft_line_ending] = ACTIONS(1644), + [sym__block_quote_start] = ACTIONS(1644), + [sym__indented_chunk_start] = ACTIONS(1644), + [sym_atx_h1_marker] = ACTIONS(1644), + [sym_atx_h2_marker] = ACTIONS(1644), + [sym_atx_h3_marker] = ACTIONS(1644), + [sym_atx_h4_marker] = ACTIONS(1644), + [sym_atx_h5_marker] = ACTIONS(1644), + [sym_atx_h6_marker] = ACTIONS(1644), + [sym__thematic_break] = ACTIONS(1644), + [sym__list_marker_minus] = ACTIONS(1644), + [sym__list_marker_plus] = ACTIONS(1644), + [sym__list_marker_star] = ACTIONS(1644), + [sym__list_marker_parenthesis] = ACTIONS(1644), + [sym__list_marker_dot] = ACTIONS(1644), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1644), + [sym__fenced_code_block_start_backtick] = ACTIONS(1644), + [sym__fenced_code_block_start_tilde] = ACTIONS(1644), + [sym__blank_line_start] = ACTIONS(1644), + [sym__html_block_1_start] = ACTIONS(1644), + [sym__html_block_2_start] = ACTIONS(1644), + [sym__html_block_3_start] = ACTIONS(1644), + [sym__html_block_4_start] = ACTIONS(1644), + [sym__html_block_5_start] = ACTIONS(1644), + [sym__html_block_6_start] = ACTIONS(1644), + [sym__html_block_7_start] = ACTIONS(1644), + [sym__pipe_table_start] = ACTIONS(1644), + }, + [277] = { + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1211), + [anon_sym_BSLASH] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym__] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1211), + [aux_sym__word_token1] = ACTIONS(1211), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1211), + [aux_sym__word_token2] = ACTIONS(1211), + [sym__whitespace] = ACTIONS(1211), + [sym__soft_line_ending] = ACTIONS(1211), + [sym__block_close] = ACTIONS(1211), + [sym__block_quote_start] = ACTIONS(1211), + [sym__indented_chunk_start] = ACTIONS(1211), + [sym_atx_h1_marker] = ACTIONS(1211), + [sym_atx_h2_marker] = ACTIONS(1211), + [sym_atx_h3_marker] = ACTIONS(1211), + [sym_atx_h4_marker] = ACTIONS(1211), + [sym_atx_h5_marker] = ACTIONS(1211), + [sym_atx_h6_marker] = ACTIONS(1211), + [sym__thematic_break] = ACTIONS(1211), + [sym__list_marker_minus] = ACTIONS(1211), + [sym__list_marker_plus] = ACTIONS(1211), + [sym__list_marker_star] = ACTIONS(1211), + [sym__list_marker_parenthesis] = ACTIONS(1211), + [sym__list_marker_dot] = ACTIONS(1211), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1211), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1211), + [sym__fenced_code_block_start_backtick] = ACTIONS(1211), + [sym__fenced_code_block_start_tilde] = ACTIONS(1211), + [sym__blank_line_start] = ACTIONS(1211), + [sym__html_block_1_start] = ACTIONS(1211), + [sym__html_block_2_start] = ACTIONS(1211), + [sym__html_block_3_start] = ACTIONS(1211), + [sym__html_block_4_start] = ACTIONS(1211), + [sym__html_block_5_start] = ACTIONS(1211), + [sym__html_block_6_start] = ACTIONS(1211), + [sym__html_block_7_start] = ACTIONS(1211), + [sym__pipe_table_start] = ACTIONS(1211), + }, + [278] = { + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_COLON] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [anon_sym_QMARK] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1708), + [anon_sym_BSLASH] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym__] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_TILDE] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [aux_sym__word_token1] = ACTIONS(1708), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1708), + [aux_sym__word_token2] = ACTIONS(1708), + [sym__whitespace] = ACTIONS(1708), + [sym__soft_line_ending] = ACTIONS(1708), + [sym__block_close] = ACTIONS(1708), + [sym__block_quote_start] = ACTIONS(1708), + [sym__indented_chunk_start] = ACTIONS(1708), + [sym_atx_h1_marker] = ACTIONS(1708), + [sym_atx_h2_marker] = ACTIONS(1708), + [sym_atx_h3_marker] = ACTIONS(1708), + [sym_atx_h4_marker] = ACTIONS(1708), + [sym_atx_h5_marker] = ACTIONS(1708), + [sym_atx_h6_marker] = ACTIONS(1708), + [sym__thematic_break] = ACTIONS(1708), + [sym__list_marker_minus] = ACTIONS(1708), + [sym__list_marker_plus] = ACTIONS(1708), + [sym__list_marker_star] = ACTIONS(1708), + [sym__list_marker_parenthesis] = ACTIONS(1708), + [sym__list_marker_dot] = ACTIONS(1708), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1708), + [sym__fenced_code_block_start_backtick] = ACTIONS(1708), + [sym__fenced_code_block_start_tilde] = ACTIONS(1708), + [sym__blank_line_start] = ACTIONS(1708), + [sym__html_block_1_start] = ACTIONS(1708), + [sym__html_block_2_start] = ACTIONS(1708), + [sym__html_block_3_start] = ACTIONS(1708), + [sym__html_block_4_start] = ACTIONS(1708), + [sym__html_block_5_start] = ACTIONS(1708), + [sym__html_block_6_start] = ACTIONS(1708), + [sym__html_block_7_start] = ACTIONS(1708), + [sym__pipe_table_start] = ACTIONS(1708), + }, + [279] = { + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1622), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_BSLASH] = ACTIONS(1622), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), + [anon_sym_BQUOTE] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_TILDE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [aux_sym__word_token1] = ACTIONS(1622), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1622), + [aux_sym__word_token2] = ACTIONS(1622), + [sym__whitespace] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_close] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1622), + [sym__indented_chunk_start] = ACTIONS(1622), + [sym_atx_h1_marker] = ACTIONS(1622), + [sym_atx_h2_marker] = ACTIONS(1622), + [sym_atx_h3_marker] = ACTIONS(1622), + [sym_atx_h4_marker] = ACTIONS(1622), + [sym_atx_h5_marker] = ACTIONS(1622), + [sym_atx_h6_marker] = ACTIONS(1622), + [sym__thematic_break] = ACTIONS(1622), + [sym__list_marker_minus] = ACTIONS(1622), + [sym__list_marker_plus] = ACTIONS(1622), + [sym__list_marker_star] = ACTIONS(1622), + [sym__list_marker_parenthesis] = ACTIONS(1622), + [sym__list_marker_dot] = ACTIONS(1622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1622), + [sym__fenced_code_block_start_backtick] = ACTIONS(1622), + [sym__fenced_code_block_start_tilde] = ACTIONS(1622), + [sym__blank_line_start] = ACTIONS(1622), + [sym__html_block_1_start] = ACTIONS(1622), + [sym__html_block_2_start] = ACTIONS(1622), + [sym__html_block_3_start] = ACTIONS(1622), + [sym__html_block_4_start] = ACTIONS(1622), + [sym__html_block_5_start] = ACTIONS(1622), + [sym__html_block_6_start] = ACTIONS(1622), + [sym__html_block_7_start] = ACTIONS(1622), + [sym__pipe_table_start] = ACTIONS(1622), + }, + [280] = { + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1712), + [anon_sym_RBRACK] = ACTIONS(1710), + [anon_sym_LT] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_DOT] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_COLON] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_EQ] = ACTIONS(1710), + [anon_sym_QMARK] = ACTIONS(1710), + [anon_sym_AT] = ACTIONS(1710), + [anon_sym_BSLASH] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1710), + [anon_sym__] = ACTIONS(1710), + [anon_sym_BQUOTE] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_RPAREN] = ACTIONS(1710), + [aux_sym__word_token1] = ACTIONS(1710), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1710), + [aux_sym__word_token2] = ACTIONS(1710), + [sym__whitespace] = ACTIONS(1710), + [sym__soft_line_ending] = ACTIONS(1710), + [sym__block_quote_start] = ACTIONS(1710), + [sym__indented_chunk_start] = ACTIONS(1710), + [sym_atx_h1_marker] = ACTIONS(1710), + [sym_atx_h2_marker] = ACTIONS(1710), + [sym_atx_h3_marker] = ACTIONS(1710), + [sym_atx_h4_marker] = ACTIONS(1710), + [sym_atx_h5_marker] = ACTIONS(1710), + [sym_atx_h6_marker] = ACTIONS(1710), + [sym__thematic_break] = ACTIONS(1710), + [sym__list_marker_minus] = ACTIONS(1710), + [sym__list_marker_plus] = ACTIONS(1710), + [sym__list_marker_star] = ACTIONS(1710), + [sym__list_marker_parenthesis] = ACTIONS(1710), + [sym__list_marker_dot] = ACTIONS(1710), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1710), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1710), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1710), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1710), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1710), + [sym__fenced_code_block_start_backtick] = ACTIONS(1710), + [sym__fenced_code_block_start_tilde] = ACTIONS(1710), + [sym__blank_line_start] = ACTIONS(1710), + [sym__html_block_1_start] = ACTIONS(1710), + [sym__html_block_2_start] = ACTIONS(1710), + [sym__html_block_3_start] = ACTIONS(1710), + [sym__html_block_4_start] = ACTIONS(1710), + [sym__html_block_5_start] = ACTIONS(1710), + [sym__html_block_6_start] = ACTIONS(1710), + [sym__html_block_7_start] = ACTIONS(1710), + [sym__pipe_table_start] = ACTIONS(1710), + }, + [281] = { + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_SLASH] = ACTIONS(1696), + [anon_sym_COLON] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_BSLASH] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym__] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [aux_sym__word_token1] = ACTIONS(1696), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1696), + [aux_sym__word_token2] = ACTIONS(1696), + [sym__whitespace] = ACTIONS(1696), + [sym__soft_line_ending] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1696), + [sym__indented_chunk_start] = ACTIONS(1696), + [sym_atx_h1_marker] = ACTIONS(1696), + [sym_atx_h2_marker] = ACTIONS(1696), + [sym_atx_h3_marker] = ACTIONS(1696), + [sym_atx_h4_marker] = ACTIONS(1696), + [sym_atx_h5_marker] = ACTIONS(1696), + [sym_atx_h6_marker] = ACTIONS(1696), + [sym__thematic_break] = ACTIONS(1696), + [sym__list_marker_minus] = ACTIONS(1696), + [sym__list_marker_plus] = ACTIONS(1696), + [sym__list_marker_star] = ACTIONS(1696), + [sym__list_marker_parenthesis] = ACTIONS(1696), + [sym__list_marker_dot] = ACTIONS(1696), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1696), + [sym__fenced_code_block_start_backtick] = ACTIONS(1696), + [sym__fenced_code_block_start_tilde] = ACTIONS(1696), + [sym__blank_line_start] = ACTIONS(1696), + [sym__html_block_1_start] = ACTIONS(1696), + [sym__html_block_2_start] = ACTIONS(1696), + [sym__html_block_3_start] = ACTIONS(1696), + [sym__html_block_4_start] = ACTIONS(1696), + [sym__html_block_5_start] = ACTIONS(1696), + [sym__html_block_6_start] = ACTIONS(1696), + [sym__html_block_7_start] = ACTIONS(1696), + [sym__pipe_table_start] = ACTIONS(1696), + }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_COLON] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_QMARK] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym__] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [aux_sym__word_token1] = ACTIONS(1714), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1714), + [aux_sym__word_token2] = ACTIONS(1714), + [sym__whitespace] = ACTIONS(1714), + [sym__soft_line_ending] = ACTIONS(1714), + [sym__block_quote_start] = ACTIONS(1714), + [sym__indented_chunk_start] = ACTIONS(1714), + [sym_atx_h1_marker] = ACTIONS(1714), + [sym_atx_h2_marker] = ACTIONS(1714), + [sym_atx_h3_marker] = ACTIONS(1714), + [sym_atx_h4_marker] = ACTIONS(1714), + [sym_atx_h5_marker] = ACTIONS(1714), + [sym_atx_h6_marker] = ACTIONS(1714), + [sym__thematic_break] = ACTIONS(1714), + [sym__list_marker_minus] = ACTIONS(1714), + [sym__list_marker_plus] = ACTIONS(1714), + [sym__list_marker_star] = ACTIONS(1714), + [sym__list_marker_parenthesis] = ACTIONS(1714), + [sym__list_marker_dot] = ACTIONS(1714), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1714), + [sym__fenced_code_block_start_backtick] = ACTIONS(1714), + [sym__fenced_code_block_start_tilde] = ACTIONS(1714), + [sym__blank_line_start] = ACTIONS(1714), + [sym__html_block_1_start] = ACTIONS(1714), + [sym__html_block_2_start] = ACTIONS(1714), + [sym__html_block_3_start] = ACTIONS(1714), + [sym__html_block_4_start] = ACTIONS(1714), + [sym__html_block_5_start] = ACTIONS(1714), + [sym__html_block_6_start] = ACTIONS(1714), + [sym__html_block_7_start] = ACTIONS(1714), + [sym__pipe_table_start] = ACTIONS(1714), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [anon_sym_POUND] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_COMMA] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_DOT] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_COLON] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_AT] = ACTIONS(1342), + [anon_sym_BSLASH] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym__] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [aux_sym__word_token1] = ACTIONS(1342), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1342), + [aux_sym__word_token2] = ACTIONS(1342), + [sym__whitespace] = ACTIONS(1342), + [sym__soft_line_ending] = ACTIONS(1342), + [sym__block_quote_start] = ACTIONS(1342), + [sym__indented_chunk_start] = ACTIONS(1342), + [sym_atx_h1_marker] = ACTIONS(1342), + [sym_atx_h2_marker] = ACTIONS(1342), + [sym_atx_h3_marker] = ACTIONS(1342), + [sym_atx_h4_marker] = ACTIONS(1342), + [sym_atx_h5_marker] = ACTIONS(1342), + [sym_atx_h6_marker] = ACTIONS(1342), + [sym__thematic_break] = ACTIONS(1342), + [sym__list_marker_minus] = ACTIONS(1342), + [sym__list_marker_plus] = ACTIONS(1342), + [sym__list_marker_star] = ACTIONS(1342), + [sym__list_marker_parenthesis] = ACTIONS(1342), + [sym__list_marker_dot] = ACTIONS(1342), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), + [sym__fenced_code_block_start_backtick] = ACTIONS(1342), + [sym__fenced_code_block_start_tilde] = ACTIONS(1342), + [sym__blank_line_start] = ACTIONS(1342), + [sym__html_block_1_start] = ACTIONS(1342), + [sym__html_block_2_start] = ACTIONS(1342), + [sym__html_block_3_start] = ACTIONS(1342), + [sym__html_block_4_start] = ACTIONS(1342), + [sym__html_block_5_start] = ACTIONS(1342), + [sym__html_block_6_start] = ACTIONS(1342), + [sym__html_block_7_start] = ACTIONS(1342), + [sym__pipe_table_start] = ACTIONS(1342), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_RBRACK] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym__] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [aux_sym__word_token1] = ACTIONS(1718), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1718), + [aux_sym__word_token2] = ACTIONS(1718), + [sym__whitespace] = ACTIONS(1718), + [sym__soft_line_ending] = ACTIONS(1718), + [sym__block_quote_start] = ACTIONS(1718), + [sym__indented_chunk_start] = ACTIONS(1718), + [sym_atx_h1_marker] = ACTIONS(1718), + [sym_atx_h2_marker] = ACTIONS(1718), + [sym_atx_h3_marker] = ACTIONS(1718), + [sym_atx_h4_marker] = ACTIONS(1718), + [sym_atx_h5_marker] = ACTIONS(1718), + [sym_atx_h6_marker] = ACTIONS(1718), + [sym__thematic_break] = ACTIONS(1718), + [sym__list_marker_minus] = ACTIONS(1718), + [sym__list_marker_plus] = ACTIONS(1718), + [sym__list_marker_star] = ACTIONS(1718), + [sym__list_marker_parenthesis] = ACTIONS(1718), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__fenced_code_block_start_backtick] = ACTIONS(1718), + [sym__fenced_code_block_start_tilde] = ACTIONS(1718), + [sym__blank_line_start] = ACTIONS(1718), + [sym__html_block_1_start] = ACTIONS(1718), + [sym__html_block_2_start] = ACTIONS(1718), + [sym__html_block_3_start] = ACTIONS(1718), + [sym__html_block_4_start] = ACTIONS(1718), + [sym__html_block_5_start] = ACTIONS(1718), + [sym__html_block_6_start] = ACTIONS(1718), + [sym__html_block_7_start] = ACTIONS(1718), + [sym__pipe_table_start] = ACTIONS(1718), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_RBRACK] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_GT] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1722), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_COLON] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_EQ] = ACTIONS(1722), + [anon_sym_QMARK] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1722), + [anon_sym_BSLASH] = ACTIONS(1722), + [anon_sym_CARET] = ACTIONS(1722), + [anon_sym__] = ACTIONS(1722), + [anon_sym_BQUOTE] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1722), + [aux_sym__word_token1] = ACTIONS(1722), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1722), + [aux_sym__word_token2] = ACTIONS(1722), + [sym__whitespace] = ACTIONS(1722), + [sym__soft_line_ending] = ACTIONS(1722), + [sym__block_quote_start] = ACTIONS(1722), + [sym__indented_chunk_start] = ACTIONS(1722), + [sym_atx_h1_marker] = ACTIONS(1722), + [sym_atx_h2_marker] = ACTIONS(1722), + [sym_atx_h3_marker] = ACTIONS(1722), + [sym_atx_h4_marker] = ACTIONS(1722), + [sym_atx_h5_marker] = ACTIONS(1722), + [sym_atx_h6_marker] = ACTIONS(1722), + [sym__thematic_break] = ACTIONS(1722), + [sym__list_marker_minus] = ACTIONS(1722), + [sym__list_marker_plus] = ACTIONS(1722), + [sym__list_marker_star] = ACTIONS(1722), + [sym__list_marker_parenthesis] = ACTIONS(1722), + [sym__list_marker_dot] = ACTIONS(1722), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1722), + [sym__fenced_code_block_start_backtick] = ACTIONS(1722), + [sym__fenced_code_block_start_tilde] = ACTIONS(1722), + [sym__blank_line_start] = ACTIONS(1722), + [sym__html_block_1_start] = ACTIONS(1722), + [sym__html_block_2_start] = ACTIONS(1722), + [sym__html_block_3_start] = ACTIONS(1722), + [sym__html_block_4_start] = ACTIONS(1722), + [sym__html_block_5_start] = ACTIONS(1722), + [sym__html_block_6_start] = ACTIONS(1722), + [sym__html_block_7_start] = ACTIONS(1722), + [sym__pipe_table_start] = ACTIONS(1722), + }, + [286] = { + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PERCENT] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_DOT] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1726), + [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1726), + [anon_sym_QMARK] = ACTIONS(1726), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_BSLASH] = ACTIONS(1726), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym__] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [aux_sym__word_token1] = ACTIONS(1726), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1726), + [aux_sym__word_token2] = ACTIONS(1726), + [sym__whitespace] = ACTIONS(1726), + [sym__soft_line_ending] = ACTIONS(1726), + [sym__block_quote_start] = ACTIONS(1726), + [sym__indented_chunk_start] = ACTIONS(1726), + [sym_atx_h1_marker] = ACTIONS(1726), + [sym_atx_h2_marker] = ACTIONS(1726), + [sym_atx_h3_marker] = ACTIONS(1726), + [sym_atx_h4_marker] = ACTIONS(1726), + [sym_atx_h5_marker] = ACTIONS(1726), + [sym_atx_h6_marker] = ACTIONS(1726), + [sym__thematic_break] = ACTIONS(1726), + [sym__list_marker_minus] = ACTIONS(1726), + [sym__list_marker_plus] = ACTIONS(1726), + [sym__list_marker_star] = ACTIONS(1726), + [sym__list_marker_parenthesis] = ACTIONS(1726), + [sym__list_marker_dot] = ACTIONS(1726), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1726), + [sym__fenced_code_block_start_backtick] = ACTIONS(1726), + [sym__fenced_code_block_start_tilde] = ACTIONS(1726), + [sym__blank_line_start] = ACTIONS(1726), + [sym__html_block_1_start] = ACTIONS(1726), + [sym__html_block_2_start] = ACTIONS(1726), + [sym__html_block_3_start] = ACTIONS(1726), + [sym__html_block_4_start] = ACTIONS(1726), + [sym__html_block_5_start] = ACTIONS(1726), + [sym__html_block_6_start] = ACTIONS(1726), + [sym__html_block_7_start] = ACTIONS(1726), + [sym__pipe_table_start] = ACTIONS(1726), + }, + [287] = { + [ts_builtin_sym_end] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_GT] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(1730), + [anon_sym_PERCENT] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_BSLASH] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1730), + [anon_sym__] = ACTIONS(1730), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [aux_sym__word_token1] = ACTIONS(1730), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1730), + [aux_sym__word_token2] = ACTIONS(1730), + [sym__whitespace] = ACTIONS(1730), + [sym__soft_line_ending] = ACTIONS(1730), + [sym__block_quote_start] = ACTIONS(1730), + [sym__indented_chunk_start] = ACTIONS(1730), + [sym_atx_h1_marker] = ACTIONS(1730), + [sym_atx_h2_marker] = ACTIONS(1730), + [sym_atx_h3_marker] = ACTIONS(1730), + [sym_atx_h4_marker] = ACTIONS(1730), + [sym_atx_h5_marker] = ACTIONS(1730), + [sym_atx_h6_marker] = ACTIONS(1730), + [sym__thematic_break] = ACTIONS(1730), + [sym__list_marker_minus] = ACTIONS(1730), + [sym__list_marker_plus] = ACTIONS(1730), + [sym__list_marker_star] = ACTIONS(1730), + [sym__list_marker_parenthesis] = ACTIONS(1730), + [sym__list_marker_dot] = ACTIONS(1730), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1730), + [sym__fenced_code_block_start_backtick] = ACTIONS(1730), + [sym__fenced_code_block_start_tilde] = ACTIONS(1730), + [sym__blank_line_start] = ACTIONS(1730), + [sym__html_block_1_start] = ACTIONS(1730), + [sym__html_block_2_start] = ACTIONS(1730), + [sym__html_block_3_start] = ACTIONS(1730), + [sym__html_block_4_start] = ACTIONS(1730), + [sym__html_block_5_start] = ACTIONS(1730), + [sym__html_block_6_start] = ACTIONS(1730), + [sym__html_block_7_start] = ACTIONS(1730), + [sym__pipe_table_start] = ACTIONS(1730), + }, + [288] = { + [ts_builtin_sym_end] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_COLON] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_BSLASH] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(1734), + [anon_sym__] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [aux_sym__word_token1] = ACTIONS(1734), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1734), + [aux_sym__word_token2] = ACTIONS(1734), + [sym__whitespace] = ACTIONS(1734), + [sym__soft_line_ending] = ACTIONS(1734), + [sym__block_quote_start] = ACTIONS(1734), + [sym__indented_chunk_start] = ACTIONS(1734), + [sym_atx_h1_marker] = ACTIONS(1734), + [sym_atx_h2_marker] = ACTIONS(1734), + [sym_atx_h3_marker] = ACTIONS(1734), + [sym_atx_h4_marker] = ACTIONS(1734), + [sym_atx_h5_marker] = ACTIONS(1734), + [sym_atx_h6_marker] = ACTIONS(1734), + [sym__thematic_break] = ACTIONS(1734), + [sym__list_marker_minus] = ACTIONS(1734), + [sym__list_marker_plus] = ACTIONS(1734), + [sym__list_marker_star] = ACTIONS(1734), + [sym__list_marker_parenthesis] = ACTIONS(1734), + [sym__list_marker_dot] = ACTIONS(1734), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1734), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1734), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1734), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1734), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1734), + [sym__fenced_code_block_start_backtick] = ACTIONS(1734), + [sym__fenced_code_block_start_tilde] = ACTIONS(1734), + [sym__blank_line_start] = ACTIONS(1734), + [sym__html_block_1_start] = ACTIONS(1734), + [sym__html_block_2_start] = ACTIONS(1734), + [sym__html_block_3_start] = ACTIONS(1734), + [sym__html_block_4_start] = ACTIONS(1734), + [sym__html_block_5_start] = ACTIONS(1734), + [sym__html_block_6_start] = ACTIONS(1734), + [sym__html_block_7_start] = ACTIONS(1734), + [sym__pipe_table_start] = ACTIONS(1734), + }, + [289] = { + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_RBRACK] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_SLASH] = ACTIONS(1686), + [anon_sym_COLON] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_EQ] = ACTIONS(1686), + [anon_sym_QMARK] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym__] = ACTIONS(1686), + [anon_sym_BQUOTE] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_TILDE] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1686), + [aux_sym__word_token1] = ACTIONS(1686), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1686), + [aux_sym__word_token2] = ACTIONS(1686), + [sym__whitespace] = ACTIONS(1686), + [sym__soft_line_ending] = ACTIONS(1686), + [sym__block_close] = ACTIONS(1686), + [sym__block_quote_start] = ACTIONS(1686), + [sym__indented_chunk_start] = ACTIONS(1686), + [sym_atx_h1_marker] = ACTIONS(1686), + [sym_atx_h2_marker] = ACTIONS(1686), + [sym_atx_h3_marker] = ACTIONS(1686), + [sym_atx_h4_marker] = ACTIONS(1686), + [sym_atx_h5_marker] = ACTIONS(1686), + [sym_atx_h6_marker] = ACTIONS(1686), + [sym__thematic_break] = ACTIONS(1686), + [sym__list_marker_minus] = ACTIONS(1686), + [sym__list_marker_plus] = ACTIONS(1686), + [sym__list_marker_star] = ACTIONS(1686), + [sym__list_marker_parenthesis] = ACTIONS(1686), + [sym__list_marker_dot] = ACTIONS(1686), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1686), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1686), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1686), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1686), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1686), + [sym__fenced_code_block_start_backtick] = ACTIONS(1686), + [sym__fenced_code_block_start_tilde] = ACTIONS(1686), + [sym__blank_line_start] = ACTIONS(1686), + [sym__html_block_1_start] = ACTIONS(1686), + [sym__html_block_2_start] = ACTIONS(1686), + [sym__html_block_3_start] = ACTIONS(1686), + [sym__html_block_4_start] = ACTIONS(1686), + [sym__html_block_5_start] = ACTIONS(1686), + [sym__html_block_6_start] = ACTIONS(1686), + [sym__html_block_7_start] = ACTIONS(1686), + [sym__pipe_table_start] = ACTIONS(1686), + }, + [290] = { + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_COLON] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_QMARK] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1738), + [anon_sym_BSLASH] = ACTIONS(1738), + [anon_sym_CARET] = ACTIONS(1738), + [anon_sym__] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_TILDE] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [aux_sym__word_token1] = ACTIONS(1738), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1738), + [aux_sym__word_token2] = ACTIONS(1738), + [sym__whitespace] = ACTIONS(1738), + [sym__soft_line_ending] = ACTIONS(1738), + [sym__block_quote_start] = ACTIONS(1738), + [sym__indented_chunk_start] = ACTIONS(1738), + [sym_atx_h1_marker] = ACTIONS(1738), + [sym_atx_h2_marker] = ACTIONS(1738), + [sym_atx_h3_marker] = ACTIONS(1738), + [sym_atx_h4_marker] = ACTIONS(1738), + [sym_atx_h5_marker] = ACTIONS(1738), + [sym_atx_h6_marker] = ACTIONS(1738), + [sym__thematic_break] = ACTIONS(1738), + [sym__list_marker_minus] = ACTIONS(1738), + [sym__list_marker_plus] = ACTIONS(1738), + [sym__list_marker_star] = ACTIONS(1738), + [sym__list_marker_parenthesis] = ACTIONS(1738), + [sym__list_marker_dot] = ACTIONS(1738), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1738), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1738), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1738), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1738), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1738), + [sym__fenced_code_block_start_backtick] = ACTIONS(1738), + [sym__fenced_code_block_start_tilde] = ACTIONS(1738), + [sym__blank_line_start] = ACTIONS(1738), + [sym__html_block_1_start] = ACTIONS(1738), + [sym__html_block_2_start] = ACTIONS(1738), + [sym__html_block_3_start] = ACTIONS(1738), + [sym__html_block_4_start] = ACTIONS(1738), + [sym__html_block_5_start] = ACTIONS(1738), + [sym__html_block_6_start] = ACTIONS(1738), + [sym__html_block_7_start] = ACTIONS(1738), + [sym__pipe_table_start] = ACTIONS(1738), + }, + [291] = { + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym__] = ACTIONS(1195), + [anon_sym_BQUOTE] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1195), + [anon_sym_RPAREN] = ACTIONS(1195), + [aux_sym__word_token1] = ACTIONS(1195), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1195), + [aux_sym__word_token2] = ACTIONS(1195), + [sym__whitespace] = ACTIONS(1195), + [sym__soft_line_ending] = ACTIONS(1195), + [sym__block_close] = ACTIONS(1195), + [sym__block_quote_start] = ACTIONS(1195), + [sym__indented_chunk_start] = ACTIONS(1195), + [sym_atx_h1_marker] = ACTIONS(1195), + [sym_atx_h2_marker] = ACTIONS(1195), + [sym_atx_h3_marker] = ACTIONS(1195), + [sym_atx_h4_marker] = ACTIONS(1195), + [sym_atx_h5_marker] = ACTIONS(1195), + [sym_atx_h6_marker] = ACTIONS(1195), + [sym__thematic_break] = ACTIONS(1195), + [sym__list_marker_minus] = ACTIONS(1195), + [sym__list_marker_plus] = ACTIONS(1195), + [sym__list_marker_star] = ACTIONS(1195), + [sym__list_marker_parenthesis] = ACTIONS(1195), + [sym__list_marker_dot] = ACTIONS(1195), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1195), + [sym__fenced_code_block_start_backtick] = ACTIONS(1195), + [sym__fenced_code_block_start_tilde] = ACTIONS(1195), + [sym__blank_line_start] = ACTIONS(1195), + [sym__html_block_1_start] = ACTIONS(1195), + [sym__html_block_2_start] = ACTIONS(1195), + [sym__html_block_3_start] = ACTIONS(1195), + [sym__html_block_4_start] = ACTIONS(1195), + [sym__html_block_5_start] = ACTIONS(1195), + [sym__html_block_6_start] = ACTIONS(1195), + [sym__html_block_7_start] = ACTIONS(1195), + [sym__pipe_table_start] = ACTIONS(1195), + }, + [292] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_RBRACK] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_GT] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1382), + [anon_sym_COLON] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_BSLASH] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym__] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1382), + [aux_sym__word_token1] = ACTIONS(1382), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1382), + [aux_sym__word_token2] = ACTIONS(1382), + [sym__whitespace] = ACTIONS(1382), + [sym__soft_line_ending] = ACTIONS(1382), + [sym__block_quote_start] = ACTIONS(1382), + [sym__indented_chunk_start] = ACTIONS(1382), + [sym_atx_h1_marker] = ACTIONS(1382), + [sym_atx_h2_marker] = ACTIONS(1382), + [sym_atx_h3_marker] = ACTIONS(1382), + [sym_atx_h4_marker] = ACTIONS(1382), + [sym_atx_h5_marker] = ACTIONS(1382), + [sym_atx_h6_marker] = ACTIONS(1382), + [sym__thematic_break] = ACTIONS(1382), + [sym__list_marker_minus] = ACTIONS(1382), + [sym__list_marker_plus] = ACTIONS(1382), + [sym__list_marker_star] = ACTIONS(1382), + [sym__list_marker_parenthesis] = ACTIONS(1382), + [sym__list_marker_dot] = ACTIONS(1382), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym__html_block_1_start] = ACTIONS(1382), + [sym__html_block_2_start] = ACTIONS(1382), + [sym__html_block_3_start] = ACTIONS(1382), + [sym__html_block_4_start] = ACTIONS(1382), + [sym__html_block_5_start] = ACTIONS(1382), + [sym__html_block_6_start] = ACTIONS(1382), + [sym__html_block_7_start] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + }, + [293] = { + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_RBRACK] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1690), + [anon_sym_DOLLAR] = ACTIONS(1690), + [anon_sym_PERCENT] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_DOT] = ACTIONS(1690), + [anon_sym_SLASH] = ACTIONS(1690), + [anon_sym_COLON] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_EQ] = ACTIONS(1690), + [anon_sym_QMARK] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_BSLASH] = ACTIONS(1690), + [anon_sym_CARET] = ACTIONS(1690), + [anon_sym__] = ACTIONS(1690), + [anon_sym_BQUOTE] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_RPAREN] = ACTIONS(1690), + [aux_sym__word_token1] = ACTIONS(1690), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1690), + [aux_sym__word_token2] = ACTIONS(1690), + [sym__whitespace] = ACTIONS(1690), + [sym__soft_line_ending] = ACTIONS(1690), + [sym__block_close] = ACTIONS(1690), + [sym__block_quote_start] = ACTIONS(1690), + [sym__indented_chunk_start] = ACTIONS(1690), + [sym_atx_h1_marker] = ACTIONS(1690), + [sym_atx_h2_marker] = ACTIONS(1690), + [sym_atx_h3_marker] = ACTIONS(1690), + [sym_atx_h4_marker] = ACTIONS(1690), + [sym_atx_h5_marker] = ACTIONS(1690), + [sym_atx_h6_marker] = ACTIONS(1690), + [sym__thematic_break] = ACTIONS(1690), + [sym__list_marker_minus] = ACTIONS(1690), + [sym__list_marker_plus] = ACTIONS(1690), + [sym__list_marker_star] = ACTIONS(1690), + [sym__list_marker_parenthesis] = ACTIONS(1690), + [sym__list_marker_dot] = ACTIONS(1690), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1690), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1690), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1690), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1690), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1690), + [sym__fenced_code_block_start_backtick] = ACTIONS(1690), + [sym__fenced_code_block_start_tilde] = ACTIONS(1690), + [sym__blank_line_start] = ACTIONS(1690), + [sym__html_block_1_start] = ACTIONS(1690), + [sym__html_block_2_start] = ACTIONS(1690), + [sym__html_block_3_start] = ACTIONS(1690), + [sym__html_block_4_start] = ACTIONS(1690), + [sym__html_block_5_start] = ACTIONS(1690), + [sym__html_block_6_start] = ACTIONS(1690), + [sym__html_block_7_start] = ACTIONS(1690), + [sym__pipe_table_start] = ACTIONS(1690), + }, + [294] = { + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_RBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1742), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(1742), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SLASH] = ACTIONS(1742), + [anon_sym_COLON] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1742), + [anon_sym_QMARK] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1742), + [anon_sym_BSLASH] = ACTIONS(1742), + [anon_sym_CARET] = ACTIONS(1742), + [anon_sym__] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_RPAREN] = ACTIONS(1742), + [aux_sym__word_token1] = ACTIONS(1742), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1742), + [aux_sym__word_token2] = ACTIONS(1742), + [sym__whitespace] = ACTIONS(1742), + [sym__soft_line_ending] = ACTIONS(1742), + [sym__block_quote_start] = ACTIONS(1742), + [sym__indented_chunk_start] = ACTIONS(1742), + [sym_atx_h1_marker] = ACTIONS(1742), + [sym_atx_h2_marker] = ACTIONS(1742), + [sym_atx_h3_marker] = ACTIONS(1742), + [sym_atx_h4_marker] = ACTIONS(1742), + [sym_atx_h5_marker] = ACTIONS(1742), + [sym_atx_h6_marker] = ACTIONS(1742), + [sym__thematic_break] = ACTIONS(1742), + [sym__list_marker_minus] = ACTIONS(1742), + [sym__list_marker_plus] = ACTIONS(1742), + [sym__list_marker_star] = ACTIONS(1742), + [sym__list_marker_parenthesis] = ACTIONS(1742), + [sym__list_marker_dot] = ACTIONS(1742), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1742), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1742), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1742), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1742), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1742), + [sym__fenced_code_block_start_backtick] = ACTIONS(1742), + [sym__fenced_code_block_start_tilde] = ACTIONS(1742), + [sym__blank_line_start] = ACTIONS(1742), + [sym__html_block_1_start] = ACTIONS(1742), + [sym__html_block_2_start] = ACTIONS(1742), + [sym__html_block_3_start] = ACTIONS(1742), + [sym__html_block_4_start] = ACTIONS(1742), + [sym__html_block_5_start] = ACTIONS(1742), + [sym__html_block_6_start] = ACTIONS(1742), + [sym__html_block_7_start] = ACTIONS(1742), + [sym__pipe_table_start] = ACTIONS(1742), + }, + [295] = { + [ts_builtin_sym_end] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_COLON] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [aux_sym__word_token1] = ACTIONS(1640), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1640), + [aux_sym__word_token2] = ACTIONS(1640), + [sym__whitespace] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym__html_block_1_start] = ACTIONS(1640), + [sym__html_block_2_start] = ACTIONS(1640), + [sym__html_block_3_start] = ACTIONS(1640), + [sym__html_block_4_start] = ACTIONS(1640), + [sym__html_block_5_start] = ACTIONS(1640), + [sym__html_block_6_start] = ACTIONS(1640), + [sym__html_block_7_start] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1746), + [anon_sym_GT] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1746), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1746), + [anon_sym_SLASH] = ACTIONS(1746), + [anon_sym_COLON] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(1746), + [anon_sym_BSLASH] = ACTIONS(1746), + [anon_sym_CARET] = ACTIONS(1746), + [anon_sym__] = ACTIONS(1746), + [anon_sym_BQUOTE] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [aux_sym__word_token1] = ACTIONS(1746), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1746), + [aux_sym__word_token2] = ACTIONS(1746), + [sym__whitespace] = ACTIONS(1746), + [sym__soft_line_ending] = ACTIONS(1746), + [sym__block_quote_start] = ACTIONS(1746), + [sym__indented_chunk_start] = ACTIONS(1746), + [sym_atx_h1_marker] = ACTIONS(1746), + [sym_atx_h2_marker] = ACTIONS(1746), + [sym_atx_h3_marker] = ACTIONS(1746), + [sym_atx_h4_marker] = ACTIONS(1746), + [sym_atx_h5_marker] = ACTIONS(1746), + [sym_atx_h6_marker] = ACTIONS(1746), + [sym__thematic_break] = ACTIONS(1746), + [sym__list_marker_minus] = ACTIONS(1746), + [sym__list_marker_plus] = ACTIONS(1746), + [sym__list_marker_star] = ACTIONS(1746), + [sym__list_marker_parenthesis] = ACTIONS(1746), + [sym__list_marker_dot] = ACTIONS(1746), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1746), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1746), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1746), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1746), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1746), + [sym__fenced_code_block_start_backtick] = ACTIONS(1746), + [sym__fenced_code_block_start_tilde] = ACTIONS(1746), + [sym__blank_line_start] = ACTIONS(1746), + [sym__html_block_1_start] = ACTIONS(1746), + [sym__html_block_2_start] = ACTIONS(1746), + [sym__html_block_3_start] = ACTIONS(1746), + [sym__html_block_4_start] = ACTIONS(1746), + [sym__html_block_5_start] = ACTIONS(1746), + [sym__html_block_6_start] = ACTIONS(1746), + [sym__html_block_7_start] = ACTIONS(1746), + [sym__pipe_table_start] = ACTIONS(1746), + }, + [297] = { + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_PERCENT] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1610), + [anon_sym_COLON] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_BSLASH] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym__] = ACTIONS(1610), + [anon_sym_BQUOTE] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [aux_sym__word_token1] = ACTIONS(1610), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1610), + [aux_sym__word_token2] = ACTIONS(1610), + [sym__whitespace] = ACTIONS(1610), + [sym__soft_line_ending] = ACTIONS(1610), + [sym__block_close] = ACTIONS(1610), + [sym__block_quote_start] = ACTIONS(1610), + [sym__indented_chunk_start] = ACTIONS(1610), + [sym_atx_h1_marker] = ACTIONS(1610), + [sym_atx_h2_marker] = ACTIONS(1610), + [sym_atx_h3_marker] = ACTIONS(1610), + [sym_atx_h4_marker] = ACTIONS(1610), + [sym_atx_h5_marker] = ACTIONS(1610), + [sym_atx_h6_marker] = ACTIONS(1610), + [sym__thematic_break] = ACTIONS(1610), + [sym__list_marker_minus] = ACTIONS(1610), + [sym__list_marker_plus] = ACTIONS(1610), + [sym__list_marker_star] = ACTIONS(1610), + [sym__list_marker_parenthesis] = ACTIONS(1610), + [sym__list_marker_dot] = ACTIONS(1610), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1610), + [sym__fenced_code_block_start_backtick] = ACTIONS(1610), + [sym__fenced_code_block_start_tilde] = ACTIONS(1610), + [sym__blank_line_start] = ACTIONS(1610), + [sym__html_block_1_start] = ACTIONS(1610), + [sym__html_block_2_start] = ACTIONS(1610), + [sym__html_block_3_start] = ACTIONS(1610), + [sym__html_block_4_start] = ACTIONS(1610), + [sym__html_block_5_start] = ACTIONS(1610), + [sym__html_block_6_start] = ACTIONS(1610), + [sym__html_block_7_start] = ACTIONS(1610), + [sym__pipe_table_start] = ACTIONS(1610), + }, + [298] = { + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_DQUOTE] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_QMARK] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_BSLASH] = ACTIONS(1752), + [anon_sym_CARET] = ACTIONS(1752), + [anon_sym__] = ACTIONS(1752), + [anon_sym_BQUOTE] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [aux_sym__word_token1] = ACTIONS(1752), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1752), + [aux_sym__word_token2] = ACTIONS(1752), + [sym__whitespace] = ACTIONS(1752), + [sym__soft_line_ending] = ACTIONS(1752), + [sym__block_close] = ACTIONS(1752), + [sym__block_quote_start] = ACTIONS(1752), + [sym__indented_chunk_start] = ACTIONS(1752), + [sym_atx_h1_marker] = ACTIONS(1752), + [sym_atx_h2_marker] = ACTIONS(1752), + [sym_atx_h3_marker] = ACTIONS(1752), + [sym_atx_h4_marker] = ACTIONS(1752), + [sym_atx_h5_marker] = ACTIONS(1752), + [sym_atx_h6_marker] = ACTIONS(1752), + [sym__thematic_break] = ACTIONS(1752), + [sym__list_marker_minus] = ACTIONS(1752), + [sym__list_marker_plus] = ACTIONS(1752), + [sym__list_marker_star] = ACTIONS(1752), + [sym__list_marker_parenthesis] = ACTIONS(1752), + [sym__list_marker_dot] = ACTIONS(1752), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1752), + [sym__fenced_code_block_start_backtick] = ACTIONS(1752), + [sym__fenced_code_block_start_tilde] = ACTIONS(1752), + [sym__blank_line_start] = ACTIONS(1752), + [sym__html_block_1_start] = ACTIONS(1752), + [sym__html_block_2_start] = ACTIONS(1752), + [sym__html_block_3_start] = ACTIONS(1752), + [sym__html_block_4_start] = ACTIONS(1752), + [sym__html_block_5_start] = ACTIONS(1752), + [sym__html_block_6_start] = ACTIONS(1752), + [sym__html_block_7_start] = ACTIONS(1752), + [sym__pipe_table_start] = ACTIONS(1752), + }, + [299] = { + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1239), + [anon_sym_BSLASH] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [aux_sym__word_token1] = ACTIONS(1239), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1239), + [aux_sym__word_token2] = ACTIONS(1239), + [sym__whitespace] = ACTIONS(1239), + [sym__soft_line_ending] = ACTIONS(1239), + [sym__block_close] = ACTIONS(1239), + [sym__block_quote_start] = ACTIONS(1239), + [sym__indented_chunk_start] = ACTIONS(1239), + [sym_atx_h1_marker] = ACTIONS(1239), + [sym_atx_h2_marker] = ACTIONS(1239), + [sym_atx_h3_marker] = ACTIONS(1239), + [sym_atx_h4_marker] = ACTIONS(1239), + [sym_atx_h5_marker] = ACTIONS(1239), + [sym_atx_h6_marker] = ACTIONS(1239), + [sym__thematic_break] = ACTIONS(1239), + [sym__list_marker_minus] = ACTIONS(1239), + [sym__list_marker_plus] = ACTIONS(1239), + [sym__list_marker_star] = ACTIONS(1239), + [sym__list_marker_parenthesis] = ACTIONS(1239), + [sym__list_marker_dot] = ACTIONS(1239), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1239), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1239), + [sym__fenced_code_block_start_backtick] = ACTIONS(1239), + [sym__fenced_code_block_start_tilde] = ACTIONS(1239), + [sym__blank_line_start] = ACTIONS(1239), + [sym__html_block_1_start] = ACTIONS(1239), + [sym__html_block_2_start] = ACTIONS(1239), + [sym__html_block_3_start] = ACTIONS(1239), + [sym__html_block_4_start] = ACTIONS(1239), + [sym__html_block_5_start] = ACTIONS(1239), + [sym__html_block_6_start] = ACTIONS(1239), + [sym__html_block_7_start] = ACTIONS(1239), + [sym__pipe_table_start] = ACTIONS(1239), + }, + [300] = { + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_DQUOTE] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_COLON] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym__] = ACTIONS(1430), + [anon_sym_BQUOTE] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [aux_sym__word_token1] = ACTIONS(1430), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1430), + [aux_sym__word_token2] = ACTIONS(1430), + [sym__whitespace] = ACTIONS(1430), + [sym__soft_line_ending] = ACTIONS(1430), + [sym__block_close] = ACTIONS(1430), + [sym__block_quote_start] = ACTIONS(1430), + [sym__indented_chunk_start] = ACTIONS(1430), + [sym_atx_h1_marker] = ACTIONS(1430), + [sym_atx_h2_marker] = ACTIONS(1430), + [sym_atx_h3_marker] = ACTIONS(1430), + [sym_atx_h4_marker] = ACTIONS(1430), + [sym_atx_h5_marker] = ACTIONS(1430), + [sym_atx_h6_marker] = ACTIONS(1430), + [sym__thematic_break] = ACTIONS(1430), + [sym__list_marker_minus] = ACTIONS(1430), + [sym__list_marker_plus] = ACTIONS(1430), + [sym__list_marker_star] = ACTIONS(1430), + [sym__list_marker_parenthesis] = ACTIONS(1430), + [sym__list_marker_dot] = ACTIONS(1430), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1430), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1430), + [sym__fenced_code_block_start_backtick] = ACTIONS(1430), + [sym__fenced_code_block_start_tilde] = ACTIONS(1430), + [sym__blank_line_start] = ACTIONS(1430), + [sym__html_block_1_start] = ACTIONS(1430), + [sym__html_block_2_start] = ACTIONS(1430), + [sym__html_block_3_start] = ACTIONS(1430), + [sym__html_block_4_start] = ACTIONS(1430), + [sym__html_block_5_start] = ACTIONS(1430), + [sym__html_block_6_start] = ACTIONS(1430), + [sym__html_block_7_start] = ACTIONS(1430), + [sym__pipe_table_start] = ACTIONS(1430), + }, + [301] = { + [ts_builtin_sym_end] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_COLON] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [aux_sym__word_token1] = ACTIONS(1548), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1548), + [aux_sym__word_token2] = ACTIONS(1548), + [sym__whitespace] = ACTIONS(1548), + [sym__soft_line_ending] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(1548), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(1548), + [sym__html_block_1_start] = ACTIONS(1548), + [sym__html_block_2_start] = ACTIONS(1548), + [sym__html_block_3_start] = ACTIONS(1548), + [sym__html_block_4_start] = ACTIONS(1548), + [sym__html_block_5_start] = ACTIONS(1548), + [sym__html_block_6_start] = ACTIONS(1548), + [sym__html_block_7_start] = ACTIONS(1548), + [sym__pipe_table_start] = ACTIONS(1548), + }, + [302] = { + [anon_sym_LBRACK] = ACTIONS(1147), + [anon_sym_RBRACK] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_SQUOTE] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_COMMA] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_DOT] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_COLON] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_EQ] = ACTIONS(1145), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1145), + [anon_sym_BSLASH] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1145), + [anon_sym__] = ACTIONS(1145), + [anon_sym_BQUOTE] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_RPAREN] = ACTIONS(1145), + [aux_sym__word_token1] = ACTIONS(1145), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1145), + [aux_sym__word_token2] = ACTIONS(1145), + [sym__whitespace] = ACTIONS(1145), + [sym__soft_line_ending] = ACTIONS(1145), + [sym__block_close] = ACTIONS(1145), + [sym__block_quote_start] = ACTIONS(1145), + [sym__indented_chunk_start] = ACTIONS(1145), + [sym_atx_h1_marker] = ACTIONS(1145), + [sym_atx_h2_marker] = ACTIONS(1145), + [sym_atx_h3_marker] = ACTIONS(1145), + [sym_atx_h4_marker] = ACTIONS(1145), + [sym_atx_h5_marker] = ACTIONS(1145), + [sym_atx_h6_marker] = ACTIONS(1145), + [sym__thematic_break] = ACTIONS(1145), + [sym__list_marker_minus] = ACTIONS(1145), + [sym__list_marker_plus] = ACTIONS(1145), + [sym__list_marker_star] = ACTIONS(1145), + [sym__list_marker_parenthesis] = ACTIONS(1145), + [sym__list_marker_dot] = ACTIONS(1145), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1145), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1145), + [sym__fenced_code_block_start_backtick] = ACTIONS(1145), + [sym__fenced_code_block_start_tilde] = ACTIONS(1145), + [sym__blank_line_start] = ACTIONS(1145), + [sym__html_block_1_start] = ACTIONS(1145), + [sym__html_block_2_start] = ACTIONS(1145), + [sym__html_block_3_start] = ACTIONS(1145), + [sym__html_block_4_start] = ACTIONS(1145), + [sym__html_block_5_start] = ACTIONS(1145), + [sym__html_block_6_start] = ACTIONS(1145), + [sym__html_block_7_start] = ACTIONS(1145), + [sym__pipe_table_start] = ACTIONS(1145), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_COLON] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_BSLASH] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym__] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [aux_sym__word_token1] = ACTIONS(1754), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1754), + [aux_sym__word_token2] = ACTIONS(1754), + [sym__whitespace] = ACTIONS(1754), + [sym__soft_line_ending] = ACTIONS(1754), + [sym__block_quote_start] = ACTIONS(1754), + [sym__indented_chunk_start] = ACTIONS(1754), + [sym_atx_h1_marker] = ACTIONS(1754), + [sym_atx_h2_marker] = ACTIONS(1754), + [sym_atx_h3_marker] = ACTIONS(1754), + [sym_atx_h4_marker] = ACTIONS(1754), + [sym_atx_h5_marker] = ACTIONS(1754), + [sym_atx_h6_marker] = ACTIONS(1754), + [sym__thematic_break] = ACTIONS(1754), + [sym__list_marker_minus] = ACTIONS(1754), + [sym__list_marker_plus] = ACTIONS(1754), + [sym__list_marker_star] = ACTIONS(1754), + [sym__list_marker_parenthesis] = ACTIONS(1754), + [sym__list_marker_dot] = ACTIONS(1754), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1754), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1754), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1754), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1754), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1754), + [sym__fenced_code_block_start_backtick] = ACTIONS(1754), + [sym__fenced_code_block_start_tilde] = ACTIONS(1754), + [sym__blank_line_start] = ACTIONS(1754), + [sym__html_block_1_start] = ACTIONS(1754), + [sym__html_block_2_start] = ACTIONS(1754), + [sym__html_block_3_start] = ACTIONS(1754), + [sym__html_block_4_start] = ACTIONS(1754), + [sym__html_block_5_start] = ACTIONS(1754), + [sym__html_block_6_start] = ACTIONS(1754), + [sym__html_block_7_start] = ACTIONS(1754), + [sym__pipe_table_start] = ACTIONS(1754), + }, + [304] = { + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_RBRACK] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [anon_sym_POUND] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_COMMA] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_DOT] = ACTIONS(1698), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_COLON] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_EQ] = ACTIONS(1698), + [anon_sym_QMARK] = ACTIONS(1698), + [anon_sym_AT] = ACTIONS(1698), + [anon_sym_BSLASH] = ACTIONS(1698), + [anon_sym_CARET] = ACTIONS(1698), + [anon_sym__] = ACTIONS(1698), + [anon_sym_BQUOTE] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_TILDE] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_RPAREN] = ACTIONS(1698), + [aux_sym__word_token1] = ACTIONS(1698), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1698), + [aux_sym__word_token2] = ACTIONS(1698), + [sym__whitespace] = ACTIONS(1698), + [sym__soft_line_ending] = ACTIONS(1698), + [sym__block_close] = ACTIONS(1698), + [sym__block_quote_start] = ACTIONS(1698), + [sym__indented_chunk_start] = ACTIONS(1698), + [sym_atx_h1_marker] = ACTIONS(1698), + [sym_atx_h2_marker] = ACTIONS(1698), + [sym_atx_h3_marker] = ACTIONS(1698), + [sym_atx_h4_marker] = ACTIONS(1698), + [sym_atx_h5_marker] = ACTIONS(1698), + [sym_atx_h6_marker] = ACTIONS(1698), + [sym__thematic_break] = ACTIONS(1698), + [sym__list_marker_minus] = ACTIONS(1698), + [sym__list_marker_plus] = ACTIONS(1698), + [sym__list_marker_star] = ACTIONS(1698), + [sym__list_marker_parenthesis] = ACTIONS(1698), + [sym__list_marker_dot] = ACTIONS(1698), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1698), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1698), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1698), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1698), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1698), + [sym__fenced_code_block_start_backtick] = ACTIONS(1698), + [sym__fenced_code_block_start_tilde] = ACTIONS(1698), + [sym__blank_line_start] = ACTIONS(1698), + [sym__html_block_1_start] = ACTIONS(1698), + [sym__html_block_2_start] = ACTIONS(1698), + [sym__html_block_3_start] = ACTIONS(1698), + [sym__html_block_4_start] = ACTIONS(1698), + [sym__html_block_5_start] = ACTIONS(1698), + [sym__html_block_6_start] = ACTIONS(1698), + [sym__html_block_7_start] = ACTIONS(1698), + [sym__pipe_table_start] = ACTIONS(1698), + }, + [305] = { + [ts_builtin_sym_end] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_RBRACK] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_GT] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1758), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_PERCENT] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1758), + [anon_sym_COLON] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_EQ] = ACTIONS(1758), + [anon_sym_QMARK] = ACTIONS(1758), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_BSLASH] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1758), + [anon_sym__] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1758), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1758), + [aux_sym__word_token1] = ACTIONS(1758), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1758), + [aux_sym__word_token2] = ACTIONS(1758), + [sym__whitespace] = ACTIONS(1758), + [sym__soft_line_ending] = ACTIONS(1758), + [sym__block_quote_start] = ACTIONS(1758), + [sym__indented_chunk_start] = ACTIONS(1758), + [sym_atx_h1_marker] = ACTIONS(1758), + [sym_atx_h2_marker] = ACTIONS(1758), + [sym_atx_h3_marker] = ACTIONS(1758), + [sym_atx_h4_marker] = ACTIONS(1758), + [sym_atx_h5_marker] = ACTIONS(1758), + [sym_atx_h6_marker] = ACTIONS(1758), + [sym__thematic_break] = ACTIONS(1758), + [sym__list_marker_minus] = ACTIONS(1758), + [sym__list_marker_plus] = ACTIONS(1758), + [sym__list_marker_star] = ACTIONS(1758), + [sym__list_marker_parenthesis] = ACTIONS(1758), + [sym__list_marker_dot] = ACTIONS(1758), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1758), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1758), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1758), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1758), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1758), + [sym__fenced_code_block_start_backtick] = ACTIONS(1758), + [sym__fenced_code_block_start_tilde] = ACTIONS(1758), + [sym__blank_line_start] = ACTIONS(1758), + [sym__html_block_1_start] = ACTIONS(1758), + [sym__html_block_2_start] = ACTIONS(1758), + [sym__html_block_3_start] = ACTIONS(1758), + [sym__html_block_4_start] = ACTIONS(1758), + [sym__html_block_5_start] = ACTIONS(1758), + [sym__html_block_6_start] = ACTIONS(1758), + [sym__html_block_7_start] = ACTIONS(1758), + [sym__pipe_table_start] = ACTIONS(1758), + }, + [306] = { + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_RBRACK] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_PERCENT] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_SLASH] = ACTIONS(1702), + [anon_sym_COLON] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_BSLASH] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym__] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [aux_sym__word_token1] = ACTIONS(1702), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1702), + [aux_sym__word_token2] = ACTIONS(1702), + [sym__whitespace] = ACTIONS(1702), + [sym__soft_line_ending] = ACTIONS(1702), + [sym__block_close] = ACTIONS(1702), + [sym__block_quote_start] = ACTIONS(1702), + [sym__indented_chunk_start] = ACTIONS(1702), + [sym_atx_h1_marker] = ACTIONS(1702), + [sym_atx_h2_marker] = ACTIONS(1702), + [sym_atx_h3_marker] = ACTIONS(1702), + [sym_atx_h4_marker] = ACTIONS(1702), + [sym_atx_h5_marker] = ACTIONS(1702), + [sym_atx_h6_marker] = ACTIONS(1702), + [sym__thematic_break] = ACTIONS(1702), + [sym__list_marker_minus] = ACTIONS(1702), + [sym__list_marker_plus] = ACTIONS(1702), + [sym__list_marker_star] = ACTIONS(1702), + [sym__list_marker_parenthesis] = ACTIONS(1702), + [sym__list_marker_dot] = ACTIONS(1702), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1702), + [sym__fenced_code_block_start_backtick] = ACTIONS(1702), + [sym__fenced_code_block_start_tilde] = ACTIONS(1702), + [sym__blank_line_start] = ACTIONS(1702), + [sym__html_block_1_start] = ACTIONS(1702), + [sym__html_block_2_start] = ACTIONS(1702), + [sym__html_block_3_start] = ACTIONS(1702), + [sym__html_block_4_start] = ACTIONS(1702), + [sym__html_block_5_start] = ACTIONS(1702), + [sym__html_block_6_start] = ACTIONS(1702), + [sym__html_block_7_start] = ACTIONS(1702), + [sym__pipe_table_start] = ACTIONS(1702), + }, + [307] = { + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_RBRACK] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_COLON] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym__] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [aux_sym__word_token1] = ACTIONS(1718), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1718), + [aux_sym__word_token2] = ACTIONS(1718), + [sym__whitespace] = ACTIONS(1718), + [sym__soft_line_ending] = ACTIONS(1718), + [sym__block_close] = ACTIONS(1718), + [sym__block_quote_start] = ACTIONS(1718), + [sym__indented_chunk_start] = ACTIONS(1718), + [sym_atx_h1_marker] = ACTIONS(1718), + [sym_atx_h2_marker] = ACTIONS(1718), + [sym_atx_h3_marker] = ACTIONS(1718), + [sym_atx_h4_marker] = ACTIONS(1718), + [sym_atx_h5_marker] = ACTIONS(1718), + [sym_atx_h6_marker] = ACTIONS(1718), + [sym__thematic_break] = ACTIONS(1718), + [sym__list_marker_minus] = ACTIONS(1718), + [sym__list_marker_plus] = ACTIONS(1718), + [sym__list_marker_star] = ACTIONS(1718), + [sym__list_marker_parenthesis] = ACTIONS(1718), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__fenced_code_block_start_backtick] = ACTIONS(1718), + [sym__fenced_code_block_start_tilde] = ACTIONS(1718), + [sym__blank_line_start] = ACTIONS(1718), + [sym__html_block_1_start] = ACTIONS(1718), + [sym__html_block_2_start] = ACTIONS(1718), + [sym__html_block_3_start] = ACTIONS(1718), + [sym__html_block_4_start] = ACTIONS(1718), + [sym__html_block_5_start] = ACTIONS(1718), + [sym__html_block_6_start] = ACTIONS(1718), + [sym__html_block_7_start] = ACTIONS(1718), + [sym__pipe_table_start] = ACTIONS(1718), + }, + [308] = { + [ts_builtin_sym_end] = ACTIONS(1248), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_RBRACK] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_PERCENT] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_COMMA] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_DOT] = ACTIONS(1248), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_COLON] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1248), + [anon_sym_BSLASH] = ACTIONS(1248), + [anon_sym_CARET] = ACTIONS(1248), + [anon_sym__] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_RPAREN] = ACTIONS(1248), + [aux_sym__word_token1] = ACTIONS(1248), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1248), + [aux_sym__word_token2] = ACTIONS(1248), + [sym__whitespace] = ACTIONS(1248), + [sym__soft_line_ending] = ACTIONS(1248), + [sym__block_quote_start] = ACTIONS(1248), + [sym__indented_chunk_start] = ACTIONS(1248), + [sym_atx_h1_marker] = ACTIONS(1248), + [sym_atx_h2_marker] = ACTIONS(1248), + [sym_atx_h3_marker] = ACTIONS(1248), + [sym_atx_h4_marker] = ACTIONS(1248), + [sym_atx_h5_marker] = ACTIONS(1248), + [sym_atx_h6_marker] = ACTIONS(1248), + [sym__thematic_break] = ACTIONS(1248), + [sym__list_marker_minus] = ACTIONS(1248), + [sym__list_marker_plus] = ACTIONS(1248), + [sym__list_marker_star] = ACTIONS(1248), + [sym__list_marker_parenthesis] = ACTIONS(1248), + [sym__list_marker_dot] = ACTIONS(1248), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1248), + [sym__fenced_code_block_start_backtick] = ACTIONS(1248), + [sym__fenced_code_block_start_tilde] = ACTIONS(1248), + [sym__blank_line_start] = ACTIONS(1248), + [sym__html_block_1_start] = ACTIONS(1248), + [sym__html_block_2_start] = ACTIONS(1248), + [sym__html_block_3_start] = ACTIONS(1248), + [sym__html_block_4_start] = ACTIONS(1248), + [sym__html_block_5_start] = ACTIONS(1248), + [sym__html_block_6_start] = ACTIONS(1248), + [sym__html_block_7_start] = ACTIONS(1248), + [sym__pipe_table_start] = ACTIONS(1248), + }, + [309] = { + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_RBRACK] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_GT] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1722), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_COLON] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_EQ] = ACTIONS(1722), + [anon_sym_QMARK] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1722), + [anon_sym_BSLASH] = ACTIONS(1722), + [anon_sym_CARET] = ACTIONS(1722), + [anon_sym__] = ACTIONS(1722), + [anon_sym_BQUOTE] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1722), + [aux_sym__word_token1] = ACTIONS(1722), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1722), + [aux_sym__word_token2] = ACTIONS(1722), + [sym__whitespace] = ACTIONS(1722), + [sym__soft_line_ending] = ACTIONS(1722), + [sym__block_close] = ACTIONS(1722), + [sym__block_quote_start] = ACTIONS(1722), + [sym__indented_chunk_start] = ACTIONS(1722), + [sym_atx_h1_marker] = ACTIONS(1722), + [sym_atx_h2_marker] = ACTIONS(1722), + [sym_atx_h3_marker] = ACTIONS(1722), + [sym_atx_h4_marker] = ACTIONS(1722), + [sym_atx_h5_marker] = ACTIONS(1722), + [sym_atx_h6_marker] = ACTIONS(1722), + [sym__thematic_break] = ACTIONS(1722), + [sym__list_marker_minus] = ACTIONS(1722), + [sym__list_marker_plus] = ACTIONS(1722), + [sym__list_marker_star] = ACTIONS(1722), + [sym__list_marker_parenthesis] = ACTIONS(1722), + [sym__list_marker_dot] = ACTIONS(1722), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1722), + [sym__fenced_code_block_start_backtick] = ACTIONS(1722), + [sym__fenced_code_block_start_tilde] = ACTIONS(1722), + [sym__blank_line_start] = ACTIONS(1722), + [sym__html_block_1_start] = ACTIONS(1722), + [sym__html_block_2_start] = ACTIONS(1722), + [sym__html_block_3_start] = ACTIONS(1722), + [sym__html_block_4_start] = ACTIONS(1722), + [sym__html_block_5_start] = ACTIONS(1722), + [sym__html_block_6_start] = ACTIONS(1722), + [sym__html_block_7_start] = ACTIONS(1722), + [sym__pipe_table_start] = ACTIONS(1722), + }, + [310] = { + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PERCENT] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_DOT] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1726), + [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1726), + [anon_sym_QMARK] = ACTIONS(1726), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_BSLASH] = ACTIONS(1726), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym__] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [aux_sym__word_token1] = ACTIONS(1726), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1726), + [aux_sym__word_token2] = ACTIONS(1726), + [sym__whitespace] = ACTIONS(1726), + [sym__soft_line_ending] = ACTIONS(1726), + [sym__block_close] = ACTIONS(1726), + [sym__block_quote_start] = ACTIONS(1726), + [sym__indented_chunk_start] = ACTIONS(1726), + [sym_atx_h1_marker] = ACTIONS(1726), + [sym_atx_h2_marker] = ACTIONS(1726), + [sym_atx_h3_marker] = ACTIONS(1726), + [sym_atx_h4_marker] = ACTIONS(1726), + [sym_atx_h5_marker] = ACTIONS(1726), + [sym_atx_h6_marker] = ACTIONS(1726), + [sym__thematic_break] = ACTIONS(1726), + [sym__list_marker_minus] = ACTIONS(1726), + [sym__list_marker_plus] = ACTIONS(1726), + [sym__list_marker_star] = ACTIONS(1726), + [sym__list_marker_parenthesis] = ACTIONS(1726), + [sym__list_marker_dot] = ACTIONS(1726), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1726), + [sym__fenced_code_block_start_backtick] = ACTIONS(1726), + [sym__fenced_code_block_start_tilde] = ACTIONS(1726), + [sym__blank_line_start] = ACTIONS(1726), + [sym__html_block_1_start] = ACTIONS(1726), + [sym__html_block_2_start] = ACTIONS(1726), + [sym__html_block_3_start] = ACTIONS(1726), + [sym__html_block_4_start] = ACTIONS(1726), + [sym__html_block_5_start] = ACTIONS(1726), + [sym__html_block_6_start] = ACTIONS(1726), + [sym__html_block_7_start] = ACTIONS(1726), + [sym__pipe_table_start] = ACTIONS(1726), + }, + [311] = { + [ts_builtin_sym_end] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_BSLASH] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1762), + [anon_sym__] = ACTIONS(1762), + [anon_sym_BQUOTE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [aux_sym__word_token1] = ACTIONS(1762), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1762), + [aux_sym__word_token2] = ACTIONS(1762), + [sym__whitespace] = ACTIONS(1762), + [sym__soft_line_ending] = ACTIONS(1762), + [sym__block_quote_start] = ACTIONS(1762), + [sym__indented_chunk_start] = ACTIONS(1762), + [sym_atx_h1_marker] = ACTIONS(1762), + [sym_atx_h2_marker] = ACTIONS(1762), + [sym_atx_h3_marker] = ACTIONS(1762), + [sym_atx_h4_marker] = ACTIONS(1762), + [sym_atx_h5_marker] = ACTIONS(1762), + [sym_atx_h6_marker] = ACTIONS(1762), + [sym__thematic_break] = ACTIONS(1762), + [sym__list_marker_minus] = ACTIONS(1762), + [sym__list_marker_plus] = ACTIONS(1762), + [sym__list_marker_star] = ACTIONS(1762), + [sym__list_marker_parenthesis] = ACTIONS(1762), + [sym__list_marker_dot] = ACTIONS(1762), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1762), + [sym__fenced_code_block_start_backtick] = ACTIONS(1762), + [sym__fenced_code_block_start_tilde] = ACTIONS(1762), + [sym__blank_line_start] = ACTIONS(1762), + [sym__html_block_1_start] = ACTIONS(1762), + [sym__html_block_2_start] = ACTIONS(1762), + [sym__html_block_3_start] = ACTIONS(1762), + [sym__html_block_4_start] = ACTIONS(1762), + [sym__html_block_5_start] = ACTIONS(1762), + [sym__html_block_6_start] = ACTIONS(1762), + [sym__html_block_7_start] = ACTIONS(1762), + [sym__pipe_table_start] = ACTIONS(1762), + }, + [312] = { + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_GT] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(1730), + [anon_sym_PERCENT] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_BSLASH] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1730), + [anon_sym__] = ACTIONS(1730), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [aux_sym__word_token1] = ACTIONS(1730), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1730), + [aux_sym__word_token2] = ACTIONS(1730), + [sym__whitespace] = ACTIONS(1730), + [sym__soft_line_ending] = ACTIONS(1730), + [sym__block_close] = ACTIONS(1730), + [sym__block_quote_start] = ACTIONS(1730), + [sym__indented_chunk_start] = ACTIONS(1730), + [sym_atx_h1_marker] = ACTIONS(1730), + [sym_atx_h2_marker] = ACTIONS(1730), + [sym_atx_h3_marker] = ACTIONS(1730), + [sym_atx_h4_marker] = ACTIONS(1730), + [sym_atx_h5_marker] = ACTIONS(1730), + [sym_atx_h6_marker] = ACTIONS(1730), + [sym__thematic_break] = ACTIONS(1730), + [sym__list_marker_minus] = ACTIONS(1730), + [sym__list_marker_plus] = ACTIONS(1730), + [sym__list_marker_star] = ACTIONS(1730), + [sym__list_marker_parenthesis] = ACTIONS(1730), + [sym__list_marker_dot] = ACTIONS(1730), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1730), + [sym__fenced_code_block_start_backtick] = ACTIONS(1730), + [sym__fenced_code_block_start_tilde] = ACTIONS(1730), + [sym__blank_line_start] = ACTIONS(1730), + [sym__html_block_1_start] = ACTIONS(1730), + [sym__html_block_2_start] = ACTIONS(1730), + [sym__html_block_3_start] = ACTIONS(1730), + [sym__html_block_4_start] = ACTIONS(1730), + [sym__html_block_5_start] = ACTIONS(1730), + [sym__html_block_6_start] = ACTIONS(1730), + [sym__html_block_7_start] = ACTIONS(1730), + [sym__pipe_table_start] = ACTIONS(1730), + }, + [313] = { + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_COMMA] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_DOT] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), + [anon_sym_COLON] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1318), + [anon_sym_AT] = ACTIONS(1318), + [anon_sym_BSLASH] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1318), + [anon_sym__] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [aux_sym__word_token1] = ACTIONS(1318), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1318), + [aux_sym__word_token2] = ACTIONS(1318), + [sym__whitespace] = ACTIONS(1318), + [sym__soft_line_ending] = ACTIONS(1318), + [sym__block_close] = ACTIONS(1318), + [sym__block_quote_start] = ACTIONS(1318), + [sym__indented_chunk_start] = ACTIONS(1318), + [sym_atx_h1_marker] = ACTIONS(1318), + [sym_atx_h2_marker] = ACTIONS(1318), + [sym_atx_h3_marker] = ACTIONS(1318), + [sym_atx_h4_marker] = ACTIONS(1318), + [sym_atx_h5_marker] = ACTIONS(1318), + [sym_atx_h6_marker] = ACTIONS(1318), + [sym__thematic_break] = ACTIONS(1318), + [sym__list_marker_minus] = ACTIONS(1318), + [sym__list_marker_plus] = ACTIONS(1318), + [sym__list_marker_star] = ACTIONS(1318), + [sym__list_marker_parenthesis] = ACTIONS(1318), + [sym__list_marker_dot] = ACTIONS(1318), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1318), + [sym__fenced_code_block_start_backtick] = ACTIONS(1318), + [sym__fenced_code_block_start_tilde] = ACTIONS(1318), + [sym__blank_line_start] = ACTIONS(1318), + [sym__html_block_1_start] = ACTIONS(1318), + [sym__html_block_2_start] = ACTIONS(1318), + [sym__html_block_3_start] = ACTIONS(1318), + [sym__html_block_4_start] = ACTIONS(1318), + [sym__html_block_5_start] = ACTIONS(1318), + [sym__html_block_6_start] = ACTIONS(1318), + [sym__html_block_7_start] = ACTIONS(1318), + [sym__pipe_table_start] = ACTIONS(1318), + }, + [314] = { + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_RBRACK] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1734), + [anon_sym_PERCENT] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_COMMA] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_COLON] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1734), + [anon_sym_BSLASH] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(1734), + [anon_sym__] = ACTIONS(1734), + [anon_sym_BQUOTE] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_RPAREN] = ACTIONS(1734), + [aux_sym__word_token1] = ACTIONS(1734), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1734), + [aux_sym__word_token2] = ACTIONS(1734), + [sym__whitespace] = ACTIONS(1734), + [sym__soft_line_ending] = ACTIONS(1734), + [sym__block_close] = ACTIONS(1734), + [sym__block_quote_start] = ACTIONS(1734), + [sym__indented_chunk_start] = ACTIONS(1734), + [sym_atx_h1_marker] = ACTIONS(1734), + [sym_atx_h2_marker] = ACTIONS(1734), + [sym_atx_h3_marker] = ACTIONS(1734), + [sym_atx_h4_marker] = ACTIONS(1734), + [sym_atx_h5_marker] = ACTIONS(1734), + [sym_atx_h6_marker] = ACTIONS(1734), + [sym__thematic_break] = ACTIONS(1734), + [sym__list_marker_minus] = ACTIONS(1734), + [sym__list_marker_plus] = ACTIONS(1734), + [sym__list_marker_star] = ACTIONS(1734), + [sym__list_marker_parenthesis] = ACTIONS(1734), + [sym__list_marker_dot] = ACTIONS(1734), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1734), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1734), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1734), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1734), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1734), + [sym__fenced_code_block_start_backtick] = ACTIONS(1734), + [sym__fenced_code_block_start_tilde] = ACTIONS(1734), + [sym__blank_line_start] = ACTIONS(1734), + [sym__html_block_1_start] = ACTIONS(1734), + [sym__html_block_2_start] = ACTIONS(1734), + [sym__html_block_3_start] = ACTIONS(1734), + [sym__html_block_4_start] = ACTIONS(1734), + [sym__html_block_5_start] = ACTIONS(1734), + [sym__html_block_6_start] = ACTIONS(1734), + [sym__html_block_7_start] = ACTIONS(1734), + [sym__pipe_table_start] = ACTIONS(1734), + }, + [315] = { + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1738), + [anon_sym_DOLLAR] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_COLON] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_QMARK] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1738), + [anon_sym_BSLASH] = ACTIONS(1738), + [anon_sym_CARET] = ACTIONS(1738), + [anon_sym__] = ACTIONS(1738), + [anon_sym_BQUOTE] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_TILDE] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [aux_sym__word_token1] = ACTIONS(1738), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1738), + [aux_sym__word_token2] = ACTIONS(1738), + [sym__whitespace] = ACTIONS(1738), + [sym__soft_line_ending] = ACTIONS(1738), + [sym__block_close] = ACTIONS(1738), + [sym__block_quote_start] = ACTIONS(1738), + [sym__indented_chunk_start] = ACTIONS(1738), + [sym_atx_h1_marker] = ACTIONS(1738), + [sym_atx_h2_marker] = ACTIONS(1738), + [sym_atx_h3_marker] = ACTIONS(1738), + [sym_atx_h4_marker] = ACTIONS(1738), + [sym_atx_h5_marker] = ACTIONS(1738), + [sym_atx_h6_marker] = ACTIONS(1738), + [sym__thematic_break] = ACTIONS(1738), + [sym__list_marker_minus] = ACTIONS(1738), + [sym__list_marker_plus] = ACTIONS(1738), + [sym__list_marker_star] = ACTIONS(1738), + [sym__list_marker_parenthesis] = ACTIONS(1738), + [sym__list_marker_dot] = ACTIONS(1738), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1738), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1738), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1738), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1738), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1738), + [sym__fenced_code_block_start_backtick] = ACTIONS(1738), + [sym__fenced_code_block_start_tilde] = ACTIONS(1738), + [sym__blank_line_start] = ACTIONS(1738), + [sym__html_block_1_start] = ACTIONS(1738), + [sym__html_block_2_start] = ACTIONS(1738), + [sym__html_block_3_start] = ACTIONS(1738), + [sym__html_block_4_start] = ACTIONS(1738), + [sym__html_block_5_start] = ACTIONS(1738), + [sym__html_block_6_start] = ACTIONS(1738), + [sym__html_block_7_start] = ACTIONS(1738), + [sym__pipe_table_start] = ACTIONS(1738), + }, + [316] = { + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_COLON] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [aux_sym__word_token1] = ACTIONS(1538), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1538), + [aux_sym__word_token2] = ACTIONS(1538), + [sym__whitespace] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_close] = ACTIONS(1538), + [sym__block_quote_start] = ACTIONS(1538), + [sym__indented_chunk_start] = ACTIONS(1538), + [sym_atx_h1_marker] = ACTIONS(1538), + [sym_atx_h2_marker] = ACTIONS(1538), + [sym_atx_h3_marker] = ACTIONS(1538), + [sym_atx_h4_marker] = ACTIONS(1538), + [sym_atx_h5_marker] = ACTIONS(1538), + [sym_atx_h6_marker] = ACTIONS(1538), + [sym__thematic_break] = ACTIONS(1538), + [sym__list_marker_minus] = ACTIONS(1538), + [sym__list_marker_plus] = ACTIONS(1538), + [sym__list_marker_star] = ACTIONS(1538), + [sym__list_marker_parenthesis] = ACTIONS(1538), + [sym__list_marker_dot] = ACTIONS(1538), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1538), + [sym__fenced_code_block_start_backtick] = ACTIONS(1538), + [sym__fenced_code_block_start_tilde] = ACTIONS(1538), + [sym__blank_line_start] = ACTIONS(1538), + [sym__html_block_1_start] = ACTIONS(1538), + [sym__html_block_2_start] = ACTIONS(1538), + [sym__html_block_3_start] = ACTIONS(1538), + [sym__html_block_4_start] = ACTIONS(1538), + [sym__html_block_5_start] = ACTIONS(1538), + [sym__html_block_6_start] = ACTIONS(1538), + [sym__html_block_7_start] = ACTIONS(1538), + [sym__pipe_table_start] = ACTIONS(1538), + }, + [317] = { + [ts_builtin_sym_end] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_COLON] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_BSLASH] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym__] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [aux_sym__word_token1] = ACTIONS(1766), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1766), + [aux_sym__word_token2] = ACTIONS(1766), + [sym__whitespace] = ACTIONS(1766), + [sym__soft_line_ending] = ACTIONS(1766), + [sym__block_quote_start] = ACTIONS(1766), + [sym__indented_chunk_start] = ACTIONS(1766), + [sym_atx_h1_marker] = ACTIONS(1766), + [sym_atx_h2_marker] = ACTIONS(1766), + [sym_atx_h3_marker] = ACTIONS(1766), + [sym_atx_h4_marker] = ACTIONS(1766), + [sym_atx_h5_marker] = ACTIONS(1766), + [sym_atx_h6_marker] = ACTIONS(1766), + [sym__thematic_break] = ACTIONS(1766), + [sym__list_marker_minus] = ACTIONS(1766), + [sym__list_marker_plus] = ACTIONS(1766), + [sym__list_marker_star] = ACTIONS(1766), + [sym__list_marker_parenthesis] = ACTIONS(1766), + [sym__list_marker_dot] = ACTIONS(1766), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1766), + [sym__fenced_code_block_start_backtick] = ACTIONS(1766), + [sym__fenced_code_block_start_tilde] = ACTIONS(1766), + [sym__blank_line_start] = ACTIONS(1766), + [sym__html_block_1_start] = ACTIONS(1766), + [sym__html_block_2_start] = ACTIONS(1766), + [sym__html_block_3_start] = ACTIONS(1766), + [sym__html_block_4_start] = ACTIONS(1766), + [sym__html_block_5_start] = ACTIONS(1766), + [sym__html_block_6_start] = ACTIONS(1766), + [sym__html_block_7_start] = ACTIONS(1766), + [sym__pipe_table_start] = ACTIONS(1766), + }, + [318] = { + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_RBRACK] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(1163), + [anon_sym_GT] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1163), + [anon_sym_DOLLAR] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_DOT] = ACTIONS(1163), + [anon_sym_SLASH] = ACTIONS(1163), + [anon_sym_COLON] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_EQ] = ACTIONS(1163), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_AT] = ACTIONS(1163), + [anon_sym_BSLASH] = ACTIONS(1163), + [anon_sym_CARET] = ACTIONS(1163), + [anon_sym__] = ACTIONS(1163), + [anon_sym_BQUOTE] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_RPAREN] = ACTIONS(1163), + [aux_sym__word_token1] = ACTIONS(1163), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1163), + [aux_sym__word_token2] = ACTIONS(1163), + [sym__whitespace] = ACTIONS(1163), + [sym__soft_line_ending] = ACTIONS(1163), + [sym__block_close] = ACTIONS(1163), + [sym__block_quote_start] = ACTIONS(1163), + [sym__indented_chunk_start] = ACTIONS(1163), + [sym_atx_h1_marker] = ACTIONS(1163), + [sym_atx_h2_marker] = ACTIONS(1163), + [sym_atx_h3_marker] = ACTIONS(1163), + [sym_atx_h4_marker] = ACTIONS(1163), + [sym_atx_h5_marker] = ACTIONS(1163), + [sym_atx_h6_marker] = ACTIONS(1163), + [sym__thematic_break] = ACTIONS(1163), + [sym__list_marker_minus] = ACTIONS(1163), + [sym__list_marker_plus] = ACTIONS(1163), + [sym__list_marker_star] = ACTIONS(1163), + [sym__list_marker_parenthesis] = ACTIONS(1163), + [sym__list_marker_dot] = ACTIONS(1163), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1163), + [sym__fenced_code_block_start_backtick] = ACTIONS(1163), + [sym__fenced_code_block_start_tilde] = ACTIONS(1163), + [sym__blank_line_start] = ACTIONS(1163), + [sym__html_block_1_start] = ACTIONS(1163), + [sym__html_block_2_start] = ACTIONS(1163), + [sym__html_block_3_start] = ACTIONS(1163), + [sym__html_block_4_start] = ACTIONS(1163), + [sym__html_block_5_start] = ACTIONS(1163), + [sym__html_block_6_start] = ACTIONS(1163), + [sym__html_block_7_start] = ACTIONS(1163), + [sym__pipe_table_start] = ACTIONS(1163), + }, + [319] = { + [ts_builtin_sym_end] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_BSLASH] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym__] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [aux_sym__word_token1] = ACTIONS(1770), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1770), + [aux_sym__word_token2] = ACTIONS(1770), + [sym__whitespace] = ACTIONS(1770), + [sym__soft_line_ending] = ACTIONS(1770), + [sym__block_quote_start] = ACTIONS(1770), + [sym__indented_chunk_start] = ACTIONS(1770), + [sym_atx_h1_marker] = ACTIONS(1770), + [sym_atx_h2_marker] = ACTIONS(1770), + [sym_atx_h3_marker] = ACTIONS(1770), + [sym_atx_h4_marker] = ACTIONS(1770), + [sym_atx_h5_marker] = ACTIONS(1770), + [sym_atx_h6_marker] = ACTIONS(1770), + [sym__thematic_break] = ACTIONS(1770), + [sym__list_marker_minus] = ACTIONS(1770), + [sym__list_marker_plus] = ACTIONS(1770), + [sym__list_marker_star] = ACTIONS(1770), + [sym__list_marker_parenthesis] = ACTIONS(1770), + [sym__list_marker_dot] = ACTIONS(1770), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1770), + [sym__fenced_code_block_start_backtick] = ACTIONS(1770), + [sym__fenced_code_block_start_tilde] = ACTIONS(1770), + [sym__blank_line_start] = ACTIONS(1770), + [sym__html_block_1_start] = ACTIONS(1770), + [sym__html_block_2_start] = ACTIONS(1770), + [sym__html_block_3_start] = ACTIONS(1770), + [sym__html_block_4_start] = ACTIONS(1770), + [sym__html_block_5_start] = ACTIONS(1770), + [sym__html_block_6_start] = ACTIONS(1770), + [sym__html_block_7_start] = ACTIONS(1770), + [sym__pipe_table_start] = ACTIONS(1770), + }, + [320] = { + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_RBRACK] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_COMMA] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_DOT] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_COLON] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_AT] = ACTIONS(1294), + [anon_sym_BSLASH] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym__] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [aux_sym__word_token1] = ACTIONS(1294), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1294), + [aux_sym__word_token2] = ACTIONS(1294), + [sym__whitespace] = ACTIONS(1294), + [sym__soft_line_ending] = ACTIONS(1294), + [sym__block_close] = ACTIONS(1294), + [sym__block_quote_start] = ACTIONS(1294), + [sym__indented_chunk_start] = ACTIONS(1294), + [sym_atx_h1_marker] = ACTIONS(1294), + [sym_atx_h2_marker] = ACTIONS(1294), + [sym_atx_h3_marker] = ACTIONS(1294), + [sym_atx_h4_marker] = ACTIONS(1294), + [sym_atx_h5_marker] = ACTIONS(1294), + [sym_atx_h6_marker] = ACTIONS(1294), + [sym__thematic_break] = ACTIONS(1294), + [sym__list_marker_minus] = ACTIONS(1294), + [sym__list_marker_plus] = ACTIONS(1294), + [sym__list_marker_star] = ACTIONS(1294), + [sym__list_marker_parenthesis] = ACTIONS(1294), + [sym__list_marker_dot] = ACTIONS(1294), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1294), + [sym__fenced_code_block_start_backtick] = ACTIONS(1294), + [sym__fenced_code_block_start_tilde] = ACTIONS(1294), + [sym__blank_line_start] = ACTIONS(1294), + [sym__html_block_1_start] = ACTIONS(1294), + [sym__html_block_2_start] = ACTIONS(1294), + [sym__html_block_3_start] = ACTIONS(1294), + [sym__html_block_4_start] = ACTIONS(1294), + [sym__html_block_5_start] = ACTIONS(1294), + [sym__html_block_6_start] = ACTIONS(1294), + [sym__html_block_7_start] = ACTIONS(1294), + [sym__pipe_table_start] = ACTIONS(1294), + }, + [321] = { + [ts_builtin_sym_end] = ACTIONS(1163), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_RBRACK] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(1163), + [anon_sym_GT] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_DQUOTE] = ACTIONS(1163), + [anon_sym_POUND] = ACTIONS(1163), + [anon_sym_DOLLAR] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1163), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_SQUOTE] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_COMMA] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_DOT] = ACTIONS(1163), + [anon_sym_SLASH] = ACTIONS(1163), + [anon_sym_COLON] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_EQ] = ACTIONS(1163), + [anon_sym_QMARK] = ACTIONS(1163), + [anon_sym_AT] = ACTIONS(1163), + [anon_sym_BSLASH] = ACTIONS(1163), + [anon_sym_CARET] = ACTIONS(1163), + [anon_sym__] = ACTIONS(1163), + [anon_sym_BQUOTE] = ACTIONS(1163), + [anon_sym_LBRACE] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1163), + [anon_sym_RPAREN] = ACTIONS(1163), + [aux_sym__word_token1] = ACTIONS(1163), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1163), + [aux_sym__word_token2] = ACTIONS(1163), + [sym__whitespace] = ACTIONS(1163), + [sym__soft_line_ending] = ACTIONS(1163), + [sym__block_quote_start] = ACTIONS(1163), + [sym__indented_chunk_start] = ACTIONS(1163), + [sym_atx_h1_marker] = ACTIONS(1163), + [sym_atx_h2_marker] = ACTIONS(1163), + [sym_atx_h3_marker] = ACTIONS(1163), + [sym_atx_h4_marker] = ACTIONS(1163), + [sym_atx_h5_marker] = ACTIONS(1163), + [sym_atx_h6_marker] = ACTIONS(1163), + [sym__thematic_break] = ACTIONS(1163), + [sym__list_marker_minus] = ACTIONS(1163), + [sym__list_marker_plus] = ACTIONS(1163), + [sym__list_marker_star] = ACTIONS(1163), + [sym__list_marker_parenthesis] = ACTIONS(1163), + [sym__list_marker_dot] = ACTIONS(1163), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1163), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1163), + [sym__fenced_code_block_start_backtick] = ACTIONS(1163), + [sym__fenced_code_block_start_tilde] = ACTIONS(1163), + [sym__blank_line_start] = ACTIONS(1163), + [sym__html_block_1_start] = ACTIONS(1163), + [sym__html_block_2_start] = ACTIONS(1163), + [sym__html_block_3_start] = ACTIONS(1163), + [sym__html_block_4_start] = ACTIONS(1163), + [sym__html_block_5_start] = ACTIONS(1163), + [sym__html_block_6_start] = ACTIONS(1163), + [sym__html_block_7_start] = ACTIONS(1163), + [sym__pipe_table_start] = ACTIONS(1163), + }, + [322] = { + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_RBRACK] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_COMMA] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_COLON] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_QMARK] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1372), + [anon_sym_BSLASH] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1372), + [anon_sym__] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1372), + [aux_sym__word_token1] = ACTIONS(1372), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1372), + [aux_sym__word_token2] = ACTIONS(1372), + [sym__whitespace] = ACTIONS(1372), + [sym__soft_line_ending] = ACTIONS(1372), + [sym__block_close] = ACTIONS(1372), + [sym__block_quote_start] = ACTIONS(1372), + [sym__indented_chunk_start] = ACTIONS(1372), + [sym_atx_h1_marker] = ACTIONS(1372), + [sym_atx_h2_marker] = ACTIONS(1372), + [sym_atx_h3_marker] = ACTIONS(1372), + [sym_atx_h4_marker] = ACTIONS(1372), + [sym_atx_h5_marker] = ACTIONS(1372), + [sym_atx_h6_marker] = ACTIONS(1372), + [sym__thematic_break] = ACTIONS(1372), + [sym__list_marker_minus] = ACTIONS(1372), + [sym__list_marker_plus] = ACTIONS(1372), + [sym__list_marker_star] = ACTIONS(1372), + [sym__list_marker_parenthesis] = ACTIONS(1372), + [sym__list_marker_dot] = ACTIONS(1372), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1372), + [sym__fenced_code_block_start_backtick] = ACTIONS(1372), + [sym__fenced_code_block_start_tilde] = ACTIONS(1372), + [sym__blank_line_start] = ACTIONS(1372), + [sym__html_block_1_start] = ACTIONS(1372), + [sym__html_block_2_start] = ACTIONS(1372), + [sym__html_block_3_start] = ACTIONS(1372), + [sym__html_block_4_start] = ACTIONS(1372), + [sym__html_block_5_start] = ACTIONS(1372), + [sym__html_block_6_start] = ACTIONS(1372), + [sym__html_block_7_start] = ACTIONS(1372), + [sym__pipe_table_start] = ACTIONS(1372), + }, + [323] = { + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [aux_sym__word_token1] = ACTIONS(1366), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1366), + [aux_sym__word_token2] = ACTIONS(1366), + [sym__whitespace] = ACTIONS(1366), + [sym__soft_line_ending] = ACTIONS(1366), + [sym__block_close] = ACTIONS(1366), + [sym__block_quote_start] = ACTIONS(1366), + [sym__indented_chunk_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(1366), + [sym_atx_h6_marker] = ACTIONS(1366), + [sym__thematic_break] = ACTIONS(1366), + [sym__list_marker_minus] = ACTIONS(1366), + [sym__list_marker_plus] = ACTIONS(1366), + [sym__list_marker_star] = ACTIONS(1366), + [sym__list_marker_parenthesis] = ACTIONS(1366), + [sym__list_marker_dot] = ACTIONS(1366), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1366), + [sym__fenced_code_block_start_backtick] = ACTIONS(1366), + [sym__fenced_code_block_start_tilde] = ACTIONS(1366), + [sym__blank_line_start] = ACTIONS(1366), + [sym__html_block_1_start] = ACTIONS(1366), + [sym__html_block_2_start] = ACTIONS(1366), + [sym__html_block_3_start] = ACTIONS(1366), + [sym__html_block_4_start] = ACTIONS(1366), + [sym__html_block_5_start] = ACTIONS(1366), + [sym__html_block_6_start] = ACTIONS(1366), + [sym__html_block_7_start] = ACTIONS(1366), + [sym__pipe_table_start] = ACTIONS(1366), + }, + [324] = { + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DOT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_AT] = ACTIONS(1354), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym__] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [aux_sym__word_token1] = ACTIONS(1354), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1354), + [aux_sym__word_token2] = ACTIONS(1354), + [sym__whitespace] = ACTIONS(1354), + [sym__soft_line_ending] = ACTIONS(1354), + [sym__block_close] = ACTIONS(1354), + [sym__block_quote_start] = ACTIONS(1354), + [sym__indented_chunk_start] = ACTIONS(1354), + [sym_atx_h1_marker] = ACTIONS(1354), + [sym_atx_h2_marker] = ACTIONS(1354), + [sym_atx_h3_marker] = ACTIONS(1354), + [sym_atx_h4_marker] = ACTIONS(1354), + [sym_atx_h5_marker] = ACTIONS(1354), + [sym_atx_h6_marker] = ACTIONS(1354), + [sym__thematic_break] = ACTIONS(1354), + [sym__list_marker_minus] = ACTIONS(1354), + [sym__list_marker_plus] = ACTIONS(1354), + [sym__list_marker_star] = ACTIONS(1354), + [sym__list_marker_parenthesis] = ACTIONS(1354), + [sym__list_marker_dot] = ACTIONS(1354), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), + [sym__fenced_code_block_start_backtick] = ACTIONS(1354), + [sym__fenced_code_block_start_tilde] = ACTIONS(1354), + [sym__blank_line_start] = ACTIONS(1354), + [sym__html_block_1_start] = ACTIONS(1354), + [sym__html_block_2_start] = ACTIONS(1354), + [sym__html_block_3_start] = ACTIONS(1354), + [sym__html_block_4_start] = ACTIONS(1354), + [sym__html_block_5_start] = ACTIONS(1354), + [sym__html_block_6_start] = ACTIONS(1354), + [sym__html_block_7_start] = ACTIONS(1354), + [sym__pipe_table_start] = ACTIONS(1354), + }, + [325] = { + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_BSLASH] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym__] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [aux_sym__word_token1] = ACTIONS(1770), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1770), + [aux_sym__word_token2] = ACTIONS(1770), + [sym__whitespace] = ACTIONS(1770), + [sym__soft_line_ending] = ACTIONS(1770), + [sym__block_close] = ACTIONS(1770), + [sym__block_quote_start] = ACTIONS(1770), + [sym__indented_chunk_start] = ACTIONS(1770), + [sym_atx_h1_marker] = ACTIONS(1770), + [sym_atx_h2_marker] = ACTIONS(1770), + [sym_atx_h3_marker] = ACTIONS(1770), + [sym_atx_h4_marker] = ACTIONS(1770), + [sym_atx_h5_marker] = ACTIONS(1770), + [sym_atx_h6_marker] = ACTIONS(1770), + [sym__thematic_break] = ACTIONS(1770), + [sym__list_marker_minus] = ACTIONS(1770), + [sym__list_marker_plus] = ACTIONS(1770), + [sym__list_marker_star] = ACTIONS(1770), + [sym__list_marker_parenthesis] = ACTIONS(1770), + [sym__list_marker_dot] = ACTIONS(1770), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1770), + [sym__fenced_code_block_start_backtick] = ACTIONS(1770), + [sym__fenced_code_block_start_tilde] = ACTIONS(1770), + [sym__blank_line_start] = ACTIONS(1770), + [sym__html_block_1_start] = ACTIONS(1770), + [sym__html_block_2_start] = ACTIONS(1770), + [sym__html_block_3_start] = ACTIONS(1770), + [sym__html_block_4_start] = ACTIONS(1770), + [sym__html_block_5_start] = ACTIONS(1770), + [sym__html_block_6_start] = ACTIONS(1770), + [sym__html_block_7_start] = ACTIONS(1770), + [sym__pipe_table_start] = ACTIONS(1770), + }, + [326] = { + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [aux_sym__word_token1] = ACTIONS(1348), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1348), + [aux_sym__word_token2] = ACTIONS(1348), + [sym__whitespace] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym__block_close] = ACTIONS(1348), + [sym__block_quote_start] = ACTIONS(1348), + [sym__indented_chunk_start] = ACTIONS(1348), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(1348), + [sym__html_block_1_start] = ACTIONS(1348), + [sym__html_block_2_start] = ACTIONS(1348), + [sym__html_block_3_start] = ACTIONS(1348), + [sym__html_block_4_start] = ACTIONS(1348), + [sym__html_block_5_start] = ACTIONS(1348), + [sym__html_block_6_start] = ACTIONS(1348), + [sym__html_block_7_start] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + }, + [327] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_RBRACK] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_COMMA] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_DOT] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_COLON] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_AT] = ACTIONS(1294), + [anon_sym_BSLASH] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym__] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [aux_sym__word_token1] = ACTIONS(1294), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1294), + [aux_sym__word_token2] = ACTIONS(1294), + [sym__whitespace] = ACTIONS(1294), + [sym__soft_line_ending] = ACTIONS(1294), + [sym__block_quote_start] = ACTIONS(1294), + [sym__indented_chunk_start] = ACTIONS(1294), + [sym_atx_h1_marker] = ACTIONS(1294), + [sym_atx_h2_marker] = ACTIONS(1294), + [sym_atx_h3_marker] = ACTIONS(1294), + [sym_atx_h4_marker] = ACTIONS(1294), + [sym_atx_h5_marker] = ACTIONS(1294), + [sym_atx_h6_marker] = ACTIONS(1294), + [sym__thematic_break] = ACTIONS(1294), + [sym__list_marker_minus] = ACTIONS(1294), + [sym__list_marker_plus] = ACTIONS(1294), + [sym__list_marker_star] = ACTIONS(1294), + [sym__list_marker_parenthesis] = ACTIONS(1294), + [sym__list_marker_dot] = ACTIONS(1294), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1294), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1294), + [sym__fenced_code_block_start_backtick] = ACTIONS(1294), + [sym__fenced_code_block_start_tilde] = ACTIONS(1294), + [sym__blank_line_start] = ACTIONS(1294), + [sym__html_block_1_start] = ACTIONS(1294), + [sym__html_block_2_start] = ACTIONS(1294), + [sym__html_block_3_start] = ACTIONS(1294), + [sym__html_block_4_start] = ACTIONS(1294), + [sym__html_block_5_start] = ACTIONS(1294), + [sym__html_block_6_start] = ACTIONS(1294), + [sym__html_block_7_start] = ACTIONS(1294), + [sym__pipe_table_start] = ACTIONS(1294), + }, + [328] = { + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_SQUOTE] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_COLON] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_BSLASH] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym__] = ACTIONS(1776), + [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_TILDE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [aux_sym__word_token1] = ACTIONS(1776), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1776), + [aux_sym__word_token2] = ACTIONS(1776), + [sym__whitespace] = ACTIONS(1776), + [sym__soft_line_ending] = ACTIONS(1776), + [sym__block_close] = ACTIONS(1776), + [sym__block_quote_start] = ACTIONS(1776), + [sym__indented_chunk_start] = ACTIONS(1776), + [sym_atx_h1_marker] = ACTIONS(1776), + [sym_atx_h2_marker] = ACTIONS(1776), + [sym_atx_h3_marker] = ACTIONS(1776), + [sym_atx_h4_marker] = ACTIONS(1776), + [sym_atx_h5_marker] = ACTIONS(1776), + [sym_atx_h6_marker] = ACTIONS(1776), + [sym__thematic_break] = ACTIONS(1776), + [sym__list_marker_minus] = ACTIONS(1776), + [sym__list_marker_plus] = ACTIONS(1776), + [sym__list_marker_star] = ACTIONS(1776), + [sym__list_marker_parenthesis] = ACTIONS(1776), + [sym__list_marker_dot] = ACTIONS(1776), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1776), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1776), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1776), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1776), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1776), + [sym__fenced_code_block_start_backtick] = ACTIONS(1776), + [sym__fenced_code_block_start_tilde] = ACTIONS(1776), + [sym__blank_line_start] = ACTIONS(1776), + [sym__html_block_1_start] = ACTIONS(1776), + [sym__html_block_2_start] = ACTIONS(1776), + [sym__html_block_3_start] = ACTIONS(1776), + [sym__html_block_4_start] = ACTIONS(1776), + [sym__html_block_5_start] = ACTIONS(1776), + [sym__html_block_6_start] = ACTIONS(1776), + [sym__html_block_7_start] = ACTIONS(1776), + [sym__pipe_table_start] = ACTIONS(1776), + }, + [329] = { + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_RBRACK] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1780), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_COLON] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_BSLASH] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym__] = ACTIONS(1780), + [anon_sym_BQUOTE] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_RPAREN] = ACTIONS(1780), + [aux_sym__word_token1] = ACTIONS(1780), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1780), + [aux_sym__word_token2] = ACTIONS(1780), + [sym__whitespace] = ACTIONS(1780), + [sym__soft_line_ending] = ACTIONS(1780), + [sym__block_close] = ACTIONS(1780), + [sym__block_quote_start] = ACTIONS(1780), + [sym__indented_chunk_start] = ACTIONS(1780), + [sym_atx_h1_marker] = ACTIONS(1780), + [sym_atx_h2_marker] = ACTIONS(1780), + [sym_atx_h3_marker] = ACTIONS(1780), + [sym_atx_h4_marker] = ACTIONS(1780), + [sym_atx_h5_marker] = ACTIONS(1780), + [sym_atx_h6_marker] = ACTIONS(1780), + [sym__thematic_break] = ACTIONS(1780), + [sym__list_marker_minus] = ACTIONS(1780), + [sym__list_marker_plus] = ACTIONS(1780), + [sym__list_marker_star] = ACTIONS(1780), + [sym__list_marker_parenthesis] = ACTIONS(1780), + [sym__list_marker_dot] = ACTIONS(1780), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1780), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1780), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1780), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1780), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1780), + [sym__fenced_code_block_start_backtick] = ACTIONS(1780), + [sym__fenced_code_block_start_tilde] = ACTIONS(1780), + [sym__blank_line_start] = ACTIONS(1780), + [sym__html_block_1_start] = ACTIONS(1780), + [sym__html_block_2_start] = ACTIONS(1780), + [sym__html_block_3_start] = ACTIONS(1780), + [sym__html_block_4_start] = ACTIONS(1780), + [sym__html_block_5_start] = ACTIONS(1780), + [sym__html_block_6_start] = ACTIONS(1780), + [sym__html_block_7_start] = ACTIONS(1780), + [sym__pipe_table_start] = ACTIONS(1780), + }, + [330] = { + [ts_builtin_sym_end] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_RBRACK] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_COMMA] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_COLON] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_QMARK] = ACTIONS(1372), + [anon_sym_AT] = ACTIONS(1372), + [anon_sym_BSLASH] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1372), + [anon_sym__] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1372), + [aux_sym__word_token1] = ACTIONS(1372), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1372), + [aux_sym__word_token2] = ACTIONS(1372), + [sym__whitespace] = ACTIONS(1372), + [sym__soft_line_ending] = ACTIONS(1372), + [sym__block_quote_start] = ACTIONS(1372), + [sym__indented_chunk_start] = ACTIONS(1372), + [sym_atx_h1_marker] = ACTIONS(1372), + [sym_atx_h2_marker] = ACTIONS(1372), + [sym_atx_h3_marker] = ACTIONS(1372), + [sym_atx_h4_marker] = ACTIONS(1372), + [sym_atx_h5_marker] = ACTIONS(1372), + [sym_atx_h6_marker] = ACTIONS(1372), + [sym__thematic_break] = ACTIONS(1372), + [sym__list_marker_minus] = ACTIONS(1372), + [sym__list_marker_plus] = ACTIONS(1372), + [sym__list_marker_star] = ACTIONS(1372), + [sym__list_marker_parenthesis] = ACTIONS(1372), + [sym__list_marker_dot] = ACTIONS(1372), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1372), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1372), + [sym__fenced_code_block_start_backtick] = ACTIONS(1372), + [sym__fenced_code_block_start_tilde] = ACTIONS(1372), + [sym__blank_line_start] = ACTIONS(1372), + [sym__html_block_1_start] = ACTIONS(1372), + [sym__html_block_2_start] = ACTIONS(1372), + [sym__html_block_3_start] = ACTIONS(1372), + [sym__html_block_4_start] = ACTIONS(1372), + [sym__html_block_5_start] = ACTIONS(1372), + [sym__html_block_6_start] = ACTIONS(1372), + [sym__html_block_7_start] = ACTIONS(1372), + [sym__pipe_table_start] = ACTIONS(1372), + }, + [331] = { + [ts_builtin_sym_end] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_DQUOTE] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_QMARK] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_BSLASH] = ACTIONS(1752), + [anon_sym_CARET] = ACTIONS(1752), + [anon_sym__] = ACTIONS(1752), + [anon_sym_BQUOTE] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [aux_sym__word_token1] = ACTIONS(1752), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1752), + [aux_sym__word_token2] = ACTIONS(1752), + [sym__whitespace] = ACTIONS(1752), + [sym__soft_line_ending] = ACTIONS(1752), + [sym__block_quote_start] = ACTIONS(1752), + [sym__indented_chunk_start] = ACTIONS(1752), + [sym_atx_h1_marker] = ACTIONS(1752), + [sym_atx_h2_marker] = ACTIONS(1752), + [sym_atx_h3_marker] = ACTIONS(1752), + [sym_atx_h4_marker] = ACTIONS(1752), + [sym_atx_h5_marker] = ACTIONS(1752), + [sym_atx_h6_marker] = ACTIONS(1752), + [sym__thematic_break] = ACTIONS(1752), + [sym__list_marker_minus] = ACTIONS(1752), + [sym__list_marker_plus] = ACTIONS(1752), + [sym__list_marker_star] = ACTIONS(1752), + [sym__list_marker_parenthesis] = ACTIONS(1752), + [sym__list_marker_dot] = ACTIONS(1752), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1752), + [sym__fenced_code_block_start_backtick] = ACTIONS(1752), + [sym__fenced_code_block_start_tilde] = ACTIONS(1752), + [sym__blank_line_start] = ACTIONS(1752), + [sym__html_block_1_start] = ACTIONS(1752), + [sym__html_block_2_start] = ACTIONS(1752), + [sym__html_block_3_start] = ACTIONS(1752), + [sym__html_block_4_start] = ACTIONS(1752), + [sym__html_block_5_start] = ACTIONS(1752), + [sym__html_block_6_start] = ACTIONS(1752), + [sym__html_block_7_start] = ACTIONS(1752), + [sym__pipe_table_start] = ACTIONS(1752), + }, + [332] = { + [ts_builtin_sym_end] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [aux_sym__word_token1] = ACTIONS(1366), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1366), + [aux_sym__word_token2] = ACTIONS(1366), + [sym__whitespace] = ACTIONS(1366), + [sym__soft_line_ending] = ACTIONS(1366), + [sym__block_quote_start] = ACTIONS(1366), + [sym__indented_chunk_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(1366), + [sym_atx_h6_marker] = ACTIONS(1366), + [sym__thematic_break] = ACTIONS(1366), + [sym__list_marker_minus] = ACTIONS(1366), + [sym__list_marker_plus] = ACTIONS(1366), + [sym__list_marker_star] = ACTIONS(1366), + [sym__list_marker_parenthesis] = ACTIONS(1366), + [sym__list_marker_dot] = ACTIONS(1366), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1366), + [sym__fenced_code_block_start_backtick] = ACTIONS(1366), + [sym__fenced_code_block_start_tilde] = ACTIONS(1366), + [sym__blank_line_start] = ACTIONS(1366), + [sym__html_block_1_start] = ACTIONS(1366), + [sym__html_block_2_start] = ACTIONS(1366), + [sym__html_block_3_start] = ACTIONS(1366), + [sym__html_block_4_start] = ACTIONS(1366), + [sym__html_block_5_start] = ACTIONS(1366), + [sym__html_block_6_start] = ACTIONS(1366), + [sym__html_block_7_start] = ACTIONS(1366), + [sym__pipe_table_start] = ACTIONS(1366), + }, + [333] = { + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_DQUOTE] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_PERCENT] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_SQUOTE] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1784), + [anon_sym_BSLASH] = ACTIONS(1784), + [anon_sym_CARET] = ACTIONS(1784), + [anon_sym__] = ACTIONS(1784), + [anon_sym_BQUOTE] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_RPAREN] = ACTIONS(1784), + [aux_sym__word_token1] = ACTIONS(1784), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1784), + [aux_sym__word_token2] = ACTIONS(1784), + [sym__whitespace] = ACTIONS(1784), + [sym__soft_line_ending] = ACTIONS(1784), + [sym__block_close] = ACTIONS(1784), + [sym__block_quote_start] = ACTIONS(1784), + [sym__indented_chunk_start] = ACTIONS(1784), + [sym_atx_h1_marker] = ACTIONS(1784), + [sym_atx_h2_marker] = ACTIONS(1784), + [sym_atx_h3_marker] = ACTIONS(1784), + [sym_atx_h4_marker] = ACTIONS(1784), + [sym_atx_h5_marker] = ACTIONS(1784), + [sym_atx_h6_marker] = ACTIONS(1784), + [sym__thematic_break] = ACTIONS(1784), + [sym__list_marker_minus] = ACTIONS(1784), + [sym__list_marker_plus] = ACTIONS(1784), + [sym__list_marker_star] = ACTIONS(1784), + [sym__list_marker_parenthesis] = ACTIONS(1784), + [sym__list_marker_dot] = ACTIONS(1784), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1784), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1784), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1784), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1784), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1784), + [sym__fenced_code_block_start_backtick] = ACTIONS(1784), + [sym__fenced_code_block_start_tilde] = ACTIONS(1784), + [sym__blank_line_start] = ACTIONS(1784), + [sym__html_block_1_start] = ACTIONS(1784), + [sym__html_block_2_start] = ACTIONS(1784), + [sym__html_block_3_start] = ACTIONS(1784), + [sym__html_block_4_start] = ACTIONS(1784), + [sym__html_block_5_start] = ACTIONS(1784), + [sym__html_block_6_start] = ACTIONS(1784), + [sym__html_block_7_start] = ACTIONS(1784), + [sym__pipe_table_start] = ACTIONS(1784), + }, + [334] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DOT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_COLON] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_AT] = ACTIONS(1354), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym__] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [aux_sym__word_token1] = ACTIONS(1354), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1354), + [aux_sym__word_token2] = ACTIONS(1354), + [sym__whitespace] = ACTIONS(1354), + [sym__soft_line_ending] = ACTIONS(1354), + [sym__block_quote_start] = ACTIONS(1354), + [sym__indented_chunk_start] = ACTIONS(1354), + [sym_atx_h1_marker] = ACTIONS(1354), + [sym_atx_h2_marker] = ACTIONS(1354), + [sym_atx_h3_marker] = ACTIONS(1354), + [sym_atx_h4_marker] = ACTIONS(1354), + [sym_atx_h5_marker] = ACTIONS(1354), + [sym_atx_h6_marker] = ACTIONS(1354), + [sym__thematic_break] = ACTIONS(1354), + [sym__list_marker_minus] = ACTIONS(1354), + [sym__list_marker_plus] = ACTIONS(1354), + [sym__list_marker_star] = ACTIONS(1354), + [sym__list_marker_parenthesis] = ACTIONS(1354), + [sym__list_marker_dot] = ACTIONS(1354), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), + [sym__fenced_code_block_start_backtick] = ACTIONS(1354), + [sym__fenced_code_block_start_tilde] = ACTIONS(1354), + [sym__blank_line_start] = ACTIONS(1354), + [sym__html_block_1_start] = ACTIONS(1354), + [sym__html_block_2_start] = ACTIONS(1354), + [sym__html_block_3_start] = ACTIONS(1354), + [sym__html_block_4_start] = ACTIONS(1354), + [sym__html_block_5_start] = ACTIONS(1354), + [sym__html_block_6_start] = ACTIONS(1354), + [sym__html_block_7_start] = ACTIONS(1354), + [sym__pipe_table_start] = ACTIONS(1354), + }, + [335] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [aux_sym__word_token1] = ACTIONS(1348), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1348), + [aux_sym__word_token2] = ACTIONS(1348), + [sym__whitespace] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym__block_quote_start] = ACTIONS(1348), + [sym__indented_chunk_start] = ACTIONS(1348), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(1348), + [sym__html_block_1_start] = ACTIONS(1348), + [sym__html_block_2_start] = ACTIONS(1348), + [sym__html_block_3_start] = ACTIONS(1348), + [sym__html_block_4_start] = ACTIONS(1348), + [sym__html_block_5_start] = ACTIONS(1348), + [sym__html_block_6_start] = ACTIONS(1348), + [sym__html_block_7_start] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + }, + [336] = { + [ts_builtin_sym_end] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_RBRACK] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1776), + [anon_sym_DQUOTE] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_SQUOTE] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_DOT] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_COLON] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_BSLASH] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym__] = ACTIONS(1776), + [anon_sym_BQUOTE] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_TILDE] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_RPAREN] = ACTIONS(1776), + [aux_sym__word_token1] = ACTIONS(1776), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1776), + [aux_sym__word_token2] = ACTIONS(1776), + [sym__whitespace] = ACTIONS(1776), + [sym__soft_line_ending] = ACTIONS(1776), + [sym__block_quote_start] = ACTIONS(1776), + [sym__indented_chunk_start] = ACTIONS(1776), + [sym_atx_h1_marker] = ACTIONS(1776), + [sym_atx_h2_marker] = ACTIONS(1776), + [sym_atx_h3_marker] = ACTIONS(1776), + [sym_atx_h4_marker] = ACTIONS(1776), + [sym_atx_h5_marker] = ACTIONS(1776), + [sym_atx_h6_marker] = ACTIONS(1776), + [sym__thematic_break] = ACTIONS(1776), + [sym__list_marker_minus] = ACTIONS(1776), + [sym__list_marker_plus] = ACTIONS(1776), + [sym__list_marker_star] = ACTIONS(1776), + [sym__list_marker_parenthesis] = ACTIONS(1776), + [sym__list_marker_dot] = ACTIONS(1776), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1776), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1776), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1776), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1776), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1776), + [sym__fenced_code_block_start_backtick] = ACTIONS(1776), + [sym__fenced_code_block_start_tilde] = ACTIONS(1776), + [sym__blank_line_start] = ACTIONS(1776), + [sym__html_block_1_start] = ACTIONS(1776), + [sym__html_block_2_start] = ACTIONS(1776), + [sym__html_block_3_start] = ACTIONS(1776), + [sym__html_block_4_start] = ACTIONS(1776), + [sym__html_block_5_start] = ACTIONS(1776), + [sym__html_block_6_start] = ACTIONS(1776), + [sym__html_block_7_start] = ACTIONS(1776), + [sym__pipe_table_start] = ACTIONS(1776), + }, + [337] = { + [ts_builtin_sym_end] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_RBRACK] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1780), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_COLON] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_BSLASH] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym__] = ACTIONS(1780), + [anon_sym_BQUOTE] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_RPAREN] = ACTIONS(1780), + [aux_sym__word_token1] = ACTIONS(1780), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1780), + [aux_sym__word_token2] = ACTIONS(1780), + [sym__whitespace] = ACTIONS(1780), + [sym__soft_line_ending] = ACTIONS(1780), + [sym__block_quote_start] = ACTIONS(1780), + [sym__indented_chunk_start] = ACTIONS(1780), + [sym_atx_h1_marker] = ACTIONS(1780), + [sym_atx_h2_marker] = ACTIONS(1780), + [sym_atx_h3_marker] = ACTIONS(1780), + [sym_atx_h4_marker] = ACTIONS(1780), + [sym_atx_h5_marker] = ACTIONS(1780), + [sym_atx_h6_marker] = ACTIONS(1780), + [sym__thematic_break] = ACTIONS(1780), + [sym__list_marker_minus] = ACTIONS(1780), + [sym__list_marker_plus] = ACTIONS(1780), + [sym__list_marker_star] = ACTIONS(1780), + [sym__list_marker_parenthesis] = ACTIONS(1780), + [sym__list_marker_dot] = ACTIONS(1780), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1780), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1780), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1780), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1780), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1780), + [sym__fenced_code_block_start_backtick] = ACTIONS(1780), + [sym__fenced_code_block_start_tilde] = ACTIONS(1780), + [sym__blank_line_start] = ACTIONS(1780), + [sym__html_block_1_start] = ACTIONS(1780), + [sym__html_block_2_start] = ACTIONS(1780), + [sym__html_block_3_start] = ACTIONS(1780), + [sym__html_block_4_start] = ACTIONS(1780), + [sym__html_block_5_start] = ACTIONS(1780), + [sym__html_block_6_start] = ACTIONS(1780), + [sym__html_block_7_start] = ACTIONS(1780), + [sym__pipe_table_start] = ACTIONS(1780), + }, + [338] = { + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_BSLASH] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [aux_sym__word_token1] = ACTIONS(1185), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1185), + [aux_sym__word_token2] = ACTIONS(1185), + [sym__whitespace] = ACTIONS(1185), + [sym__soft_line_ending] = ACTIONS(1185), + [sym__block_close] = ACTIONS(1185), + [sym__block_quote_start] = ACTIONS(1185), + [sym__indented_chunk_start] = ACTIONS(1185), + [sym_atx_h1_marker] = ACTIONS(1185), + [sym_atx_h2_marker] = ACTIONS(1185), + [sym_atx_h3_marker] = ACTIONS(1185), + [sym_atx_h4_marker] = ACTIONS(1185), + [sym_atx_h5_marker] = ACTIONS(1185), + [sym_atx_h6_marker] = ACTIONS(1185), + [sym__thematic_break] = ACTIONS(1185), + [sym__list_marker_minus] = ACTIONS(1185), + [sym__list_marker_plus] = ACTIONS(1185), + [sym__list_marker_star] = ACTIONS(1185), + [sym__list_marker_parenthesis] = ACTIONS(1185), + [sym__list_marker_dot] = ACTIONS(1185), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1185), + [sym__fenced_code_block_start_tilde] = ACTIONS(1185), + [sym__blank_line_start] = ACTIONS(1185), + [sym__html_block_1_start] = ACTIONS(1185), + [sym__html_block_2_start] = ACTIONS(1185), + [sym__html_block_3_start] = ACTIONS(1185), + [sym__html_block_4_start] = ACTIONS(1185), + [sym__html_block_5_start] = ACTIONS(1185), + [sym__html_block_6_start] = ACTIONS(1185), + [sym__html_block_7_start] = ACTIONS(1185), + [sym__pipe_table_start] = ACTIONS(1185), + }, + [339] = { + [ts_builtin_sym_end] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_GT] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1318), + [anon_sym_PERCENT] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_COMMA] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_DOT] = ACTIONS(1318), + [anon_sym_SLASH] = ACTIONS(1318), + [anon_sym_COLON] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1318), + [anon_sym_AT] = ACTIONS(1318), + [anon_sym_BSLASH] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1318), + [anon_sym__] = ACTIONS(1318), + [anon_sym_BQUOTE] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [aux_sym__word_token1] = ACTIONS(1318), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1318), + [aux_sym__word_token2] = ACTIONS(1318), + [sym__whitespace] = ACTIONS(1318), + [sym__soft_line_ending] = ACTIONS(1318), + [sym__block_quote_start] = ACTIONS(1318), + [sym__indented_chunk_start] = ACTIONS(1318), + [sym_atx_h1_marker] = ACTIONS(1318), + [sym_atx_h2_marker] = ACTIONS(1318), + [sym_atx_h3_marker] = ACTIONS(1318), + [sym_atx_h4_marker] = ACTIONS(1318), + [sym_atx_h5_marker] = ACTIONS(1318), + [sym_atx_h6_marker] = ACTIONS(1318), + [sym__thematic_break] = ACTIONS(1318), + [sym__list_marker_minus] = ACTIONS(1318), + [sym__list_marker_plus] = ACTIONS(1318), + [sym__list_marker_star] = ACTIONS(1318), + [sym__list_marker_parenthesis] = ACTIONS(1318), + [sym__list_marker_dot] = ACTIONS(1318), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1318), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1318), + [sym__fenced_code_block_start_backtick] = ACTIONS(1318), + [sym__fenced_code_block_start_tilde] = ACTIONS(1318), + [sym__blank_line_start] = ACTIONS(1318), + [sym__html_block_1_start] = ACTIONS(1318), + [sym__html_block_2_start] = ACTIONS(1318), + [sym__html_block_3_start] = ACTIONS(1318), + [sym__html_block_4_start] = ACTIONS(1318), + [sym__html_block_5_start] = ACTIONS(1318), + [sym__html_block_6_start] = ACTIONS(1318), + [sym__html_block_7_start] = ACTIONS(1318), + [sym__pipe_table_start] = ACTIONS(1318), + }, + [340] = { + [ts_builtin_sym_end] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_DOLLAR] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_COLON] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_BSLASH] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym__] = ACTIONS(1604), + [anon_sym_BQUOTE] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_RPAREN] = ACTIONS(1604), + [aux_sym__word_token1] = ACTIONS(1604), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1604), + [aux_sym__word_token2] = ACTIONS(1604), + [sym__whitespace] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1604), + [sym__indented_chunk_start] = ACTIONS(1604), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1604), + [sym__thematic_break] = ACTIONS(1604), + [sym__list_marker_minus] = ACTIONS(1604), + [sym__list_marker_plus] = ACTIONS(1604), + [sym__list_marker_star] = ACTIONS(1604), + [sym__list_marker_parenthesis] = ACTIONS(1604), + [sym__list_marker_dot] = ACTIONS(1604), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1604), + [sym__fenced_code_block_start_backtick] = ACTIONS(1604), + [sym__fenced_code_block_start_tilde] = ACTIONS(1604), + [sym__blank_line_start] = ACTIONS(1604), + [sym__html_block_1_start] = ACTIONS(1604), + [sym__html_block_2_start] = ACTIONS(1604), + [sym__html_block_3_start] = ACTIONS(1604), + [sym__html_block_4_start] = ACTIONS(1604), + [sym__html_block_5_start] = ACTIONS(1604), + [sym__html_block_6_start] = ACTIONS(1604), + [sym__html_block_7_start] = ACTIONS(1604), + [sym__pipe_table_start] = ACTIONS(1604), + }, + [341] = { + [ts_builtin_sym_end] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_DOT] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_COLON] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_BSLASH] = ACTIONS(1592), + [anon_sym_CARET] = ACTIONS(1592), + [anon_sym__] = ACTIONS(1592), + [anon_sym_BQUOTE] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_TILDE] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [aux_sym__word_token1] = ACTIONS(1592), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1592), + [aux_sym__word_token2] = ACTIONS(1592), + [sym__whitespace] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_quote_start] = ACTIONS(1592), + [sym__indented_chunk_start] = ACTIONS(1592), + [sym_atx_h1_marker] = ACTIONS(1592), + [sym_atx_h2_marker] = ACTIONS(1592), + [sym_atx_h3_marker] = ACTIONS(1592), + [sym_atx_h4_marker] = ACTIONS(1592), + [sym_atx_h5_marker] = ACTIONS(1592), + [sym_atx_h6_marker] = ACTIONS(1592), + [sym__thematic_break] = ACTIONS(1592), + [sym__list_marker_minus] = ACTIONS(1592), + [sym__list_marker_plus] = ACTIONS(1592), + [sym__list_marker_star] = ACTIONS(1592), + [sym__list_marker_parenthesis] = ACTIONS(1592), + [sym__list_marker_dot] = ACTIONS(1592), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), + [sym__fenced_code_block_start_backtick] = ACTIONS(1592), + [sym__fenced_code_block_start_tilde] = ACTIONS(1592), + [sym__blank_line_start] = ACTIONS(1592), + [sym__html_block_1_start] = ACTIONS(1592), + [sym__html_block_2_start] = ACTIONS(1592), + [sym__html_block_3_start] = ACTIONS(1592), + [sym__html_block_4_start] = ACTIONS(1592), + [sym__html_block_5_start] = ACTIONS(1592), + [sym__html_block_6_start] = ACTIONS(1592), + [sym__html_block_7_start] = ACTIONS(1592), + [sym__pipe_table_start] = ACTIONS(1592), + }, + [342] = { + [ts_builtin_sym_end] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_COLON] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1596), + [anon_sym_AT] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym__] = ACTIONS(1596), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [aux_sym__word_token1] = ACTIONS(1596), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1596), + [aux_sym__word_token2] = ACTIONS(1596), + [sym__whitespace] = ACTIONS(1596), + [sym__soft_line_ending] = ACTIONS(1596), + [sym__block_quote_start] = ACTIONS(1596), + [sym__indented_chunk_start] = ACTIONS(1596), + [sym_atx_h1_marker] = ACTIONS(1596), + [sym_atx_h2_marker] = ACTIONS(1596), + [sym_atx_h3_marker] = ACTIONS(1596), + [sym_atx_h4_marker] = ACTIONS(1596), + [sym_atx_h5_marker] = ACTIONS(1596), + [sym_atx_h6_marker] = ACTIONS(1596), + [sym__thematic_break] = ACTIONS(1596), + [sym__list_marker_minus] = ACTIONS(1596), + [sym__list_marker_plus] = ACTIONS(1596), + [sym__list_marker_star] = ACTIONS(1596), + [sym__list_marker_parenthesis] = ACTIONS(1596), + [sym__list_marker_dot] = ACTIONS(1596), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1596), + [sym__fenced_code_block_start_backtick] = ACTIONS(1596), + [sym__fenced_code_block_start_tilde] = ACTIONS(1596), + [sym__blank_line_start] = ACTIONS(1596), + [sym__html_block_1_start] = ACTIONS(1596), + [sym__html_block_2_start] = ACTIONS(1596), + [sym__html_block_3_start] = ACTIONS(1596), + [sym__html_block_4_start] = ACTIONS(1596), + [sym__html_block_5_start] = ACTIONS(1596), + [sym__html_block_6_start] = ACTIONS(1596), + [sym__html_block_7_start] = ACTIONS(1596), + [sym__pipe_table_start] = ACTIONS(1596), + }, + [343] = { + [ts_builtin_sym_end] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1600), + [anon_sym_COLON] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AT] = ACTIONS(1600), + [anon_sym_BSLASH] = ACTIONS(1600), + [anon_sym_CARET] = ACTIONS(1600), + [anon_sym__] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_TILDE] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [aux_sym__word_token1] = ACTIONS(1600), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1600), + [aux_sym__word_token2] = ACTIONS(1600), + [sym__whitespace] = ACTIONS(1600), + [sym__soft_line_ending] = ACTIONS(1600), + [sym__block_quote_start] = ACTIONS(1600), + [sym__indented_chunk_start] = ACTIONS(1600), + [sym_atx_h1_marker] = ACTIONS(1600), + [sym_atx_h2_marker] = ACTIONS(1600), + [sym_atx_h3_marker] = ACTIONS(1600), + [sym_atx_h4_marker] = ACTIONS(1600), + [sym_atx_h5_marker] = ACTIONS(1600), + [sym_atx_h6_marker] = ACTIONS(1600), + [sym__thematic_break] = ACTIONS(1600), + [sym__list_marker_minus] = ACTIONS(1600), + [sym__list_marker_plus] = ACTIONS(1600), + [sym__list_marker_star] = ACTIONS(1600), + [sym__list_marker_parenthesis] = ACTIONS(1600), + [sym__list_marker_dot] = ACTIONS(1600), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1600), + [sym__fenced_code_block_start_backtick] = ACTIONS(1600), + [sym__fenced_code_block_start_tilde] = ACTIONS(1600), + [sym__blank_line_start] = ACTIONS(1600), + [sym__html_block_1_start] = ACTIONS(1600), + [sym__html_block_2_start] = ACTIONS(1600), + [sym__html_block_3_start] = ACTIONS(1600), + [sym__html_block_4_start] = ACTIONS(1600), + [sym__html_block_5_start] = ACTIONS(1600), + [sym__html_block_6_start] = ACTIONS(1600), + [sym__html_block_7_start] = ACTIONS(1600), + [sym__pipe_table_start] = ACTIONS(1600), + }, + [344] = { + [ts_builtin_sym_end] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_RBRACK] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_DQUOTE] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_PERCENT] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_SQUOTE] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_COMMA] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_COLON] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1784), + [anon_sym_AT] = ACTIONS(1784), + [anon_sym_BSLASH] = ACTIONS(1784), + [anon_sym_CARET] = ACTIONS(1784), + [anon_sym__] = ACTIONS(1784), + [anon_sym_BQUOTE] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_RPAREN] = ACTIONS(1784), + [aux_sym__word_token1] = ACTIONS(1784), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1784), + [aux_sym__word_token2] = ACTIONS(1784), + [sym__whitespace] = ACTIONS(1784), + [sym__soft_line_ending] = ACTIONS(1784), + [sym__block_quote_start] = ACTIONS(1784), + [sym__indented_chunk_start] = ACTIONS(1784), + [sym_atx_h1_marker] = ACTIONS(1784), + [sym_atx_h2_marker] = ACTIONS(1784), + [sym_atx_h3_marker] = ACTIONS(1784), + [sym_atx_h4_marker] = ACTIONS(1784), + [sym_atx_h5_marker] = ACTIONS(1784), + [sym_atx_h6_marker] = ACTIONS(1784), + [sym__thematic_break] = ACTIONS(1784), + [sym__list_marker_minus] = ACTIONS(1784), + [sym__list_marker_plus] = ACTIONS(1784), + [sym__list_marker_star] = ACTIONS(1784), + [sym__list_marker_parenthesis] = ACTIONS(1784), + [sym__list_marker_dot] = ACTIONS(1784), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1784), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1784), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1784), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1784), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1784), + [sym__fenced_code_block_start_backtick] = ACTIONS(1784), + [sym__fenced_code_block_start_tilde] = ACTIONS(1784), + [sym__blank_line_start] = ACTIONS(1784), + [sym__html_block_1_start] = ACTIONS(1784), + [sym__html_block_2_start] = ACTIONS(1784), + [sym__html_block_3_start] = ACTIONS(1784), + [sym__html_block_4_start] = ACTIONS(1784), + [sym__html_block_5_start] = ACTIONS(1784), + [sym__html_block_6_start] = ACTIONS(1784), + [sym__html_block_7_start] = ACTIONS(1784), + [sym__pipe_table_start] = ACTIONS(1784), + }, + [345] = { + [ts_builtin_sym_end] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1183), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_BSLASH] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [aux_sym__word_token1] = ACTIONS(1185), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1185), + [aux_sym__word_token2] = ACTIONS(1185), + [sym__whitespace] = ACTIONS(1185), + [sym__soft_line_ending] = ACTIONS(1185), + [sym__block_quote_start] = ACTIONS(1185), + [sym__indented_chunk_start] = ACTIONS(1185), + [sym_atx_h1_marker] = ACTIONS(1185), + [sym_atx_h2_marker] = ACTIONS(1185), + [sym_atx_h3_marker] = ACTIONS(1185), + [sym_atx_h4_marker] = ACTIONS(1185), + [sym_atx_h5_marker] = ACTIONS(1185), + [sym_atx_h6_marker] = ACTIONS(1185), + [sym__thematic_break] = ACTIONS(1185), + [sym__list_marker_minus] = ACTIONS(1185), + [sym__list_marker_plus] = ACTIONS(1185), + [sym__list_marker_star] = ACTIONS(1185), + [sym__list_marker_parenthesis] = ACTIONS(1185), + [sym__list_marker_dot] = ACTIONS(1185), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1185), + [sym__fenced_code_block_start_tilde] = ACTIONS(1185), + [sym__blank_line_start] = ACTIONS(1185), + [sym__html_block_1_start] = ACTIONS(1185), + [sym__html_block_2_start] = ACTIONS(1185), + [sym__html_block_3_start] = ACTIONS(1185), + [sym__html_block_4_start] = ACTIONS(1185), + [sym__html_block_5_start] = ACTIONS(1185), + [sym__html_block_6_start] = ACTIONS(1185), + [sym__html_block_7_start] = ACTIONS(1185), + [sym__pipe_table_start] = ACTIONS(1185), + }, + [346] = { + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_COLON] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_BSLASH] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym__] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [aux_sym__word_token1] = ACTIONS(1766), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1766), + [aux_sym__word_token2] = ACTIONS(1766), + [sym__whitespace] = ACTIONS(1766), + [sym__soft_line_ending] = ACTIONS(1766), + [sym__block_close] = ACTIONS(1766), + [sym__block_quote_start] = ACTIONS(1766), + [sym__indented_chunk_start] = ACTIONS(1766), + [sym_atx_h1_marker] = ACTIONS(1766), + [sym_atx_h2_marker] = ACTIONS(1766), + [sym_atx_h3_marker] = ACTIONS(1766), + [sym_atx_h4_marker] = ACTIONS(1766), + [sym_atx_h5_marker] = ACTIONS(1766), + [sym_atx_h6_marker] = ACTIONS(1766), + [sym__thematic_break] = ACTIONS(1766), + [sym__list_marker_minus] = ACTIONS(1766), + [sym__list_marker_plus] = ACTIONS(1766), + [sym__list_marker_star] = ACTIONS(1766), + [sym__list_marker_parenthesis] = ACTIONS(1766), + [sym__list_marker_dot] = ACTIONS(1766), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1766), + [sym__fenced_code_block_start_backtick] = ACTIONS(1766), + [sym__fenced_code_block_start_tilde] = ACTIONS(1766), + [sym__blank_line_start] = ACTIONS(1766), + [sym__html_block_1_start] = ACTIONS(1766), + [sym__html_block_2_start] = ACTIONS(1766), + [sym__html_block_3_start] = ACTIONS(1766), + [sym__html_block_4_start] = ACTIONS(1766), + [sym__html_block_5_start] = ACTIONS(1766), + [sym__html_block_6_start] = ACTIONS(1766), + [sym__html_block_7_start] = ACTIONS(1766), + [sym__pipe_table_start] = ACTIONS(1766), + }, + [347] = { + [ts_builtin_sym_end] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_PERCENT] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_COMMA] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_DOT] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1608), + [anon_sym_COLON] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1608), + [anon_sym_AT] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1608), + [anon_sym__] = ACTIONS(1608), + [anon_sym_BQUOTE] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [aux_sym__word_token1] = ACTIONS(1608), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1608), + [aux_sym__word_token2] = ACTIONS(1608), + [sym__whitespace] = ACTIONS(1608), + [sym__soft_line_ending] = ACTIONS(1608), + [sym__block_quote_start] = ACTIONS(1608), + [sym__indented_chunk_start] = ACTIONS(1608), + [sym_atx_h1_marker] = ACTIONS(1608), + [sym_atx_h2_marker] = ACTIONS(1608), + [sym_atx_h3_marker] = ACTIONS(1608), + [sym_atx_h4_marker] = ACTIONS(1608), + [sym_atx_h5_marker] = ACTIONS(1608), + [sym_atx_h6_marker] = ACTIONS(1608), + [sym__thematic_break] = ACTIONS(1608), + [sym__list_marker_minus] = ACTIONS(1608), + [sym__list_marker_plus] = ACTIONS(1608), + [sym__list_marker_star] = ACTIONS(1608), + [sym__list_marker_parenthesis] = ACTIONS(1608), + [sym__list_marker_dot] = ACTIONS(1608), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1608), + [sym__fenced_code_block_start_backtick] = ACTIONS(1608), + [sym__fenced_code_block_start_tilde] = ACTIONS(1608), + [sym__blank_line_start] = ACTIONS(1608), + [sym__html_block_1_start] = ACTIONS(1608), + [sym__html_block_2_start] = ACTIONS(1608), + [sym__html_block_3_start] = ACTIONS(1608), + [sym__html_block_4_start] = ACTIONS(1608), + [sym__html_block_5_start] = ACTIONS(1608), + [sym__html_block_6_start] = ACTIONS(1608), + [sym__html_block_7_start] = ACTIONS(1608), + [sym__pipe_table_start] = ACTIONS(1608), + }, + [348] = { + [ts_builtin_sym_end] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym__] = ACTIONS(1195), + [anon_sym_BQUOTE] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1195), + [anon_sym_RPAREN] = ACTIONS(1195), + [aux_sym__word_token1] = ACTIONS(1195), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1195), + [aux_sym__word_token2] = ACTIONS(1195), + [sym__whitespace] = ACTIONS(1195), + [sym__soft_line_ending] = ACTIONS(1195), + [sym__block_quote_start] = ACTIONS(1195), + [sym__indented_chunk_start] = ACTIONS(1195), + [sym_atx_h1_marker] = ACTIONS(1195), + [sym_atx_h2_marker] = ACTIONS(1195), + [sym_atx_h3_marker] = ACTIONS(1195), + [sym_atx_h4_marker] = ACTIONS(1195), + [sym_atx_h5_marker] = ACTIONS(1195), + [sym_atx_h6_marker] = ACTIONS(1195), + [sym__thematic_break] = ACTIONS(1195), + [sym__list_marker_minus] = ACTIONS(1195), + [sym__list_marker_plus] = ACTIONS(1195), + [sym__list_marker_star] = ACTIONS(1195), + [sym__list_marker_parenthesis] = ACTIONS(1195), + [sym__list_marker_dot] = ACTIONS(1195), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1195), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1195), + [sym__fenced_code_block_start_backtick] = ACTIONS(1195), + [sym__fenced_code_block_start_tilde] = ACTIONS(1195), + [sym__blank_line_start] = ACTIONS(1195), + [sym__html_block_1_start] = ACTIONS(1195), + [sym__html_block_2_start] = ACTIONS(1195), + [sym__html_block_3_start] = ACTIONS(1195), + [sym__html_block_4_start] = ACTIONS(1195), + [sym__html_block_5_start] = ACTIONS(1195), + [sym__html_block_6_start] = ACTIONS(1195), + [sym__html_block_7_start] = ACTIONS(1195), + [sym__pipe_table_start] = ACTIONS(1195), + }, + [349] = { + [ts_builtin_sym_end] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_RBRACK] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_COLON] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_AT] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1620), + [anon_sym__] = ACTIONS(1620), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_TILDE] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [aux_sym__word_token1] = ACTIONS(1620), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1620), + [aux_sym__word_token2] = ACTIONS(1620), + [sym__whitespace] = ACTIONS(1620), + [sym__soft_line_ending] = ACTIONS(1620), + [sym__block_quote_start] = ACTIONS(1620), + [sym__indented_chunk_start] = ACTIONS(1620), + [sym_atx_h1_marker] = ACTIONS(1620), + [sym_atx_h2_marker] = ACTIONS(1620), + [sym_atx_h3_marker] = ACTIONS(1620), + [sym_atx_h4_marker] = ACTIONS(1620), + [sym_atx_h5_marker] = ACTIONS(1620), + [sym_atx_h6_marker] = ACTIONS(1620), + [sym__thematic_break] = ACTIONS(1620), + [sym__list_marker_minus] = ACTIONS(1620), + [sym__list_marker_plus] = ACTIONS(1620), + [sym__list_marker_star] = ACTIONS(1620), + [sym__list_marker_parenthesis] = ACTIONS(1620), + [sym__list_marker_dot] = ACTIONS(1620), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), + [sym__fenced_code_block_start_backtick] = ACTIONS(1620), + [sym__fenced_code_block_start_tilde] = ACTIONS(1620), + [sym__blank_line_start] = ACTIONS(1620), + [sym__html_block_1_start] = ACTIONS(1620), + [sym__html_block_2_start] = ACTIONS(1620), + [sym__html_block_3_start] = ACTIONS(1620), + [sym__html_block_4_start] = ACTIONS(1620), + [sym__html_block_5_start] = ACTIONS(1620), + [sym__html_block_6_start] = ACTIONS(1620), + [sym__html_block_7_start] = ACTIONS(1620), + [sym__pipe_table_start] = ACTIONS(1620), + }, + [350] = { + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1762), + [anon_sym_PERCENT] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_SLASH] = ACTIONS(1762), + [anon_sym_COLON] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_QMARK] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1762), + [anon_sym_BSLASH] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1762), + [anon_sym__] = ACTIONS(1762), + [anon_sym_BQUOTE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [aux_sym__word_token1] = ACTIONS(1762), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1762), + [aux_sym__word_token2] = ACTIONS(1762), + [sym__whitespace] = ACTIONS(1762), + [sym__soft_line_ending] = ACTIONS(1762), + [sym__block_close] = ACTIONS(1762), + [sym__block_quote_start] = ACTIONS(1762), + [sym__indented_chunk_start] = ACTIONS(1762), + [sym_atx_h1_marker] = ACTIONS(1762), + [sym_atx_h2_marker] = ACTIONS(1762), + [sym_atx_h3_marker] = ACTIONS(1762), + [sym_atx_h4_marker] = ACTIONS(1762), + [sym_atx_h5_marker] = ACTIONS(1762), + [sym_atx_h6_marker] = ACTIONS(1762), + [sym__thematic_break] = ACTIONS(1762), + [sym__list_marker_minus] = ACTIONS(1762), + [sym__list_marker_plus] = ACTIONS(1762), + [sym__list_marker_star] = ACTIONS(1762), + [sym__list_marker_parenthesis] = ACTIONS(1762), + [sym__list_marker_dot] = ACTIONS(1762), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1762), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1762), + [sym__fenced_code_block_start_backtick] = ACTIONS(1762), + [sym__fenced_code_block_start_tilde] = ACTIONS(1762), + [sym__blank_line_start] = ACTIONS(1762), + [sym__html_block_1_start] = ACTIONS(1762), + [sym__html_block_2_start] = ACTIONS(1762), + [sym__html_block_3_start] = ACTIONS(1762), + [sym__html_block_4_start] = ACTIONS(1762), + [sym__html_block_5_start] = ACTIONS(1762), + [sym__html_block_6_start] = ACTIONS(1762), + [sym__html_block_7_start] = ACTIONS(1762), + [sym__pipe_table_start] = ACTIONS(1762), + }, + [351] = { + [anon_sym_LBRACK] = ACTIONS(1712), + [anon_sym_RBRACK] = ACTIONS(1710), + [anon_sym_LT] = ACTIONS(1710), + [anon_sym_GT] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1710), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PERCENT] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_DOT] = ACTIONS(1710), + [anon_sym_SLASH] = ACTIONS(1710), + [anon_sym_COLON] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_EQ] = ACTIONS(1710), + [anon_sym_QMARK] = ACTIONS(1710), + [anon_sym_AT] = ACTIONS(1710), + [anon_sym_BSLASH] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1710), + [anon_sym__] = ACTIONS(1710), + [anon_sym_BQUOTE] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_RPAREN] = ACTIONS(1710), + [aux_sym__word_token1] = ACTIONS(1710), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1710), + [aux_sym__word_token2] = ACTIONS(1710), + [sym__whitespace] = ACTIONS(1710), + [sym__soft_line_ending] = ACTIONS(1710), + [sym__block_close] = ACTIONS(1710), + [sym__block_quote_start] = ACTIONS(1710), + [sym__indented_chunk_start] = ACTIONS(1710), + [sym_atx_h1_marker] = ACTIONS(1710), + [sym_atx_h2_marker] = ACTIONS(1710), + [sym_atx_h3_marker] = ACTIONS(1710), + [sym_atx_h4_marker] = ACTIONS(1710), + [sym_atx_h5_marker] = ACTIONS(1710), + [sym_atx_h6_marker] = ACTIONS(1710), + [sym__thematic_break] = ACTIONS(1710), + [sym__list_marker_minus] = ACTIONS(1710), + [sym__list_marker_plus] = ACTIONS(1710), + [sym__list_marker_star] = ACTIONS(1710), + [sym__list_marker_parenthesis] = ACTIONS(1710), + [sym__list_marker_dot] = ACTIONS(1710), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1710), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1710), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1710), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1710), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1710), + [sym__fenced_code_block_start_backtick] = ACTIONS(1710), + [sym__fenced_code_block_start_tilde] = ACTIONS(1710), + [sym__blank_line_start] = ACTIONS(1710), + [sym__html_block_1_start] = ACTIONS(1710), + [sym__html_block_2_start] = ACTIONS(1710), + [sym__html_block_3_start] = ACTIONS(1710), + [sym__html_block_4_start] = ACTIONS(1710), + [sym__html_block_5_start] = ACTIONS(1710), + [sym__html_block_6_start] = ACTIONS(1710), + [sym__html_block_7_start] = ACTIONS(1710), + [sym__pipe_table_start] = ACTIONS(1710), + }, + [352] = { + [ts_builtin_sym_end] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(1616), + [anon_sym_CARET] = ACTIONS(1616), + [anon_sym__] = ACTIONS(1616), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [aux_sym__word_token1] = ACTIONS(1616), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1616), + [aux_sym__word_token2] = ACTIONS(1616), + [sym__whitespace] = ACTIONS(1616), + [sym__soft_line_ending] = ACTIONS(1616), + [sym__block_quote_start] = ACTIONS(1616), + [sym__indented_chunk_start] = ACTIONS(1616), + [sym_atx_h1_marker] = ACTIONS(1616), + [sym_atx_h2_marker] = ACTIONS(1616), + [sym_atx_h3_marker] = ACTIONS(1616), + [sym_atx_h4_marker] = ACTIONS(1616), + [sym_atx_h5_marker] = ACTIONS(1616), + [sym_atx_h6_marker] = ACTIONS(1616), + [sym__thematic_break] = ACTIONS(1616), + [sym__list_marker_minus] = ACTIONS(1616), + [sym__list_marker_plus] = ACTIONS(1616), + [sym__list_marker_star] = ACTIONS(1616), + [sym__list_marker_parenthesis] = ACTIONS(1616), + [sym__list_marker_dot] = ACTIONS(1616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1616), + [sym__fenced_code_block_start_backtick] = ACTIONS(1616), + [sym__fenced_code_block_start_tilde] = ACTIONS(1616), + [sym__blank_line_start] = ACTIONS(1616), + [sym__html_block_1_start] = ACTIONS(1616), + [sym__html_block_2_start] = ACTIONS(1616), + [sym__html_block_3_start] = ACTIONS(1616), + [sym__html_block_4_start] = ACTIONS(1616), + [sym__html_block_5_start] = ACTIONS(1616), + [sym__html_block_6_start] = ACTIONS(1616), + [sym__html_block_7_start] = ACTIONS(1616), + [sym__pipe_table_start] = ACTIONS(1616), + }, + [353] = { + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_COLON] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_QMARK] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym__] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [aux_sym__word_token1] = ACTIONS(1714), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1714), + [aux_sym__word_token2] = ACTIONS(1714), + [sym__whitespace] = ACTIONS(1714), + [sym__soft_line_ending] = ACTIONS(1714), + [sym__block_close] = ACTIONS(1714), + [sym__block_quote_start] = ACTIONS(1714), + [sym__indented_chunk_start] = ACTIONS(1714), + [sym_atx_h1_marker] = ACTIONS(1714), + [sym_atx_h2_marker] = ACTIONS(1714), + [sym_atx_h3_marker] = ACTIONS(1714), + [sym_atx_h4_marker] = ACTIONS(1714), + [sym_atx_h5_marker] = ACTIONS(1714), + [sym_atx_h6_marker] = ACTIONS(1714), + [sym__thematic_break] = ACTIONS(1714), + [sym__list_marker_minus] = ACTIONS(1714), + [sym__list_marker_plus] = ACTIONS(1714), + [sym__list_marker_star] = ACTIONS(1714), + [sym__list_marker_parenthesis] = ACTIONS(1714), + [sym__list_marker_dot] = ACTIONS(1714), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1714), + [sym__fenced_code_block_start_backtick] = ACTIONS(1714), + [sym__fenced_code_block_start_tilde] = ACTIONS(1714), + [sym__blank_line_start] = ACTIONS(1714), + [sym__html_block_1_start] = ACTIONS(1714), + [sym__html_block_2_start] = ACTIONS(1714), + [sym__html_block_3_start] = ACTIONS(1714), + [sym__html_block_4_start] = ACTIONS(1714), + [sym__html_block_5_start] = ACTIONS(1714), + [sym__html_block_6_start] = ACTIONS(1714), + [sym__html_block_7_start] = ACTIONS(1714), + [sym__pipe_table_start] = ACTIONS(1714), + }, + [354] = { + [ts_builtin_sym_end] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [aux_sym__word_token1] = ACTIONS(1636), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1636), + [aux_sym__word_token2] = ACTIONS(1636), + [sym__whitespace] = ACTIONS(1636), + [sym__soft_line_ending] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym__html_block_1_start] = ACTIONS(1636), + [sym__html_block_2_start] = ACTIONS(1636), + [sym__html_block_3_start] = ACTIONS(1636), + [sym__html_block_4_start] = ACTIONS(1636), + [sym__html_block_5_start] = ACTIONS(1636), + [sym__html_block_6_start] = ACTIONS(1636), + [sym__html_block_7_start] = ACTIONS(1636), + [sym__pipe_table_start] = ACTIONS(1636), + }, + [355] = { + [ts_builtin_sym_end] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_GT] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_DQUOTE] = ACTIONS(1652), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_DOLLAR] = ACTIONS(1652), + [anon_sym_PERCENT] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_DOT] = ACTIONS(1652), + [anon_sym_SLASH] = ACTIONS(1652), + [anon_sym_COLON] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1652), + [anon_sym_AT] = ACTIONS(1652), + [anon_sym_BSLASH] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym__] = ACTIONS(1652), + [anon_sym_BQUOTE] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [aux_sym__word_token1] = ACTIONS(1652), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1652), + [aux_sym__word_token2] = ACTIONS(1652), + [sym__whitespace] = ACTIONS(1652), + [sym__soft_line_ending] = ACTIONS(1652), + [sym__block_quote_start] = ACTIONS(1652), + [sym__indented_chunk_start] = ACTIONS(1652), + [sym_atx_h1_marker] = ACTIONS(1652), + [sym_atx_h2_marker] = ACTIONS(1652), + [sym_atx_h3_marker] = ACTIONS(1652), + [sym_atx_h4_marker] = ACTIONS(1652), + [sym_atx_h5_marker] = ACTIONS(1652), + [sym_atx_h6_marker] = ACTIONS(1652), + [sym__thematic_break] = ACTIONS(1652), + [sym__list_marker_minus] = ACTIONS(1652), + [sym__list_marker_plus] = ACTIONS(1652), + [sym__list_marker_star] = ACTIONS(1652), + [sym__list_marker_parenthesis] = ACTIONS(1652), + [sym__list_marker_dot] = ACTIONS(1652), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1652), + [sym__fenced_code_block_start_backtick] = ACTIONS(1652), + [sym__fenced_code_block_start_tilde] = ACTIONS(1652), + [sym__blank_line_start] = ACTIONS(1652), + [sym__html_block_1_start] = ACTIONS(1652), + [sym__html_block_2_start] = ACTIONS(1652), + [sym__html_block_3_start] = ACTIONS(1652), + [sym__html_block_4_start] = ACTIONS(1652), + [sym__html_block_5_start] = ACTIONS(1652), + [sym__html_block_6_start] = ACTIONS(1652), + [sym__html_block_7_start] = ACTIONS(1652), + [sym__pipe_table_start] = ACTIONS(1652), + }, + [356] = { + [ts_builtin_sym_end] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_RBRACK] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(1656), + [anon_sym_GT] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_DQUOTE] = ACTIONS(1656), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_PERCENT] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SQUOTE] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1656), + [anon_sym_COMMA] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_DOT] = ACTIONS(1656), + [anon_sym_SLASH] = ACTIONS(1656), + [anon_sym_COLON] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_EQ] = ACTIONS(1656), + [anon_sym_QMARK] = ACTIONS(1656), + [anon_sym_AT] = ACTIONS(1656), + [anon_sym_BSLASH] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1656), + [anon_sym__] = ACTIONS(1656), + [anon_sym_BQUOTE] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_RPAREN] = ACTIONS(1656), + [aux_sym__word_token1] = ACTIONS(1656), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1656), + [aux_sym__word_token2] = ACTIONS(1656), + [sym__whitespace] = ACTIONS(1656), + [sym__soft_line_ending] = ACTIONS(1656), + [sym__block_quote_start] = ACTIONS(1656), + [sym__indented_chunk_start] = ACTIONS(1656), + [sym_atx_h1_marker] = ACTIONS(1656), + [sym_atx_h2_marker] = ACTIONS(1656), + [sym_atx_h3_marker] = ACTIONS(1656), + [sym_atx_h4_marker] = ACTIONS(1656), + [sym_atx_h5_marker] = ACTIONS(1656), + [sym_atx_h6_marker] = ACTIONS(1656), + [sym__thematic_break] = ACTIONS(1656), + [sym__list_marker_minus] = ACTIONS(1656), + [sym__list_marker_plus] = ACTIONS(1656), + [sym__list_marker_star] = ACTIONS(1656), + [sym__list_marker_parenthesis] = ACTIONS(1656), + [sym__list_marker_dot] = ACTIONS(1656), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1656), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1656), + [sym__fenced_code_block_start_backtick] = ACTIONS(1656), + [sym__fenced_code_block_start_tilde] = ACTIONS(1656), + [sym__blank_line_start] = ACTIONS(1656), + [sym__html_block_1_start] = ACTIONS(1656), + [sym__html_block_2_start] = ACTIONS(1656), + [sym__html_block_3_start] = ACTIONS(1656), + [sym__html_block_4_start] = ACTIONS(1656), + [sym__html_block_5_start] = ACTIONS(1656), + [sym__html_block_6_start] = ACTIONS(1656), + [sym__html_block_7_start] = ACTIONS(1656), + [sym__pipe_table_start] = ACTIONS(1656), + }, + [357] = { + [ts_builtin_sym_end] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_RBRACK] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(1660), + [anon_sym_GT] = ACTIONS(1660), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_DQUOTE] = ACTIONS(1660), + [anon_sym_POUND] = ACTIONS(1660), + [anon_sym_DOLLAR] = ACTIONS(1660), + [anon_sym_PERCENT] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(1660), + [anon_sym_COMMA] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_DOT] = ACTIONS(1660), + [anon_sym_SLASH] = ACTIONS(1660), + [anon_sym_COLON] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(1660), + [anon_sym_EQ] = ACTIONS(1660), + [anon_sym_QMARK] = ACTIONS(1660), + [anon_sym_AT] = ACTIONS(1660), + [anon_sym_BSLASH] = ACTIONS(1660), + [anon_sym_CARET] = ACTIONS(1660), + [anon_sym__] = ACTIONS(1660), + [anon_sym_BQUOTE] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_PIPE] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_TILDE] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(1660), + [anon_sym_RPAREN] = ACTIONS(1660), + [aux_sym__word_token1] = ACTIONS(1660), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1660), + [aux_sym__word_token2] = ACTIONS(1660), + [sym__whitespace] = ACTIONS(1660), + [sym__soft_line_ending] = ACTIONS(1660), + [sym__block_quote_start] = ACTIONS(1660), + [sym__indented_chunk_start] = ACTIONS(1660), + [sym_atx_h1_marker] = ACTIONS(1660), + [sym_atx_h2_marker] = ACTIONS(1660), + [sym_atx_h3_marker] = ACTIONS(1660), + [sym_atx_h4_marker] = ACTIONS(1660), + [sym_atx_h5_marker] = ACTIONS(1660), + [sym_atx_h6_marker] = ACTIONS(1660), + [sym__thematic_break] = ACTIONS(1660), + [sym__list_marker_minus] = ACTIONS(1660), + [sym__list_marker_plus] = ACTIONS(1660), + [sym__list_marker_star] = ACTIONS(1660), + [sym__list_marker_parenthesis] = ACTIONS(1660), + [sym__list_marker_dot] = ACTIONS(1660), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1660), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1660), + [sym__fenced_code_block_start_backtick] = ACTIONS(1660), + [sym__fenced_code_block_start_tilde] = ACTIONS(1660), + [sym__blank_line_start] = ACTIONS(1660), + [sym__html_block_1_start] = ACTIONS(1660), + [sym__html_block_2_start] = ACTIONS(1660), + [sym__html_block_3_start] = ACTIONS(1660), + [sym__html_block_4_start] = ACTIONS(1660), + [sym__html_block_5_start] = ACTIONS(1660), + [sym__html_block_6_start] = ACTIONS(1660), + [sym__html_block_7_start] = ACTIONS(1660), + [sym__pipe_table_start] = ACTIONS(1660), + }, + [358] = { + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_RBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1742), + [anon_sym_GT] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(1742), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_DOT] = ACTIONS(1742), + [anon_sym_SLASH] = ACTIONS(1742), + [anon_sym_COLON] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1742), + [anon_sym_QMARK] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1742), + [anon_sym_BSLASH] = ACTIONS(1742), + [anon_sym_CARET] = ACTIONS(1742), + [anon_sym__] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_RPAREN] = ACTIONS(1742), + [aux_sym__word_token1] = ACTIONS(1742), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1742), + [aux_sym__word_token2] = ACTIONS(1742), + [sym__whitespace] = ACTIONS(1742), + [sym__soft_line_ending] = ACTIONS(1742), + [sym__block_close] = ACTIONS(1742), + [sym__block_quote_start] = ACTIONS(1742), + [sym__indented_chunk_start] = ACTIONS(1742), + [sym_atx_h1_marker] = ACTIONS(1742), + [sym_atx_h2_marker] = ACTIONS(1742), + [sym_atx_h3_marker] = ACTIONS(1742), + [sym_atx_h4_marker] = ACTIONS(1742), + [sym_atx_h5_marker] = ACTIONS(1742), + [sym_atx_h6_marker] = ACTIONS(1742), + [sym__thematic_break] = ACTIONS(1742), + [sym__list_marker_minus] = ACTIONS(1742), + [sym__list_marker_plus] = ACTIONS(1742), + [sym__list_marker_star] = ACTIONS(1742), + [sym__list_marker_parenthesis] = ACTIONS(1742), + [sym__list_marker_dot] = ACTIONS(1742), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1742), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1742), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1742), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1742), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1742), + [sym__fenced_code_block_start_backtick] = ACTIONS(1742), + [sym__fenced_code_block_start_tilde] = ACTIONS(1742), + [sym__blank_line_start] = ACTIONS(1742), + [sym__html_block_1_start] = ACTIONS(1742), + [sym__html_block_2_start] = ACTIONS(1742), + [sym__html_block_3_start] = ACTIONS(1742), + [sym__html_block_4_start] = ACTIONS(1742), + [sym__html_block_5_start] = ACTIONS(1742), + [sym__html_block_6_start] = ACTIONS(1742), + [sym__html_block_7_start] = ACTIONS(1742), + [sym__pipe_table_start] = ACTIONS(1742), + }, + [359] = { + [ts_builtin_sym_end] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1664), + [anon_sym_PERCENT] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_PLUS] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1664), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(1664), + [anon_sym_SLASH] = ACTIONS(1664), + [anon_sym_COLON] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1664), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1664), + [anon_sym_BSLASH] = ACTIONS(1664), + [anon_sym_CARET] = ACTIONS(1664), + [anon_sym__] = ACTIONS(1664), + [anon_sym_BQUOTE] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_TILDE] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1664), + [aux_sym__word_token1] = ACTIONS(1664), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1664), + [aux_sym__word_token2] = ACTIONS(1664), + [sym__whitespace] = ACTIONS(1664), + [sym__soft_line_ending] = ACTIONS(1664), + [sym__block_quote_start] = ACTIONS(1664), + [sym__indented_chunk_start] = ACTIONS(1664), + [sym_atx_h1_marker] = ACTIONS(1664), + [sym_atx_h2_marker] = ACTIONS(1664), + [sym_atx_h3_marker] = ACTIONS(1664), + [sym_atx_h4_marker] = ACTIONS(1664), + [sym_atx_h5_marker] = ACTIONS(1664), + [sym_atx_h6_marker] = ACTIONS(1664), + [sym__thematic_break] = ACTIONS(1664), + [sym__list_marker_minus] = ACTIONS(1664), + [sym__list_marker_plus] = ACTIONS(1664), + [sym__list_marker_star] = ACTIONS(1664), + [sym__list_marker_parenthesis] = ACTIONS(1664), + [sym__list_marker_dot] = ACTIONS(1664), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1664), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1664), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1664), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1664), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1664), + [sym__fenced_code_block_start_backtick] = ACTIONS(1664), + [sym__fenced_code_block_start_tilde] = ACTIONS(1664), + [sym__blank_line_start] = ACTIONS(1664), + [sym__html_block_1_start] = ACTIONS(1664), + [sym__html_block_2_start] = ACTIONS(1664), + [sym__html_block_3_start] = ACTIONS(1664), + [sym__html_block_4_start] = ACTIONS(1664), + [sym__html_block_5_start] = ACTIONS(1664), + [sym__html_block_6_start] = ACTIONS(1664), + [sym__html_block_7_start] = ACTIONS(1664), + [sym__pipe_table_start] = ACTIONS(1664), + }, + [360] = { + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1746), + [anon_sym_GT] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(1746), + [anon_sym_DOLLAR] = ACTIONS(1746), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1746), + [anon_sym_SLASH] = ACTIONS(1746), + [anon_sym_COLON] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(1746), + [anon_sym_BSLASH] = ACTIONS(1746), + [anon_sym_CARET] = ACTIONS(1746), + [anon_sym__] = ACTIONS(1746), + [anon_sym_BQUOTE] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [aux_sym__word_token1] = ACTIONS(1746), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1746), + [aux_sym__word_token2] = ACTIONS(1746), + [sym__whitespace] = ACTIONS(1746), + [sym__soft_line_ending] = ACTIONS(1746), + [sym__block_close] = ACTIONS(1746), + [sym__block_quote_start] = ACTIONS(1746), + [sym__indented_chunk_start] = ACTIONS(1746), + [sym_atx_h1_marker] = ACTIONS(1746), + [sym_atx_h2_marker] = ACTIONS(1746), + [sym_atx_h3_marker] = ACTIONS(1746), + [sym_atx_h4_marker] = ACTIONS(1746), + [sym_atx_h5_marker] = ACTIONS(1746), + [sym_atx_h6_marker] = ACTIONS(1746), + [sym__thematic_break] = ACTIONS(1746), + [sym__list_marker_minus] = ACTIONS(1746), + [sym__list_marker_plus] = ACTIONS(1746), + [sym__list_marker_star] = ACTIONS(1746), + [sym__list_marker_parenthesis] = ACTIONS(1746), + [sym__list_marker_dot] = ACTIONS(1746), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1746), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1746), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1746), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1746), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1746), + [sym__fenced_code_block_start_backtick] = ACTIONS(1746), + [sym__fenced_code_block_start_tilde] = ACTIONS(1746), + [sym__blank_line_start] = ACTIONS(1746), + [sym__html_block_1_start] = ACTIONS(1746), + [sym__html_block_2_start] = ACTIONS(1746), + [sym__html_block_3_start] = ACTIONS(1746), + [sym__html_block_4_start] = ACTIONS(1746), + [sym__html_block_5_start] = ACTIONS(1746), + [sym__html_block_6_start] = ACTIONS(1746), + [sym__html_block_7_start] = ACTIONS(1746), + [sym__pipe_table_start] = ACTIONS(1746), + }, + [361] = { + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_COLON] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_QMARK] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_BSLASH] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym__] = ACTIONS(1754), + [anon_sym_BQUOTE] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [aux_sym__word_token1] = ACTIONS(1754), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1754), + [aux_sym__word_token2] = ACTIONS(1754), + [sym__whitespace] = ACTIONS(1754), + [sym__soft_line_ending] = ACTIONS(1754), + [sym__block_close] = ACTIONS(1754), + [sym__block_quote_start] = ACTIONS(1754), + [sym__indented_chunk_start] = ACTIONS(1754), + [sym_atx_h1_marker] = ACTIONS(1754), + [sym_atx_h2_marker] = ACTIONS(1754), + [sym_atx_h3_marker] = ACTIONS(1754), + [sym_atx_h4_marker] = ACTIONS(1754), + [sym_atx_h5_marker] = ACTIONS(1754), + [sym_atx_h6_marker] = ACTIONS(1754), + [sym__thematic_break] = ACTIONS(1754), + [sym__list_marker_minus] = ACTIONS(1754), + [sym__list_marker_plus] = ACTIONS(1754), + [sym__list_marker_star] = ACTIONS(1754), + [sym__list_marker_parenthesis] = ACTIONS(1754), + [sym__list_marker_dot] = ACTIONS(1754), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1754), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1754), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1754), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1754), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1754), + [sym__fenced_code_block_start_backtick] = ACTIONS(1754), + [sym__fenced_code_block_start_tilde] = ACTIONS(1754), + [sym__blank_line_start] = ACTIONS(1754), + [sym__html_block_1_start] = ACTIONS(1754), + [sym__html_block_2_start] = ACTIONS(1754), + [sym__html_block_3_start] = ACTIONS(1754), + [sym__html_block_4_start] = ACTIONS(1754), + [sym__html_block_5_start] = ACTIONS(1754), + [sym__html_block_6_start] = ACTIONS(1754), + [sym__html_block_7_start] = ACTIONS(1754), + [sym__pipe_table_start] = ACTIONS(1754), + }, + [362] = { + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_RBRACK] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_GT] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1758), + [anon_sym_DOLLAR] = ACTIONS(1758), + [anon_sym_PERCENT] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_PLUS] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(1758), + [anon_sym_SLASH] = ACTIONS(1758), + [anon_sym_COLON] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_EQ] = ACTIONS(1758), + [anon_sym_QMARK] = ACTIONS(1758), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_BSLASH] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1758), + [anon_sym__] = ACTIONS(1758), + [anon_sym_BQUOTE] = ACTIONS(1758), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1758), + [aux_sym__word_token1] = ACTIONS(1758), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1758), + [aux_sym__word_token2] = ACTIONS(1758), + [sym__whitespace] = ACTIONS(1758), + [sym__soft_line_ending] = ACTIONS(1758), + [sym__block_close] = ACTIONS(1758), + [sym__block_quote_start] = ACTIONS(1758), + [sym__indented_chunk_start] = ACTIONS(1758), + [sym_atx_h1_marker] = ACTIONS(1758), + [sym_atx_h2_marker] = ACTIONS(1758), + [sym_atx_h3_marker] = ACTIONS(1758), + [sym_atx_h4_marker] = ACTIONS(1758), + [sym_atx_h5_marker] = ACTIONS(1758), + [sym_atx_h6_marker] = ACTIONS(1758), + [sym__thematic_break] = ACTIONS(1758), + [sym__list_marker_minus] = ACTIONS(1758), + [sym__list_marker_plus] = ACTIONS(1758), + [sym__list_marker_star] = ACTIONS(1758), + [sym__list_marker_parenthesis] = ACTIONS(1758), + [sym__list_marker_dot] = ACTIONS(1758), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1758), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1758), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1758), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1758), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1758), + [sym__fenced_code_block_start_backtick] = ACTIONS(1758), + [sym__fenced_code_block_start_tilde] = ACTIONS(1758), + [sym__blank_line_start] = ACTIONS(1758), + [sym__html_block_1_start] = ACTIONS(1758), + [sym__html_block_2_start] = ACTIONS(1758), + [sym__html_block_3_start] = ACTIONS(1758), + [sym__html_block_4_start] = ACTIONS(1758), + [sym__html_block_5_start] = ACTIONS(1758), + [sym__html_block_6_start] = ACTIONS(1758), + [sym__html_block_7_start] = ACTIONS(1758), + [sym__pipe_table_start] = ACTIONS(1758), + }, + [363] = { + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_RBRACK] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1248), + [anon_sym_GT] = ACTIONS(1248), + [anon_sym_BANG] = ACTIONS(1248), + [anon_sym_DQUOTE] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1248), + [anon_sym_PERCENT] = ACTIONS(1248), + [anon_sym_AMP] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_COMMA] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_DOT] = ACTIONS(1248), + [anon_sym_SLASH] = ACTIONS(1248), + [anon_sym_COLON] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1248), + [anon_sym_QMARK] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(1248), + [anon_sym_BSLASH] = ACTIONS(1248), + [anon_sym_CARET] = ACTIONS(1248), + [anon_sym__] = ACTIONS(1248), + [anon_sym_BQUOTE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_PIPE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_RPAREN] = ACTIONS(1248), + [aux_sym__word_token1] = ACTIONS(1248), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1248), + [aux_sym__word_token2] = ACTIONS(1248), + [sym__whitespace] = ACTIONS(1248), + [sym__soft_line_ending] = ACTIONS(1248), + [sym__block_close] = ACTIONS(1248), + [sym__block_quote_start] = ACTIONS(1248), + [sym__indented_chunk_start] = ACTIONS(1248), + [sym_atx_h1_marker] = ACTIONS(1248), + [sym_atx_h2_marker] = ACTIONS(1248), + [sym_atx_h3_marker] = ACTIONS(1248), + [sym_atx_h4_marker] = ACTIONS(1248), + [sym_atx_h5_marker] = ACTIONS(1248), + [sym_atx_h6_marker] = ACTIONS(1248), + [sym__thematic_break] = ACTIONS(1248), + [sym__list_marker_minus] = ACTIONS(1248), + [sym__list_marker_plus] = ACTIONS(1248), + [sym__list_marker_star] = ACTIONS(1248), + [sym__list_marker_parenthesis] = ACTIONS(1248), + [sym__list_marker_dot] = ACTIONS(1248), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1248), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1248), + [sym__fenced_code_block_start_backtick] = ACTIONS(1248), + [sym__fenced_code_block_start_tilde] = ACTIONS(1248), + [sym__blank_line_start] = ACTIONS(1248), + [sym__html_block_1_start] = ACTIONS(1248), + [sym__html_block_2_start] = ACTIONS(1248), + [sym__html_block_3_start] = ACTIONS(1248), + [sym__html_block_4_start] = ACTIONS(1248), + [sym__html_block_5_start] = ACTIONS(1248), + [sym__html_block_6_start] = ACTIONS(1248), + [sym__html_block_7_start] = ACTIONS(1248), + [sym__pipe_table_start] = ACTIONS(1248), + }, + [364] = { + [sym_section] = STATE(366), + [sym__section1] = STATE(440), + [sym__section2] = STATE(440), + [sym__section3] = STATE(440), + [sym__section4] = STATE(440), + [sym__section5] = STATE(440), + [sym__section6] = STATE(440), + [sym__atx_heading1] = STATE(44), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading1] = STATE(43), + [sym__setext_heading2] = STATE(50), + [sym_paragraph] = STATE(841), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [aux_sym_document_repeat2] = STATE(366), + [aux_sym_paragraph_repeat1] = STATE(382), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(7), + [sym__soft_line_ending] = ACTIONS(11), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + }, + [365] = { + [sym_section] = STATE(366), + [sym__section1] = STATE(440), + [sym__section2] = STATE(440), + [sym__section3] = STATE(440), + [sym__section4] = STATE(440), + [sym__section5] = STATE(440), + [sym__section6] = STATE(440), + [sym__atx_heading1] = STATE(44), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading1] = STATE(43), + [sym__setext_heading2] = STATE(50), + [sym_paragraph] = STATE(841), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [aux_sym_document_repeat2] = STATE(366), + [aux_sym_paragraph_repeat1] = STATE(382), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(7), + [sym__soft_line_ending] = ACTIONS(11), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + }, + [366] = { + [sym_section] = STATE(366), + [sym__section1] = STATE(440), + [sym__section2] = STATE(440), + [sym__section3] = STATE(440), + [sym__section4] = STATE(440), + [sym__section5] = STATE(440), + [sym__section6] = STATE(440), + [sym__atx_heading1] = STATE(44), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading1] = STATE(43), + [sym__setext_heading2] = STATE(50), + [sym_paragraph] = STATE(841), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [aux_sym_document_repeat2] = STATE(366), + [aux_sym_paragraph_repeat1] = STATE(382), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_GT] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(1797), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_PERCENT] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_DOT] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1797), + [anon_sym_COLON] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_EQ] = ACTIONS(1797), + [anon_sym_QMARK] = ACTIONS(1797), + [anon_sym_AT] = ACTIONS(1797), + [anon_sym_BSLASH] = ACTIONS(1797), + [anon_sym_CARET] = ACTIONS(1797), + [anon_sym__] = ACTIONS(1797), + [anon_sym_BQUOTE] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1797), + [aux_sym__word_token1] = ACTIONS(1797), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(1797), + [aux_sym__word_token2] = ACTIONS(1797), + [sym__whitespace] = ACTIONS(1797), + [sym__soft_line_ending] = ACTIONS(1800), + [sym_atx_h1_marker] = ACTIONS(1803), + [sym_atx_h2_marker] = ACTIONS(1806), + [sym_atx_h3_marker] = ACTIONS(1809), + [sym_atx_h4_marker] = ACTIONS(1812), + [sym_atx_h5_marker] = ACTIONS(1815), + [sym_atx_h6_marker] = ACTIONS(1818), + }, + [367] = { + [sym_section] = STATE(366), + [sym__section1] = STATE(440), + [sym__section2] = STATE(440), + [sym__section3] = STATE(440), + [sym__section4] = STATE(440), + [sym__section5] = STATE(440), + [sym__section6] = STATE(440), + [sym__atx_heading1] = STATE(44), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading1] = STATE(43), + [sym__setext_heading2] = STATE(50), + [sym_paragraph] = STATE(841), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [aux_sym_document_repeat2] = STATE(366), + [aux_sym_paragraph_repeat1] = STATE(382), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(246), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(7), + [sym__soft_line_ending] = ACTIONS(11), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + }, + [368] = { + [sym_section] = STATE(366), + [sym__section1] = STATE(440), + [sym__section2] = STATE(440), + [sym__section3] = STATE(440), + [sym__section4] = STATE(440), + [sym__section5] = STATE(440), + [sym__section6] = STATE(440), + [sym__atx_heading1] = STATE(44), + [sym__atx_heading2] = STATE(49), + [sym__atx_heading3] = STATE(57), + [sym__atx_heading4] = STATE(68), + [sym__atx_heading5] = STATE(71), + [sym__atx_heading6] = STATE(77), + [sym__setext_heading1] = STATE(43), + [sym__setext_heading2] = STATE(50), + [sym_paragraph] = STATE(841), + [sym__soft_line_break] = STATE(637), + [sym__line] = STATE(637), + [sym__word] = STATE(528), + [aux_sym_document_repeat2] = STATE(366), + [aux_sym_paragraph_repeat1] = STATE(382), + [aux_sym__line_repeat1] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [aux_sym__word_token1] = ACTIONS(7), + [anon_sym_LBRACKx_RBRACK] = ACTIONS(7), + [aux_sym__word_token2] = ACTIONS(7), + [sym__whitespace] = ACTIONS(7), + [sym__soft_line_ending] = ACTIONS(11), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 11, + ACTIONS(47), 1, + sym__html_block_1_start, + ACTIONS(49), 1, + sym__html_block_2_start, + ACTIONS(51), 1, + sym__html_block_3_start, + ACTIONS(53), 1, + sym__html_block_4_start, + ACTIONS(55), 1, + sym__html_block_5_start, + ACTIONS(57), 1, + sym__html_block_6_start, + ACTIONS(59), 1, + sym__html_block_7_start, + ACTIONS(1823), 1, + anon_sym_LBRACK, + STATE(879), 1, + sym_link_label, + STATE(349), 7, + sym__html_block_1, + sym__html_block_2, + sym__html_block_3, + sym__html_block_4, + sym__html_block_5, + sym__html_block_6, + sym__html_block_7, + ACTIONS(1826), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [77] = 11, + ACTIONS(97), 1, + sym__html_block_1_start, + ACTIONS(99), 1, + sym__html_block_2_start, + ACTIONS(101), 1, + sym__html_block_3_start, + ACTIONS(103), 1, + sym__html_block_4_start, + ACTIONS(105), 1, + sym__html_block_5_start, + ACTIONS(107), 1, + sym__html_block_6_start, + ACTIONS(109), 1, + sym__html_block_7_start, + ACTIONS(1823), 1, + anon_sym_LBRACK, + STATE(935), 1, + sym_link_label, + STATE(239), 7, + sym__html_block_1, + sym__html_block_2, + sym__html_block_3, + sym__html_block_4, + sym__html_block_5, + sym__html_block_6, + sym__html_block_7, + ACTIONS(1826), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [154] = 9, + ACTIONS(1828), 1, + sym__backslash_escape, + ACTIONS(1832), 1, + anon_sym_LBRACK, + ACTIONS(1840), 1, + sym__soft_line_ending, + STATE(621), 1, + sym__last_token_punctuation, + ACTIONS(1830), 2, + sym_entity_reference, + sym_numeric_character_reference, + ACTIONS(1837), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1826), 3, + sym__line_ending, + sym__eof, + anon_sym_RBRACK, + STATE(445), 5, + sym_backslash_escape, + sym__text_inline_no_link, + sym__soft_line_break, + sym__word, + aux_sym_link_label_repeat1, + ACTIONS(1834), 32, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [221] = 11, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1851), 1, + sym__whitespace, + ACTIONS(1853), 1, + sym__line_ending, + STATE(385), 1, + sym_language, + STATE(387), 1, + aux_sym_info_string_repeat2, + STATE(402), 1, + sym__newline, + STATE(872), 1, + sym_info_string, + ACTIONS(1849), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1847), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(478), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(1845), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [291] = 11, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1855), 1, + sym__whitespace, + ACTIONS(1857), 1, + sym__line_ending, + STATE(385), 1, + sym_language, + STATE(387), 1, + aux_sym_info_string_repeat2, + STATE(408), 1, + sym__newline, + STATE(873), 1, + sym_info_string, + ACTIONS(1849), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1847), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(478), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(1845), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [361] = 11, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(1859), 1, + sym__whitespace, + STATE(385), 1, + sym_language, + STATE(387), 1, + aux_sym_info_string_repeat2, + STATE(395), 1, + sym__newline, + STATE(871), 1, + sym_info_string, + ACTIONS(1849), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1847), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(478), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(1845), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [431] = 11, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1857), 1, + sym__line_ending, + ACTIONS(1861), 1, + sym__whitespace, + STATE(385), 1, + sym_language, + STATE(386), 1, + sym__newline, + STATE(387), 1, + aux_sym_info_string_repeat2, + STATE(869), 1, + sym_info_string, + ACTIONS(1849), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1847), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(478), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(1845), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [501] = 10, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1857), 1, + sym__line_ending, + STATE(385), 1, + sym_language, + STATE(387), 1, + aux_sym_info_string_repeat2, + STATE(392), 1, + sym__newline, + STATE(866), 1, + sym_info_string, + ACTIONS(1849), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1847), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(478), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(1845), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [568] = 10, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1853), 1, + sym__line_ending, + STATE(381), 1, + sym__newline, + STATE(385), 1, + sym_language, + STATE(387), 1, + aux_sym_info_string_repeat2, + STATE(865), 1, + sym_info_string, + ACTIONS(1849), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1847), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(478), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(1845), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [635] = 10, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1853), 1, + sym__line_ending, + STATE(385), 1, + sym_language, + STATE(387), 1, + aux_sym_info_string_repeat2, + STATE(407), 1, + sym__newline, + STATE(828), 1, + sym_info_string, + ACTIONS(1849), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1847), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(478), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(1845), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [702] = 10, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1857), 1, + sym__line_ending, + STATE(385), 1, + sym_language, + STATE(387), 1, + aux_sym_info_string_repeat2, + STATE(390), 1, + sym__newline, + STATE(836), 1, + sym_info_string, + ACTIONS(1849), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1847), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(478), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(1845), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [769] = 7, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + STATE(410), 1, + sym__last_token_punctuation, + ACTIONS(1867), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1871), 4, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__whitespace, + STATE(398), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(1865), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [830] = 8, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1877), 1, + sym__block_close, + ACTIONS(1879), 1, + sym__fenced_code_block_end_tilde, + STATE(811), 1, + sym_code_fence_content, + STATE(532), 2, + sym__word, + aux_sym__line_repeat1, + STATE(433), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [892] = 9, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1788), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + sym__line_ending, + ACTIONS(1883), 1, + sym__eof, + STATE(427), 1, + aux_sym_paragraph_repeat1, + STATE(835), 1, + sym__newline, + STATE(528), 2, + sym__word, + aux_sym__line_repeat1, + STATE(637), 2, + sym__soft_line_break, + sym__line, + ACTIONS(7), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [956] = 8, + ACTIONS(1857), 1, + sym__line_ending, + ACTIONS(1885), 1, + anon_sym_LBRACK, + ACTIONS(1889), 1, + sym__block_close, + ACTIONS(1891), 1, + sym__fenced_code_block_end_backtick, + STATE(831), 1, + sym_code_fence_content, + STATE(540), 2, + sym__word, + aux_sym__line_repeat1, + STATE(426), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1887), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1018] = 7, + ACTIONS(1893), 1, + sym__backslash_escape, + ACTIONS(1905), 1, + sym__line_ending, + ACTIONS(1896), 2, + sym_entity_reference, + sym_numeric_character_reference, + STATE(504), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(1899), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(384), 3, + sym_backslash_escape, + sym__line, + aux_sym_info_string_repeat1, + ACTIONS(1902), 33, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1078] = 7, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1913), 1, + sym__line_ending, + ACTIONS(1907), 2, + sym_entity_reference, + sym_numeric_character_reference, + STATE(504), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(1909), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(391), 3, + sym_backslash_escape, + sym__line, + aux_sym_info_string_repeat1, + ACTIONS(1911), 33, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1138] = 8, + ACTIONS(1857), 1, + sym__line_ending, + ACTIONS(1885), 1, + anon_sym_LBRACK, + ACTIONS(1915), 1, + sym__block_close, + ACTIONS(1917), 1, + sym__fenced_code_block_end_backtick, + STATE(829), 1, + sym_code_fence_content, + STATE(540), 2, + sym__word, + aux_sym__line_repeat1, + STATE(426), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1887), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1200] = 9, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1913), 1, + sym__line_ending, + ACTIONS(1921), 1, + sym__whitespace, + STATE(397), 1, + sym_language, + STATE(539), 1, + aux_sym_info_string_repeat2, + ACTIONS(1919), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1847), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(478), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(1845), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [1264] = 7, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1925), 1, + sym__line_ending, + ACTIONS(1923), 2, + sym_entity_reference, + sym_numeric_character_reference, + STATE(504), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(1909), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(384), 3, + sym_backslash_escape, + sym__line, + aux_sym_info_string_repeat1, + ACTIONS(1911), 33, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1324] = 8, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1889), 1, + sym__block_close, + ACTIONS(1891), 1, + sym__fenced_code_block_end_tilde, + STATE(823), 1, + sym_code_fence_content, + STATE(532), 2, + sym__word, + aux_sym__line_repeat1, + STATE(433), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1386] = 8, + ACTIONS(1857), 1, + sym__line_ending, + ACTIONS(1885), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + sym__block_close, + ACTIONS(1929), 1, + sym__fenced_code_block_end_backtick, + STATE(877), 1, + sym_code_fence_content, + STATE(540), 2, + sym__word, + aux_sym__line_repeat1, + STATE(426), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1887), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1448] = 7, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1931), 1, + sym__line_ending, + ACTIONS(1923), 2, + sym_entity_reference, + sym_numeric_character_reference, + STATE(504), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(1909), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(384), 3, + sym_backslash_escape, + sym__line, + aux_sym_info_string_repeat1, + ACTIONS(1911), 33, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1508] = 8, + ACTIONS(1857), 1, + sym__line_ending, + ACTIONS(1877), 1, + sym__block_close, + ACTIONS(1879), 1, + sym__fenced_code_block_end_backtick, + ACTIONS(1885), 1, + anon_sym_LBRACK, + STATE(849), 1, + sym_code_fence_content, + STATE(540), 2, + sym__word, + aux_sym__line_repeat1, + STATE(426), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1887), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1570] = 6, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(1867), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1871), 4, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__whitespace, + STATE(398), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(1865), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [1628] = 9, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1788), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(1935), 1, + sym__eof, + STATE(338), 1, + sym__newline, + STATE(427), 1, + aux_sym_paragraph_repeat1, + STATE(528), 2, + sym__word, + aux_sym__line_repeat1, + STATE(637), 2, + sym__soft_line_break, + sym__line, + ACTIONS(7), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1692] = 8, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1915), 1, + sym__block_close, + ACTIONS(1917), 1, + sym__fenced_code_block_end_tilde, + STATE(827), 1, + sym_code_fence_content, + STATE(532), 2, + sym__word, + aux_sym__line_repeat1, + STATE(433), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1754] = 9, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1788), 1, + anon_sym_LBRACK, + ACTIONS(1937), 1, + sym__line_ending, + ACTIONS(1939), 1, + sym__eof, + STATE(123), 1, + sym__newline, + STATE(427), 1, + aux_sym_paragraph_repeat1, + STATE(528), 2, + sym__word, + aux_sym__line_repeat1, + STATE(637), 2, + sym__soft_line_break, + sym__line, + ACTIONS(7), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1818] = 7, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(1931), 1, + sym__line_ending, + ACTIONS(1941), 2, + sym_entity_reference, + sym_numeric_character_reference, + STATE(504), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(1909), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(388), 3, + sym_backslash_escape, + sym__line, + aux_sym_info_string_repeat1, + ACTIONS(1911), 33, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [1878] = 6, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(1945), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1947), 4, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__whitespace, + STATE(404), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(1943), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [1936] = 9, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1788), 1, + anon_sym_LBRACK, + ACTIONS(1949), 1, + sym__line_ending, + ACTIONS(1951), 1, + sym__eof, + STATE(112), 1, + sym__newline, + STATE(427), 1, + aux_sym_paragraph_repeat1, + STATE(528), 2, + sym__word, + aux_sym__line_repeat1, + STATE(637), 2, + sym__soft_line_break, + sym__line, + ACTIONS(7), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2000] = 8, + ACTIONS(1857), 1, + sym__line_ending, + ACTIONS(1885), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + sym__block_close, + ACTIONS(1955), 1, + sym__fenced_code_block_end_backtick, + STATE(853), 1, + sym_code_fence_content, + STATE(540), 2, + sym__word, + aux_sym__line_repeat1, + STATE(426), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1887), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2062] = 8, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + sym__block_close, + ACTIONS(1955), 1, + sym__fenced_code_block_end_tilde, + STATE(855), 1, + sym_code_fence_content, + STATE(532), 2, + sym__word, + aux_sym__line_repeat1, + STATE(433), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2124] = 8, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1957), 1, + sym__block_close, + ACTIONS(1959), 1, + sym__fenced_code_block_end_tilde, + STATE(839), 1, + sym_code_fence_content, + STATE(532), 2, + sym__word, + aux_sym__line_repeat1, + STATE(433), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2186] = 9, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1788), 1, + anon_sym_LBRACK, + ACTIONS(1961), 1, + sym__line_ending, + ACTIONS(1963), 1, + sym__eof, + STATE(135), 1, + sym__newline, + STATE(427), 1, + aux_sym_paragraph_repeat1, + STATE(528), 2, + sym__word, + aux_sym__line_repeat1, + STATE(637), 2, + sym__soft_line_break, + sym__line, + ACTIONS(7), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2250] = 6, + ACTIONS(1965), 1, + sym__backslash_escape, + ACTIONS(1974), 1, + anon_sym_LPAREN, + ACTIONS(1971), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1977), 4, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__whitespace, + STATE(404), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(1968), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [2308] = 6, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(1945), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1979), 4, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__whitespace, + STATE(404), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(1943), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [2366] = 9, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1788), 1, + anon_sym_LBRACK, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(1983), 1, + sym__eof, + STATE(345), 1, + sym__newline, + STATE(427), 1, + aux_sym_paragraph_repeat1, + STATE(528), 2, + sym__word, + aux_sym__line_repeat1, + STATE(637), 2, + sym__soft_line_break, + sym__line, + ACTIONS(7), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2430] = 8, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1927), 1, + sym__block_close, + ACTIONS(1929), 1, + sym__fenced_code_block_end_tilde, + STATE(864), 1, + sym_code_fence_content, + STATE(532), 2, + sym__word, + aux_sym__line_repeat1, + STATE(433), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2492] = 8, + ACTIONS(1857), 1, + sym__line_ending, + ACTIONS(1885), 1, + anon_sym_LBRACK, + ACTIONS(1957), 1, + sym__block_close, + ACTIONS(1959), 1, + sym__fenced_code_block_end_backtick, + STATE(837), 1, + sym_code_fence_content, + STATE(540), 2, + sym__word, + aux_sym__line_repeat1, + STATE(426), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1887), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2554] = 9, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1788), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + sym__line_ending, + ACTIONS(1987), 1, + sym__eof, + STATE(139), 1, + sym__newline, + STATE(427), 1, + aux_sym_paragraph_repeat1, + STATE(528), 2, + sym__word, + aux_sym__line_repeat1, + STATE(637), 2, + sym__soft_line_break, + sym__line, + ACTIONS(7), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2618] = 6, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(1991), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1947), 4, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__whitespace, + STATE(405), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(1989), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [2676] = 7, + ACTIONS(1997), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(1999), 1, + sym__line_ending, + ACTIONS(2001), 1, + sym__block_close, + ACTIONS(1993), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + STATE(513), 2, + sym__word, + aux_sym__line_repeat1, + STATE(431), 3, + sym__newline, + sym__line, + aux_sym__html_block_5_repeat1, + ACTIONS(1995), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2735] = 11, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2011), 1, + sym__whitespace, + ACTIONS(2013), 1, + sym__soft_line_ending, + STATE(494), 1, + sym__soft_line_break, + STATE(698), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [2802] = 7, + ACTIONS(2019), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2021), 1, + sym__line_ending, + ACTIONS(2023), 1, + sym__block_close, + ACTIONS(2015), 2, + anon_sym_LBRACK, + anon_sym_DASH, + STATE(514), 2, + sym__word, + aux_sym__line_repeat1, + STATE(421), 3, + sym__newline, + sym__line, + aux_sym__html_block_2_repeat1, + ACTIONS(2017), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2861] = 7, + ACTIONS(1997), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(1999), 1, + sym__line_ending, + ACTIONS(2025), 1, + sym__block_close, + ACTIONS(1993), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + STATE(513), 2, + sym__word, + aux_sym__line_repeat1, + STATE(431), 3, + sym__newline, + sym__line, + aux_sym__html_block_5_repeat1, + ACTIONS(1995), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2920] = 7, + ACTIONS(2027), 1, + anon_sym_LBRACK, + ACTIONS(2031), 1, + sym__line_ending, + ACTIONS(2033), 1, + sym__block_close, + ACTIONS(2035), 1, + sym__html_block_1_end, + STATE(535), 2, + sym__word, + aux_sym__line_repeat1, + STATE(423), 3, + sym__newline, + sym__line, + aux_sym__html_block_1_repeat1, + ACTIONS(2029), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [2979] = 11, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2013), 1, + sym__soft_line_ending, + ACTIONS(2037), 1, + sym__whitespace, + STATE(503), 1, + sym__soft_line_break, + STATE(696), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [3046] = 6, + ACTIONS(2039), 1, + anon_sym_LBRACK, + ACTIONS(2045), 1, + sym__line_ending, + ACTIONS(2048), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(540), 2, + sym__word, + aux_sym__line_repeat1, + STATE(417), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(2042), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3103] = 11, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2013), 1, + sym__soft_line_ending, + ACTIONS(2050), 1, + sym__whitespace, + STATE(509), 1, + sym__soft_line_break, + STATE(700), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [3170] = 7, + ACTIONS(2056), 1, + anon_sym_QMARK_GT, + ACTIONS(2058), 1, + sym__line_ending, + ACTIONS(2060), 1, + sym__block_close, + ACTIONS(2052), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + STATE(542), 2, + sym__word, + aux_sym__line_repeat1, + STATE(424), 3, + sym__newline, + sym__line, + aux_sym__html_block_3_repeat1, + ACTIONS(2054), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3229] = 7, + ACTIONS(2062), 1, + anon_sym_LBRACK, + ACTIONS(2068), 1, + sym__line_ending, + ACTIONS(2071), 1, + sym__block_close, + ACTIONS(2073), 1, + sym__html_block_1_end, + STATE(535), 2, + sym__word, + aux_sym__line_repeat1, + STATE(420), 3, + sym__newline, + sym__line, + aux_sym__html_block_1_repeat1, + ACTIONS(2065), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3288] = 7, + ACTIONS(2019), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2021), 1, + sym__line_ending, + ACTIONS(2076), 1, + sym__block_close, + ACTIONS(2015), 2, + anon_sym_LBRACK, + anon_sym_DASH, + STATE(514), 2, + sym__word, + aux_sym__line_repeat1, + STATE(422), 3, + sym__newline, + sym__line, + aux_sym__html_block_2_repeat1, + ACTIONS(2017), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3347] = 7, + ACTIONS(2084), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2087), 1, + sym__line_ending, + ACTIONS(2090), 1, + sym__block_close, + ACTIONS(2078), 2, + anon_sym_LBRACK, + anon_sym_DASH, + STATE(514), 2, + sym__word, + aux_sym__line_repeat1, + STATE(422), 3, + sym__newline, + sym__line, + aux_sym__html_block_2_repeat1, + ACTIONS(2081), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3406] = 7, + ACTIONS(2027), 1, + anon_sym_LBRACK, + ACTIONS(2031), 1, + sym__line_ending, + ACTIONS(2035), 1, + sym__html_block_1_end, + ACTIONS(2092), 1, + sym__block_close, + STATE(535), 2, + sym__word, + aux_sym__line_repeat1, + STATE(420), 3, + sym__newline, + sym__line, + aux_sym__html_block_1_repeat1, + ACTIONS(2029), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3465] = 7, + ACTIONS(2100), 1, + anon_sym_QMARK_GT, + ACTIONS(2103), 1, + sym__line_ending, + ACTIONS(2106), 1, + sym__block_close, + ACTIONS(2094), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + STATE(542), 2, + sym__word, + aux_sym__line_repeat1, + STATE(424), 3, + sym__newline, + sym__line, + aux_sym__html_block_3_repeat1, + ACTIONS(2097), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3524] = 10, + ACTIONS(2114), 1, + anon_sym_PIPE, + ACTIONS(2116), 1, + sym__whitespace, + STATE(470), 1, + aux_sym_pipe_table_row_repeat1, + STATE(493), 1, + sym__word, + STATE(755), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym_pipe_table_row, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2118), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [3589] = 6, + ACTIONS(1857), 1, + sym__line_ending, + ACTIONS(1885), 1, + anon_sym_LBRACK, + ACTIONS(2120), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(540), 2, + sym__word, + aux_sym__line_repeat1, + STATE(417), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1887), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3646] = 7, + ACTIONS(2122), 1, + anon_sym_LBRACK, + ACTIONS(2130), 1, + sym__soft_line_ending, + STATE(427), 1, + aux_sym_paragraph_repeat1, + ACTIONS(2128), 2, + sym__line_ending, + sym__eof, + STATE(528), 2, + sym__word, + aux_sym__line_repeat1, + STATE(637), 2, + sym__soft_line_break, + sym__line, + ACTIONS(2125), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3705] = 11, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2013), 1, + sym__soft_line_ending, + ACTIONS(2133), 1, + sym__whitespace, + STATE(487), 1, + sym__soft_line_break, + STATE(684), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [3772] = 7, + ACTIONS(2027), 1, + anon_sym_LBRACK, + ACTIONS(2031), 1, + sym__line_ending, + ACTIONS(2035), 1, + sym__html_block_1_end, + ACTIONS(2135), 1, + sym__block_close, + STATE(535), 2, + sym__word, + aux_sym__line_repeat1, + STATE(420), 3, + sym__newline, + sym__line, + aux_sym__html_block_1_repeat1, + ACTIONS(2029), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3831] = 7, + ACTIONS(1828), 1, + sym__backslash_escape, + ACTIONS(2141), 1, + anon_sym_DQUOTE, + ACTIONS(2143), 1, + sym__soft_line_ending, + STATE(558), 1, + sym__soft_line_break, + ACTIONS(2139), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(447), 3, + sym_backslash_escape, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(2137), 34, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3890] = 7, + ACTIONS(2151), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2154), 1, + sym__line_ending, + ACTIONS(2157), 1, + sym__block_close, + ACTIONS(2145), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + STATE(513), 2, + sym__word, + aux_sym__line_repeat1, + STATE(431), 3, + sym__newline, + sym__line, + aux_sym__html_block_5_repeat1, + ACTIONS(2148), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [3949] = 7, + ACTIONS(1828), 1, + sym__backslash_escape, + ACTIONS(2141), 1, + anon_sym_SQUOTE, + ACTIONS(2143), 1, + sym__soft_line_ending, + STATE(559), 1, + sym__soft_line_break, + ACTIONS(2161), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(446), 3, + sym_backslash_escape, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(2159), 34, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4008] = 6, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(2120), 2, + sym__block_close, + sym__fenced_code_block_end_tilde, + STATE(532), 2, + sym__word, + aux_sym__line_repeat1, + STATE(441), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4065] = 7, + ACTIONS(2019), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2021), 1, + sym__line_ending, + ACTIONS(2163), 1, + sym__block_close, + ACTIONS(2015), 2, + anon_sym_LBRACK, + anon_sym_DASH, + STATE(514), 2, + sym__word, + aux_sym__line_repeat1, + STATE(422), 3, + sym__newline, + sym__line, + aux_sym__html_block_2_repeat1, + ACTIONS(2017), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4124] = 6, + ACTIONS(2165), 1, + sym__backslash_escape, + ACTIONS(2171), 1, + anon_sym_RBRACK, + ACTIONS(2176), 1, + sym__soft_line_ending, + ACTIONS(2173), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(435), 5, + sym_backslash_escape, + sym__text_inline_no_link, + sym__soft_line_break, + sym__word, + aux_sym_link_label_repeat1, + ACTIONS(2168), 34, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4181] = 7, + ACTIONS(1828), 1, + sym__backslash_escape, + ACTIONS(2143), 1, + sym__soft_line_ending, + ACTIONS(2183), 1, + anon_sym_DQUOTE, + STATE(558), 1, + sym__soft_line_break, + ACTIONS(2181), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(430), 3, + sym_backslash_escape, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(2179), 34, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4240] = 7, + ACTIONS(2027), 1, + anon_sym_LBRACK, + ACTIONS(2031), 1, + sym__line_ending, + ACTIONS(2035), 1, + sym__html_block_1_end, + ACTIONS(2185), 1, + sym__block_close, + STATE(535), 2, + sym__word, + aux_sym__line_repeat1, + STATE(429), 3, + sym__newline, + sym__line, + aux_sym__html_block_1_repeat1, + ACTIONS(2029), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4299] = 7, + ACTIONS(2056), 1, + anon_sym_QMARK_GT, + ACTIONS(2058), 1, + sym__line_ending, + ACTIONS(2187), 1, + sym__block_close, + ACTIONS(2052), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + STATE(542), 2, + sym__word, + aux_sym__line_repeat1, + STATE(419), 3, + sym__newline, + sym__line, + aux_sym__html_block_3_repeat1, + ACTIONS(2054), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4358] = 7, + ACTIONS(2019), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(2021), 1, + sym__line_ending, + ACTIONS(2189), 1, + sym__block_close, + ACTIONS(2015), 2, + anon_sym_LBRACK, + anon_sym_DASH, + STATE(514), 2, + sym__word, + aux_sym__line_repeat1, + STATE(434), 3, + sym__newline, + sym__line, + aux_sym__html_block_2_repeat1, + ACTIONS(2017), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4417] = 2, + ACTIONS(1706), 1, + anon_sym_LBRACK, + ACTIONS(1708), 43, + sym__soft_line_ending, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + ts_builtin_sym_end, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4466] = 6, + ACTIONS(2191), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + sym__line_ending, + ACTIONS(2048), 2, + sym__block_close, + sym__fenced_code_block_end_tilde, + STATE(532), 2, + sym__word, + aux_sym__line_repeat1, + STATE(441), 3, + sym__newline, + sym__line, + aux_sym_code_fence_content_repeat1, + ACTIONS(2194), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4523] = 7, + ACTIONS(2056), 1, + anon_sym_QMARK_GT, + ACTIONS(2058), 1, + sym__line_ending, + ACTIONS(2200), 1, + sym__block_close, + ACTIONS(2052), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + STATE(542), 2, + sym__word, + aux_sym__line_repeat1, + STATE(448), 3, + sym__newline, + sym__line, + aux_sym__html_block_3_repeat1, + ACTIONS(2054), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4582] = 7, + ACTIONS(1828), 1, + sym__backslash_escape, + ACTIONS(2143), 1, + sym__soft_line_ending, + ACTIONS(2183), 1, + anon_sym_SQUOTE, + STATE(559), 1, + sym__soft_line_break, + ACTIONS(2204), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(432), 3, + sym_backslash_escape, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(2202), 34, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4641] = 7, + ACTIONS(1997), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(1999), 1, + sym__line_ending, + ACTIONS(2206), 1, + sym__block_close, + ACTIONS(1993), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + STATE(513), 2, + sym__word, + aux_sym__line_repeat1, + STATE(414), 3, + sym__newline, + sym__line, + aux_sym__html_block_5_repeat1, + ACTIONS(1995), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4700] = 6, + ACTIONS(1828), 1, + sym__backslash_escape, + ACTIONS(2143), 1, + sym__soft_line_ending, + ACTIONS(2210), 1, + anon_sym_RBRACK, + ACTIONS(2212), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(435), 5, + sym_backslash_escape, + sym__text_inline_no_link, + sym__soft_line_break, + sym__word, + aux_sym_link_label_repeat1, + ACTIONS(2208), 34, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4757] = 7, + ACTIONS(2214), 1, + sym__backslash_escape, + ACTIONS(2223), 1, + anon_sym_SQUOTE, + ACTIONS(2225), 1, + sym__soft_line_ending, + STATE(559), 1, + sym__soft_line_break, + ACTIONS(2220), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(446), 3, + sym_backslash_escape, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(2217), 34, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4816] = 7, + ACTIONS(2228), 1, + sym__backslash_escape, + ACTIONS(2237), 1, + anon_sym_DQUOTE, + ACTIONS(2239), 1, + sym__soft_line_ending, + STATE(558), 1, + sym__soft_line_break, + ACTIONS(2234), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(447), 3, + sym_backslash_escape, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(2231), 34, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4875] = 7, + ACTIONS(2056), 1, + anon_sym_QMARK_GT, + ACTIONS(2058), 1, + sym__line_ending, + ACTIONS(2242), 1, + sym__block_close, + ACTIONS(2052), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + STATE(542), 2, + sym__word, + aux_sym__line_repeat1, + STATE(424), 3, + sym__newline, + sym__line, + aux_sym__html_block_3_repeat1, + ACTIONS(2054), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4934] = 7, + ACTIONS(1997), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(1999), 1, + sym__line_ending, + ACTIONS(2244), 1, + sym__block_close, + ACTIONS(1993), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + STATE(513), 2, + sym__word, + aux_sym__line_repeat1, + STATE(411), 3, + sym__newline, + sym__line, + aux_sym__html_block_5_repeat1, + ACTIONS(1995), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [4993] = 6, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + sym__line_ending, + ACTIONS(2252), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(469), 3, + sym__newline, + sym__line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5049] = 6, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + sym__line_ending, + ACTIONS(2254), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(450), 3, + sym__newline, + sym__line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5105] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + sym__line_ending, + ACTIONS(2256), 1, + anon_sym_GT, + ACTIONS(2258), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(460), 3, + sym__newline, + sym__line, + aux_sym__html_block_4_repeat1, + ACTIONS(2248), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5163] = 10, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2013), 1, + sym__soft_line_ending, + STATE(500), 1, + sym__soft_line_break, + STATE(690), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [5227] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + sym__line_ending, + ACTIONS(2262), 1, + sym__block_close, + STATE(566), 1, + sym__newline, + STATE(472), 2, + sym__line, + aux_sym__html_block_6_repeat1, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5285] = 6, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + sym__line_ending, + ACTIONS(2264), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(469), 3, + sym__newline, + sym__line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5341] = 10, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2013), 1, + sym__soft_line_ending, + STATE(487), 1, + sym__soft_line_break, + STATE(684), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [5405] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + sym__line_ending, + ACTIONS(2266), 1, + sym__block_close, + STATE(566), 1, + sym__newline, + STATE(484), 2, + sym__line, + aux_sym__html_block_6_repeat1, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5463] = 9, + ACTIONS(2268), 1, + anon_sym_PIPE, + ACTIONS(2270), 1, + sym__whitespace, + STATE(467), 1, + aux_sym_pipe_table_row_repeat1, + STATE(493), 1, + sym__word, + STATE(709), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2272), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [5525] = 7, + ACTIONS(2274), 1, + sym__backslash_escape, + ACTIONS(2283), 1, + anon_sym_RPAREN, + ACTIONS(2285), 1, + sym__soft_line_ending, + STATE(561), 1, + sym__soft_line_break, + ACTIONS(2280), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(459), 3, + sym_backslash_escape, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(2277), 33, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5583] = 7, + ACTIONS(2288), 1, + anon_sym_LBRACK, + ACTIONS(2294), 1, + anon_sym_GT, + ACTIONS(2297), 1, + sym__line_ending, + ACTIONS(2300), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(460), 3, + sym__newline, + sym__line, + aux_sym__html_block_4_repeat1, + ACTIONS(2291), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5641] = 7, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1788), 1, + anon_sym_LBRACK, + STATE(33), 1, + sym_paragraph, + STATE(394), 1, + aux_sym_paragraph_repeat1, + STATE(528), 2, + sym__word, + aux_sym__line_repeat1, + STATE(637), 2, + sym__soft_line_break, + sym__line, + ACTIONS(7), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5699] = 10, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2013), 1, + sym__soft_line_ending, + STATE(503), 1, + sym__soft_line_break, + STATE(696), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [5763] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + sym__line_ending, + ACTIONS(2302), 1, + sym__block_close, + STATE(566), 1, + sym__newline, + STATE(482), 2, + sym__line, + aux_sym__html_block_6_repeat1, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5821] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + sym__line_ending, + ACTIONS(2256), 1, + anon_sym_GT, + ACTIONS(2304), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(452), 3, + sym__newline, + sym__line, + aux_sym__html_block_4_repeat1, + ACTIONS(2248), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5879] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + sym__line_ending, + ACTIONS(2306), 1, + sym__block_close, + STATE(566), 1, + sym__newline, + STATE(468), 2, + sym__line, + aux_sym__html_block_6_repeat1, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [5937] = 10, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2013), 1, + sym__soft_line_ending, + STATE(502), 1, + sym__soft_line_break, + STATE(702), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [6001] = 9, + ACTIONS(2317), 1, + anon_sym_PIPE, + ACTIONS(2320), 1, + sym__whitespace, + STATE(467), 1, + aux_sym_pipe_table_row_repeat1, + STATE(604), 1, + sym__word, + STATE(848), 1, + sym_pipe_table_cell, + ACTIONS(2311), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2323), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2308), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2314), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [6063] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + sym__line_ending, + ACTIONS(2325), 1, + sym__block_close, + STATE(566), 1, + sym__newline, + STATE(477), 2, + sym__line, + aux_sym__html_block_6_repeat1, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6121] = 6, + ACTIONS(2327), 1, + anon_sym_LBRACK, + ACTIONS(2333), 1, + sym__line_ending, + ACTIONS(2336), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(469), 3, + sym__newline, + sym__line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2330), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6177] = 9, + ACTIONS(2268), 1, + anon_sym_PIPE, + ACTIONS(2338), 1, + sym__whitespace, + STATE(467), 1, + aux_sym_pipe_table_row_repeat1, + STATE(493), 1, + sym__word, + STATE(757), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2340), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [6239] = 9, + ACTIONS(2342), 1, + anon_sym_PIPE, + ACTIONS(2344), 1, + sym__whitespace, + STATE(458), 1, + aux_sym_pipe_table_row_repeat1, + STATE(493), 1, + sym__word, + STATE(723), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2323), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [6301] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + sym__line_ending, + ACTIONS(2346), 1, + sym__block_close, + STATE(566), 1, + sym__newline, + STATE(477), 2, + sym__line, + aux_sym__html_block_6_repeat1, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6359] = 9, + ACTIONS(2348), 1, + anon_sym_PIPE, + ACTIONS(2350), 1, + sym__whitespace, + STATE(474), 1, + aux_sym_pipe_table_row_repeat1, + STATE(493), 1, + sym__word, + STATE(757), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2352), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [6421] = 9, + ACTIONS(2268), 1, + anon_sym_PIPE, + ACTIONS(2354), 1, + sym__whitespace, + STATE(467), 1, + aux_sym_pipe_table_row_repeat1, + STATE(493), 1, + sym__word, + STATE(723), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2356), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [6483] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + sym__line_ending, + ACTIONS(2256), 1, + anon_sym_GT, + ACTIONS(2358), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(486), 3, + sym__newline, + sym__line, + aux_sym__html_block_4_repeat1, + ACTIONS(2248), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6541] = 6, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + sym__line_ending, + ACTIONS(2360), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(455), 3, + sym__newline, + sym__line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6597] = 7, + ACTIONS(2362), 1, + anon_sym_LBRACK, + ACTIONS(2368), 1, + sym__line_ending, + ACTIONS(2371), 1, + sym__block_close, + STATE(566), 1, + sym__newline, + STATE(477), 2, + sym__line, + aux_sym__html_block_6_repeat1, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2365), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6655] = 5, + ACTIONS(1843), 1, + sym__backslash_escape, + ACTIONS(2375), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(481), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(2377), 4, + sym__line_ending, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym__whitespace, + ACTIONS(2373), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [6709] = 7, + ACTIONS(1828), 1, + sym__backslash_escape, + ACTIONS(2141), 1, + anon_sym_RPAREN, + ACTIONS(2143), 1, + sym__soft_line_ending, + STATE(561), 1, + sym__soft_line_break, + ACTIONS(2381), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(459), 3, + sym_backslash_escape, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(2379), 33, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6767] = 7, + ACTIONS(1828), 1, + sym__backslash_escape, + ACTIONS(2143), 1, + sym__soft_line_ending, + ACTIONS(2183), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym__soft_line_break, + ACTIONS(2385), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(479), 3, + sym_backslash_escape, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(2383), 33, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6825] = 5, + ACTIONS(2387), 1, + sym__backslash_escape, + ACTIONS(2393), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(481), 3, + sym_backslash_escape, + sym__word, + aux_sym_language_repeat1, + ACTIONS(2396), 4, + sym__line_ending, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym__whitespace, + ACTIONS(2390), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [6879] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + sym__line_ending, + ACTIONS(2398), 1, + sym__block_close, + STATE(566), 1, + sym__newline, + STATE(477), 2, + sym__line, + aux_sym__html_block_6_repeat1, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6937] = 5, + STATE(510), 1, + sym__last_token_punctuation, + ACTIONS(2402), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(491), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2404), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(2400), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [6991] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + sym__line_ending, + ACTIONS(2406), 1, + sym__block_close, + STATE(566), 1, + sym__newline, + STATE(477), 2, + sym__line, + aux_sym__html_block_6_repeat1, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2248), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [7049] = 5, + ACTIONS(1828), 1, + sym__backslash_escape, + ACTIONS(2143), 1, + sym__soft_line_ending, + ACTIONS(2408), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(445), 5, + sym_backslash_escape, + sym__text_inline_no_link, + sym__soft_line_break, + sym__word, + aux_sym_link_label_repeat1, + ACTIONS(1830), 34, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [7103] = 7, + ACTIONS(2246), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + sym__line_ending, + ACTIONS(2256), 1, + anon_sym_GT, + ACTIONS(2410), 1, + sym__block_close, + STATE(595), 2, + sym__word, + aux_sym__line_repeat1, + STATE(460), 3, + sym__newline, + sym__line, + aux_sym__html_block_4_repeat1, + ACTIONS(2248), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [7161] = 9, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2412), 1, + sym__whitespace, + STATE(702), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [7222] = 5, + ACTIONS(2414), 1, + sym__backslash_escape, + ACTIONS(2420), 1, + anon_sym_GT, + ACTIONS(2418), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(506), 4, + sym_backslash_escape, + sym__text_no_angle, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(2416), 33, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [7275] = 6, + ACTIONS(2414), 1, + sym__backslash_escape, + ACTIONS(2426), 1, + anon_sym_LPAREN, + ACTIONS(2428), 1, + anon_sym_RPAREN, + ACTIONS(2424), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(508), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(2422), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [7330] = 6, + ACTIONS(1977), 1, + anon_sym_RPAREN, + ACTIONS(2430), 1, + sym__backslash_escape, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2436), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(490), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(2433), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [7385] = 4, + ACTIONS(2444), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(495), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2446), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(2442), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [7436] = 5, + ACTIONS(2448), 1, + sym__backslash_escape, + ACTIONS(2457), 1, + anon_sym_GT, + ACTIONS(2454), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(492), 4, + sym_backslash_escape, + sym__text_no_angle, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(2451), 33, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [7489] = 4, + ACTIONS(2402), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(491), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2404), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(2400), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [7540] = 9, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2459), 1, + sym__whitespace, + STATE(696), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [7601] = 4, + ACTIONS(2464), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(495), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2467), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(2461), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [7652] = 6, + ACTIONS(2414), 1, + sym__backslash_escape, + ACTIONS(2426), 1, + anon_sym_LPAREN, + ACTIONS(2473), 1, + anon_sym_RPAREN, + ACTIONS(2471), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(498), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(2469), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [7707] = 8, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + sym__whitespace, + STATE(493), 1, + sym__word, + STATE(750), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2479), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [7766] = 6, + ACTIONS(2414), 1, + sym__backslash_escape, + ACTIONS(2426), 1, + anon_sym_LPAREN, + ACTIONS(2485), 1, + anon_sym_RPAREN, + ACTIONS(2483), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(490), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(2481), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [7821] = 8, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + sym__whitespace, + STATE(493), 1, + sym__word, + STATE(729), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2356), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [7880] = 9, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2487), 1, + sym__whitespace, + STATE(686), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [7941] = 4, + STATE(501), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2491), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2489), 4, + sym__line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + ACTIONS(2494), 33, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [7992] = 9, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2497), 1, + sym__whitespace, + STATE(677), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [8053] = 9, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2499), 1, + sym__whitespace, + STATE(690), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [8114] = 4, + STATE(501), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2503), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2501), 4, + sym__line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + ACTIONS(2505), 33, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8165] = 8, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + sym__whitespace, + STATE(493), 1, + sym__word, + STATE(710), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2272), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [8224] = 5, + ACTIONS(2414), 1, + sym__backslash_escape, + ACTIONS(2511), 1, + anon_sym_GT, + ACTIONS(2509), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(492), 4, + sym_backslash_escape, + sym__text_no_angle, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(2507), 33, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8277] = 4, + ACTIONS(2444), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(495), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2513), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(2442), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8328] = 6, + ACTIONS(2414), 1, + sym__backslash_escape, + ACTIONS(2426), 1, + anon_sym_LPAREN, + ACTIONS(2515), 1, + anon_sym_RPAREN, + ACTIONS(2483), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(490), 4, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(2481), 32, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [8383] = 9, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + ACTIONS(2517), 1, + sym__whitespace, + STATE(684), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [8444] = 4, + ACTIONS(2521), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(507), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2446), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(2519), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8495] = 8, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + STATE(686), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [8553] = 9, + ACTIONS(2340), 1, + sym__line_ending, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2531), 1, + sym__whitespace, + STATE(537), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__word, + STATE(809), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [8613] = 4, + ACTIONS(2533), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + STATE(556), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2501), 3, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2535), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8663] = 4, + ACTIONS(2537), 2, + anon_sym_LBRACK, + anon_sym_DASH, + STATE(544), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2501), 3, + sym__line_ending, + sym__block_close, + anon_sym_DASH_DASH_GT, + ACTIONS(2539), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8713] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(246), 1, + sym__newline, + STATE(822), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8767] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(254), 1, + sym__newline, + STATE(819), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8821] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(253), 1, + sym__newline, + STATE(820), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8875] = 3, + ACTIONS(2545), 1, + sym_block_continuation, + ACTIONS(1187), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1189), 37, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8923] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(252), 1, + sym__newline, + STATE(821), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [8977] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(256), 1, + sym__newline, + STATE(817), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9031] = 4, + ACTIONS(2547), 1, + anon_sym_LBRACK, + STATE(521), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2489), 3, + sym__line_ending, + sym__block_close, + sym__html_block_1_end, + ACTIONS(2550), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9081] = 4, + ACTIONS(2553), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + STATE(522), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2489), 3, + sym__line_ending, + sym__block_close, + anon_sym_QMARK_GT, + ACTIONS(2556), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9131] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(259), 1, + sym__newline, + STATE(857), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9185] = 3, + ACTIONS(2563), 1, + sym_block_continuation, + ACTIONS(2561), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2559), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9233] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(260), 1, + sym__newline, + STATE(861), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9287] = 4, + ACTIONS(2565), 1, + anon_sym_LBRACK, + STATE(526), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2489), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(2568), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9337] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(262), 1, + sym__newline, + STATE(862), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9391] = 4, + ACTIONS(2571), 1, + anon_sym_LBRACK, + STATE(526), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2501), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(2573), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9441] = 9, + ACTIONS(2272), 1, + sym__line_ending, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2575), 1, + sym__whitespace, + STATE(537), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__word, + STATE(805), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [9501] = 4, + ACTIONS(2577), 1, + anon_sym_LBRACK, + STATE(530), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2489), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2580), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9551] = 8, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + STATE(690), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [9609] = 4, + ACTIONS(2583), 1, + anon_sym_LBRACK, + STATE(530), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2501), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2585), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9659] = 4, + ACTIONS(2587), 1, + anon_sym_LBRACK, + STATE(533), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2489), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(2590), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9709] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(265), 1, + sym__newline, + STATE(863), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9763] = 4, + ACTIONS(2593), 1, + anon_sym_LBRACK, + STATE(521), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2501), 3, + sym__line_ending, + sym__block_close, + sym__html_block_1_end, + ACTIONS(2595), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9813] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(269), 1, + sym__newline, + STATE(867), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9867] = 9, + ACTIONS(2323), 1, + sym__line_ending, + ACTIONS(2597), 1, + anon_sym_PIPE, + ACTIONS(2600), 1, + sym__whitespace, + STATE(537), 1, + aux_sym_pipe_table_row_repeat1, + STATE(604), 1, + sym__word, + STATE(845), 1, + sym_pipe_table_cell, + ACTIONS(2311), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2308), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2314), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [9927] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(274), 1, + sym__newline, + STATE(868), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [9981] = 4, + STATE(539), 1, + aux_sym_info_string_repeat2, + ACTIONS(2607), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(2605), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2603), 35, + sym__line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10031] = 4, + ACTIONS(2610), 1, + anon_sym_LBRACK, + STATE(533), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2501), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(2612), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10081] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2541), 1, + anon_sym_LBRACK, + STATE(255), 1, + sym__newline, + STATE(818), 1, + sym__line, + STATE(597), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2543), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10135] = 4, + ACTIONS(2614), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + STATE(522), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2501), 3, + sym__line_ending, + sym__block_close, + anon_sym_QMARK_GT, + ACTIONS(2616), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10185] = 9, + ACTIONS(2352), 1, + sym__line_ending, + ACTIONS(2618), 1, + anon_sym_PIPE, + ACTIONS(2620), 1, + sym__whitespace, + STATE(549), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__word, + STATE(809), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [10245] = 4, + ACTIONS(2622), 2, + anon_sym_LBRACK, + anon_sym_DASH, + STATE(544), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2489), 3, + sym__line_ending, + sym__block_close, + anon_sym_DASH_DASH_GT, + ACTIONS(2625), 34, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10295] = 8, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + STATE(677), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [10353] = 9, + ACTIONS(2628), 1, + anon_sym_PIPE, + ACTIONS(2630), 1, + sym__whitespace, + STATE(512), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__word, + STATE(790), 1, + sym_pipe_table_cell, + STATE(844), 1, + sym_pipe_table_row, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [10413] = 9, + ACTIONS(2323), 1, + sym__line_ending, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + sym__whitespace, + STATE(529), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__word, + STATE(802), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [10473] = 2, + ACTIONS(2638), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2636), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10519] = 9, + ACTIONS(2356), 1, + sym__line_ending, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2640), 1, + sym__whitespace, + STATE(537), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__word, + STATE(802), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [10579] = 2, + ACTIONS(2642), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1977), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10625] = 9, + ACTIONS(2628), 1, + anon_sym_PIPE, + ACTIONS(2630), 1, + sym__whitespace, + STATE(512), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__word, + STATE(790), 1, + sym_pipe_table_cell, + STATE(816), 1, + sym_pipe_table_row, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [10685] = 5, + STATE(569), 1, + sym__last_token_punctuation, + ACTIONS(2404), 2, + sym__line_ending, + anon_sym_PIPE, + ACTIONS(2646), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(563), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2644), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10737] = 8, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + STATE(703), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [10795] = 2, + ACTIONS(2650), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2648), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10841] = 8, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + STATE(702), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [10899] = 4, + ACTIONS(2652), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + STATE(556), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2489), 3, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2655), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [10949] = 8, + ACTIONS(1863), 1, + sym__backslash_escape, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(2009), 1, + anon_sym_LT, + STATE(680), 1, + sym_link_destination, + ACTIONS(2005), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(393), 3, + sym_backslash_escape, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(2003), 5, + sym_entity_reference, + sym_numeric_character_reference, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2007), 26, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [11007] = 4, + ACTIONS(2662), 1, + sym__soft_line_ending, + STATE(904), 1, + sym__soft_line_break, + ACTIONS(2660), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2658), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11057] = 4, + ACTIONS(2669), 1, + sym__soft_line_ending, + STATE(907), 1, + sym__soft_line_break, + ACTIONS(2667), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2665), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11107] = 2, + ACTIONS(2674), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2672), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11153] = 4, + ACTIONS(2680), 1, + sym__soft_line_ending, + STATE(916), 1, + sym__soft_line_break, + ACTIONS(2678), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2676), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11202] = 2, + ACTIONS(2685), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2683), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11247] = 4, + ACTIONS(2446), 2, + sym__line_ending, + anon_sym_PIPE, + ACTIONS(2689), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(589), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2687), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11296] = 4, + ACTIONS(2691), 1, + anon_sym_LBRACK, + ACTIONS(2489), 2, + sym__line_ending, + sym__block_close, + STATE(564), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2694), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11345] = 4, + ACTIONS(2404), 2, + sym__line_ending, + anon_sym_PIPE, + ACTIONS(2646), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(563), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2644), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11394] = 4, + ACTIONS(1378), 1, + sym__blank_line_start, + ACTIONS(2697), 1, + anon_sym_LBRACK, + STATE(881), 1, + sym__blank_line, + ACTIONS(2699), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11443] = 2, + ACTIONS(2701), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2237), 37, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11488] = 4, + ACTIONS(1832), 1, + anon_sym_LBRACK, + ACTIONS(2703), 1, + sym__close_block, + STATE(648), 1, + sym__last_token_punctuation, + ACTIONS(1826), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11537] = 4, + ACTIONS(2446), 2, + sym__line_ending, + anon_sym_PIPE, + ACTIONS(2707), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(588), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2705), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11586] = 2, + ACTIONS(2709), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2223), 37, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11631] = 2, + ACTIONS(2713), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2711), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11676] = 2, + ACTIONS(2715), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2396), 37, + sym__line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11721] = 3, + ACTIONS(2717), 1, + sym_block_continuation, + ACTIONS(1131), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(1133), 37, + sym__line_ending, + sym__block_close, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11768] = 2, + ACTIONS(2719), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2489), 37, + sym__line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11813] = 2, + ACTIONS(2723), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2721), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11858] = 8, + ACTIONS(2356), 1, + sym__line_ending, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(2727), 1, + sym__whitespace, + STATE(565), 1, + sym__word, + STATE(801), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [11915] = 2, + ACTIONS(2729), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2467), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [11960] = 3, + ACTIONS(1187), 1, + anon_sym_LBRACK, + ACTIONS(2731), 1, + sym_block_continuation, + ACTIONS(1189), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12007] = 2, + ACTIONS(2735), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2733), 37, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12052] = 8, + ACTIONS(2479), 1, + sym__line_ending, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(2727), 1, + sym__whitespace, + STATE(565), 1, + sym__word, + STATE(804), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [12109] = 2, + ACTIONS(2739), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2737), 37, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12154] = 5, + ACTIONS(2404), 1, + anon_sym_PIPE, + STATE(603), 1, + sym__last_token_punctuation, + ACTIONS(2743), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(602), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2741), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12205] = 3, + ACTIONS(1131), 1, + anon_sym_LBRACK, + ACTIONS(2745), 1, + sym_block_continuation, + ACTIONS(1133), 38, + sym__line_ending, + sym__block_close, + sym__blank_line_start, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12252] = 3, + ACTIONS(2747), 1, + sym_block_continuation, + ACTIONS(1131), 2, + anon_sym_LBRACK, + anon_sym_DASH, + ACTIONS(1133), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12299] = 8, + ACTIONS(2272), 1, + sym__line_ending, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(2727), 1, + sym__whitespace, + STATE(565), 1, + sym__word, + STATE(806), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [12356] = 3, + ACTIONS(1131), 1, + anon_sym_LBRACK, + ACTIONS(2749), 1, + sym_block_continuation, + ACTIONS(1133), 38, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12403] = 2, + ACTIONS(2674), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2672), 37, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12448] = 4, + ACTIONS(2513), 2, + sym__line_ending, + anon_sym_PIPE, + ACTIONS(2689), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(589), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2687), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12497] = 4, + ACTIONS(2467), 2, + sym__line_ending, + anon_sym_PIPE, + ACTIONS(2754), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(589), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2751), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12546] = 3, + ACTIONS(1131), 1, + anon_sym_LBRACK, + ACTIONS(2757), 1, + sym_block_continuation, + ACTIONS(1133), 38, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12593] = 2, + ACTIONS(2674), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2672), 37, + sym__line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12638] = 3, + ACTIONS(2759), 1, + sym_block_continuation, + ACTIONS(1131), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(1133), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12685] = 2, + ACTIONS(1316), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1318), 37, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12730] = 2, + ACTIONS(2761), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2323), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12775] = 4, + ACTIONS(2763), 1, + anon_sym_LBRACK, + ACTIONS(2501), 2, + sym__line_ending, + sym__block_close, + STATE(564), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2765), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12824] = 3, + ACTIONS(1131), 1, + anon_sym_LBRACK, + ACTIONS(2767), 1, + sym_block_continuation, + ACTIONS(1133), 38, + sym__line_ending, + sym__block_close, + sym__html_block_1_end, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12871] = 4, + ACTIONS(2501), 1, + sym__line_ending, + ACTIONS(2769), 1, + anon_sym_LBRACK, + STATE(633), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2771), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12919] = 2, + ACTIONS(2775), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2773), 37, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [12963] = 7, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + sym__whitespace, + STATE(493), 1, + sym__word, + STATE(729), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [13017] = 2, + ACTIONS(2777), 1, + anon_sym_LBRACK, + ACTIONS(2071), 38, + sym__line_ending, + sym__block_close, + sym__html_block_1_end, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13061] = 7, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(2727), 1, + sym__whitespace, + STATE(565), 1, + sym__word, + STATE(806), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [13115] = 4, + ACTIONS(2446), 1, + anon_sym_PIPE, + ACTIONS(2781), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(629), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2779), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13163] = 4, + ACTIONS(2446), 1, + anon_sym_PIPE, + ACTIONS(2785), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(630), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2783), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13211] = 4, + ACTIONS(2404), 1, + anon_sym_PIPE, + ACTIONS(2743), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(602), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2741), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13259] = 2, + ACTIONS(2787), 2, + anon_sym_LBRACK, + anon_sym_DASH, + ACTIONS(2090), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13303] = 2, + ACTIONS(2789), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(2106), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13347] = 7, + ACTIONS(2477), 1, + sym__whitespace, + ACTIONS(2791), 1, + anon_sym_PIPE, + STATE(493), 1, + sym__word, + STATE(749), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [13401] = 2, + ACTIONS(2719), 1, + anon_sym_LBRACK, + ACTIONS(2489), 38, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13445] = 2, + ACTIONS(1241), 1, + anon_sym_LBRACK, + ACTIONS(1239), 38, + sym__line_ending, + sym__block_close, + sym__blank_line_start, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13489] = 2, + ACTIONS(2719), 1, + anon_sym_LBRACK, + ACTIONS(2489), 38, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13533] = 3, + ACTIONS(2793), 1, + anon_sym_LBRACK, + ACTIONS(2797), 1, + sym__whitespace, + ACTIONS(2795), 37, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [13579] = 2, + ACTIONS(1241), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(1239), 37, + sym__line_ending, + sym__block_close, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13623] = 7, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(2727), 1, + sym__whitespace, + STATE(604), 1, + sym__word, + STATE(815), 1, + sym_pipe_table_cell, + ACTIONS(2801), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2799), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2803), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [13677] = 3, + ACTIONS(2805), 1, + sym_block_continuation, + ACTIONS(1187), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1189), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13723] = 2, + ACTIONS(1241), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(1239), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13767] = 2, + ACTIONS(2719), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2489), 37, + sym__line_ending, + sym__block_close, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13811] = 3, + ACTIONS(2793), 1, + anon_sym_LBRACK, + ACTIONS(2807), 1, + sym__whitespace, + ACTIONS(2795), 37, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [13857] = 2, + ACTIONS(1241), 2, + anon_sym_LBRACK, + anon_sym_DASH, + ACTIONS(1239), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13901] = 2, + ACTIONS(2719), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + ACTIONS(2489), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13945] = 2, + ACTIONS(2811), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2809), 36, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [13989] = 2, + ACTIONS(2719), 1, + anon_sym_LBRACK, + ACTIONS(2489), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14033] = 2, + ACTIONS(2813), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2157), 37, + sym__line_ending, + sym__block_close, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14077] = 2, + ACTIONS(1241), 1, + anon_sym_LBRACK, + ACTIONS(1239), 38, + sym__line_ending, + sym__block_close, + sym__html_block_1_end, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14121] = 7, + ACTIONS(2727), 1, + sym__whitespace, + ACTIONS(2815), 1, + anon_sym_PIPE, + STATE(565), 1, + sym__word, + STATE(807), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [14175] = 2, + ACTIONS(2719), 2, + anon_sym_LBRACK, + anon_sym_DASH, + ACTIONS(2489), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH_GT, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14219] = 7, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(2727), 1, + sym__whitespace, + STATE(565), 1, + sym__word, + STATE(801), 1, + sym_pipe_table_cell, + ACTIONS(2525), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2523), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2527), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [14273] = 2, + ACTIONS(1241), 1, + anon_sym_LBRACK, + ACTIONS(1239), 38, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14317] = 3, + ACTIONS(1131), 1, + anon_sym_LBRACK, + ACTIONS(2817), 1, + sym_block_continuation, + ACTIONS(1133), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14363] = 4, + ACTIONS(2467), 1, + anon_sym_PIPE, + ACTIONS(2822), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(629), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2819), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14411] = 4, + ACTIONS(2513), 1, + anon_sym_PIPE, + ACTIONS(2781), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(629), 2, + sym__word, + aux_sym_pipe_table_cell_repeat1, + ACTIONS(2779), 34, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14459] = 2, + ACTIONS(2719), 1, + anon_sym_LBRACK, + ACTIONS(2489), 38, + sym__line_ending, + sym__block_close, + sym__html_block_1_end, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14503] = 2, + ACTIONS(2674), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2672), 36, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14547] = 4, + ACTIONS(2489), 1, + sym__line_ending, + ACTIONS(2825), 1, + anon_sym_LBRACK, + STATE(633), 2, + sym__word, + aux_sym__line_repeat1, + ACTIONS(2828), 35, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14595] = 2, + ACTIONS(1241), 1, + anon_sym_LBRACK, + ACTIONS(1239), 38, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14639] = 7, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + sym__whitespace, + STATE(493), 1, + sym__word, + STATE(710), 1, + sym_pipe_table_cell, + ACTIONS(2110), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2108), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2112), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [14693] = 2, + ACTIONS(1316), 1, + anon_sym_LBRACK, + ACTIONS(1318), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14737] = 2, + ACTIONS(2831), 1, + anon_sym_LBRACK, + ACTIONS(2833), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14781] = 2, + ACTIONS(2835), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2283), 36, + sym__soft_line_ending, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14825] = 7, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + sym__whitespace, + STATE(604), 1, + sym__word, + STATE(875), 1, + sym_pipe_table_cell, + ACTIONS(2801), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2799), 4, + sym__backslash_escape, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + ACTIONS(2803), 29, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + [14879] = 2, + ACTIONS(1316), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1318), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [14922] = 2, + ACTIONS(2650), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2648), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [14965] = 2, + ACTIONS(2638), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2636), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [15008] = 2, + ACTIONS(2761), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2323), 36, + sym__line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15051] = 2, + ACTIONS(1241), 1, + anon_sym_LBRACK, + ACTIONS(1239), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15094] = 2, + ACTIONS(2837), 1, + anon_sym_LBRACK, + ACTIONS(2839), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15137] = 2, + ACTIONS(2642), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(1977), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + [15180] = 2, + ACTIONS(2729), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2467), 36, + sym__line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15223] = 2, + ACTIONS(2719), 1, + anon_sym_LBRACK, + ACTIONS(2489), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15266] = 2, + ACTIONS(2843), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(2841), 35, + sym__backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15309] = 2, + ACTIONS(2713), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2711), 36, + sym__line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15352] = 2, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2300), 37, + sym__line_ending, + sym__block_close, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15395] = 2, + ACTIONS(2685), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2683), 36, + sym__line_ending, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15438] = 2, + ACTIONS(2719), 1, + anon_sym_LBRACK, + ACTIONS(2489), 36, + sym__line_ending, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15480] = 2, + ACTIONS(2729), 2, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2467), 35, + sym__backslash_escape, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym__word_token1, + anon_sym_LBRACKx_RBRACK, + aux_sym__word_token2, + sym__whitespace, + [15522] = 7, + ACTIONS(2847), 1, + anon_sym_DASH, + ACTIONS(2849), 1, + anon_sym_COLON, + ACTIONS(2851), 1, + sym__whitespace, + STATE(656), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(661), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(711), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2853), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [15546] = 7, + ACTIONS(2855), 1, + anon_sym_DASH, + ACTIONS(2858), 1, + anon_sym_COLON, + ACTIONS(2861), 1, + sym__whitespace, + STATE(656), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(746), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(824), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2864), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [15570] = 7, + ACTIONS(2847), 1, + anon_sym_DASH, + ACTIONS(2849), 1, + anon_sym_COLON, + ACTIONS(2866), 1, + sym__whitespace, + STATE(656), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(661), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(727), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2868), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [15594] = 7, + ACTIONS(2847), 1, + anon_sym_DASH, + ACTIONS(2849), 1, + anon_sym_COLON, + ACTIONS(2870), 1, + sym__whitespace, + STATE(656), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(661), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(722), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2872), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [15618] = 3, + ACTIONS(2874), 1, + anon_sym_DASH, + STATE(659), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2877), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_COLON, + anon_sym_PIPE, + sym__whitespace, + [15633] = 4, + ACTIONS(2879), 1, + anon_sym_DASH, + ACTIONS(2881), 1, + anon_sym_COLON, + STATE(659), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2883), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + sym__whitespace, + [15650] = 4, + ACTIONS(2879), 1, + anon_sym_DASH, + ACTIONS(2885), 1, + anon_sym_COLON, + STATE(659), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2887), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + sym__whitespace, + [15667] = 8, + ACTIONS(2889), 1, + anon_sym_DASH, + ACTIONS(2891), 1, + anon_sym_COLON, + ACTIONS(2893), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, + sym__whitespace, + STATE(658), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(681), 1, + sym_pipe_table_delimiter_row, + STATE(746), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(824), 1, + sym_pipe_table_delimiter_cell, + [15692] = 8, + ACTIONS(2889), 1, + anon_sym_DASH, + ACTIONS(2891), 1, + anon_sym_COLON, + ACTIONS(2893), 1, + anon_sym_PIPE, + ACTIONS(2895), 1, + sym__whitespace, + STATE(658), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(697), 1, + sym_pipe_table_delimiter_row, + STATE(746), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(824), 1, + sym_pipe_table_delimiter_cell, + [15717] = 7, + ACTIONS(1237), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(683), 1, + sym__soft_line_break, + STATE(718), 1, + sym_link_title, + [15739] = 7, + ACTIONS(1269), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(682), 1, + sym__soft_line_break, + STATE(724), 1, + sym_link_title, + [15761] = 7, + ACTIONS(1264), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(685), 1, + sym__soft_line_break, + STATE(708), 1, + sym_link_title, + [15783] = 7, + ACTIONS(1179), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(706), 1, + sym__soft_line_break, + STATE(732), 1, + sym_link_title, + [15805] = 7, + ACTIONS(1276), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(695), 1, + sym__soft_line_break, + STATE(728), 1, + sym_link_title, + [15827] = 5, + ACTIONS(2847), 1, + anon_sym_DASH, + ACTIONS(2849), 1, + anon_sym_COLON, + STATE(661), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(707), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2905), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [15845] = 5, + ACTIONS(2847), 1, + anon_sym_DASH, + ACTIONS(2849), 1, + anon_sym_COLON, + STATE(661), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(738), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2868), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [15863] = 7, + ACTIONS(1161), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(687), 1, + sym__soft_line_break, + STATE(734), 1, + sym_link_title, + [15885] = 7, + ACTIONS(1246), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(678), 1, + sym__soft_line_break, + STATE(730), 1, + sym_link_title, + [15907] = 7, + ACTIONS(1232), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(699), 1, + sym__soft_line_break, + STATE(743), 1, + sym_link_title, + [15929] = 5, + ACTIONS(2847), 1, + anon_sym_DASH, + ACTIONS(2849), 1, + anon_sym_COLON, + STATE(661), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(713), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2853), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [15947] = 7, + ACTIONS(1209), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(701), 1, + sym__soft_line_break, + STATE(741), 1, + sym_link_title, + [15969] = 7, + ACTIONS(1227), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2903), 1, + sym__soft_line_ending, + STATE(704), 1, + sym__soft_line_break, + STATE(731), 1, + sym_link_title, + [15991] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2907), 1, + sym__whitespace, + ACTIONS(2909), 1, + sym__soft_line_ending, + ACTIONS(2911), 1, + sym__eof, + STATE(109), 1, + sym__soft_line_break, + STATE(200), 1, + sym__newline, + [16010] = 6, + ACTIONS(1209), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2913), 1, + sym__whitespace, + STATE(741), 1, + sym_link_title, + [16029] = 6, + ACTIONS(2889), 1, + anon_sym_DASH, + ACTIONS(2891), 1, + anon_sym_COLON, + ACTIONS(2915), 1, + sym__whitespace, + STATE(657), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(746), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(824), 1, + sym_pipe_table_delimiter_cell, + [16048] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2917), 1, + sym__whitespace, + ACTIONS(2919), 1, + sym__soft_line_ending, + ACTIONS(2921), 1, + sym__eof, + STATE(121), 1, + sym__soft_line_break, + STATE(363), 1, + sym__newline, + [16067] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2923), 1, + sym__eof, + ACTIONS(2925), 1, + sym__pipe_table_line_ending, + STATE(344), 1, + sym__newline, + STATE(425), 1, + sym__pipe_table_newline, + STATE(693), 1, + aux_sym_pipe_table_repeat1, + [16086] = 6, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2927), 1, + sym__whitespace, + ACTIONS(2929), 1, + sym__no_indented_chunk, + STATE(721), 1, + sym_link_title, + [16105] = 6, + ACTIONS(1269), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2931), 1, + sym__whitespace, + STATE(724), 1, + sym_link_title, + [16124] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2909), 1, + sym__soft_line_ending, + ACTIONS(2933), 1, + sym__whitespace, + ACTIONS(2935), 1, + sym__eof, + STATE(125), 1, + sym__soft_line_break, + STATE(348), 1, + sym__newline, + [16143] = 6, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2937), 1, + sym__whitespace, + ACTIONS(2939), 1, + sym__no_indented_chunk, + STATE(744), 1, + sym_link_title, + [16162] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2919), 1, + sym__soft_line_ending, + ACTIONS(2941), 1, + sym__whitespace, + ACTIONS(2943), 1, + sym__eof, + STATE(117), 1, + sym__soft_line_break, + STATE(302), 1, + sym__newline, + [16181] = 6, + ACTIONS(1264), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2945), 1, + sym__whitespace, + STATE(708), 1, + sym_link_title, + [16200] = 2, + ACTIONS(2947), 1, + sym_block_continuation, + ACTIONS(1189), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + sym__whitespace, + [16211] = 6, + ACTIONS(2889), 1, + anon_sym_DASH, + ACTIONS(2891), 1, + anon_sym_COLON, + ACTIONS(2915), 1, + sym__whitespace, + STATE(655), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(746), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(824), 1, + sym_pipe_table_delimiter_cell, + [16230] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2919), 1, + sym__soft_line_ending, + ACTIONS(2949), 1, + sym__whitespace, + ACTIONS(2951), 1, + sym__eof, + STATE(116), 1, + sym__soft_line_break, + STATE(277), 1, + sym__newline, + [16249] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2925), 1, + sym__pipe_table_line_ending, + ACTIONS(2953), 1, + sym__eof, + STATE(261), 1, + sym__newline, + STATE(425), 1, + sym__pipe_table_newline, + STATE(735), 1, + aux_sym_pipe_table_repeat1, + [16268] = 1, + ACTIONS(2955), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_DASH, + anon_sym_COLON, + sym__whitespace, + [16277] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2925), 1, + sym__pipe_table_line_ending, + ACTIONS(2957), 1, + sym__eof, + STATE(281), 1, + sym__newline, + STATE(425), 1, + sym__pipe_table_newline, + STATE(735), 1, + aux_sym_pipe_table_repeat1, + [16296] = 1, + ACTIONS(2864), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_DASH, + anon_sym_COLON, + sym__whitespace, + [16305] = 6, + ACTIONS(1227), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2959), 1, + sym__whitespace, + STATE(731), 1, + sym_link_title, + [16324] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2919), 1, + sym__soft_line_ending, + ACTIONS(2961), 1, + sym__whitespace, + ACTIONS(2963), 1, + sym__eof, + STATE(114), 1, + sym__soft_line_break, + STATE(291), 1, + sym__newline, + [16343] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2925), 1, + sym__pipe_table_line_ending, + ACTIONS(2965), 1, + sym__eof, + STATE(333), 1, + sym__newline, + STATE(425), 1, + sym__pipe_table_newline, + STATE(691), 1, + aux_sym_pipe_table_repeat1, + [16362] = 6, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(2919), 1, + sym__soft_line_ending, + ACTIONS(2967), 1, + sym__whitespace, + ACTIONS(2969), 1, + sym__eof, + STATE(119), 1, + sym__soft_line_break, + STATE(318), 1, + sym__newline, + [16381] = 6, + ACTIONS(1237), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + sym__whitespace, + STATE(718), 1, + sym_link_title, + [16400] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2909), 1, + sym__soft_line_ending, + ACTIONS(2973), 1, + sym__whitespace, + ACTIONS(2975), 1, + sym__eof, + STATE(110), 1, + sym__soft_line_break, + STATE(321), 1, + sym__newline, + [16419] = 6, + ACTIONS(1232), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2977), 1, + sym__whitespace, + STATE(743), 1, + sym_link_title, + [16438] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2909), 1, + sym__soft_line_ending, + ACTIONS(2979), 1, + sym__whitespace, + ACTIONS(2981), 1, + sym__eof, + STATE(115), 1, + sym__soft_line_break, + STATE(250), 1, + sym__newline, + [16457] = 6, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2909), 1, + sym__soft_line_ending, + ACTIONS(2983), 1, + sym__whitespace, + ACTIONS(2985), 1, + sym__eof, + STATE(120), 1, + sym__soft_line_break, + STATE(308), 1, + sym__newline, + [16476] = 6, + ACTIONS(1161), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2987), 1, + sym__whitespace, + STATE(734), 1, + sym_link_title, + [16495] = 1, + ACTIONS(2989), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_DASH, + anon_sym_COLON, + sym__whitespace, + [16504] = 6, + ACTIONS(1276), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2991), 1, + sym__whitespace, + STATE(728), 1, + sym_link_title, + [16523] = 3, + ACTIONS(2993), 1, + anon_sym_PIPE, + ACTIONS(2995), 1, + sym__whitespace, + ACTIONS(2997), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16535] = 4, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2999), 1, + sym__soft_line_ending, + ACTIONS(3001), 1, + sym__eof, + STATE(296), 2, + sym__newline, + sym__soft_line_break, + [16549] = 3, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(3003), 1, + sym__whitespace, + ACTIONS(2479), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16561] = 3, + ACTIONS(3005), 1, + anon_sym_PIPE, + ACTIONS(3007), 1, + sym__whitespace, + ACTIONS(2479), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16573] = 3, + ACTIONS(3009), 1, + anon_sym_PIPE, + ACTIONS(3011), 1, + sym__whitespace, + ACTIONS(2905), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16585] = 5, + ACTIONS(1276), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(728), 1, + sym_link_title, + [16601] = 3, + ACTIONS(2993), 1, + anon_sym_PIPE, + ACTIONS(3013), 1, + sym__whitespace, + ACTIONS(2905), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16613] = 1, + ACTIONS(3015), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + sym__whitespace, + [16621] = 5, + ACTIONS(1161), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(734), 1, + sym_link_title, + [16637] = 4, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3017), 1, + sym__soft_line_ending, + ACTIONS(3019), 1, + sym__eof, + STATE(351), 2, + sym__newline, + sym__soft_line_break, + [16651] = 4, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3017), 1, + sym__soft_line_ending, + ACTIONS(3021), 1, + sym__eof, + STATE(353), 2, + sym__newline, + sym__soft_line_break, + [16665] = 4, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3017), 1, + sym__soft_line_ending, + ACTIONS(3023), 1, + sym__eof, + STATE(361), 2, + sym__newline, + sym__soft_line_break, + [16679] = 3, + ACTIONS(3025), 1, + anon_sym_DASH, + STATE(719), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2877), 3, + anon_sym_COLON, + anon_sym_PIPE, + sym__whitespace, + [16691] = 4, + ACTIONS(3028), 1, + anon_sym_DASH, + ACTIONS(3030), 1, + anon_sym_COLON, + STATE(719), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2883), 2, + anon_sym_PIPE, + sym__whitespace, + [16705] = 4, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3017), 1, + sym__soft_line_ending, + ACTIONS(3032), 1, + sym__eof, + STATE(358), 2, + sym__newline, + sym__soft_line_break, + [16719] = 3, + ACTIONS(3009), 1, + anon_sym_PIPE, + ACTIONS(3034), 1, + sym__whitespace, + ACTIONS(2868), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16731] = 3, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(3036), 1, + sym__whitespace, + ACTIONS(2272), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16743] = 4, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3017), 1, + sym__soft_line_ending, + ACTIONS(3038), 1, + sym__eof, + STATE(360), 2, + sym__newline, + sym__soft_line_break, + [16757] = 5, + ACTIONS(1232), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(743), 1, + sym_link_title, + [16773] = 5, + ACTIONS(1227), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(731), 1, + sym_link_title, + [16789] = 3, + ACTIONS(3009), 1, + anon_sym_PIPE, + ACTIONS(3040), 1, + sym__whitespace, + ACTIONS(2853), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16801] = 4, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2999), 1, + sym__soft_line_ending, + ACTIONS(3042), 1, + sym__eof, + STATE(319), 2, + sym__newline, + sym__soft_line_break, + [16815] = 3, + ACTIONS(3005), 1, + anon_sym_PIPE, + ACTIONS(3044), 1, + sym__whitespace, + ACTIONS(2272), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16827] = 4, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3017), 1, + sym__soft_line_ending, + ACTIONS(3046), 1, + sym__eof, + STATE(297), 2, + sym__newline, + sym__soft_line_break, + [16841] = 4, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2999), 1, + sym__soft_line_ending, + ACTIONS(3048), 1, + sym__eof, + STATE(311), 2, + sym__newline, + sym__soft_line_break, + [16855] = 4, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2999), 1, + sym__soft_line_ending, + ACTIONS(3050), 1, + sym__eof, + STATE(237), 2, + sym__newline, + sym__soft_line_break, + [16869] = 5, + ACTIONS(1209), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(741), 1, + sym_link_title, + [16885] = 4, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2999), 1, + sym__soft_line_ending, + ACTIONS(3052), 1, + sym__eof, + STATE(303), 2, + sym__newline, + sym__soft_line_break, + [16899] = 4, + ACTIONS(3056), 1, + sym__pipe_table_line_ending, + STATE(425), 1, + sym__pipe_table_newline, + STATE(735), 1, + aux_sym_pipe_table_repeat1, + ACTIONS(3054), 2, + sym__line_ending, + sym__eof, + [16913] = 5, + ACTIONS(1264), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(708), 1, + sym_link_title, + [16929] = 1, + ACTIONS(1318), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + sym__whitespace, + [16937] = 3, + ACTIONS(2993), 1, + anon_sym_PIPE, + ACTIONS(3059), 1, + sym__whitespace, + ACTIONS(2853), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [16949] = 5, + ACTIONS(1269), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(724), 1, + sym_link_title, + [16965] = 5, + ACTIONS(1237), 1, + sym__no_indented_chunk, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(718), 1, + sym_link_title, + [16981] = 4, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3017), 1, + sym__soft_line_ending, + ACTIONS(3061), 1, + sym__eof, + STATE(325), 2, + sym__newline, + sym__soft_line_break, + [16995] = 5, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2939), 1, + sym__no_indented_chunk, + STATE(744), 1, + sym_link_title, + [17011] = 4, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3017), 1, + sym__soft_line_ending, + ACTIONS(3063), 1, + sym__eof, + STATE(350), 2, + sym__newline, + sym__soft_line_break, + [17025] = 4, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2999), 1, + sym__soft_line_ending, + ACTIONS(3065), 1, + sym__eof, + STATE(294), 2, + sym__newline, + sym__soft_line_break, + [17039] = 1, + ACTIONS(3067), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + sym__whitespace, + [17047] = 4, + ACTIONS(3028), 1, + anon_sym_DASH, + ACTIONS(3069), 1, + anon_sym_COLON, + STATE(719), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2887), 2, + anon_sym_PIPE, + sym__whitespace, + [17061] = 5, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(3071), 1, + sym__no_indented_chunk, + STATE(748), 1, + sym_link_title, + [17077] = 4, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2999), 1, + sym__soft_line_ending, + ACTIONS(3073), 1, + sym__eof, + STATE(282), 2, + sym__newline, + sym__soft_line_break, + [17091] = 3, + ACTIONS(3005), 1, + anon_sym_PIPE, + ACTIONS(3075), 1, + sym__whitespace, + ACTIONS(2356), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17103] = 3, + ACTIONS(3005), 1, + anon_sym_PIPE, + ACTIONS(3077), 1, + sym__whitespace, + ACTIONS(3079), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17115] = 5, + ACTIONS(2889), 1, + anon_sym_DASH, + ACTIONS(2891), 1, + anon_sym_COLON, + ACTIONS(3081), 1, + anon_sym_PIPE, + STATE(746), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(830), 1, + sym_pipe_table_delimiter_cell, + [17131] = 4, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(2999), 1, + sym__soft_line_ending, + ACTIONS(3083), 1, + sym__eof, + STATE(280), 2, + sym__newline, + sym__soft_line_break, + [17145] = 5, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(3085), 1, + sym__no_indented_chunk, + STATE(717), 1, + sym_link_title, + [17161] = 5, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + ACTIONS(2929), 1, + sym__no_indented_chunk, + STATE(721), 1, + sym_link_title, + [17177] = 3, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(3087), 1, + sym__whitespace, + ACTIONS(2340), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17189] = 2, + ACTIONS(3089), 1, + sym_block_continuation, + ACTIONS(1133), 4, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + sym__whitespace, + [17199] = 3, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(3091), 1, + sym__whitespace, + ACTIONS(2356), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17211] = 2, + ACTIONS(3005), 1, + anon_sym_PIPE, + ACTIONS(3079), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17220] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(734), 1, + sym_link_title, + [17233] = 4, + ACTIONS(2889), 1, + anon_sym_DASH, + ACTIONS(2891), 1, + anon_sym_COLON, + STATE(746), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(830), 1, + sym_pipe_table_delimiter_cell, + [17246] = 1, + ACTIONS(1979), 4, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__whitespace, + [17253] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(716), 1, + sym_link_title, + [17266] = 2, + ACTIONS(2993), 1, + anon_sym_PIPE, + ACTIONS(2853), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17275] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(717), 1, + sym_link_title, + [17288] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(752), 1, + sym_link_title, + [17301] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(748), 1, + sym_link_title, + [17314] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(721), 1, + sym_link_title, + [17327] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(744), 1, + sym_link_title, + [17340] = 2, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(3095), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17349] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(708), 1, + sym_link_title, + [17362] = 2, + ACTIONS(3005), 1, + anon_sym_PIPE, + ACTIONS(2356), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17371] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(724), 1, + sym_link_title, + [17384] = 2, + ACTIONS(2993), 1, + anon_sym_PIPE, + ACTIONS(2997), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17393] = 2, + ACTIONS(3005), 1, + anon_sym_PIPE, + ACTIONS(2272), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17402] = 2, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(2997), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17411] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(728), 1, + sym_link_title, + [17424] = 1, + ACTIONS(1947), 4, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__whitespace, + [17431] = 1, + ACTIONS(1239), 4, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + sym__whitespace, + [17438] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(718), 1, + sym_link_title, + [17451] = 2, + ACTIONS(3097), 1, + anon_sym_PIPE, + ACTIONS(3099), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17460] = 2, + ACTIONS(3097), 1, + anon_sym_PIPE, + ACTIONS(3079), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17469] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(743), 1, + sym_link_title, + [17482] = 2, + ACTIONS(3097), 1, + anon_sym_PIPE, + ACTIONS(2272), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17491] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(741), 1, + sym_link_title, + [17504] = 4, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(2899), 1, + anon_sym_SQUOTE, + ACTIONS(2901), 1, + anon_sym_LPAREN, + STATE(731), 1, + sym_link_title, + [17517] = 2, + ACTIONS(2993), 1, + anon_sym_PIPE, + ACTIONS(2905), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17526] = 2, + ACTIONS(3093), 1, + anon_sym_PIPE, + ACTIONS(2905), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17535] = 2, + ACTIONS(3097), 1, + anon_sym_PIPE, + ACTIONS(2479), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17544] = 2, + ACTIONS(3005), 1, + anon_sym_PIPE, + ACTIONS(2479), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17553] = 3, + ACTIONS(2340), 1, + sym__line_ending, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(3101), 1, + sym__whitespace, + [17563] = 3, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(3103), 1, + sym__eof, + STATE(257), 1, + sym__newline, + [17573] = 3, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(3105), 1, + sym__eof, + STATE(276), 1, + sym__newline, + [17583] = 3, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(3107), 1, + sym__eof, + STATE(258), 1, + sym__newline, + [17593] = 3, + ACTIONS(3109), 1, + sym__line_ending, + ACTIONS(3111), 1, + sym__eof, + STATE(934), 1, + sym__newline, + [17603] = 1, + ACTIONS(3113), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + [17609] = 1, + ACTIONS(3115), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + [17615] = 3, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3117), 1, + sym__eof, + STATE(245), 1, + sym__newline, + [17625] = 3, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3119), 1, + sym__eof, + STATE(244), 1, + sym__newline, + [17635] = 2, + ACTIONS(3121), 1, + sym_block_continuation, + ACTIONS(1133), 2, + sym_setext_h1_underline, + sym_setext_h2_underline, + [17643] = 1, + ACTIONS(3054), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [17649] = 3, + ACTIONS(2272), 1, + sym__line_ending, + ACTIONS(3123), 1, + anon_sym_PIPE, + ACTIONS(3125), 1, + sym__whitespace, + [17659] = 3, + ACTIONS(2272), 1, + sym__line_ending, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(3127), 1, + sym__whitespace, + [17669] = 3, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3129), 1, + sym__eof, + STATE(293), 1, + sym__newline, + [17679] = 3, + ACTIONS(3079), 1, + sym__line_ending, + ACTIONS(3123), 1, + anon_sym_PIPE, + ACTIONS(3131), 1, + sym__whitespace, + [17689] = 3, + ACTIONS(2479), 1, + sym__line_ending, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(3133), 1, + sym__whitespace, + [17699] = 3, + ACTIONS(2479), 1, + sym__line_ending, + ACTIONS(3123), 1, + anon_sym_PIPE, + ACTIONS(3135), 1, + sym__whitespace, + [17709] = 3, + ACTIONS(2356), 1, + sym__line_ending, + ACTIONS(3123), 1, + anon_sym_PIPE, + ACTIONS(3137), 1, + sym__whitespace, + [17719] = 3, + ACTIONS(1933), 1, + sym__line_ending, + ACTIONS(3139), 1, + sym__eof, + STATE(289), 1, + sym__newline, + [17729] = 3, + ACTIONS(2356), 1, + sym__line_ending, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(3141), 1, + sym__whitespace, + [17739] = 3, + ACTIONS(1981), 1, + sym__line_ending, + ACTIONS(3143), 1, + sym__eof, + STATE(295), 1, + sym__newline, + [17749] = 2, + ACTIONS(1953), 1, + sym__block_close, + ACTIONS(1955), 1, + sym__fenced_code_block_end_tilde, + [17756] = 2, + ACTIONS(2479), 1, + sym__line_ending, + ACTIONS(3123), 1, + anon_sym_PIPE, + [17763] = 2, + ACTIONS(2479), 1, + sym__line_ending, + ACTIONS(3145), 1, + anon_sym_PIPE, + [17770] = 2, + ACTIONS(2356), 1, + sym__line_ending, + ACTIONS(3123), 1, + anon_sym_PIPE, + [17777] = 2, + ACTIONS(3123), 1, + anon_sym_PIPE, + ACTIONS(3147), 1, + sym__whitespace, + [17784] = 2, + ACTIONS(3149), 1, + sym__line_ending, + STATE(663), 1, + sym__newline, + [17791] = 2, + ACTIONS(1933), 1, + sym__line_ending, + STATE(217), 1, + sym__newline, + [17798] = 2, + ACTIONS(1933), 1, + sym__line_ending, + STATE(216), 1, + sym__newline, + [17805] = 2, + ACTIONS(1933), 1, + sym__line_ending, + STATE(214), 1, + sym__newline, + [17812] = 2, + ACTIONS(1933), 1, + sym__line_ending, + STATE(213), 1, + sym__newline, + [17819] = 2, + ACTIONS(1933), 1, + sym__line_ending, + STATE(212), 1, + sym__newline, + [17826] = 2, + ACTIONS(1933), 1, + sym__line_ending, + STATE(211), 1, + sym__newline, + [17833] = 2, + ACTIONS(3151), 1, + sym__block_close, + ACTIONS(3153), 1, + sym__fenced_code_block_end_tilde, + [17840] = 2, + ACTIONS(3009), 1, + anon_sym_PIPE, + ACTIONS(3155), 1, + sym__whitespace, + [17847] = 2, + ACTIONS(3157), 1, + sym__line_ending, + STATE(892), 1, + sym__newline, + [17854] = 2, + ACTIONS(3157), 1, + sym__line_ending, + STATE(921), 1, + sym__newline, + [17861] = 2, + ACTIONS(1927), 1, + sym__block_close, + ACTIONS(1929), 1, + sym__fenced_code_block_end_tilde, + [17868] = 2, + ACTIONS(1853), 1, + sym__line_ending, + STATE(389), 1, + sym__newline, + [17875] = 2, + ACTIONS(1927), 1, + sym__block_close, + ACTIONS(1929), 1, + sym__fenced_code_block_end_backtick, + [17882] = 2, + ACTIONS(2993), 1, + anon_sym_PIPE, + ACTIONS(3159), 1, + sym__whitespace, + [17889] = 2, + ACTIONS(3151), 1, + sym__block_close, + ACTIONS(3153), 1, + sym__fenced_code_block_end_backtick, + [17896] = 2, + ACTIONS(3161), 1, + anon_sym_DASH, + STATE(720), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [17903] = 2, + ACTIONS(2272), 1, + sym__line_ending, + ACTIONS(3145), 1, + anon_sym_PIPE, + [17910] = 2, + ACTIONS(153), 1, + sym__block_close, + ACTIONS(3163), 1, + sym_block_continuation, + [17917] = 1, + ACTIONS(1185), 2, + sym_setext_h1_underline, + sym_setext_h2_underline, + [17922] = 2, + ACTIONS(1857), 1, + sym__line_ending, + STATE(383), 1, + sym__newline, + [17929] = 2, + ACTIONS(1877), 1, + sym__block_close, + ACTIONS(1879), 1, + sym__fenced_code_block_end_backtick, + [17936] = 2, + ACTIONS(2272), 1, + sym__line_ending, + ACTIONS(3123), 1, + anon_sym_PIPE, + [17943] = 2, + ACTIONS(1877), 1, + sym__block_close, + ACTIONS(1879), 1, + sym__fenced_code_block_end_tilde, + [17950] = 1, + ACTIONS(1239), 2, + sym_setext_h1_underline, + sym_setext_h2_underline, + [17955] = 2, + ACTIONS(1288), 1, + sym_setext_h1_underline, + ACTIONS(1290), 1, + sym_setext_h2_underline, + [17962] = 2, + ACTIONS(3079), 1, + sym__line_ending, + ACTIONS(3145), 1, + anon_sym_PIPE, + [17969] = 2, + ACTIONS(3157), 1, + sym__line_ending, + STATE(896), 1, + sym__newline, + [17976] = 2, + ACTIONS(3149), 1, + sym__line_ending, + STATE(662), 1, + sym__newline, + [17983] = 2, + ACTIONS(2725), 1, + anon_sym_PIPE, + ACTIONS(2727), 1, + sym__whitespace, + [17990] = 2, + ACTIONS(3157), 1, + sym__line_ending, + STATE(899), 1, + sym__newline, + [17997] = 2, + ACTIONS(3165), 1, + anon_sym_DASH, + STATE(660), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [18004] = 2, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 1, + sym__whitespace, + [18011] = 2, + ACTIONS(1953), 1, + sym__block_close, + ACTIONS(1955), 1, + sym__fenced_code_block_end_backtick, + [18018] = 2, + ACTIONS(1133), 1, + sym__close_block, + ACTIONS(3167), 1, + sym_block_continuation, + [18025] = 2, + ACTIONS(3079), 1, + sym__line_ending, + ACTIONS(3123), 1, + anon_sym_PIPE, + [18032] = 2, + ACTIONS(3157), 1, + sym__line_ending, + STATE(901), 1, + sym__newline, + [18039] = 2, + ACTIONS(3169), 1, + sym__block_close, + ACTIONS(3171), 1, + sym__fenced_code_block_end_backtick, + [18046] = 2, + ACTIONS(1133), 1, + sym__block_close, + ACTIONS(3173), 1, + sym_block_continuation, + [18053] = 2, + ACTIONS(3169), 1, + sym__block_close, + ACTIONS(3171), 1, + sym__fenced_code_block_end_tilde, + [18060] = 1, + ACTIONS(3067), 2, + anon_sym_PIPE, + sym__whitespace, + [18065] = 2, + ACTIONS(1981), 1, + sym__line_ending, + STATE(272), 1, + sym__newline, + [18072] = 2, + ACTIONS(1189), 1, + sym__trigger_error, + ACTIONS(3175), 1, + sym_block_continuation, + [18079] = 2, + ACTIONS(3157), 1, + sym__line_ending, + STATE(905), 1, + sym__newline, + [18086] = 1, + ACTIONS(3015), 2, + anon_sym_PIPE, + sym__whitespace, + [18091] = 2, + ACTIONS(1981), 1, + sym__line_ending, + STATE(270), 1, + sym__newline, + [18098] = 2, + ACTIONS(1981), 1, + sym__line_ending, + STATE(268), 1, + sym__newline, + [18105] = 2, + ACTIONS(1981), 1, + sym__line_ending, + STATE(266), 1, + sym__newline, + [18112] = 2, + ACTIONS(1889), 1, + sym__block_close, + ACTIONS(1891), 1, + sym__fenced_code_block_end_tilde, + [18119] = 2, + ACTIONS(1853), 1, + sym__line_ending, + STATE(401), 1, + sym__newline, + [18126] = 2, + ACTIONS(1857), 1, + sym__line_ending, + STATE(400), 1, + sym__newline, + [18133] = 2, + ACTIONS(1981), 1, + sym__line_ending, + STATE(264), 1, + sym__newline, + [18140] = 2, + ACTIONS(1981), 1, + sym__line_ending, + STATE(301), 1, + sym__newline, + [18147] = 2, + ACTIONS(1857), 1, + sym__line_ending, + STATE(390), 1, + sym__newline, + [18154] = 2, + ACTIONS(3157), 1, + sym__line_ending, + STATE(917), 1, + sym__newline, + [18161] = 2, + ACTIONS(1853), 1, + sym__line_ending, + STATE(407), 1, + sym__newline, + [18168] = 2, + ACTIONS(1853), 1, + sym__line_ending, + STATE(381), 1, + sym__newline, + [18175] = 2, + ACTIONS(1857), 1, + sym__line_ending, + STATE(392), 1, + sym__newline, + [18182] = 2, + ACTIONS(3157), 1, + sym__line_ending, + STATE(930), 1, + sym__newline, + [18189] = 2, + ACTIONS(3005), 1, + anon_sym_PIPE, + ACTIONS(3177), 1, + sym__whitespace, + [18196] = 2, + ACTIONS(3099), 1, + sym__line_ending, + ACTIONS(3145), 1, + anon_sym_PIPE, + [18203] = 2, + ACTIONS(1889), 1, + sym__block_close, + ACTIONS(1891), 1, + sym__fenced_code_block_end_backtick, + [18210] = 1, + ACTIONS(3179), 1, + sym__block_close, + [18214] = 1, + ACTIONS(3181), 1, + anon_sym_COLON, + [18218] = 1, + ACTIONS(3183), 1, + sym__close_block, + [18222] = 1, + ACTIONS(3185), 1, + sym__close_block, + [18226] = 1, + ACTIONS(3187), 1, + sym__block_close, + [18230] = 1, + ACTIONS(2993), 1, + anon_sym_PIPE, + [18234] = 1, + ACTIONS(3189), 1, + sym__close_block, + [18238] = 1, + ACTIONS(3191), 1, + sym__block_close, + [18242] = 1, + ACTIONS(3193), 1, + sym__close_block, + [18246] = 1, + ACTIONS(3195), 1, + sym__whitespace, + [18250] = 1, + ACTIONS(3197), 1, + sym__close_block, + [18254] = 1, + ACTIONS(3199), 1, + sym__close_block, + [18258] = 1, + ACTIONS(3201), 1, + sym__block_close, + [18262] = 1, + ACTIONS(3203), 1, + sym__block_close, + [18266] = 1, + ACTIONS(3205), 1, + sym__block_close, + [18270] = 1, + ACTIONS(3207), 1, + sym__block_close, + [18274] = 1, + ACTIONS(3209), 1, + sym__close_block, + [18278] = 1, + ACTIONS(3211), 1, + sym__block_close, + [18282] = 1, + ACTIONS(3213), 1, + sym__block_close, + [18286] = 1, + ACTIONS(3145), 1, + anon_sym_PIPE, + [18290] = 1, + ACTIONS(3097), 1, + anon_sym_PIPE, + [18294] = 1, + ACTIONS(3215), 1, + sym__block_close, + [18298] = 1, + ACTIONS(3217), 1, + sym__close_block, + [18302] = 1, + ACTIONS(3219), 1, + sym__block_close, + [18306] = 1, + ACTIONS(1239), 1, + sym__block_close, + [18310] = 1, + ACTIONS(3093), 1, + anon_sym_PIPE, + [18314] = 1, + ACTIONS(3221), 1, + sym__trigger_error, + [18318] = 1, + ACTIONS(3169), 1, + sym__block_close, + [18322] = 1, + ACTIONS(1239), 1, + sym__close_block, + [18326] = 1, + ACTIONS(3223), 1, + sym__trigger_error, + [18330] = 1, + ACTIONS(3225), 1, + anon_sym_COLON, + [18334] = 1, + ACTIONS(3227), 1, + sym__block_close, + [18338] = 1, + ACTIONS(3229), 1, + sym__block_close, + [18342] = 1, + ACTIONS(3231), 1, + sym__block_close, + [18346] = 1, + ACTIONS(3233), 1, + sym__block_close, + [18350] = 1, + ACTIONS(3235), 1, + sym__block_close, + [18354] = 1, + ACTIONS(3237), 1, + ts_builtin_sym_end, + [18358] = 1, + ACTIONS(3239), 1, + sym__block_close, + [18362] = 1, + ACTIONS(3241), 1, + sym__trigger_error, + [18366] = 1, + ACTIONS(3243), 1, + sym__block_close, + [18370] = 1, + ACTIONS(3245), 1, + anon_sym_COLON, + [18374] = 1, + ACTIONS(3247), 1, + sym__block_close, + [18378] = 1, + ACTIONS(3005), 1, + anon_sym_PIPE, + [18382] = 1, + ACTIONS(3249), 1, + sym__block_close, + [18386] = 1, + ACTIONS(3251), 1, + sym__close_block, + [18390] = 1, + ACTIONS(3253), 1, + sym__block_close, + [18394] = 1, + ACTIONS(3255), 1, + sym__block_close, + [18398] = 1, + ACTIONS(3257), 1, + sym__close_block, + [18402] = 1, + ACTIONS(3259), 1, + sym__block_close, + [18406] = 1, + ACTIONS(3261), 1, + sym__block_close, + [18410] = 1, + ACTIONS(3263), 1, + sym__block_close, + [18414] = 1, + ACTIONS(3265), 1, + sym__block_close, + [18418] = 1, + ACTIONS(3151), 1, + sym__block_close, + [18422] = 1, + ACTIONS(141), 1, + sym__block_close, + [18426] = 1, + ACTIONS(1318), 1, + sym__trigger_error, + [18430] = 1, + ACTIONS(3267), 1, + anon_sym_COLON, + [18434] = 1, + ACTIONS(1640), 1, + sym__close_block, + [18438] = 1, + ACTIONS(3269), 1, + anon_sym_COLON, + [18442] = 1, + ACTIONS(3271), 1, + sym__close_block, + [18446] = 1, + ACTIONS(3273), 1, + sym__close_block, + [18450] = 1, + ACTIONS(3275), 1, + sym__close_block, + [18454] = 1, + ACTIONS(3277), 1, + sym__close_block, + [18458] = 1, + ACTIONS(3123), 1, + anon_sym_PIPE, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(369)] = 0, + [SMALL_STATE(370)] = 77, + [SMALL_STATE(371)] = 154, + [SMALL_STATE(372)] = 221, + [SMALL_STATE(373)] = 291, + [SMALL_STATE(374)] = 361, + [SMALL_STATE(375)] = 431, + [SMALL_STATE(376)] = 501, + [SMALL_STATE(377)] = 568, + [SMALL_STATE(378)] = 635, + [SMALL_STATE(379)] = 702, + [SMALL_STATE(380)] = 769, + [SMALL_STATE(381)] = 830, + [SMALL_STATE(382)] = 892, + [SMALL_STATE(383)] = 956, + [SMALL_STATE(384)] = 1018, + [SMALL_STATE(385)] = 1078, + [SMALL_STATE(386)] = 1138, + [SMALL_STATE(387)] = 1200, + [SMALL_STATE(388)] = 1264, + [SMALL_STATE(389)] = 1324, + [SMALL_STATE(390)] = 1386, + [SMALL_STATE(391)] = 1448, + [SMALL_STATE(392)] = 1508, + [SMALL_STATE(393)] = 1570, + [SMALL_STATE(394)] = 1628, + [SMALL_STATE(395)] = 1692, + [SMALL_STATE(396)] = 1754, + [SMALL_STATE(397)] = 1818, + [SMALL_STATE(398)] = 1878, + [SMALL_STATE(399)] = 1936, + [SMALL_STATE(400)] = 2000, + [SMALL_STATE(401)] = 2062, + [SMALL_STATE(402)] = 2124, + [SMALL_STATE(403)] = 2186, + [SMALL_STATE(404)] = 2250, + [SMALL_STATE(405)] = 2308, + [SMALL_STATE(406)] = 2366, + [SMALL_STATE(407)] = 2430, + [SMALL_STATE(408)] = 2492, + [SMALL_STATE(409)] = 2554, + [SMALL_STATE(410)] = 2618, + [SMALL_STATE(411)] = 2676, + [SMALL_STATE(412)] = 2735, + [SMALL_STATE(413)] = 2802, + [SMALL_STATE(414)] = 2861, + [SMALL_STATE(415)] = 2920, + [SMALL_STATE(416)] = 2979, + [SMALL_STATE(417)] = 3046, + [SMALL_STATE(418)] = 3103, + [SMALL_STATE(419)] = 3170, + [SMALL_STATE(420)] = 3229, + [SMALL_STATE(421)] = 3288, + [SMALL_STATE(422)] = 3347, + [SMALL_STATE(423)] = 3406, + [SMALL_STATE(424)] = 3465, + [SMALL_STATE(425)] = 3524, + [SMALL_STATE(426)] = 3589, + [SMALL_STATE(427)] = 3646, + [SMALL_STATE(428)] = 3705, + [SMALL_STATE(429)] = 3772, + [SMALL_STATE(430)] = 3831, + [SMALL_STATE(431)] = 3890, + [SMALL_STATE(432)] = 3949, + [SMALL_STATE(433)] = 4008, + [SMALL_STATE(434)] = 4065, + [SMALL_STATE(435)] = 4124, + [SMALL_STATE(436)] = 4181, + [SMALL_STATE(437)] = 4240, + [SMALL_STATE(438)] = 4299, + [SMALL_STATE(439)] = 4358, + [SMALL_STATE(440)] = 4417, + [SMALL_STATE(441)] = 4466, + [SMALL_STATE(442)] = 4523, + [SMALL_STATE(443)] = 4582, + [SMALL_STATE(444)] = 4641, + [SMALL_STATE(445)] = 4700, + [SMALL_STATE(446)] = 4757, + [SMALL_STATE(447)] = 4816, + [SMALL_STATE(448)] = 4875, + [SMALL_STATE(449)] = 4934, + [SMALL_STATE(450)] = 4993, + [SMALL_STATE(451)] = 5049, + [SMALL_STATE(452)] = 5105, + [SMALL_STATE(453)] = 5163, + [SMALL_STATE(454)] = 5227, + [SMALL_STATE(455)] = 5285, + [SMALL_STATE(456)] = 5341, + [SMALL_STATE(457)] = 5405, + [SMALL_STATE(458)] = 5463, + [SMALL_STATE(459)] = 5525, + [SMALL_STATE(460)] = 5583, + [SMALL_STATE(461)] = 5641, + [SMALL_STATE(462)] = 5699, + [SMALL_STATE(463)] = 5763, + [SMALL_STATE(464)] = 5821, + [SMALL_STATE(465)] = 5879, + [SMALL_STATE(466)] = 5937, + [SMALL_STATE(467)] = 6001, + [SMALL_STATE(468)] = 6063, + [SMALL_STATE(469)] = 6121, + [SMALL_STATE(470)] = 6177, + [SMALL_STATE(471)] = 6239, + [SMALL_STATE(472)] = 6301, + [SMALL_STATE(473)] = 6359, + [SMALL_STATE(474)] = 6421, + [SMALL_STATE(475)] = 6483, + [SMALL_STATE(476)] = 6541, + [SMALL_STATE(477)] = 6597, + [SMALL_STATE(478)] = 6655, + [SMALL_STATE(479)] = 6709, + [SMALL_STATE(480)] = 6767, + [SMALL_STATE(481)] = 6825, + [SMALL_STATE(482)] = 6879, + [SMALL_STATE(483)] = 6937, + [SMALL_STATE(484)] = 6991, + [SMALL_STATE(485)] = 7049, + [SMALL_STATE(486)] = 7103, + [SMALL_STATE(487)] = 7161, + [SMALL_STATE(488)] = 7222, + [SMALL_STATE(489)] = 7275, + [SMALL_STATE(490)] = 7330, + [SMALL_STATE(491)] = 7385, + [SMALL_STATE(492)] = 7436, + [SMALL_STATE(493)] = 7489, + [SMALL_STATE(494)] = 7540, + [SMALL_STATE(495)] = 7601, + [SMALL_STATE(496)] = 7652, + [SMALL_STATE(497)] = 7707, + [SMALL_STATE(498)] = 7766, + [SMALL_STATE(499)] = 7821, + [SMALL_STATE(500)] = 7880, + [SMALL_STATE(501)] = 7941, + [SMALL_STATE(502)] = 7992, + [SMALL_STATE(503)] = 8053, + [SMALL_STATE(504)] = 8114, + [SMALL_STATE(505)] = 8165, + [SMALL_STATE(506)] = 8224, + [SMALL_STATE(507)] = 8277, + [SMALL_STATE(508)] = 8328, + [SMALL_STATE(509)] = 8383, + [SMALL_STATE(510)] = 8444, + [SMALL_STATE(511)] = 8495, + [SMALL_STATE(512)] = 8553, + [SMALL_STATE(513)] = 8613, + [SMALL_STATE(514)] = 8663, + [SMALL_STATE(515)] = 8713, + [SMALL_STATE(516)] = 8767, + [SMALL_STATE(517)] = 8821, + [SMALL_STATE(518)] = 8875, + [SMALL_STATE(519)] = 8923, + [SMALL_STATE(520)] = 8977, + [SMALL_STATE(521)] = 9031, + [SMALL_STATE(522)] = 9081, + [SMALL_STATE(523)] = 9131, + [SMALL_STATE(524)] = 9185, + [SMALL_STATE(525)] = 9233, + [SMALL_STATE(526)] = 9287, + [SMALL_STATE(527)] = 9337, + [SMALL_STATE(528)] = 9391, + [SMALL_STATE(529)] = 9441, + [SMALL_STATE(530)] = 9501, + [SMALL_STATE(531)] = 9551, + [SMALL_STATE(532)] = 9609, + [SMALL_STATE(533)] = 9659, + [SMALL_STATE(534)] = 9709, + [SMALL_STATE(535)] = 9763, + [SMALL_STATE(536)] = 9813, + [SMALL_STATE(537)] = 9867, + [SMALL_STATE(538)] = 9927, + [SMALL_STATE(539)] = 9981, + [SMALL_STATE(540)] = 10031, + [SMALL_STATE(541)] = 10081, + [SMALL_STATE(542)] = 10135, + [SMALL_STATE(543)] = 10185, + [SMALL_STATE(544)] = 10245, + [SMALL_STATE(545)] = 10295, + [SMALL_STATE(546)] = 10353, + [SMALL_STATE(547)] = 10413, + [SMALL_STATE(548)] = 10473, + [SMALL_STATE(549)] = 10519, + [SMALL_STATE(550)] = 10579, + [SMALL_STATE(551)] = 10625, + [SMALL_STATE(552)] = 10685, + [SMALL_STATE(553)] = 10737, + [SMALL_STATE(554)] = 10795, + [SMALL_STATE(555)] = 10841, + [SMALL_STATE(556)] = 10899, + [SMALL_STATE(557)] = 10949, + [SMALL_STATE(558)] = 11007, + [SMALL_STATE(559)] = 11057, + [SMALL_STATE(560)] = 11107, + [SMALL_STATE(561)] = 11153, + [SMALL_STATE(562)] = 11202, + [SMALL_STATE(563)] = 11247, + [SMALL_STATE(564)] = 11296, + [SMALL_STATE(565)] = 11345, + [SMALL_STATE(566)] = 11394, + [SMALL_STATE(567)] = 11443, + [SMALL_STATE(568)] = 11488, + [SMALL_STATE(569)] = 11537, + [SMALL_STATE(570)] = 11586, + [SMALL_STATE(571)] = 11631, + [SMALL_STATE(572)] = 11676, + [SMALL_STATE(573)] = 11721, + [SMALL_STATE(574)] = 11768, + [SMALL_STATE(575)] = 11813, + [SMALL_STATE(576)] = 11858, + [SMALL_STATE(577)] = 11915, + [SMALL_STATE(578)] = 11960, + [SMALL_STATE(579)] = 12007, + [SMALL_STATE(580)] = 12052, + [SMALL_STATE(581)] = 12109, + [SMALL_STATE(582)] = 12154, + [SMALL_STATE(583)] = 12205, + [SMALL_STATE(584)] = 12252, + [SMALL_STATE(585)] = 12299, + [SMALL_STATE(586)] = 12356, + [SMALL_STATE(587)] = 12403, + [SMALL_STATE(588)] = 12448, + [SMALL_STATE(589)] = 12497, + [SMALL_STATE(590)] = 12546, + [SMALL_STATE(591)] = 12593, + [SMALL_STATE(592)] = 12638, + [SMALL_STATE(593)] = 12685, + [SMALL_STATE(594)] = 12730, + [SMALL_STATE(595)] = 12775, + [SMALL_STATE(596)] = 12824, + [SMALL_STATE(597)] = 12871, + [SMALL_STATE(598)] = 12919, + [SMALL_STATE(599)] = 12963, + [SMALL_STATE(600)] = 13017, + [SMALL_STATE(601)] = 13061, + [SMALL_STATE(602)] = 13115, + [SMALL_STATE(603)] = 13163, + [SMALL_STATE(604)] = 13211, + [SMALL_STATE(605)] = 13259, + [SMALL_STATE(606)] = 13303, + [SMALL_STATE(607)] = 13347, + [SMALL_STATE(608)] = 13401, + [SMALL_STATE(609)] = 13445, + [SMALL_STATE(610)] = 13489, + [SMALL_STATE(611)] = 13533, + [SMALL_STATE(612)] = 13579, + [SMALL_STATE(613)] = 13623, + [SMALL_STATE(614)] = 13677, + [SMALL_STATE(615)] = 13723, + [SMALL_STATE(616)] = 13767, + [SMALL_STATE(617)] = 13811, + [SMALL_STATE(618)] = 13857, + [SMALL_STATE(619)] = 13901, + [SMALL_STATE(620)] = 13945, + [SMALL_STATE(621)] = 13989, + [SMALL_STATE(622)] = 14033, + [SMALL_STATE(623)] = 14077, + [SMALL_STATE(624)] = 14121, + [SMALL_STATE(625)] = 14175, + [SMALL_STATE(626)] = 14219, + [SMALL_STATE(627)] = 14273, + [SMALL_STATE(628)] = 14317, + [SMALL_STATE(629)] = 14363, + [SMALL_STATE(630)] = 14411, + [SMALL_STATE(631)] = 14459, + [SMALL_STATE(632)] = 14503, + [SMALL_STATE(633)] = 14547, + [SMALL_STATE(634)] = 14595, + [SMALL_STATE(635)] = 14639, + [SMALL_STATE(636)] = 14693, + [SMALL_STATE(637)] = 14737, + [SMALL_STATE(638)] = 14781, + [SMALL_STATE(639)] = 14825, + [SMALL_STATE(640)] = 14879, + [SMALL_STATE(641)] = 14922, + [SMALL_STATE(642)] = 14965, + [SMALL_STATE(643)] = 15008, + [SMALL_STATE(644)] = 15051, + [SMALL_STATE(645)] = 15094, + [SMALL_STATE(646)] = 15137, + [SMALL_STATE(647)] = 15180, + [SMALL_STATE(648)] = 15223, + [SMALL_STATE(649)] = 15266, + [SMALL_STATE(650)] = 15309, + [SMALL_STATE(651)] = 15352, + [SMALL_STATE(652)] = 15395, + [SMALL_STATE(653)] = 15438, + [SMALL_STATE(654)] = 15480, + [SMALL_STATE(655)] = 15522, + [SMALL_STATE(656)] = 15546, + [SMALL_STATE(657)] = 15570, + [SMALL_STATE(658)] = 15594, + [SMALL_STATE(659)] = 15618, + [SMALL_STATE(660)] = 15633, + [SMALL_STATE(661)] = 15650, + [SMALL_STATE(662)] = 15667, + [SMALL_STATE(663)] = 15692, + [SMALL_STATE(664)] = 15717, + [SMALL_STATE(665)] = 15739, + [SMALL_STATE(666)] = 15761, + [SMALL_STATE(667)] = 15783, + [SMALL_STATE(668)] = 15805, + [SMALL_STATE(669)] = 15827, + [SMALL_STATE(670)] = 15845, + [SMALL_STATE(671)] = 15863, + [SMALL_STATE(672)] = 15885, + [SMALL_STATE(673)] = 15907, + [SMALL_STATE(674)] = 15929, + [SMALL_STATE(675)] = 15947, + [SMALL_STATE(676)] = 15969, + [SMALL_STATE(677)] = 15991, + [SMALL_STATE(678)] = 16010, + [SMALL_STATE(679)] = 16029, + [SMALL_STATE(680)] = 16048, + [SMALL_STATE(681)] = 16067, + [SMALL_STATE(682)] = 16086, + [SMALL_STATE(683)] = 16105, + [SMALL_STATE(684)] = 16124, + [SMALL_STATE(685)] = 16143, + [SMALL_STATE(686)] = 16162, + [SMALL_STATE(687)] = 16181, + [SMALL_STATE(688)] = 16200, + [SMALL_STATE(689)] = 16211, + [SMALL_STATE(690)] = 16230, + [SMALL_STATE(691)] = 16249, + [SMALL_STATE(692)] = 16268, + [SMALL_STATE(693)] = 16277, + [SMALL_STATE(694)] = 16296, + [SMALL_STATE(695)] = 16305, + [SMALL_STATE(696)] = 16324, + [SMALL_STATE(697)] = 16343, + [SMALL_STATE(698)] = 16362, + [SMALL_STATE(699)] = 16381, + [SMALL_STATE(700)] = 16400, + [SMALL_STATE(701)] = 16419, + [SMALL_STATE(702)] = 16438, + [SMALL_STATE(703)] = 16457, + [SMALL_STATE(704)] = 16476, + [SMALL_STATE(705)] = 16495, + [SMALL_STATE(706)] = 16504, + [SMALL_STATE(707)] = 16523, + [SMALL_STATE(708)] = 16535, + [SMALL_STATE(709)] = 16549, + [SMALL_STATE(710)] = 16561, + [SMALL_STATE(711)] = 16573, + [SMALL_STATE(712)] = 16585, + [SMALL_STATE(713)] = 16601, + [SMALL_STATE(714)] = 16613, + [SMALL_STATE(715)] = 16621, + [SMALL_STATE(716)] = 16637, + [SMALL_STATE(717)] = 16651, + [SMALL_STATE(718)] = 16665, + [SMALL_STATE(719)] = 16679, + [SMALL_STATE(720)] = 16691, + [SMALL_STATE(721)] = 16705, + [SMALL_STATE(722)] = 16719, + [SMALL_STATE(723)] = 16731, + [SMALL_STATE(724)] = 16743, + [SMALL_STATE(725)] = 16757, + [SMALL_STATE(726)] = 16773, + [SMALL_STATE(727)] = 16789, + [SMALL_STATE(728)] = 16801, + [SMALL_STATE(729)] = 16815, + [SMALL_STATE(730)] = 16827, + [SMALL_STATE(731)] = 16841, + [SMALL_STATE(732)] = 16855, + [SMALL_STATE(733)] = 16869, + [SMALL_STATE(734)] = 16885, + [SMALL_STATE(735)] = 16899, + [SMALL_STATE(736)] = 16913, + [SMALL_STATE(737)] = 16929, + [SMALL_STATE(738)] = 16937, + [SMALL_STATE(739)] = 16949, + [SMALL_STATE(740)] = 16965, + [SMALL_STATE(741)] = 16981, + [SMALL_STATE(742)] = 16995, + [SMALL_STATE(743)] = 17011, + [SMALL_STATE(744)] = 17025, + [SMALL_STATE(745)] = 17039, + [SMALL_STATE(746)] = 17047, + [SMALL_STATE(747)] = 17061, + [SMALL_STATE(748)] = 17077, + [SMALL_STATE(749)] = 17091, + [SMALL_STATE(750)] = 17103, + [SMALL_STATE(751)] = 17115, + [SMALL_STATE(752)] = 17131, + [SMALL_STATE(753)] = 17145, + [SMALL_STATE(754)] = 17161, + [SMALL_STATE(755)] = 17177, + [SMALL_STATE(756)] = 17189, + [SMALL_STATE(757)] = 17199, + [SMALL_STATE(758)] = 17211, + [SMALL_STATE(759)] = 17220, + [SMALL_STATE(760)] = 17233, + [SMALL_STATE(761)] = 17246, + [SMALL_STATE(762)] = 17253, + [SMALL_STATE(763)] = 17266, + [SMALL_STATE(764)] = 17275, + [SMALL_STATE(765)] = 17288, + [SMALL_STATE(766)] = 17301, + [SMALL_STATE(767)] = 17314, + [SMALL_STATE(768)] = 17327, + [SMALL_STATE(769)] = 17340, + [SMALL_STATE(770)] = 17349, + [SMALL_STATE(771)] = 17362, + [SMALL_STATE(772)] = 17371, + [SMALL_STATE(773)] = 17384, + [SMALL_STATE(774)] = 17393, + [SMALL_STATE(775)] = 17402, + [SMALL_STATE(776)] = 17411, + [SMALL_STATE(777)] = 17424, + [SMALL_STATE(778)] = 17431, + [SMALL_STATE(779)] = 17438, + [SMALL_STATE(780)] = 17451, + [SMALL_STATE(781)] = 17460, + [SMALL_STATE(782)] = 17469, + [SMALL_STATE(783)] = 17482, + [SMALL_STATE(784)] = 17491, + [SMALL_STATE(785)] = 17504, + [SMALL_STATE(786)] = 17517, + [SMALL_STATE(787)] = 17526, + [SMALL_STATE(788)] = 17535, + [SMALL_STATE(789)] = 17544, + [SMALL_STATE(790)] = 17553, + [SMALL_STATE(791)] = 17563, + [SMALL_STATE(792)] = 17573, + [SMALL_STATE(793)] = 17583, + [SMALL_STATE(794)] = 17593, + [SMALL_STATE(795)] = 17603, + [SMALL_STATE(796)] = 17609, + [SMALL_STATE(797)] = 17615, + [SMALL_STATE(798)] = 17625, + [SMALL_STATE(799)] = 17635, + [SMALL_STATE(800)] = 17643, + [SMALL_STATE(801)] = 17649, + [SMALL_STATE(802)] = 17659, + [SMALL_STATE(803)] = 17669, + [SMALL_STATE(804)] = 17679, + [SMALL_STATE(805)] = 17689, + [SMALL_STATE(806)] = 17699, + [SMALL_STATE(807)] = 17709, + [SMALL_STATE(808)] = 17719, + [SMALL_STATE(809)] = 17729, + [SMALL_STATE(810)] = 17739, + [SMALL_STATE(811)] = 17749, + [SMALL_STATE(812)] = 17756, + [SMALL_STATE(813)] = 17763, + [SMALL_STATE(814)] = 17770, + [SMALL_STATE(815)] = 17777, + [SMALL_STATE(816)] = 17784, + [SMALL_STATE(817)] = 17791, + [SMALL_STATE(818)] = 17798, + [SMALL_STATE(819)] = 17805, + [SMALL_STATE(820)] = 17812, + [SMALL_STATE(821)] = 17819, + [SMALL_STATE(822)] = 17826, + [SMALL_STATE(823)] = 17833, + [SMALL_STATE(824)] = 17840, + [SMALL_STATE(825)] = 17847, + [SMALL_STATE(826)] = 17854, + [SMALL_STATE(827)] = 17861, + [SMALL_STATE(828)] = 17868, + [SMALL_STATE(829)] = 17875, + [SMALL_STATE(830)] = 17882, + [SMALL_STATE(831)] = 17889, + [SMALL_STATE(832)] = 17896, + [SMALL_STATE(833)] = 17903, + [SMALL_STATE(834)] = 17910, + [SMALL_STATE(835)] = 17917, + [SMALL_STATE(836)] = 17922, + [SMALL_STATE(837)] = 17929, + [SMALL_STATE(838)] = 17936, + [SMALL_STATE(839)] = 17943, + [SMALL_STATE(840)] = 17950, + [SMALL_STATE(841)] = 17955, + [SMALL_STATE(842)] = 17962, + [SMALL_STATE(843)] = 17969, + [SMALL_STATE(844)] = 17976, + [SMALL_STATE(845)] = 17983, + [SMALL_STATE(846)] = 17990, + [SMALL_STATE(847)] = 17997, + [SMALL_STATE(848)] = 18004, + [SMALL_STATE(849)] = 18011, + [SMALL_STATE(850)] = 18018, + [SMALL_STATE(851)] = 18025, + [SMALL_STATE(852)] = 18032, + [SMALL_STATE(853)] = 18039, + [SMALL_STATE(854)] = 18046, + [SMALL_STATE(855)] = 18053, + [SMALL_STATE(856)] = 18060, + [SMALL_STATE(857)] = 18065, + [SMALL_STATE(858)] = 18072, + [SMALL_STATE(859)] = 18079, + [SMALL_STATE(860)] = 18086, + [SMALL_STATE(861)] = 18091, + [SMALL_STATE(862)] = 18098, + [SMALL_STATE(863)] = 18105, + [SMALL_STATE(864)] = 18112, + [SMALL_STATE(865)] = 18119, + [SMALL_STATE(866)] = 18126, + [SMALL_STATE(867)] = 18133, + [SMALL_STATE(868)] = 18140, + [SMALL_STATE(869)] = 18147, + [SMALL_STATE(870)] = 18154, + [SMALL_STATE(871)] = 18161, + [SMALL_STATE(872)] = 18168, + [SMALL_STATE(873)] = 18175, + [SMALL_STATE(874)] = 18182, + [SMALL_STATE(875)] = 18189, + [SMALL_STATE(876)] = 18196, + [SMALL_STATE(877)] = 18203, + [SMALL_STATE(878)] = 18210, + [SMALL_STATE(879)] = 18214, + [SMALL_STATE(880)] = 18218, + [SMALL_STATE(881)] = 18222, + [SMALL_STATE(882)] = 18226, + [SMALL_STATE(883)] = 18230, + [SMALL_STATE(884)] = 18234, + [SMALL_STATE(885)] = 18238, + [SMALL_STATE(886)] = 18242, + [SMALL_STATE(887)] = 18246, + [SMALL_STATE(888)] = 18250, + [SMALL_STATE(889)] = 18254, + [SMALL_STATE(890)] = 18258, + [SMALL_STATE(891)] = 18262, + [SMALL_STATE(892)] = 18266, + [SMALL_STATE(893)] = 18270, + [SMALL_STATE(894)] = 18274, + [SMALL_STATE(895)] = 18278, + [SMALL_STATE(896)] = 18282, + [SMALL_STATE(897)] = 18286, + [SMALL_STATE(898)] = 18290, + [SMALL_STATE(899)] = 18294, + [SMALL_STATE(900)] = 18298, + [SMALL_STATE(901)] = 18302, + [SMALL_STATE(902)] = 18306, + [SMALL_STATE(903)] = 18310, + [SMALL_STATE(904)] = 18314, + [SMALL_STATE(905)] = 18318, + [SMALL_STATE(906)] = 18322, + [SMALL_STATE(907)] = 18326, + [SMALL_STATE(908)] = 18330, + [SMALL_STATE(909)] = 18334, + [SMALL_STATE(910)] = 18338, + [SMALL_STATE(911)] = 18342, + [SMALL_STATE(912)] = 18346, + [SMALL_STATE(913)] = 18350, + [SMALL_STATE(914)] = 18354, + [SMALL_STATE(915)] = 18358, + [SMALL_STATE(916)] = 18362, + [SMALL_STATE(917)] = 18366, + [SMALL_STATE(918)] = 18370, + [SMALL_STATE(919)] = 18374, + [SMALL_STATE(920)] = 18378, + [SMALL_STATE(921)] = 18382, + [SMALL_STATE(922)] = 18386, + [SMALL_STATE(923)] = 18390, + [SMALL_STATE(924)] = 18394, + [SMALL_STATE(925)] = 18398, + [SMALL_STATE(926)] = 18402, + [SMALL_STATE(927)] = 18406, + [SMALL_STATE(928)] = 18410, + [SMALL_STATE(929)] = 18414, + [SMALL_STATE(930)] = 18418, + [SMALL_STATE(931)] = 18422, + [SMALL_STATE(932)] = 18426, + [SMALL_STATE(933)] = 18430, + [SMALL_STATE(934)] = 18434, + [SMALL_STATE(935)] = 18438, + [SMALL_STATE(936)] = 18442, + [SMALL_STATE(937)] = 18446, + [SMALL_STATE(938)] = 18450, + [SMALL_STATE(939)] = 18454, + [SMALL_STATE(940)] = 18458, +}; + +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(371), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1), + [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, .production_id = 3), + [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, .production_id = 2), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(371), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(528), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(370), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(578), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(22), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(451), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(520), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(541), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(516), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(517), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(519), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(515), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(797), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(222), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(225), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(226), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(228), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(229), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(373), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(372), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(798), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(415), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(413), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(438), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(475), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(444), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(463), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(457), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_quote_repeat1, 2), SHIFT_REPEAT(551), + [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(371), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(528), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(370), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(578), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(22), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(451), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(541), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(516), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(517), + [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(519), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(515), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(797), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(222), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(225), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(226), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(228), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(229), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(373), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(372), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(798), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(415), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(413), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(438), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(475), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(444), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(463), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(457), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(551), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, .production_id = 1), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(369), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(23), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(476), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(525), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(527), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(534), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(536), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(538), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(792), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(375), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(374), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(810), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(437), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(439), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(442), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(464), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(449), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(465), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(454), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2), SHIFT_REPEAT(546), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, .production_id = 1), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, .production_id = 1), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, .production_id = 1), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(371), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(528), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(369), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(578), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(23), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(476), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(527), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(534), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(536), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(538), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(792), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(222), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(225), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(226), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(228), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(229), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(375), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(374), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(810), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(437), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(439), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(442), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(464), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(449), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(465), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(454), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(546), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(370), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(22), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(451), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(516), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(517), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(519), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(515), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(797), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(373), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(372), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(798), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(415), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(413), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(438), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(475), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(444), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(463), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(457), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2), SHIFT_REPEAT(551), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, .production_id = 1), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, .production_id = 1), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(371), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(528), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(370), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(578), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(22), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(451), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(517), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(519), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(515), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(797), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(222), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(225), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(226), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(228), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(229), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(373), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(372), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(798), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(415), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(413), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(438), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(475), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(444), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(463), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(457), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(551), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(369), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(23), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(476), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(534), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(536), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(538), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(792), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(375), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(374), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(810), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(437), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(439), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(442), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(464), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(449), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(465), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(454), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2), SHIFT_REPEAT(546), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, .production_id = 1), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(371), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(528), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(369), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(578), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(23), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(476), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(536), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(538), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(792), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(222), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(225), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(226), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(228), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(229), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(375), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(374), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(810), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(437), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(439), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(442), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(464), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(449), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(465), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(454), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(546), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, .production_id = 1), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(370), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(22), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(451), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(519), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(515), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(797), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(373), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(372), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(798), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(415), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(413), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(438), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(475), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(444), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(463), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(457), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2), SHIFT_REPEAT(551), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(371), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(528), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(370), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(578), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(22), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(451), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(515), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(797), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(222), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(225), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(226), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(228), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(229), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(373), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(372), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(798), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(415), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(413), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(438), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(475), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(444), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(463), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(457), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(551), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, .production_id = 1), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, .production_id = 1), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(369), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(23), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(476), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(538), + [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(792), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(375), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(374), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(810), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(437), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(439), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(442), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(464), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(449), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(465), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(454), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2), SHIFT_REPEAT(546), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, .production_id = 1), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, .production_id = 1), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(371), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(528), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(370), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(578), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(22), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(451), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(797), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(222), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(225), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(226), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(228), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(229), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(373), + [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(372), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(798), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(415), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(413), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(438), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(475), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(444), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(463), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(457), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(551), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(369), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(23), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(476), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(792), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(375), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(374), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(810), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(437), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(439), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(442), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(464), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(449), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(465), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(454), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(546), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(225), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 1), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(451), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(798), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), SHIFT_REPEAT(228), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), SHIFT_REPEAT(229), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(226), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), SHIFT_REPEAT(222), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 2), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(476), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(810), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(436), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(443), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(480), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(736), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(436), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(443), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(480), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(712), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 4), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 4), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(436), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(443), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(480), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(725), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(436), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(443), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(480), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(715), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(740), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(739), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(733), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(436), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(443), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(480), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(742), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(754), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(726), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_not_section, 1), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 2), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 2), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 2), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 2), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 2), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 2), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 2), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 2), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 2), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 2), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 2), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 2), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 3), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 3), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 3), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 3), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 3), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 3), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 3), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 3), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 3), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 3), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 3), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 4), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 3), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 3), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 2), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 2), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 3), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 3), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 2), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 2), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 4), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 4), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 3), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, .production_id = 5), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, .production_id = 5), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, .production_id = 5), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, .production_id = 5), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, .production_id = 5), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, .production_id = 5), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, .production_id = 5), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, .production_id = 5), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, .production_id = 5), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, .production_id = 5), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, .production_id = 5), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, .production_id = 5), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, .production_id = 2), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, .production_id = 2), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, .production_id = 2), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, .production_id = 2), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, .production_id = 2), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, .production_id = 2), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, .production_id = 2), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, .production_id = 2), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, .production_id = 2), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, .production_id = 2), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 2), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 2), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 1), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 1), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blank_line, 2), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 2), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 6), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading1, 3, .production_id = 6), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setext_heading1, 3, .production_id = 6), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading2, 3, .production_id = 6), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setext_heading2, 3, .production_id = 6), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, .production_id = 8), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, .production_id = 8), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 4), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 4), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 4), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 4), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 4), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 4), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 4), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 4), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 4), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 4), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 4), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 4), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 4), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 4), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 7), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 9), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 8), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 5), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 5), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, .production_id = 8), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, .production_id = 8), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, .production_id = 2), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat2, 2), SHIFT_REPEAT(528), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2), SHIFT_REPEAT(528), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2), SHIFT_REPEAT(578), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2), SHIFT_REPEAT(523), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2), SHIFT_REPEAT(525), + [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2), SHIFT_REPEAT(527), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2), SHIFT_REPEAT(534), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2), SHIFT_REPEAT(536), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2), SHIFT_REPEAT(538), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, .production_id = 3), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 1), SHIFT(485), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 1), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 1), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 1), SHIFT(445), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 1), SHIFT(445), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 1), SHIFT(518), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(591), + [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(384), + [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(504), + [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(504), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 3), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 2), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(560), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(404), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(404), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(489), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(540), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(540), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(590), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(535), + [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(535), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(596), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(889), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(514), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(514), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(888), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(584), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(542), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(542), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(886), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(592), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(528), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(528), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(578), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(513), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(513), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(884), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(573), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(587), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(435), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(435), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(518), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(532), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(532), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(586), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(587), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(446), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(446), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(518), + [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(587), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(447), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(447), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(518), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(587), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(459), + [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(459), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(518), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(595), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(595), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(568), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(628), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2), SHIFT_REPEAT(604), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2), SHIFT_REPEAT(582), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2), SHIFT_REPEAT(582), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2), SHIFT_REPEAT(467), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2), SHIFT_REPEAT(639), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(595), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(595), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(628), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 1), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(595), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(595), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(583), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language, 1), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(591), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(481), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(481), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(632), + [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(490), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(490), + [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(496), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 2), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(632), + [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(492), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(492), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_cell_repeat1, 2), SHIFT_REPEAT(495), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_cell_repeat1, 2), SHIFT_REPEAT(495), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_cell_repeat1, 2), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), + [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(501), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(501), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 3), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(521), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(521), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(522), + [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(522), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(526), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(526), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(530), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(530), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(533), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(533), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2), SHIFT_REPEAT(537), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2), SHIFT_REPEAT(613), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat2, 2), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_info_string_repeat2, 2), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat2, 2), SHIFT_REPEAT(539), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(544), + [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(544), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(556), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(556), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), + [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT_REPEAT(858), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT_REPEAT(858), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backslash_escape, 1), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backslash_escape, 1), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), SHIFT_REPEAT(858), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(564), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(564), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 1), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 1), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_cell_repeat1, 2), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_cell_repeat1, 2), SHIFT_REPEAT(589), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_cell_repeat1, 2), SHIFT_REPEAT(589), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 2), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 2), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__word, 1), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__word, 1), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_list_marker_unchecked, 1), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_list_marker_checked, 1), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_cell_repeat1, 2), SHIFT_REPEAT(629), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_cell_repeat1, 2), SHIFT_REPEAT(629), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(633), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2), SHIFT_REPEAT(633), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 1), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 1), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 3), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 3), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2), SHIFT_REPEAT(746), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2), SHIFT_REPEAT(832), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2), SHIFT_REPEAT(760), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2), SHIFT_REPEAT(659), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, .production_id = 7), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, .production_id = 9), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2), SHIFT_REPEAT(719), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2), SHIFT_REPEAT(524), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, .production_id = 10), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3237] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_markdown_external_scanner_create(void); +void tree_sitter_markdown_external_scanner_destroy(void *); +bool tree_sitter_markdown_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_markdown_external_scanner_serialize(void *, char *); +void tree_sitter_markdown_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_markdown(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_markdown_external_scanner_create, + tree_sitter_markdown_external_scanner_destroy, + tree_sitter_markdown_external_scanner_scan, + tree_sitter_markdown_external_scanner_serialize, + tree_sitter_markdown_external_scanner_deserialize, + }, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/src/scanner.cc b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/scanner.cc new file mode 100644 index 0000000000..0924fc6a04 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/scanner.cc @@ -0,0 +1,1456 @@ +#include +#include +#include +#include +#include +#include +#include + +using std::vector; +using std::memcpy; + +namespace TreeSitterMarkdown { + +// For explanation of the tokens see grammar.js +enum TokenType { + LINE_ENDING, + SOFT_LINE_ENDING, + BLOCK_CLOSE, + BLOCK_CONTINUATION, + BLOCK_QUOTE_START, + INDENTED_CHUNK_START, + ATX_H1_MARKER, + ATX_H2_MARKER, + ATX_H3_MARKER, + ATX_H4_MARKER, + ATX_H5_MARKER, + ATX_H6_MARKER, + SETEXT_H1_UNDERLINE, + SETEXT_H2_UNDERLINE, + THEMATIC_BREAK, + LIST_MARKER_MINUS, + LIST_MARKER_PLUS, + LIST_MARKER_STAR, + LIST_MARKER_PARENTHESIS, + LIST_MARKER_DOT, + LIST_MARKER_MINUS_DONT_INTERRUPT, + LIST_MARKER_PLUS_DONT_INTERRUPT, + LIST_MARKER_STAR_DONT_INTERRUPT, + LIST_MARKER_PARENTHESIS_DONT_INTERRUPT, + LIST_MARKER_DOT_DONT_INTERRUPT, + FENCED_CODE_BLOCK_START_BACKTICK, + FENCED_CODE_BLOCK_START_TILDE, + BLANK_LINE_START, + FENCED_CODE_BLOCK_END_BACKTICK, + FENCED_CODE_BLOCK_END_TILDE, + HTML_BLOCK_1_START, + HTML_BLOCK_1_END, + HTML_BLOCK_2_START, + HTML_BLOCK_3_START, + HTML_BLOCK_4_START, + HTML_BLOCK_5_START, + HTML_BLOCK_6_START, + HTML_BLOCK_7_START, + CLOSE_BLOCK, + NO_INDENTED_CHUNK, + ERROR, + TRIGGER_ERROR, + TOKEN_EOF, + MINUS_METADATA, + PLUS_METADATA, + PIPE_TABLE_START, + PIPE_TABLE_LINE_ENDING, +}; + +// Description of a block on the block stack. +// +// LIST_ITEM is a list item with minimal indentation (content begins at indent level 2) while +// LIST_ITEM_MAX_INDENTATION represents a list item with maximal indentation without being +// considered a indented code block. +// +// ANONYMOUS represents any block that whose close is not handled by the external scanner. +enum Block : uint8_t { + BLOCK_QUOTE, + INDENTED_CODE_BLOCK, + LIST_ITEM, + LIST_ITEM_1_INDENTATION, + LIST_ITEM_2_INDENTATION, + LIST_ITEM_3_INDENTATION, + LIST_ITEM_4_INDENTATION, + LIST_ITEM_5_INDENTATION, + LIST_ITEM_6_INDENTATION, + LIST_ITEM_7_INDENTATION, + LIST_ITEM_8_INDENTATION, + LIST_ITEM_9_INDENTATION, + LIST_ITEM_10_INDENTATION, + LIST_ITEM_11_INDENTATION, + LIST_ITEM_12_INDENTATION, + LIST_ITEM_13_INDENTATION, + LIST_ITEM_14_INDENTATION, + LIST_ITEM_MAX_INDENTATION, + FENCED_CODE_BLOCK, + ANONYMOUS, +}; + +// Determines if a character is punctuation as defined by the markdown spec. +bool is_punctuation(char c) { + return + (c >= '!' && c <= '/') || + (c >= ':' && c <= '@') || + (c >= '[' && c <= '`') || + (c >= '{' && c <= '~'); +} + +// Returns true if the block represents a list item +bool is_list_item(Block block) { + return block >= LIST_ITEM && block <= LIST_ITEM_MAX_INDENTATION; +} + +// Returns the indentation level which lines of a list item should have at minimum. Should only be +// called with blocks for which `is_list_item` returns true. +uint8_t list_item_indentation(Block block) { + return block - LIST_ITEM + 2; +} + +const size_t NUM_HTML_TAG_NAMES_RULE_1 = 3; +const char* HTML_TAG_NAMES_RULE_1[NUM_HTML_TAG_NAMES_RULE_1] = { "pre", "script", "style" }; +const size_t NUM_HTML_TAG_NAMES_RULE_7 = 62; +const char* HTML_TAG_NAMES_RULE_7[NUM_HTML_TAG_NAMES_RULE_7] = { + "address", "article", "aside", "base", "basefont", "blockquote", "body", "caption", "center", + "col", "colgroup", "dd", "details", "dialog", "dir", "div", "dl", "dt", "fieldset", "figcaption", + "figure", "footer", "form", "frame", "frameset", "h1", "h2", "h3", "h4", "h5", "h6", "head", + "header", "hr", "html", "iframe", "legend", "li", "link", "main", "menu", "menuitem", "nav", + "noframes", "ol", "optgroup", "option", "p", "param", "section", "source", "summary", "table", + "tbody", "td", "tfoot", "th", "thead", "title", "tr", "track", "ul" +}; + +// For explanation of the tokens see grammar.js +const bool paragraph_interrupt_symbols[] = { + false, // LINE_ENDING, + false, // SOFT_LINE_ENDING, + false, // BLOCK_CLOSE, + false, // BLOCK_CONTINUATION, + true, // BLOCK_QUOTE_START, + false, // INDENTED_CHUNK_START, + true, // ATX_H1_MARKER, + true, // ATX_H2_MARKER, + true, // ATX_H3_MARKER, + true, // ATX_H4_MARKER, + true, // ATX_H5_MARKER, + true, // ATX_H6_MARKER, + true, // SETEXT_H1_UNDERLINE, + true, // SETEXT_H2_UNDERLINE, + true, // THEMATIC_BREAK, + true, // LIST_MARKER_MINUS, + true, // LIST_MARKER_PLUS, + true, // LIST_MARKER_STAR, + true, // LIST_MARKER_PARENTHESIS, + true, // LIST_MARKER_DOT, + false, // LIST_MARKER_MINUS_DONT_INTERRUPT, + false, // LIST_MARKER_PLUS_DONT_INTERRUPT, + false, // LIST_MARKER_STAR_DONT_INTERRUPT, + false, // LIST_MARKER_PARENTHESIS_DONT_INTERRUPT, + false, // LIST_MARKER_DOT_DONT_INTERRUPT, + true, // FENCED_CODE_BLOCK_START_BACKTICK, + true, // FENCED_CODE_BLOCK_START_TILDE, + true, // BLANK_LINE_START, + false, // FENCED_CODE_BLOCK_END_BACKTICK, + false, // FENCED_CODE_BLOCK_END_TILDE, + true, // HTML_BLOCK_1_START, + false, // HTML_BLOCK_1_END, + true, // HTML_BLOCK_2_START, + true, // HTML_BLOCK_3_START, + true, // HTML_BLOCK_4_START, + true, // HTML_BLOCK_5_START, + true, // HTML_BLOCK_6_START, + false, // HTML_BLOCK_7_START, + false, // CLOSE_BLOCK, + false, // NO_INDENTED_CHUNK, + false, // ERROR, + false, // TRIGGER_ERROR, + true, // PIPE_TABLE_START, + false, // PIPE_TABLE_LINE_ENDING, +}; + +// State bitflags used with `Scanner.state` + +// Currently matching (at the beginning of a line) +const uint8_t STATE_MATCHING = 0x1 << 0; +// Last line break was inside a paragraph +const uint8_t STATE_WAS_SOFT_LINE_BREAK = 0x1 << 1; +// Block should be closed after next line break +const uint8_t STATE_CLOSE_BLOCK = 0x1 << 4; + +struct Scanner { + + // A stack of open blocks in the current parse state + vector open_blocks; + // Parser state flags + uint8_t state; + // Number of blocks that have been matched so far. Only changes during matching and is reset + // after every line ending + uint8_t matched; + // Consumed but "unused" indentation. Sometimes a tab needs to be "split" to be used in + // multiple tokens. + uint8_t indentation; + // The current column. Used to decide how many spaces a tab should equal + uint8_t column; + // The delimiter length of the currently open fenced code block + uint8_t fenced_code_block_delimiter_length; + + bool simulate; + + Scanner() { + assert(sizeof(Block) == sizeof(char)); + assert(ATX_H6_MARKER == ATX_H1_MARKER + 5); + deserialize(NULL, 0); + } + + // Write the whole state of a Scanner to a byte buffer + unsigned serialize(char *buffer) { + size_t i = 0; + buffer[i++] = state; + buffer[i++] = matched; + buffer[i++] = indentation; + buffer[i++] = column; + buffer[i++] = fenced_code_block_delimiter_length; + size_t blocks_count = open_blocks.size(); + if (blocks_count > UINT8_MAX - i) blocks_count = UINT8_MAX - i; + if (blocks_count > 0) { + memcpy(&buffer[i], open_blocks.data(), blocks_count); + i += blocks_count; + } + return i; + } + + // Read the whole state of a Scanner from a byte buffer + // `serizalize` and `deserialize` should be fully symmetric. + void deserialize(const char *buffer, unsigned length) { + open_blocks.clear(); + state = 0; + matched = 0; + indentation = 0; + column = 0; + fenced_code_block_delimiter_length = 0; + if (length > 0) { + size_t i = 0; + state = buffer[i++]; + matched = buffer[i++]; + indentation = buffer[i++]; + column = buffer[i++]; + fenced_code_block_delimiter_length = buffer[i++]; + size_t blocks_count = length - i; + open_blocks.resize(blocks_count); + if (blocks_count > 0) { + memcpy(open_blocks.data(), &buffer[i], blocks_count); + } + } + } + + // Advance the lexer one character + // Also keeps track of the current column, counting tabs as spaces with tab stop 4 + // See https://github.github.com/gfm/#tabs + size_t advance(TSLexer *lexer) { + size_t size = 1; + if (lexer->lookahead == '\t') { + size = 4 - column; + column = 0; + } else { + column = (column + 1) % 4; + } + lexer->advance(lexer, false); + return size; + } + + void mark_end(TSLexer * lexer) { + if (!simulate) { + lexer->mark_end(lexer); + } + } + + // Convenience function to emit the error token. This is done to stop invalid parse branches. + // Specifically: + // 1. When encountering a newline after a line break that ended a paragraph, and no new block + // has been opened. + // 2. When encountering a new block after a soft line break. + // 3. When a `$._trigger_error` token is valid, which is used to stop parse branches through + // normal tree-sitter grammar rules. + // + // See also the `$._soft_line_break` and `$._paragraph_end_newline` tokens in grammar.js + bool error(TSLexer *lexer) { + lexer->result_symbol = ERROR; + return true; + } + + bool scan(TSLexer *lexer, const bool *valid_symbols) { + // A normal tree-sitter rule decided that the current branch is invalid and now "requests" + // an error to stop the branch + if (valid_symbols[TRIGGER_ERROR]) { + return error(lexer); + } + + // Close the inner most block after the next line break as requested. See `$._close_block` + // in grammar.js + if (valid_symbols[CLOSE_BLOCK]) { + state |= STATE_CLOSE_BLOCK; + lexer->result_symbol = CLOSE_BLOCK; + return true; + } + + // if we are at the end of the file and there are still open blocks close them all + if (lexer->eof(lexer)) { + if (valid_symbols[TOKEN_EOF]) { + lexer->result_symbol = TOKEN_EOF; + return true; + } + if (open_blocks.size() > 0) { + lexer->result_symbol = BLOCK_CLOSE; + if (!simulate) open_blocks.pop_back(); + return true; + } + return false; + } + + if (!(state & STATE_MATCHING)) { + // Parse any preceeding whitespace and remember its length. This makes a lot of parsing + // quite a bit easier. + for (;;) { + if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + indentation += advance(lexer); + } else { + break; + } + } + // We are not matching. This is where the parsing logic for most "normal" token is. + // Most importantly parsing logic for the start of new blocks. + if (valid_symbols[INDENTED_CHUNK_START] && !valid_symbols[NO_INDENTED_CHUNK]) { + if (indentation >= 4 && lexer->lookahead != '\n' && lexer->lookahead != '\r') { + lexer->result_symbol = INDENTED_CHUNK_START; + if (!simulate) open_blocks.push_back(INDENTED_CODE_BLOCK); + indentation -= 4; + return true; + } + } + // Decide which tokens to consider based on the first non-whitespace character + switch (lexer->lookahead) { + case '\r': + case '\n': + if (valid_symbols[BLANK_LINE_START]) { + // A blank line token is actually just 0 width, so do not consume the + // characters + lexer->result_symbol = BLANK_LINE_START; + return true; + } + break; + case '`': + // A backtick could mark the beginning or ending of a fenced code block. + return parse_fenced_code_block('`', lexer, valid_symbols); + break; + case '~': + // A tilde could mark the beginning or ending of a fenced code block. + return parse_fenced_code_block('~', lexer, valid_symbols); + break; + case '*': + // A star could either mark a list item or a thematic break. + // This code is similar to the code for '_' and '+'. + return parse_star(lexer, valid_symbols); + break; + case '_': + return parse_thematic_break_underscore(lexer, valid_symbols); + break; + case '>': + // A '>' could mark the beginning of a block quote + return parse_block_quote(lexer, valid_symbols); + break; + case '#': + // A '#' could mark a atx heading + return parse_atx_heading(lexer, valid_symbols); + break; + case '=': + // A '=' could mark a setext underline + return parse_setext_underline(lexer, valid_symbols); + break; + case '+': + // A '+' could be a list marker + return parse_plus(lexer, valid_symbols); + break; + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + // A number could be a list marker (if followed by a dot or a parenthesis) + return parse_ordered_list_marker(lexer, valid_symbols); + break; + case '-': + // A minus could mark a list marker, a thematic break or a setext underline + return parse_minus(lexer, valid_symbols); + break; + case '<': + // A < could mark the beginning of a html block + return parse_html_block(lexer, valid_symbols); + break; + } + if (lexer->lookahead != '\r' && lexer->lookahead != '\n' && valid_symbols[PIPE_TABLE_START]) { + return parse_pipe_table(lexer, valid_symbols); + } + } else { // we are in the state of trying to match all currently open blocks + bool partial_success = false; + while (matched < open_blocks.size()) { + if (matched == open_blocks.size() - 1 && (state & STATE_CLOSE_BLOCK)) { + if (!partial_success) state &= ~STATE_CLOSE_BLOCK; + break; + } + if (match(lexer, open_blocks[matched])) { + partial_success = true; + matched++; + } else { + if (state & STATE_WAS_SOFT_LINE_BREAK) { + state &= (~STATE_MATCHING); + } + break; + } + } + if (partial_success) { + if (matched == open_blocks.size()) { + state &= (~STATE_MATCHING); + } + lexer->result_symbol = BLOCK_CONTINUATION; + return true; + } + + if (!(state & STATE_WAS_SOFT_LINE_BREAK)) { + Block block = open_blocks[open_blocks.size() - 1]; + lexer->result_symbol = BLOCK_CLOSE; + if (block == FENCED_CODE_BLOCK) { + mark_end(lexer); + indentation = 0; + } + open_blocks.pop_back(); + if (matched == open_blocks.size()) { + state &= (~STATE_MATCHING); + } + return true; + } + } + + // The parser just encountered a line break. Setup the state correspondingly + if ((valid_symbols[LINE_ENDING] || valid_symbols[SOFT_LINE_ENDING] || valid_symbols[PIPE_TABLE_LINE_ENDING]) && + (lexer->lookahead == '\n' || lexer->lookahead == '\r')) { + if (lexer->lookahead == '\r') { + advance(lexer); + if (lexer->lookahead == '\n') { + advance(lexer); + } + } else { + advance(lexer); + } + indentation = 0; + column = 0; + if (!(state & STATE_CLOSE_BLOCK) && (valid_symbols[SOFT_LINE_ENDING] || valid_symbols[PIPE_TABLE_LINE_ENDING])) { + lexer->mark_end(lexer); + for (;;) { + if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + indentation += advance(lexer); + } else { + break; + } + } + simulate = true; + uint8_t matched_temp = matched; + matched = 0; + bool one_will_be_matched = false; + while (matched < open_blocks.size()) { + if (match(lexer, open_blocks[matched])) { + matched++; + one_will_be_matched = true; + } else { + break; + } + } + bool all_will_be_matched = matched == open_blocks.size(); + matched = matched_temp; + if (!lexer->eof(lexer) && !scan(lexer, paragraph_interrupt_symbols)) { + // If the last line break ended a paragraph and no new block opened, the last line + // break should have been a soft line break + // Reset the counter for matched blocks + matched = 0; + indentation = 0; + column = 0; + // If there is at least one open block, we should be in the matching state. + // Also set the matching flag if a `$._soft_line_break_marker` can be emitted so it + // does get emitted. + if (one_will_be_matched) { + state |= STATE_MATCHING; + } else { + state &= (~STATE_MATCHING); + } + if (valid_symbols[PIPE_TABLE_LINE_ENDING]) { + if (all_will_be_matched) { + lexer->result_symbol = PIPE_TABLE_LINE_ENDING; + return true; + } + } else { + lexer->result_symbol = SOFT_LINE_ENDING; + // reset some state variables + state |= STATE_WAS_SOFT_LINE_BREAK; + return true; + } + } + indentation = 0; + column = 0; + } + if (valid_symbols[LINE_ENDING]) { + // If the last line break ended a paragraph and no new block opened, the last line + // break should have been a soft line break + // Reset the counter for matched blocks + matched = 0; + // If there is at least one open block, we should be in the matching state. + // Also set the matching flag if a `$._soft_line_break_marker` can be emitted so it + // does get emitted. + if (open_blocks.size() > 0) { + state |= STATE_MATCHING; + } else { + state &= (~STATE_MATCHING); + } + // reset some state variables + state &= + (~STATE_WAS_SOFT_LINE_BREAK); + lexer->result_symbol = LINE_ENDING; + return true; + } + } + return false; + } + + // Try to match the given block, i.e. consume all tokens that belong to the block. These are + // 1. indentation for list items and indented code blocks + // 2. '>' for block quotes + // Returns true if the block is matched and false otherwise + bool match(TSLexer *lexer, Block block) { + switch (block) { + case INDENTED_CODE_BLOCK: + while (indentation < 4) { + if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + indentation += advance(lexer); + } else { + break; + } + } + if (indentation >= 4 && lexer->lookahead != '\n' && lexer->lookahead != '\r') { + indentation -= 4; + return true; + } + break; + case LIST_ITEM: + case LIST_ITEM_1_INDENTATION: + case LIST_ITEM_2_INDENTATION: + case LIST_ITEM_3_INDENTATION: + case LIST_ITEM_4_INDENTATION: + case LIST_ITEM_5_INDENTATION: + case LIST_ITEM_6_INDENTATION: + case LIST_ITEM_7_INDENTATION: + case LIST_ITEM_8_INDENTATION: + case LIST_ITEM_9_INDENTATION: + case LIST_ITEM_10_INDENTATION: + case LIST_ITEM_11_INDENTATION: + case LIST_ITEM_12_INDENTATION: + case LIST_ITEM_13_INDENTATION: + case LIST_ITEM_14_INDENTATION: + case LIST_ITEM_MAX_INDENTATION: + while (indentation < list_item_indentation(block)) { + if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + indentation += advance(lexer); + } else { + break; + } + } + if (indentation >= list_item_indentation(block)) { + indentation -= list_item_indentation(block); + return true; + } + if (lexer->lookahead == '\n' || lexer->lookahead == '\r') { + indentation = 0; + return true; + } + break; + case BLOCK_QUOTE: + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + indentation += advance(lexer); + } + if (lexer->lookahead == '>') { + advance(lexer); + indentation = 0; + if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + indentation += advance(lexer) - 1; + } + return true; + } + break; + case FENCED_CODE_BLOCK: + case ANONYMOUS: + return true; + } + return false; + } + + bool parse_fenced_code_block(const char delimiter, TSLexer *lexer, const bool *valid_symbols) { + // count the number of backticks + size_t level = 0; + while (lexer->lookahead == delimiter) { + advance(lexer); + level++; + } + mark_end(lexer); + // If this is able to close a fenced code block then that is the only valid interpretation. + // It can only close a fenced code block if the number of backticks is at least the number + // of backticks of the opening delimiter. Also it cannot be indented more than 3 spaces. + if ( + (delimiter == '`' ? + valid_symbols[FENCED_CODE_BLOCK_END_BACKTICK] : + valid_symbols[FENCED_CODE_BLOCK_END_TILDE]) && + indentation < 4 && + level >= fenced_code_block_delimiter_length && + (lexer->lookahead == '\n' || lexer->lookahead == '\r') + ) { + fenced_code_block_delimiter_length = 0; + lexer->result_symbol = delimiter == '`' ? + FENCED_CODE_BLOCK_END_BACKTICK : + FENCED_CODE_BLOCK_END_TILDE; + return true; + } + // If this could be the start of a fenced code block, check if the info string contains any + // backticks. + if ((delimiter == '`' ? + valid_symbols[FENCED_CODE_BLOCK_START_BACKTICK] : + valid_symbols[FENCED_CODE_BLOCK_START_TILDE]) && level >= 3) { + bool info_string_has_backtick = false; + if (delimiter == '`') { + while (lexer->lookahead != '\n' && lexer->lookahead != '\r' && !lexer->eof(lexer)) { + if (lexer->lookahead == '`') { + info_string_has_backtick = true; + break; + } + advance(lexer); + } + } + // If it does not then choose to interpret this as the start of a fenced code block. + if (!info_string_has_backtick) { + lexer->result_symbol = delimiter == '`' ? + FENCED_CODE_BLOCK_START_BACKTICK : + FENCED_CODE_BLOCK_START_TILDE; + if (!simulate) open_blocks.push_back(FENCED_CODE_BLOCK); + // Remember the length of the delimiter for later, since we need it to decide + // whether a sequence of backticks can close the block. + fenced_code_block_delimiter_length = level; + indentation = 0; + return true; + } + } + return false; + } + + bool parse_star(TSLexer *lexer, const bool *valid_symbols) { + advance(lexer); + mark_end(lexer); + // Otherwise count the number of stars permitting whitespaces between them. + size_t star_count = 1; + // Also remember how many stars there are before the first whitespace... + bool had_whitespace = false; + size_t star_count_before_whitespace = 1; + // ...and how many spaces follow the first star. + size_t extra_indentation = 0; + for (;;) { + if (lexer->lookahead == '*') { + if (star_count == 1 && extra_indentation >= 1 && valid_symbols[LIST_MARKER_STAR]) { + // If we get to this point then the token has to be at least this long. We need + // to call `mark_end` here in case we decide later that this is a list item. + mark_end(lexer); + } + if (!had_whitespace) { + star_count_before_whitespace++; + } + star_count++; + advance(lexer); + } else if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + had_whitespace = true; + if (star_count == 1) { + extra_indentation += advance(lexer); + } else { + advance(lexer); + } + } else { + break; + } + } + bool line_end = lexer->lookahead == '\n' || lexer->lookahead == '\r'; + bool dont_interrupt = false; + if (star_count == 1 && line_end) { + extra_indentation = 1; + // line is empty so don't interrupt paragraphs if this is a list marker + dont_interrupt = matched == open_blocks.size(); + } + // If there were at least 3 stars then this could be a thematic break + bool thematic_break = star_count >= 3 && line_end; + // If there was a star and at least one space after that star then this could be a list + // marker. + bool list_marker_star = star_count >= 1 && extra_indentation >= 1; + if (valid_symbols[THEMATIC_BREAK] && thematic_break && indentation < 4) { + // If a thematic break is valid then it takes precedence + lexer->result_symbol = THEMATIC_BREAK; + mark_end(lexer); + indentation = 0; + return true; + } else if ( + (dont_interrupt ? + valid_symbols[LIST_MARKER_STAR_DONT_INTERRUPT] : + valid_symbols[LIST_MARKER_STAR]) + && list_marker_star + ) { + // List markers take precedence over emphasis markers + // If star_count > 1 then we already called mark_end at the right point. Otherwise the + // token should go until this point. + if (star_count == 1) { + mark_end(lexer); + } + // Not counting one space... + extra_indentation--; + // ... check if the list item begins with an indented code block + if (extra_indentation <= 3) { + // If not then calculate the indentation level of the list item content as + // indentation of list marker + indentation after list marker - 1 + extra_indentation += indentation; + indentation = 0; + } else { + // Otherwise the indentation level is just the indentation of the list marker. We + // keep the indentation after the list marker for later blocks. + size_t temp = indentation; + indentation = extra_indentation; + extra_indentation = temp; + } + if (!simulate) open_blocks.push_back(Block(LIST_ITEM + extra_indentation)); + lexer->result_symbol = + dont_interrupt ? LIST_MARKER_STAR_DONT_INTERRUPT : LIST_MARKER_STAR; + return true; + } + return false; + } + + + bool parse_thematic_break_underscore(TSLexer *lexer, const bool *valid_symbols) { + advance(lexer); + mark_end(lexer); + size_t underscore_count = 1; + for (;;) { + if (lexer->lookahead == '_') { + underscore_count++; + advance(lexer); + } else if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } else { + break; + } + } + bool line_end = lexer->lookahead == '\n' || lexer->lookahead == '\r'; + if (underscore_count >= 3 && line_end && valid_symbols[THEMATIC_BREAK]) { + lexer->result_symbol = THEMATIC_BREAK; + mark_end(lexer); + indentation = 0; + return true; + } + return false; + } + + bool parse_block_quote(TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[BLOCK_QUOTE_START]) { + advance(lexer); + indentation = 0; + if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + indentation += advance(lexer) - 1; + } + lexer->result_symbol = BLOCK_QUOTE_START; + if (!simulate) open_blocks.push_back(BLOCK_QUOTE); + return true; + } + return false; + } + + bool parse_atx_heading(TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[ATX_H1_MARKER] && indentation <= 3) { + mark_end(lexer); + size_t level = 0; + while (lexer->lookahead == '#' && level <= 6) { + advance(lexer); + level++; + } + if (level <= 6 && (lexer->lookahead == ' ' || lexer->lookahead == '\t' || lexer->lookahead == '\n' || lexer->lookahead == '\r')) { + lexer->result_symbol = ATX_H1_MARKER + (level - 1); + indentation = 0; + mark_end(lexer); + return true; + } + } + return false; + } + + bool parse_setext_underline(TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[SETEXT_H1_UNDERLINE] && matched == open_blocks.size()) { + mark_end(lexer); + while (lexer->lookahead == '=') { + advance(lexer); + } + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } + if (lexer->lookahead == '\n' || lexer->lookahead == '\r') { + lexer->result_symbol = SETEXT_H1_UNDERLINE; + mark_end(lexer); + return true; + } + } + return false; + } + + bool parse_plus(TSLexer *lexer, const bool *valid_symbols) { + if (indentation <= 3 && (valid_symbols[LIST_MARKER_PLUS] || valid_symbols[LIST_MARKER_PLUS_DONT_INTERRUPT] || valid_symbols[PLUS_METADATA])) { + advance(lexer); + if (valid_symbols[PLUS_METADATA] && lexer->lookahead == '+') { + advance(lexer); + if (lexer->lookahead != '+') { + return false; + } + advance(lexer); + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } + if (lexer->lookahead != '\n' && lexer->lookahead != '\r') { + return false; + } + for (;;) { + // advance over newline + if (lexer->lookahead == '\r') { + advance(lexer); + if (lexer->lookahead == '\n') { + advance(lexer); + } + } else { + advance(lexer); + } + // check for pluses + size_t plus_count = 0; + while (lexer->lookahead == '+') { + plus_count++; + advance(lexer); + } + if (plus_count == 3) { + // if exactly 3 check if next symbol (after eventual + // whitespace) is newline + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } + if (lexer->lookahead == '\r' || lexer->lookahead == '\n') { + // if so also consume newline + if (lexer->lookahead == '\r') { + advance(lexer); + if (lexer->lookahead == '\n') { + advance(lexer); + } + } else { + advance(lexer); + } + mark_end(lexer); + lexer->result_symbol = PLUS_METADATA; + return true; + } + } + // otherwise consume rest of line + while (lexer->lookahead != '\n' && lexer->lookahead != '\r' && !lexer->eof(lexer)) { + advance(lexer); + } + // if end of file is reached, then this is not metadata + if (lexer->eof(lexer)) { + break; + } + } + } else { + size_t extra_indentation = 0; + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + extra_indentation += advance(lexer); + } + bool dont_interrupt = false; + if (lexer->lookahead == '\r' || lexer->lookahead == '\n') { + extra_indentation = 1; + dont_interrupt = true; + } + dont_interrupt = dont_interrupt && matched == open_blocks.size(); + if (extra_indentation >= 1 && (dont_interrupt ? valid_symbols[LIST_MARKER_PLUS_DONT_INTERRUPT] : valid_symbols[LIST_MARKER_PLUS])) { + lexer->result_symbol = dont_interrupt ? LIST_MARKER_PLUS_DONT_INTERRUPT : LIST_MARKER_PLUS; + extra_indentation--; + if (extra_indentation <= 3) { + extra_indentation += indentation; + indentation = 0; + } else { + size_t temp = indentation; + indentation = extra_indentation; + extra_indentation = temp; + } + if (!simulate) open_blocks.push_back(Block(LIST_ITEM + extra_indentation)); + return true; + } + } + } + return false; + } + + bool parse_ordered_list_marker(TSLexer *lexer, const bool *valid_symbols) { + if (indentation <= 3 && (valid_symbols[LIST_MARKER_PARENTHESIS] || valid_symbols[LIST_MARKER_DOT])) { + size_t digits = 1; + bool dont_interrupt = lexer->lookahead != '1'; + advance(lexer); + while (lexer->lookahead >= '0' && lexer->lookahead <= '9') { + dont_interrupt = true; + digits++; + advance(lexer); + } + if (digits >= 1 && digits <= 9) { + bool dot = false; + bool parenthesis = false; + if (lexer->lookahead == '.') { + advance(lexer); + dot = true; + } else if (lexer->lookahead == ')') { + advance(lexer); + parenthesis = true; + } + if (dot || parenthesis) { + size_t extra_indentation = 0; + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + extra_indentation += advance(lexer); + } + bool line_end = lexer->lookahead == '\n' || lexer->lookahead == '\r'; + if (line_end) { + extra_indentation = 1; + dont_interrupt = true; + } + dont_interrupt = dont_interrupt && matched == open_blocks.size(); + if (extra_indentation >= 1 && (dot ? (dont_interrupt ? valid_symbols[LIST_MARKER_DOT_DONT_INTERRUPT] : valid_symbols[LIST_MARKER_DOT]) : (dont_interrupt ? valid_symbols[LIST_MARKER_PARENTHESIS_DONT_INTERRUPT] : valid_symbols[LIST_MARKER_PARENTHESIS]))) { + lexer->result_symbol = dot ? LIST_MARKER_DOT : LIST_MARKER_PARENTHESIS; + extra_indentation--; + if (extra_indentation <= 3) { + extra_indentation += indentation; + indentation = 0; + } else { + size_t temp = indentation; + indentation = extra_indentation; + extra_indentation = temp; + } + if (!simulate) open_blocks.push_back(Block(LIST_ITEM + extra_indentation + digits)); + return true; + } + } + } + } + return false; + } + + bool parse_minus(TSLexer *lexer, const bool *valid_symbols) { + if (indentation <= 3 && (valid_symbols[LIST_MARKER_MINUS] || valid_symbols[LIST_MARKER_MINUS_DONT_INTERRUPT] || valid_symbols[SETEXT_H2_UNDERLINE] || valid_symbols[THEMATIC_BREAK] || valid_symbols[MINUS_METADATA])) { + mark_end(lexer); + bool whitespace_after_minus = false; + bool minus_after_whitespace = false; + size_t minus_count = 0; + size_t extra_indentation = 0; + + for (;;) { + if (lexer->lookahead == '-') { + if (minus_count == 1 && extra_indentation >= 1) { + mark_end(lexer); + } + minus_count++; + advance(lexer); + minus_after_whitespace = whitespace_after_minus; + } else if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + if (minus_count == 1) { + extra_indentation += advance(lexer); + } else { + advance(lexer); + } + whitespace_after_minus = true; + } else { + break; + } + } + bool line_end = lexer->lookahead == '\n' || lexer->lookahead == '\r'; + bool dont_interrupt = false; + if (minus_count == 1 && line_end) { + extra_indentation = 1; + dont_interrupt = true; + } + dont_interrupt = dont_interrupt && matched == open_blocks.size(); + bool thematic_break = minus_count >= 3 && line_end; + bool underline = minus_count >= 1 && !minus_after_whitespace && line_end && matched == open_blocks.size(); // setext heading can not break lazy continuation + bool list_marker_minus = minus_count >= 1 && extra_indentation >= 1; + bool success = false; + if (valid_symbols[SETEXT_H2_UNDERLINE] && underline) { + lexer->result_symbol = SETEXT_H2_UNDERLINE; + mark_end(lexer); + indentation = 0; + success = true; + } else if (valid_symbols[THEMATIC_BREAK] && thematic_break) { // underline is false if list_marker_minus is true + lexer->result_symbol = THEMATIC_BREAK; + mark_end(lexer); + indentation = 0; + success = true; + } else if ((dont_interrupt ? valid_symbols[LIST_MARKER_MINUS_DONT_INTERRUPT] : valid_symbols[LIST_MARKER_MINUS]) && list_marker_minus) { + if (minus_count == 1) { + mark_end(lexer); + } + extra_indentation--; + if (extra_indentation <= 3) { + extra_indentation += indentation; + indentation = 0; + } else { + size_t temp = indentation; + indentation = extra_indentation; + extra_indentation = temp; + } + if (!simulate) open_blocks.push_back(Block(LIST_ITEM + extra_indentation)); + lexer->result_symbol = dont_interrupt ? LIST_MARKER_MINUS_DONT_INTERRUPT : LIST_MARKER_MINUS; + return true; + } + if (minus_count == 3 && (!minus_after_whitespace) && line_end && valid_symbols[MINUS_METADATA]) { + for (;;) { + // advance over newline + if (lexer->lookahead == '\r') { + advance(lexer); + if (lexer->lookahead == '\n') { + advance(lexer); + } + } else { + advance(lexer); + } + // check for minuses + minus_count = 0; + while (lexer->lookahead == '-') { + minus_count++; + advance(lexer); + } + if (minus_count == 3) { + // if exactly 3 check if next symbol (after eventual + // whitespace) is newline + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } + if (lexer->lookahead == '\r' || lexer->lookahead == '\n') { + // if so also consume newline + if (lexer->lookahead == '\r') { + advance(lexer); + if (lexer->lookahead == '\n') { + advance(lexer); + } + } else { + advance(lexer); + } + mark_end(lexer); + lexer->result_symbol = MINUS_METADATA; + return true; + } + } + // otherwise consume rest of line + while (lexer->lookahead != '\n' && lexer->lookahead != '\r' && !lexer->eof(lexer)) { + advance(lexer); + } + // if end of file is reached, then this is not metadata + if (lexer->eof(lexer)) { + break; + } + } + } + if (success) { + return true; + } + } + return false; + } + + bool parse_html_block(TSLexer *lexer, const bool *valid_symbols) { + if (!(valid_symbols[HTML_BLOCK_1_START] || valid_symbols[HTML_BLOCK_1_END] || + valid_symbols[HTML_BLOCK_2_START] || valid_symbols[HTML_BLOCK_3_START] || + valid_symbols[HTML_BLOCK_4_START] || valid_symbols[HTML_BLOCK_5_START] || + valid_symbols[HTML_BLOCK_6_START] || valid_symbols[HTML_BLOCK_7_START])) { + return false; + } + advance(lexer); + if (lexer->lookahead == '?' && valid_symbols[HTML_BLOCK_3_START]) { + advance(lexer); + lexer->result_symbol = HTML_BLOCK_3_START; + if (!simulate) open_blocks.push_back(ANONYMOUS); + return true; + } + if (lexer->lookahead == '!') { + // could be block 2 + advance(lexer); + if (lexer->lookahead == '-') { + advance(lexer); + if (lexer->lookahead == '-' && valid_symbols[HTML_BLOCK_2_START]) { + advance(lexer); + lexer->result_symbol = HTML_BLOCK_2_START; + if (!simulate) open_blocks.push_back(ANONYMOUS); + return true; + } + } else if ('A' <= lexer->lookahead && lexer->lookahead <= 'Z' && valid_symbols[HTML_BLOCK_4_START]) { + advance(lexer); + lexer->result_symbol = HTML_BLOCK_4_START; + if (!simulate) open_blocks.push_back(ANONYMOUS); + return true; + } else if (lexer->lookahead == '[') { + advance(lexer); + if (lexer->lookahead == 'C') { + advance(lexer); + if (lexer->lookahead == 'D') { + advance(lexer); + if (lexer->lookahead == 'A') { + advance(lexer); + if (lexer->lookahead == 'T') { + advance(lexer); + if (lexer->lookahead == 'A') { + advance(lexer); + if (lexer->lookahead == '[' && valid_symbols[HTML_BLOCK_5_START]) { + advance(lexer); + lexer->result_symbol = HTML_BLOCK_5_START; + if (!simulate) open_blocks.push_back(ANONYMOUS); + return true; + }}}}}} + } + } + bool starting_slash = lexer->lookahead == '/'; + if (starting_slash) { + advance(lexer); + } + char name[11]; + size_t name_length = 0; + while (isalpha(lexer->lookahead)) { + if (name_length < 10) { + name[name_length++] = tolower(lexer->lookahead); + } else { + name_length = 12; + } + advance(lexer); + } + if (name_length == 0) { + return false; + } + bool tag_closed = false; + if (name_length < 11) { + name[name_length] = 0; + bool next_symbol_valid = + lexer->lookahead == ' ' || lexer->lookahead == '\t' || + lexer->lookahead == '\n' || lexer->lookahead == '\r' || + lexer->lookahead == '>'; + if (next_symbol_valid) { + // try block 1 names + for (size_t i = 0; i < NUM_HTML_TAG_NAMES_RULE_1; i++) { + if (strcmp(name, HTML_TAG_NAMES_RULE_1[i]) == 0) { + if (starting_slash) { + if (valid_symbols[HTML_BLOCK_1_END]) { + lexer->result_symbol = HTML_BLOCK_1_END; + return true; + } + } else if (valid_symbols[HTML_BLOCK_1_START]) { + lexer->result_symbol = HTML_BLOCK_1_START; + if (!simulate) open_blocks.push_back(ANONYMOUS); + return true; + } + } + } + } + if (!next_symbol_valid && lexer->lookahead == '/') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + tag_closed = true; + } + } + if (next_symbol_valid || tag_closed) { + // try block 2 names + for (size_t i = 0; i < NUM_HTML_TAG_NAMES_RULE_7; i++) { + if (strcmp(name, HTML_TAG_NAMES_RULE_7[i]) == 0 && valid_symbols[HTML_BLOCK_6_START]) { + lexer->result_symbol = HTML_BLOCK_6_START; + if (!simulate) open_blocks.push_back(ANONYMOUS); + return true; + } + } + } + } + + if (!valid_symbols[HTML_BLOCK_7_START]) { + return false; + } + + if (!tag_closed) { + // tag name (continued) + while (isalnum(lexer->lookahead) || lexer->lookahead == '-') { + advance(lexer); + } + if (!starting_slash) { + // attributes + bool had_whitespace = false; + for (;;) { + // whitespace + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + had_whitespace = true; + advance(lexer); + } + if (lexer->lookahead == '/') { + advance(lexer); + break; + } + if (lexer->lookahead == '>') { + break; + } + // attribute name + if (!had_whitespace) { + return false; + } + if (!isalpha(lexer->lookahead) && lexer->lookahead != '_' && lexer->lookahead != ':') { + return false; + } + had_whitespace = false; + advance(lexer); + while (isalnum(lexer->lookahead) || lexer->lookahead == '_' || lexer->lookahead == '.' || lexer->lookahead == ':' || lexer->lookahead == '-') { + advance(lexer); + } + // attribute value specification + // optional whitespace + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + had_whitespace = true; + advance(lexer); + } + // = + if (lexer->lookahead == '=') { + advance(lexer); + had_whitespace = false; + // optional whitespace + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } + // attribute value + if (lexer->lookahead == '\'' || lexer->lookahead == '"') { + char delimiter = lexer->lookahead; + advance(lexer); + while (lexer->lookahead != delimiter && lexer->lookahead != '\n' && lexer->lookahead != '\r' && !lexer->eof(lexer)) { + advance(lexer); + } + if (lexer->lookahead != delimiter) { + return false; + } + advance(lexer); + } else { + // unquoted attribute value + bool had_one = false; + while (lexer->lookahead != ' ' && lexer->lookahead != '\t' && lexer->lookahead != '"' && lexer->lookahead != '\'' && lexer->lookahead != '=' && lexer->lookahead != '<' && lexer->lookahead != '>' && lexer->lookahead != '`' && lexer->lookahead != '\n' && lexer->lookahead != '\r' && !lexer->eof(lexer)) { + advance(lexer); + had_one = true; + } + if (!had_one) { + return false; + } + } + } + } + } else { + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } + } + if (lexer->lookahead != '>') { + return false; + } + advance(lexer); + } + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } + if (lexer->lookahead == '\r' || lexer->lookahead == '\n') { + lexer->result_symbol = HTML_BLOCK_7_START; + if (!simulate) open_blocks.push_back(ANONYMOUS); + return true; + } + return false; + } + + bool parse_pipe_table(TSLexer *lexer, const bool *valid_symbols) { + // PIPE_TABLE_START is zero width + mark_end(lexer); + // count number of cells + size_t cell_count = 0; + // also remember if we see starting and ending pipes, as empty headers have to have both + bool starting_pipe = false; + bool ending_pipe = false; + bool empty = true; + if (lexer->lookahead == '|') { + starting_pipe = true; + advance(lexer); + } + while (lexer->lookahead != '\r' && lexer->lookahead != '\n' && !lexer->eof(lexer)) { + if (lexer->lookahead == '|') { + cell_count++; + ending_pipe = true; + advance(lexer); + } else { + if (lexer->lookahead != ' ' && lexer->lookahead != '\t') { + ending_pipe = false; + } + if (lexer->lookahead == '\\') { + advance(lexer); + if (is_punctuation(lexer->lookahead)) { + advance(lexer); + } + } else { + advance(lexer); + } + } + } + if (empty && cell_count == 0 && !(starting_pipe && ending_pipe)) { + return false; + } + if (!ending_pipe) { + cell_count++; + } + + // check the following line for a delimiter row + // parse a newline + if (lexer->lookahead == '\n') { + advance(lexer); + } else if (lexer->lookahead == '\r') { + advance(lexer); + if (lexer->lookahead == '\n') { + advance(lexer); + } + } else { + return false; + } + indentation = 0; + column = 0; + for (;;) { + if (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + indentation += advance(lexer); + } else { + break; + } + } + simulate = true; + uint8_t matched_temp = 0; + while (matched_temp < open_blocks.size()) { + if (match(lexer, open_blocks[matched_temp])) { + matched_temp++; + } else { + return false; + } + } + + // check if delimiter row has the same number of cells and at least one pipe + size_t delimiter_cell_count = 0; + if (lexer->lookahead == '|') { + advance(lexer); + } + for (;;) { + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } + if (lexer->lookahead == '|') { + delimiter_cell_count++; + advance(lexer); + continue; + } + if (lexer->lookahead == ':') { + advance(lexer); + if (lexer->lookahead != '-') { + return false; + } + } + bool had_one_minus = false; + while (lexer->lookahead == '-') { + had_one_minus = true; + advance(lexer); + } + if (had_one_minus) { + delimiter_cell_count++; + } + if (lexer->lookahead == ':') { + if (!had_one_minus) { + return false; + } + advance(lexer); + } + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + advance(lexer); + } + if (lexer->lookahead == '|') { + if (!had_one_minus) { + delimiter_cell_count++; + } + advance(lexer); + continue; + } + if (lexer->lookahead != '\r' && lexer->lookahead != '\n') { + return false; + } else { + break; + } + } + // if the cell counts are not equal then this is not a table + if (cell_count != delimiter_cell_count) { + return false; + } + + lexer->result_symbol = PIPE_TABLE_START; + return true; + } + +}; + +} + +extern "C" { + void *tree_sitter_markdown_external_scanner_create() { + return new TreeSitterMarkdown::Scanner(); + } + + bool tree_sitter_markdown_external_scanner_scan( + void *payload, + TSLexer *lexer, + const bool *valid_symbols + ) { + TreeSitterMarkdown::Scanner *scanner = static_cast(payload); + scanner->simulate = false; + return scanner->scan(lexer, valid_symbols); + } + + unsigned tree_sitter_markdown_external_scanner_serialize( + void *payload, + char* buffer + ) { + TreeSitterMarkdown::Scanner *scanner = static_cast(payload); + return scanner->serialize(buffer); + } + + void tree_sitter_markdown_external_scanner_deserialize( + void *payload, + char* buffer, + unsigned length + ) { + TreeSitterMarkdown::Scanner *scanner = static_cast(payload); + scanner->deserialize(buffer, length); + } + + void tree_sitter_markdown_external_scanner_destroy(void *payload) { + TreeSitterMarkdown::Scanner *scanner = static_cast(payload); + delete scanner; + } +} diff --git a/vendor/tree-sitter-markdown/tree-sitter-markdown/src/tree_sitter/parser.h b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/tree_sitter/parser.h new file mode 100644 index 0000000000..2b14ac1046 --- /dev/null +++ b/vendor/tree-sitter-markdown/tree-sitter-markdown/src/tree_sitter/parser.h @@ -0,0 +1,224 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_