@claudeink/mcp-server 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +104 -76
- package/package.json +2 -1
- package/workflow/CLAUDE.md +167 -0
- package/workflow/accounts/_template.yaml +70 -0
- package/workflow/base-rules.md +235 -0
- package/workflow/platforms/blog.md +52 -0
- package/workflow/platforms/toutiao.md +51 -0
- package/workflow/platforms/wechat.md +94 -0
- package/workflow/platforms/x-twitter.md +48 -0
- package/workflow/platforms/xiaohongshu.md +50 -0
- package/workflow/tools/crawler/SOURCES.md +85 -0
- package/workflow/tools/crawler/config.json +173 -0
- package/workflow/tools/crawler/config.test.json +35 -0
- package/workflow/tools/crawler/crawl.mjs +398 -0
- package/workflow/tools/crawler/node_modules/.bin/tldts +21 -0
- package/workflow/tools/crawler/node_modules/.package-lock.json +809 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/README.md +316 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/browser/css-color.min.js +220 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/browser/css-color.min.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/cjs/index.cjs +5484 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/cjs/index.cjs.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/cjs/index.d.cts +109 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/index.d.ts +18 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/index.js +30 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/cache.d.ts +44 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/cache.js +82 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/cache.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/color.d.ts +537 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/color.js +2792 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/color.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/common.d.ts +21 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/common.js +7 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/common.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/constant.d.ts +41 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/constant.js +97 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/constant.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/convert.d.ts +99 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/convert.js +361 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/convert.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/css-calc.d.ts +89 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/css-calc.js +860 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/css-calc.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/css-gradient.d.ts +54 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/css-gradient.js +195 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/css-gradient.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/css-var.d.ts +31 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/css-var.js +195 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/css-var.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/relative-color.d.ts +29 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/relative-color.js +487 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/relative-color.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/resolve.d.ts +52 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/resolve.js +288 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/resolve.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/typedef.d.ts +79 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/util.d.ts +45 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/util.js +279 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/dist/esm/js/util.js.map +1 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/package.json +81 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/index.ts +27 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/cache.ts +114 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/color.ts +3459 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/common.ts +31 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/constant.ts +66 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/convert.ts +469 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/css-calc.ts +965 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/css-gradient.ts +289 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/css-var.ts +250 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/relative-color.ts +580 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/resolve.ts +379 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/typedef.ts +87 -0
- package/workflow/tools/crawler/node_modules/@asamuzakjp/css-color/src/js/util.ts +336 -0
- package/workflow/tools/crawler/node_modules/@csstools/color-helpers/CHANGELOG.md +10 -0
- package/workflow/tools/crawler/node_modules/@csstools/color-helpers/LICENSE.md +18 -0
- package/workflow/tools/crawler/node_modules/@csstools/color-helpers/README.md +32 -0
- package/workflow/tools/crawler/node_modules/@csstools/color-helpers/dist/index.cjs +263 -0
- package/workflow/tools/crawler/node_modules/@csstools/color-helpers/dist/index.d.ts +429 -0
- package/workflow/tools/crawler/node_modules/@csstools/color-helpers/dist/index.mjs +263 -0
- package/workflow/tools/crawler/node_modules/@csstools/color-helpers/package.json +62 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-calc/CHANGELOG.md +10 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-calc/LICENSE.md +20 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-calc/README.md +132 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-calc/dist/index.cjs +1 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-calc/dist/index.d.ts +71 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-calc/dist/index.mjs +1 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-calc/package.json +66 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-color-parser/CHANGELOG.md +13 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-color-parser/LICENSE.md +20 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-color-parser/README.md +37 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-color-parser/dist/index.cjs +1 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-color-parser/dist/index.d.ts +168 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-color-parser/dist/index.mjs +1 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-color-parser/package.json +71 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-parser-algorithms/CHANGELOG.md +9 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-parser-algorithms/LICENSE.md +20 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-parser-algorithms/README.md +119 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-parser-algorithms/dist/index.cjs +1 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-parser-algorithms/dist/index.d.ts +604 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-parser-algorithms/dist/index.mjs +1 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-parser-algorithms/package.json +65 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-tokenizer/CHANGELOG.md +9 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-tokenizer/LICENSE.md +20 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-tokenizer/README.md +111 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-tokenizer/dist/index.cjs +1 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-tokenizer/dist/index.d.ts +593 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-tokenizer/dist/index.mjs +1 -0
- package/workflow/tools/crawler/node_modules/@csstools/css-tokenizer/package.json +62 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/.gitmodules +6 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/.mocharc.json +8 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/.nvmrc +1 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/.yarn/plugins/@yarnpkg/plugin-version.cjs +550 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/.yarn/versions/78b6ef77.yml +0 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/CHANGELOG.md +294 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/CONTRIBUTING.md +4 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/LICENSE +25 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/README.md +141 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/CSSStyleDeclaration.js +234 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/CharacterData.js +120 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/ChildNode.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/Comment.js +40 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/ContainerNode.js +80 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/CustomEvent.js +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/DOMException.js +134 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/DOMImplementation.js +94 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/DOMTokenList.js +186 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/Document.js +884 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/DocumentFragment.js +71 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/DocumentType.js +36 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/Element.js +1228 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/Event.js +66 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/EventTarget.js +298 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/FilteredElementList.js +92 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/HTMLParser.js +7254 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/Leaf.js +37 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/LinkedList.js +44 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/Location.js +56 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/MouseEvent.js +52 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/MutationConstants.js +9 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NamedNodeMap.js +41 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NavigatorID.js +17 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/Node.js +764 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NodeFilter.js +24 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NodeIterator.js +217 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NodeList.es5.js +15 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NodeList.es6.js +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NodeList.js +13 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NodeTraversal.js +87 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NodeUtils.js +246 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/NonDocumentTypeChildNode.js +26 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/ProcessingInstruction.js +44 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/Text.js +75 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/TreeWalker.js +336 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/UIEvent.js +19 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/URL.js +194 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/URLUtils.js +270 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/Window.js +60 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/WindowTimers.js +11 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/attributes.js +152 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/config.js +7 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/defineElement.js +71 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/events.js +7 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/htmlelts.js +1499 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/impl.js +27 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/index.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/index.js +80 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/select.js +933 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/style_parser.js +106 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/svg.js +59 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/utils.js +85 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/lib/xmlnames.js +91 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/package.json +22 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/domino.js +1500 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/fixture/doc.html +13 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/fixture/jquery-1.9.1.js +9597 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/fixture/jquery-2.2.0.js +9831 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/html5lib-tests.json +80692 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/index.js +2 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/parsing.js +66 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/tools/update-entities.js +90 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/tools/update-html5lib-tests.js +355 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/README.md +13 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/harness/DomTestCase.js +438 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/harness/index.js +95 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/index.js +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentgetdoctypenodtd.js +110 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi.js +143 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi1.js +140 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/.cvsignore +0 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_nodtdstaff.html +10 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_staff.html +48 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/staff.dtd +17 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddata.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddatagetdata.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatabegining.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataend.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataexceedslength.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatagetlengthanddata.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatamiddle.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetdata.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetlength.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedatacountnegative.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetgreater.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetnegative.js +130 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetgreater.js +130 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetnegative.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedatacountnegative.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetgreater.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetnegative.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringcountnegative.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringnegativeoffset.js +130 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringoffsetgreater.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatabeginning.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdataend.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatamiddle.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatabegining.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataend.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofarg.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofdata.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatamiddle.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasetnodevalue.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringexceedsvalue.js +120 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringvalue.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_commentgetcomment.js +144 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatecomment.js +120 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatedocumentfragment.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelement.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelementcasesensitive.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatetextnode.js +120 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetdoctype.js +149 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamelength.js +110 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnametotallength.js +221 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamevalue.js +120 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetimplementation.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetrootnode.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement1.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenoversion.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenull.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturexml.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementaddnewattribute.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementchangeattributevalue.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagname.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnameaccessnodelist.js +144 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamenomatch.js +110 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamespecialvalue.js +134 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgettagname.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception1.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementnormalize.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementremoveattribute.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveallattributes.js +144 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveattrvalue.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrievetagname.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiesremovenameditem1.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiessetnameditem1.js +144 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapchildnoderange.js +141 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapnumberofnodes.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchild.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildchildexists.js +160 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchilddocfragment.js +158 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildgetnodename.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnewchilddiffdocument.js +145 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnodeancestor.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeattributenodeattribute.js +120 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodes.js +149 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesappendchild.js +159 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesempty.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecloneattributescopied.js +149 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonefalsenocopytext.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonegetparentnull.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodefalse.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodetrue.js +145 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonetruecopytext.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodeattributes.js +135 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodename.js +134 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodetype.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodevalue.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodename.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodetype.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodevalue.js +120 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodeattribute.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodename.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodetype.js +110 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodevalue.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodeattributes.js +145 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodename.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodetype.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodevalue.js +109 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchild.js +130 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchildnull.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchild.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchildnull.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsibling.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsiblingnull.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocument.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocumentnull.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussibling.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussiblingnull.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodes.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodesfalse.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbefore.js +153 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforedocfragment.js +141 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchilddiffdocument.js +148 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchildexists.js +151 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodeancestor.js +135 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodename.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnonexistent.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnull.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexequalzero.js +135 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlength.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlengthofemptylist.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexnotzero.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnfirstitem.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnlastitem.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelisttraverselist.js +149 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnode.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnodenull.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechild.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildgetnodename.js +128 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildnode.js +160 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildoldchildnonexistent.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechild.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchilddiffdocument.js +148 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchildexists.js +155 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodeancestor.js +135 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodename.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildoldchildnonexistent.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodeattribute.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodename.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodetype.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodevalue.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue04.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue05.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue06.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue07.js +134 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue08.js +134 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationsremovenameditem1.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationssetnameditem1.js +144 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerrnegativeoffset.js +130 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerroffsetoutofbounds.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textparseintolistofelements.js +169 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextfour.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextone.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextthree.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittexttwo.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textwithnomarkup.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref.js +143 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref1.js +140 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild1.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild2.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild3.js +138 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild4.js +152 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild5.js +141 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild6.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes1.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes2.js +130 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrclonenode1.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatedocumentfragment.js +138 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode2.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attreffectivevalue.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrfirstchild.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue1.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue2.js +146 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrhaschildnodes.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore1.js +140 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore2.js +141 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore3.js +146 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore4.js +147 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore5.js +153 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore6.js +142 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore7.js +160 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrlastchild.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrname.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnextsiblingnull.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnormalize.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrparentnodenull.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrprevioussiblingnull.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild1.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild2.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild1.js +135 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild2.js +141 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue1.js +135 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue2.js +138 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvalue.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvaluechanged.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentcreateattribute.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute1.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementassociatedattribute.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementcreatenewattribute.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenode.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenodenull.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetelementempty.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementinuseattributeerr.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnormalize2.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnotfounderr.js +130 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributeaftercreate.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributenode.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceattributewithself.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattribute.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattributegevalue.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementsetattributenodenull.js +120 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementwrongdocumenterr.js +147 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapgetnameditem.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapinuseattributeerr.js +139 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapnotfounderr.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapremovenameditem.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnattrnode.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnfirstitem.js +150 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnlastitem.js +152 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnnull.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditem.js +131 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemreturnvalue.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemthatexists.js +134 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemwithnewvalue.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapwrongdocumenterr.js +149 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeappendchildinvalidnodetype.js +130 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodename.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodetype.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodevalue.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeinsertbeforeinvalidnodetype.js +136 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodereplacechildinvalidnodetype.js +136 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodevalue03.js +138 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement05.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement07.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement10.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement11.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement12.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement13.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement14.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement05.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement06.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement07.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement08.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement01.js +116 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement04.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement05.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement06.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement07.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement08.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument01.js +109 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument05.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument15.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument16.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument17.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument18.js +102 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument19.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument20.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument21.js +138 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement05.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement06.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement07.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement08.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement09.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement10.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement100.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement101.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement102.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement103.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement104.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement105.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement106.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement107.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement108.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement109.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement11.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement110.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement111.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement112.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement113.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement114.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement115.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement116.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement117.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement118.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement119.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement12.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement120.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement121.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement122.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement123.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement124.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement125.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement126.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement127.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement128.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement129.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement13.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement130.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement131.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement132.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement133.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement134.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement135.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement136.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement137.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement138.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement139.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement14.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement140.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement141.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement142.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement143.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement144.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement145.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement15.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement16.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement17.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement18.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement19.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement20.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement21.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement22.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement23.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement24.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement25.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement26.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement27.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement28.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement29.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement30.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement31.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement32.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement33.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement34.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement35.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement36.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement37.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement38.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement39.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement40.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement41.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement42.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement43.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement44.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement45.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement46.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement47.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement48.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement49.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement50.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement51.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement52.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement53.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement54.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement55.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement56.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement57.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement58.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement59.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement60.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement61.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement62.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement63.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement64.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement65.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement66.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement67.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement68.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement69.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement70.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement71.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement72.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement73.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement74.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement75.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement76.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement77.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement78.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement79.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement80.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement81.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement82.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement83.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement84.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement85.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement86.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement87.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement88.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement89.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement90.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement91.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement92.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement93.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement94.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement95.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement96.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement97.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement98.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement99.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement01.js +116 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement04.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement05.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement06.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement07.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement08.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement07.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement09.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement10.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement05.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement06.js +128 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement07.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement09.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement11.js +128 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement12.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement01.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement03.js +116 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement05.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement07.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement08.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement09.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement11.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement12.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement13.js +130 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement14.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement15.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement16.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement18.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement21.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLIElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement01.js +109 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement05.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement06.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement08.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMapElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement01.js +116 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement08.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement11.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement13.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement14.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement15.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement16.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement17.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement18.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement19.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement01.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement03.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement07.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement08.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLParamElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement05.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement06.js +109 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement07.js +109 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement03.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement06.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement07.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement08.js +134 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement09.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement11.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement12.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement13.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement15.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement16.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement23.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement24.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement25.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement07.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement08.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement07.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement12.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableRowElement05.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement13.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement14.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement15.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement02.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement03.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement05.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement07.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement08.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement09.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTitleElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor01.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor04.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor05.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/area01.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/area02.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/area03.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/area04.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/button01.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/button02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/button03.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/button04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/button05.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/button06.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/button07.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/button08.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/button09.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/doc01.js +106 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/.cvsignore +6 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/HTMLDocument04.html +36 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor.html +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor2.html +13 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet.html +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet2.html +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area.html +14 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area2.html +15 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base.html +11 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base2.html +15 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/basefont.html +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/body.html +10 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/br.html +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/button.html +21 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/collection.html +79 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/directory.html +14 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/div.html +10 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/dl.html +15 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/document.html +36 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/element.html +81 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/fieldset.html +23 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/font.html +10 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form.html +17 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form2.html +17 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form3.html +17 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frame.html +14 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frameset.html +14 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/head.html +11 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/heading.html +16 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/hr.html +11 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/html.html +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/iframe.html +10 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/img.html +13 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/input.html +60 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/isindex.html +14 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/label.html +21 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/legend.html +22 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/li.html +23 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link.html +15 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link2.html +15 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/map.html +16 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/menu.html +15 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/meta.html +13 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/mod.html +15 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object.html +18 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object2.html +17 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/olist.html +32 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/optgroup.html +25 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/option.html +36 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/paragraph.html +13 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/param.html +14 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/pre.html +17 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/quote.html +16 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/script.html +11 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/select.html +44 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/style.html +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table.html +78 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table1.html +12 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecaption.html +25 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecell.html +23 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecol.html +35 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablerow.html +59 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablesection.html +62 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/textarea.html +26 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/title.html +13 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/ulist.html +36 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/hasFeature01.js +96 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument02.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument03.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument04.js +110 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument07.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument09.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument10.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument12.js +109 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement01.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement09.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement10.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement19.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement20.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement22.js +108 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement01.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement04.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement05.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement14.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement15.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement16.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement17.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement18.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement19.js +137 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement08.js +129 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement09.js +132 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement19.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement20.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement21.js +139 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement22.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement23.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement24.js +139 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement25.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement26.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement27.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement28.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement29.js +137 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement30.js +144 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement31.js +138 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement32.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement33.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableRowElement01.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement13.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement14.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement15.js +107 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/object01.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/object06.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/object07.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/object08.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/object10.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/object11.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/object12.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/object13.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/object14.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement06.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement08.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement09.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement05.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement06.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement07.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement08.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement09.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement10.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement11.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBRElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement03.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement04.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement05.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement06.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection01.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection02.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection03.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection04.js +133 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection05.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection06.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection07.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection08.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection09.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection10.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection11.js +123 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection12.js +121 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDirectoryElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDivElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDlistElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument08.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument11.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument13.js +109 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument14.js +110 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFormElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement01.js +116 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement04.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement05.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement07.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement08.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement01.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement03.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement05.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement06.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHtmlElement01.js +124 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement01.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement02.js +116 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement05.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement06.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement08.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement08.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement10.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement14.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement17.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement01.js +122 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement02.js +119 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLIElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement01.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement04.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement07.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement09.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMapElement01.js +116 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMenuElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOListElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement03.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement04.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement05.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement07.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement09.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement12.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement04.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement05.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement09.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParagraphElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement04.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLPreElement01.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCaptionElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement02.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement03.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement04.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement05.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement07.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement08.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement09.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement11.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement12.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement13.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement14.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement17.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement18.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement19.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement20.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement21.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement22.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement26.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement27.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement28.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement29.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement30.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement01.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement03.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement05.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement06.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement09.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement11.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement12.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement01.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement03.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement05.js +117 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement11.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement13.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement14.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement15.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement16.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement17.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement18.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement03.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement07.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement08.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement09.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement11.js +144 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement12.js +143 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement13.js +144 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement14.js +144 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement01.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement03.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement05.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement07.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement08.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement09.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement11.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement12.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement16.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement17.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement18.js +126 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement19.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement20.js +127 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement21.js +128 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement22.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement23.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement24.js +125 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement01.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement11.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement12.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement01.js +114 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement02.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor02.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor03.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor06.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/basefont01.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/body01.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/dlist01.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object02.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object03.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object04.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object05.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object09.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object15.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table02.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table03.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table04.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table06.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table07.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table08.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table09.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table10.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table12.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table15.js +118 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table17.js +115 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table18.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table19.js +113 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table20.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table21.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table22.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table23.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table24.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table26.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table27.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table29.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table30.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table31.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table32.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table33.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table35.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table36.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table37.js +111 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table38.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table39.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table40.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table41.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table42.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table43.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table44.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table45.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table46.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table47.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table48.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table49.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table50.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table52.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table53.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/table01.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/table25.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/table28.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/table34.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/w3c/level1/html/table51.js +112 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/web-platform-blocklist.json +4688 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/web-platform-tests.js +353 -0
- package/workflow/tools/crawler/node_modules/@mixmark-io/domino/test/xss.js +361 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/CHANGELOG.md +468 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/LICENSE +8 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/SECURITY.md +50 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/index.d.ts +43 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/lib/.eslintrc.yml +2 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/lib/conventions.js +203 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/lib/dom-parser.js +322 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/lib/dom.js +1879 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/lib/entities.js +2166 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/lib/index.js +4 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/lib/sax.js +662 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/package.json +71 -0
- package/workflow/tools/crawler/node_modules/@xmldom/xmldom/readme.md +356 -0
- package/workflow/tools/crawler/node_modules/agent-base/LICENSE +22 -0
- package/workflow/tools/crawler/node_modules/agent-base/README.md +69 -0
- package/workflow/tools/crawler/node_modules/agent-base/dist/helpers.d.ts +15 -0
- package/workflow/tools/crawler/node_modules/agent-base/dist/helpers.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/agent-base/dist/helpers.js +66 -0
- package/workflow/tools/crawler/node_modules/agent-base/dist/helpers.js.map +1 -0
- package/workflow/tools/crawler/node_modules/agent-base/dist/index.d.ts +41 -0
- package/workflow/tools/crawler/node_modules/agent-base/dist/index.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/agent-base/dist/index.js +178 -0
- package/workflow/tools/crawler/node_modules/agent-base/dist/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/agent-base/package.json +46 -0
- package/workflow/tools/crawler/node_modules/asynckit/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/asynckit/README.md +233 -0
- package/workflow/tools/crawler/node_modules/asynckit/bench.js +76 -0
- package/workflow/tools/crawler/node_modules/asynckit/index.js +6 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/abort.js +29 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/async.js +34 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/defer.js +26 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/iterate.js +75 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/state.js +37 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/streamify.js +141 -0
- package/workflow/tools/crawler/node_modules/asynckit/lib/terminator.js +29 -0
- package/workflow/tools/crawler/node_modules/asynckit/package.json +63 -0
- package/workflow/tools/crawler/node_modules/asynckit/parallel.js +43 -0
- package/workflow/tools/crawler/node_modules/asynckit/serial.js +17 -0
- package/workflow/tools/crawler/node_modules/asynckit/serialOrdered.js +75 -0
- package/workflow/tools/crawler/node_modules/asynckit/stream.js +21 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/workflow/tools/crawler/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/workflow/tools/crawler/node_modules/combined-stream/License +19 -0
- package/workflow/tools/crawler/node_modules/combined-stream/Readme.md +138 -0
- package/workflow/tools/crawler/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/workflow/tools/crawler/node_modules/combined-stream/package.json +25 -0
- package/workflow/tools/crawler/node_modules/combined-stream/yarn.lock +17 -0
- package/workflow/tools/crawler/node_modules/cssstyle/LICENSE +20 -0
- package/workflow/tools/crawler/node_modules/cssstyle/README.md +11 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/CSSStyleDeclaration.js +613 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/allExtraProperties.js +49 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/allWebkitProperties.js +114 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/generated/allProperties.js +615 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/generated/implementedProperties.js +79 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/generated/properties.js +2673 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/parsers.js +537 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/background.js +52 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/backgroundAttachment.js +32 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/backgroundColor.js +35 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/backgroundImage.js +31 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/backgroundPosition.js +52 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/backgroundRepeat.js +32 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/border.js +42 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderBottom.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderBottomColor.js +35 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderBottomStyle.js +50 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderBottomWidth.js +36 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderCollapse.js +26 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderColor.js +43 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderLeft.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderLeftColor.js +35 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderLeftStyle.js +50 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderLeftWidth.js +36 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderRight.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderRightColor.js +35 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderRightStyle.js +50 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderRightWidth.js +36 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderSpacing.js +45 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderStyle.js +54 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderTop.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderTopColor.js +35 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderTopStyle.js +50 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderTopWidth.js +36 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/borderWidth.js +44 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/bottom.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/clear.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/clip.js +54 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/color.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/flex.js +73 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/flexBasis.js +33 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/flexGrow.js +28 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/flexShrink.js +28 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/float.js +27 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/floodColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/font.js +189 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/fontFamily.js +95 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/fontSize.js +47 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/fontStyle.js +32 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/fontVariant.js +36 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/fontWeight.js +36 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/height.js +31 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/left.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/lightingColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/lineHeight.js +39 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/margin.js +58 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/marginBottom.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/marginLeft.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/marginRight.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/marginTop.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/opacity.js +46 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/outlineColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/padding.js +58 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/paddingBottom.js +42 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/paddingLeft.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/paddingRight.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/paddingTop.js +40 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/right.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/stopColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/top.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/webkitTextFillColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js +30 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/properties/width.js +31 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/utils/camelize.js +37 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/utils/propertyDescriptors.js +16 -0
- package/workflow/tools/crawler/node_modules/cssstyle/lib/utils/strings.js +167 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/LICENSE.txt +20 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/README.mdown +74 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/build/CSSOM.js +1995 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSConditionRule.js +25 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSContainerRule.js +50 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSDocumentRule.js +39 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSFontFaceRule.js +36 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSGroupingRule.js +69 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSHostRule.js +37 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSImportRule.js +132 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSKeyframeRule.js +37 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSKeyframesRule.js +39 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSLayerBlockRule.js +48 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSMediaRule.js +53 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSOM.js +3 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSRule.js +42 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStartingStyleRule.js +37 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStyleDeclaration.js +148 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStyleRule.js +190 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSStyleSheet.js +88 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSSupportsRule.js +36 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSValue.js +43 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/CSSValueExpression.js +344 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/MatcherList.js +62 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/MediaList.js +61 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/StyleSheet.js +17 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/clone.js +80 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/index.js +26 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/lib/parse.js +525 -0
- package/workflow/tools/crawler/node_modules/cssstyle/node_modules/rrweb-cssom/package.json +27 -0
- package/workflow/tools/crawler/node_modules/cssstyle/package.json +72 -0
- package/workflow/tools/crawler/node_modules/data-urls/LICENSE.txt +7 -0
- package/workflow/tools/crawler/node_modules/data-urls/README.md +62 -0
- package/workflow/tools/crawler/node_modules/data-urls/lib/parser.js +69 -0
- package/workflow/tools/crawler/node_modules/data-urls/lib/utils.js +20 -0
- package/workflow/tools/crawler/node_modules/data-urls/package.json +48 -0
- package/workflow/tools/crawler/node_modules/debug/LICENSE +20 -0
- package/workflow/tools/crawler/node_modules/debug/README.md +481 -0
- package/workflow/tools/crawler/node_modules/debug/package.json +64 -0
- package/workflow/tools/crawler/node_modules/debug/src/browser.js +272 -0
- package/workflow/tools/crawler/node_modules/debug/src/common.js +292 -0
- package/workflow/tools/crawler/node_modules/debug/src/index.js +10 -0
- package/workflow/tools/crawler/node_modules/debug/src/node.js +263 -0
- package/workflow/tools/crawler/node_modules/decimal.js/LICENCE.md +23 -0
- package/workflow/tools/crawler/node_modules/decimal.js/README.md +246 -0
- package/workflow/tools/crawler/node_modules/decimal.js/decimal.d.ts +301 -0
- package/workflow/tools/crawler/node_modules/decimal.js/decimal.js +4951 -0
- package/workflow/tools/crawler/node_modules/decimal.js/decimal.mjs +4914 -0
- package/workflow/tools/crawler/node_modules/decimal.js/package.json +55 -0
- package/workflow/tools/crawler/node_modules/defuddle/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/defuddle/README.md +199 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/constants.d.ts +13 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/constants.js +863 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/constants.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/defuddle.d.ts +37 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/defuddle.js +645 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/defuddle.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/code.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/code.js +293 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/code.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/footnotes.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/footnotes.js +316 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/footnotes.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/headings.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/headings.js +95 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/headings.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/images.d.ts +8 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/images.js +855 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/images.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.base.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.base.js +192 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.base.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.core.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.core.js +59 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.core.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.d.ts +2 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.full.d.ts +8 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.js +9 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/elements/math.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractor-registry.d.ts +15 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractor-registry.js +123 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractor-registry.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/_base.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/_base.js +12 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/_base.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/_conversation.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/_conversation.js +77 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/_conversation.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/chatgpt.d.ts +13 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/chatgpt.js +133 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/chatgpt.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/claude.d.ts +10 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/claude.js +87 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/claude.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/gemini.d.ts +14 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/gemini.js +110 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/gemini.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/github.d.ts +12 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/github.js +163 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/github.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/grok.d.ts +15 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/grok.js +141 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/grok.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/hackernews.d.ts +21 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/hackernews.js +206 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/hackernews.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/reddit.d.ts +16 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/reddit.js +143 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/reddit.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/twitter.d.ts +16 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/twitter.js +202 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/twitter.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/youtube.d.ts +12 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/youtube.js +56 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/extractors/youtube.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/index.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/index.full.d.ts +4 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/index.full.js +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/index.js +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/markdown.d.ts +30 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/markdown.js +539 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/markdown.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/metadata.d.ts +15 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/metadata.js +292 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/metadata.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/node.d.ts +12 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/node.js +52 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/node.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/scoring.d.ts +25 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/scoring.js +312 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/scoring.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/standardize.d.ts +2 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/standardize.js +831 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/standardize.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/types/extractors.d.ts +41 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/types/extractors.js +3 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/types/extractors.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/types.d.ts +71 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/types.js +3 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/types.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/utils.d.ts +6 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/utils.js +58 -0
- package/workflow/tools/crawler/node_modules/defuddle/dist/utils.js.map +1 -0
- package/workflow/tools/crawler/node_modules/defuddle/package.json +92 -0
- package/workflow/tools/crawler/node_modules/delayed-stream/License +19 -0
- package/workflow/tools/crawler/node_modules/delayed-stream/Makefile +7 -0
- package/workflow/tools/crawler/node_modules/delayed-stream/Readme.md +141 -0
- package/workflow/tools/crawler/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/workflow/tools/crawler/node_modules/delayed-stream/package.json +27 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/.eslintrc +5 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/.nycrc +13 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/README.md +54 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/get.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/get.js +30 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/package.json +76 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/set.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/set.js +35 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/test/get.js +34 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/test/index.js +4 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/test/set.js +50 -0
- package/workflow/tools/crawler/node_modules/dunder-proto/tsconfig.json +9 -0
- package/workflow/tools/crawler/node_modules/entities/LICENSE +11 -0
- package/workflow/tools/crawler/node_modules/entities/decode.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/entities/decode.js +3 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/decode.d.ts +209 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/decode.js +511 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/decode.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/encode.js +73 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/encode.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/escape.d.ts +43 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/escape.js +121 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/escape.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/decode-data-html.js +10 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +10 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +8 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/encode-html.js +13 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/index.d.ts +96 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/index.js +131 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/commonjs/package.json +3 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/decode.d.ts +209 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/decode.js +497 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/decode.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/encode.d.ts +22 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/encode.js +69 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/encode.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/escape.d.ts +43 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/escape.js +117 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/escape.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/decode-data-html.js +7 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/decode-data-xml.js +7 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/encode-html.d.ts +8 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/encode-html.js +10 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/index.d.ts +96 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/index.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/index.js +107 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/entities/dist/esm/package.json +3 -0
- package/workflow/tools/crawler/node_modules/entities/escape.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/entities/escape.js +3 -0
- package/workflow/tools/crawler/node_modules/entities/package.json +118 -0
- package/workflow/tools/crawler/node_modules/entities/readme.md +122 -0
- package/workflow/tools/crawler/node_modules/entities/src/decode-codepoint.ts +81 -0
- package/workflow/tools/crawler/node_modules/entities/src/decode.spec.ts +320 -0
- package/workflow/tools/crawler/node_modules/entities/src/decode.ts +620 -0
- package/workflow/tools/crawler/node_modules/entities/src/encode.spec.ts +78 -0
- package/workflow/tools/crawler/node_modules/entities/src/encode.ts +77 -0
- package/workflow/tools/crawler/node_modules/entities/src/escape.spec.ts +14 -0
- package/workflow/tools/crawler/node_modules/entities/src/escape.ts +148 -0
- package/workflow/tools/crawler/node_modules/entities/src/generated/.eslintrc.json +10 -0
- package/workflow/tools/crawler/node_modules/entities/src/generated/decode-data-html.ts +8 -0
- package/workflow/tools/crawler/node_modules/entities/src/generated/decode-data-xml.ts +8 -0
- package/workflow/tools/crawler/node_modules/entities/src/generated/encode-html.ts +17 -0
- package/workflow/tools/crawler/node_modules/entities/src/index.spec.ts +125 -0
- package/workflow/tools/crawler/node_modules/entities/src/index.ts +188 -0
- package/workflow/tools/crawler/node_modules/es-define-property/.eslintrc +13 -0
- package/workflow/tools/crawler/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/es-define-property/.nycrc +9 -0
- package/workflow/tools/crawler/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/workflow/tools/crawler/node_modules/es-define-property/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/es-define-property/README.md +49 -0
- package/workflow/tools/crawler/node_modules/es-define-property/index.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-define-property/index.js +14 -0
- package/workflow/tools/crawler/node_modules/es-define-property/package.json +81 -0
- package/workflow/tools/crawler/node_modules/es-define-property/test/index.js +56 -0
- package/workflow/tools/crawler/node_modules/es-define-property/tsconfig.json +10 -0
- package/workflow/tools/crawler/node_modules/es-errors/.eslintrc +5 -0
- package/workflow/tools/crawler/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/es-errors/CHANGELOG.md +40 -0
- package/workflow/tools/crawler/node_modules/es-errors/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/es-errors/README.md +55 -0
- package/workflow/tools/crawler/node_modules/es-errors/eval.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-errors/eval.js +4 -0
- package/workflow/tools/crawler/node_modules/es-errors/index.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-errors/index.js +4 -0
- package/workflow/tools/crawler/node_modules/es-errors/package.json +80 -0
- package/workflow/tools/crawler/node_modules/es-errors/range.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-errors/range.js +4 -0
- package/workflow/tools/crawler/node_modules/es-errors/ref.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-errors/ref.js +4 -0
- package/workflow/tools/crawler/node_modules/es-errors/syntax.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-errors/syntax.js +4 -0
- package/workflow/tools/crawler/node_modules/es-errors/test/index.js +19 -0
- package/workflow/tools/crawler/node_modules/es-errors/tsconfig.json +49 -0
- package/workflow/tools/crawler/node_modules/es-errors/type.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-errors/type.js +4 -0
- package/workflow/tools/crawler/node_modules/es-errors/uri.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-errors/uri.js +4 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/.eslintrc +16 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/README.md +63 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/ToObject.js +10 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/index.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/index.js +4 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/isObject.js +6 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/package.json +80 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/test/index.js +38 -0
- package/workflow/tools/crawler/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/.eslintrc +13 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/.nycrc +9 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/README.md +53 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/index.d.ts +10 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/index.js +35 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/package.json +78 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/test/index.js +85 -0
- package/workflow/tools/crawler/node_modules/es-set-tostringtag/tsconfig.json +9 -0
- package/workflow/tools/crawler/node_modules/form-data/CHANGELOG.md +659 -0
- package/workflow/tools/crawler/node_modules/form-data/License +19 -0
- package/workflow/tools/crawler/node_modules/form-data/README.md +355 -0
- package/workflow/tools/crawler/node_modules/form-data/index.d.ts +62 -0
- package/workflow/tools/crawler/node_modules/form-data/lib/browser.js +4 -0
- package/workflow/tools/crawler/node_modules/form-data/lib/form_data.js +494 -0
- package/workflow/tools/crawler/node_modules/form-data/lib/populate.js +10 -0
- package/workflow/tools/crawler/node_modules/form-data/package.json +82 -0
- package/workflow/tools/crawler/node_modules/function-bind/.eslintrc +21 -0
- package/workflow/tools/crawler/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/workflow/tools/crawler/node_modules/function-bind/.nycrc +13 -0
- package/workflow/tools/crawler/node_modules/function-bind/CHANGELOG.md +136 -0
- package/workflow/tools/crawler/node_modules/function-bind/LICENSE +20 -0
- package/workflow/tools/crawler/node_modules/function-bind/README.md +46 -0
- package/workflow/tools/crawler/node_modules/function-bind/implementation.js +84 -0
- package/workflow/tools/crawler/node_modules/function-bind/index.js +5 -0
- package/workflow/tools/crawler/node_modules/function-bind/package.json +87 -0
- package/workflow/tools/crawler/node_modules/function-bind/test/.eslintrc +9 -0
- package/workflow/tools/crawler/node_modules/function-bind/test/index.js +252 -0
- package/workflow/tools/crawler/node_modules/get-intrinsic/.eslintrc +42 -0
- package/workflow/tools/crawler/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/get-intrinsic/.nycrc +9 -0
- package/workflow/tools/crawler/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/workflow/tools/crawler/node_modules/get-intrinsic/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/get-intrinsic/README.md +71 -0
- package/workflow/tools/crawler/node_modules/get-intrinsic/index.js +378 -0
- package/workflow/tools/crawler/node_modules/get-intrinsic/package.json +97 -0
- package/workflow/tools/crawler/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/workflow/tools/crawler/node_modules/get-proto/.eslintrc +10 -0
- package/workflow/tools/crawler/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/get-proto/.nycrc +9 -0
- package/workflow/tools/crawler/node_modules/get-proto/CHANGELOG.md +21 -0
- package/workflow/tools/crawler/node_modules/get-proto/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/workflow/tools/crawler/node_modules/get-proto/README.md +50 -0
- package/workflow/tools/crawler/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/workflow/tools/crawler/node_modules/get-proto/index.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/get-proto/index.js +27 -0
- package/workflow/tools/crawler/node_modules/get-proto/package.json +81 -0
- package/workflow/tools/crawler/node_modules/get-proto/test/index.js +68 -0
- package/workflow/tools/crawler/node_modules/get-proto/tsconfig.json +9 -0
- package/workflow/tools/crawler/node_modules/gopd/.eslintrc +16 -0
- package/workflow/tools/crawler/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/gopd/CHANGELOG.md +45 -0
- package/workflow/tools/crawler/node_modules/gopd/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/gopd/README.md +40 -0
- package/workflow/tools/crawler/node_modules/gopd/gOPD.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/gopd/gOPD.js +4 -0
- package/workflow/tools/crawler/node_modules/gopd/index.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/gopd/index.js +15 -0
- package/workflow/tools/crawler/node_modules/gopd/package.json +77 -0
- package/workflow/tools/crawler/node_modules/gopd/test/index.js +36 -0
- package/workflow/tools/crawler/node_modules/gopd/tsconfig.json +9 -0
- package/workflow/tools/crawler/node_modules/has-symbols/.eslintrc +11 -0
- package/workflow/tools/crawler/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/has-symbols/.nycrc +9 -0
- package/workflow/tools/crawler/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/workflow/tools/crawler/node_modules/has-symbols/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/has-symbols/README.md +46 -0
- package/workflow/tools/crawler/node_modules/has-symbols/index.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/has-symbols/index.js +14 -0
- package/workflow/tools/crawler/node_modules/has-symbols/package.json +111 -0
- package/workflow/tools/crawler/node_modules/has-symbols/shams.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/has-symbols/shams.js +45 -0
- package/workflow/tools/crawler/node_modules/has-symbols/test/index.js +22 -0
- package/workflow/tools/crawler/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/workflow/tools/crawler/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/workflow/tools/crawler/node_modules/has-symbols/test/tests.js +58 -0
- package/workflow/tools/crawler/node_modules/has-symbols/tsconfig.json +10 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/.eslintrc +5 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/.nycrc +13 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/CHANGELOG.md +42 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/README.md +46 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/index.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/index.js +8 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/package.json +108 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/shams.js +8 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/test/index.js +21 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/test/tests.js +15 -0
- package/workflow/tools/crawler/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/workflow/tools/crawler/node_modules/hasown/.eslintrc +5 -0
- package/workflow/tools/crawler/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/hasown/.nycrc +13 -0
- package/workflow/tools/crawler/node_modules/hasown/CHANGELOG.md +40 -0
- package/workflow/tools/crawler/node_modules/hasown/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/hasown/README.md +40 -0
- package/workflow/tools/crawler/node_modules/hasown/index.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/hasown/index.js +8 -0
- package/workflow/tools/crawler/node_modules/hasown/package.json +92 -0
- package/workflow/tools/crawler/node_modules/hasown/tsconfig.json +6 -0
- package/workflow/tools/crawler/node_modules/html-encoding-sniffer/LICENSE.txt +7 -0
- package/workflow/tools/crawler/node_modules/html-encoding-sniffer/README.md +40 -0
- package/workflow/tools/crawler/node_modules/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
- package/workflow/tools/crawler/node_modules/html-encoding-sniffer/package.json +30 -0
- package/workflow/tools/crawler/node_modules/http-proxy-agent/LICENSE +22 -0
- package/workflow/tools/crawler/node_modules/http-proxy-agent/README.md +44 -0
- package/workflow/tools/crawler/node_modules/http-proxy-agent/dist/index.d.ts +44 -0
- package/workflow/tools/crawler/node_modules/http-proxy-agent/dist/index.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/http-proxy-agent/dist/index.js +148 -0
- package/workflow/tools/crawler/node_modules/http-proxy-agent/dist/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/http-proxy-agent/package.json +47 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/LICENSE +22 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/README.md +70 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/dist/index.d.ts +47 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/dist/index.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/dist/index.js +180 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +15 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/workflow/tools/crawler/node_modules/https-proxy-agent/package.json +50 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/.github/dependabot.yml +11 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/.idea/codeStyles/Project.xml +47 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/.idea/iconv-lite.iml +12 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/.idea/modules.xml +8 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/.idea/vcs.xml +6 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/Changelog.md +212 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/README.md +130 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/index.js +23 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/internal.js +198 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/utf16.js +197 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/utf32.js +319 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/lib/index.d.ts +41 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/lib/index.js +180 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/lib/streams.js +109 -0
- package/workflow/tools/crawler/node_modules/iconv-lite/package.json +44 -0
- package/workflow/tools/crawler/node_modules/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
- package/workflow/tools/crawler/node_modules/is-potential-custom-element-name/README.md +40 -0
- package/workflow/tools/crawler/node_modules/is-potential-custom-element-name/index.js +9 -0
- package/workflow/tools/crawler/node_modules/is-potential-custom-element-name/package.json +35 -0
- package/workflow/tools/crawler/node_modules/jsdom/LICENSE.txt +22 -0
- package/workflow/tools/crawler/node_modules/jsdom/README.md +521 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/api.js +334 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/Window.js +1012 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/js-globals.json +312 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/parser/html.js +208 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/parser/index.js +37 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +98 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/level2/style.js +57 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/level3/xpath.js +1875 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +84 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/attributes.js +312 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/crypto/Crypto-impl.js +68 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +268 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/custom-elements/ElementInternals-impl.js +38 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/documents.js +15 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +59 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +30 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/domparsing/serialization.js +36 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +24 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js +419 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +72 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/SubmitEvent-impl.js +13 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/fetch/Headers-impl.js +172 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/fetch/header-list.js +65 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/AbortController.js +143 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/AbortSignal.js +215 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/AbstractRange.js +171 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +55 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Attr.js +217 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/BarProp.js +117 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Blob.js +203 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/BlobCallback.js +30 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CDATASection.js +109 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CharacterData.js +453 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CloseEvent.js +168 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CloseEventInit.js +65 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Comment.js +120 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CompositionEvent.js +219 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Crypto.js +144 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +34 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CustomEvent.js +206 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DOMException.js +222 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DOMImplementation.js +237 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DOMRect.js +276 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DOMRectInit.js +76 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DOMRectReadOnly.js +285 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DOMStringMap.js +323 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DOMTokenList.js +563 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Document.js +4157 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DocumentFragment.js +334 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/DocumentType.js +252 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Element.js +3718 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +29 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ElementInternals.js +2137 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ErrorEvent.js +192 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +92 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Event.js +430 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +36 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/EventInit.js +58 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/EventModifierInit.js +221 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js +259 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/External.js +130 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/File.js +177 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/FileList.js +324 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +33 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/FileReader.js +468 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/FocusEvent.js +144 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/FormData.js +468 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Function.js +42 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +31 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +1023 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +822 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +110 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +193 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +877 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +522 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +304 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLCollection.js +378 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +125 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLElement.js +3137 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +371 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +329 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +236 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormControlsCollection.js +344 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +501 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +494 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +708 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +320 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +110 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +670 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +877 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1920 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +201 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +179 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +166 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +545 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +168 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +554 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +891 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +276 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +365 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLModElement.js +207 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +281 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +925 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +197 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +376 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +537 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +392 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +276 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +110 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +160 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +228 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +462 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +1015 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +192 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +330 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +110 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +207 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +729 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +372 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +799 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +414 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +346 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +123 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1206 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +356 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +197 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +109 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +333 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +157 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +50 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Headers.js +418 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/History.js +266 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/InputEvent.js +168 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/InputEventInit.js +68 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +445 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +116 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Location.js +404 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MessageEvent.js +317 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MessageEventInit.js +100 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MimeType.js +156 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +352 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MouseEvent.js +569 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MouseEventInit.js +159 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MutationCallback.js +34 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MutationObserver.js +178 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +121 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/MutationRecord.js +229 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +553 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Navigator.js +326 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Node.js +763 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/NodeFilter.js +75 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/NodeIterator.js +207 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/NodeList.js +328 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +42 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +56 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +144 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +35 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Performance.js +142 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Plugin.js +385 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/PluginArray.js +362 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/PopStateEvent.js +144 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +122 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ProgressEvent.js +170 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +65 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/RadioNodeList.js +322 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Range.js +641 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +149 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SVGElement.js +2799 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +139 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SVGNumber.js +132 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +737 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SVGStringList.js +537 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +109 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Screen.js +180 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +14 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Selection.js +569 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ShadowRoot.js +187 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/StaticRange.js +123 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +72 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Storage.js +423 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/StorageEvent.js +318 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/StorageEventInit.js +99 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/StyleSheetList.js +326 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SubmitEvent.js +144 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SubmitEventInit.js +36 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/Text.js +170 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/TouchEvent.js +222 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/TreeWalker.js +255 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/UIEventInit.js +62 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/ValidityState.js +249 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/VoidFunction.js +26 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/WebSocket.js +476 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/WheelEvent.js +191 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/WheelEventInit.js +71 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/XMLDocument.js +109 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +655 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +334 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +14 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +109 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/XMLSerializer.js +132 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/generated/utils.js +190 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js +39 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/geometry/DOMRectReadOnly-impl.js +72 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/agent-factory.js +13 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/colors.js +245 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/create-element.js +323 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/custom-elements.js +272 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/details.js +15 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/events.js +24 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/http-request.js +261 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/json.js +12 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/node.js +68 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/page-transition-event.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/style-rules.js +243 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/stylesheets.js +123 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/text.js +19 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/helpers/validate-names.js +65 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +22 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/interfaces.js +228 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/node-document-position.js +10 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/node-type.js +16 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/node.js +331 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/Document-impl.js +935 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/Element-impl.js +599 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +22 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +145 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +210 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormControlsCollection-impl.js +33 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +240 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +367 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1097 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +108 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +72 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +262 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +244 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/Node-impl.js +1161 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/RadioNodeList-impl.js +49 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +41 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/range/Range-impl.js +897 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/selection/Selection-impl.js +358 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +107 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/webidl/DOMException-impl.js +46 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/window/History-impl.js +148 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/window/Location-impl.js +228 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/window/navigation.js +85 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/xhr/FormData-impl.js +191 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +59 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/living/xhr/xhr-utils.js +441 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/utils.js +105 -0
- package/workflow/tools/crawler/node_modules/jsdom/lib/jsdom/virtual-console.js +34 -0
- package/workflow/tools/crawler/node_modules/jsdom/package.json +92 -0
- package/workflow/tools/crawler/node_modules/lru-cache/LICENSE +15 -0
- package/workflow/tools/crawler/node_modules/lru-cache/README.md +331 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/commonjs/index.d.ts +1277 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/commonjs/index.js +1546 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/commonjs/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/commonjs/index.min.js.map +7 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/esm/index.d.ts +1277 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/esm/index.js +1542 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/esm/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/esm/index.min.js +2 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/esm/index.min.js.map +7 -0
- package/workflow/tools/crawler/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/workflow/tools/crawler/node_modules/lru-cache/package.json +116 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/.eslintrc +16 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/README.md +50 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/abs.js +4 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/floor.js +4 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/isFinite.js +12 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/isInteger.js +16 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/isNaN.js +6 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/max.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/max.js +4 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/min.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/min.js +4 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/mod.js +9 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/package.json +86 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/pow.js +4 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/round.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/round.js +4 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/sign.js +11 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/test/index.js +192 -0
- package/workflow/tools/crawler/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/LICENSE.md +21 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/README.md +128 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/bundle.min.js +2 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/bundle.min.js.map +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/errors/index.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/errors/invalid-number-of-children.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/helpers/index.d.ts +4 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/helpers/join-with-many-separators.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/helpers/mathml-element-to-latex-converter.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/helpers/normalize-whitespace.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/helpers/wrappers/bracket.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/helpers/wrappers/generic.d.ts +6 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/helpers/wrappers/index.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/helpers/wrappers/parenthesis.d.ts +6 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/helpers/wrappers/wrapper.d.ts +6 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/protocols/index.d.ts +2 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/protocols/mathml-element.d.ts +12 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/protocols/utf8-converter.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-element-to-latex-converter.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/generic-spacing-wrapper.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/generic-under-over.d.ts +8 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/index.d.ts +25 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/maction.d.ts +8 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/math.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/menclose.d.ts +8 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/merror.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mfenced.d.ts +10 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mfrac.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mi.d.ts +10 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mmultiscripts.d.ts +11 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mn.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mo.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mphantom.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mroot.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mrow.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mspace.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/msqrt.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/msub.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/msubsup.d.ts +10 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/msup.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mtable.d.ts +10 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mtext.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/mtr.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/munderover.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/converters/void.d.ts +6 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/data/usecases/mathml-to-latex-convertion/mathml-element-to-latex-converter-adapter.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/domain/usecases/to-latex-converter.d.ts +6 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/index.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/infra/usecases/xmldom-to-mathml-elements/error-handler.d.ts +11 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/infra/usecases/xmldom-to-mathml-elements/index.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/infra/usecases/xmldom-to-mathml-elements/xmldom-elements-to-mathml-elements-adapter.d.ts +8 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/infra/usecases/xmldom-to-mathml-elements/xmldom-to-mathml-element-adapter.d.ts +15 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/main/factories/index.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/main/factories/make-to-math-elements-converter.d.ts +2 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/main/index.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/main/mathml-to-latex.d.ts +3 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/syntax/all-math-operators-by-char.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/syntax/all-math-operators-by-glyph.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/syntax/all-math-symbols-by-char.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/syntax/all-math-symbols-by-glyph.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/syntax/index.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/syntax/latex-accents.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/syntax/math-numbers-by-glyph.d.ts +1 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/dist/syntax/utf8-converter.d.ts +11 -0
- package/workflow/tools/crawler/node_modules/mathml-to-latex/package.json +53 -0
- package/workflow/tools/crawler/node_modules/mime-db/HISTORY.md +507 -0
- package/workflow/tools/crawler/node_modules/mime-db/LICENSE +23 -0
- package/workflow/tools/crawler/node_modules/mime-db/README.md +100 -0
- package/workflow/tools/crawler/node_modules/mime-db/db.json +8519 -0
- package/workflow/tools/crawler/node_modules/mime-db/index.js +12 -0
- package/workflow/tools/crawler/node_modules/mime-db/package.json +60 -0
- package/workflow/tools/crawler/node_modules/mime-types/HISTORY.md +397 -0
- package/workflow/tools/crawler/node_modules/mime-types/LICENSE +23 -0
- package/workflow/tools/crawler/node_modules/mime-types/README.md +113 -0
- package/workflow/tools/crawler/node_modules/mime-types/index.js +188 -0
- package/workflow/tools/crawler/node_modules/mime-types/package.json +44 -0
- package/workflow/tools/crawler/node_modules/ms/index.js +162 -0
- package/workflow/tools/crawler/node_modules/ms/license.md +21 -0
- package/workflow/tools/crawler/node_modules/ms/package.json +38 -0
- package/workflow/tools/crawler/node_modules/ms/readme.md +59 -0
- package/workflow/tools/crawler/node_modules/nwsapi/LICENSE +22 -0
- package/workflow/tools/crawler/node_modules/nwsapi/README.md +132 -0
- package/workflow/tools/crawler/node_modules/nwsapi/dist/lint.log +0 -0
- package/workflow/tools/crawler/node_modules/nwsapi/package.json +43 -0
- package/workflow/tools/crawler/node_modules/nwsapi/src/modules/nwsapi-jquery.js +135 -0
- package/workflow/tools/crawler/node_modules/nwsapi/src/modules/nwsapi-traversal.js +90 -0
- package/workflow/tools/crawler/node_modules/nwsapi/src/nwsapi.js +2018 -0
- package/workflow/tools/crawler/node_modules/parse5/LICENSE +19 -0
- package/workflow/tools/crawler/node_modules/parse5/README.md +38 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/doctype.d.ts +4 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/doctype.js +118 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/error-codes.d.ts +67 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/error-codes.js +66 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/foreign-content.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/foreign-content.js +237 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/html.d.ts +289 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/html.js +528 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/token.d.ts +84 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/token.js +24 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/unicode.d.ts +42 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/common/unicode.js +70 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/index.d.ts +71 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/index.js +54 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/package.json +1 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts +36 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/parser/formatting-element-list.js +114 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/parser/index.d.ts +221 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/parser/index.js +3240 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts +53 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/parser/open-element-stack.js +328 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/serializer/index.d.ts +60 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/serializer/index.js +172 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/tokenizer/index.d.ts +247 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/tokenizer/index.js +2714 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts +36 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/tokenizer/preprocessor.js +200 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/tree-adapters/default.d.ts +84 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/tree-adapters/default.js +176 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts +255 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/cjs/tree-adapters/interface.js +2 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/doctype.d.ts +4 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/doctype.js +114 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/error-codes.d.ts +67 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/error-codes.js +63 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/foreign-content.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/foreign-content.js +228 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/html.d.ts +289 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/html.js +523 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/token.d.ts +84 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/token.js +20 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/unicode.d.ts +42 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/common/unicode.js +62 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/index.d.ts +71 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/index.js +42 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/parser/formatting-element-list.d.ts +36 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/parser/formatting-element-list.js +110 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/parser/index.d.ts +221 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/parser/index.js +3245 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/parser/open-element-stack.d.ts +53 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/parser/open-element-stack.js +324 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/serializer/index.d.ts +60 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/serializer/index.js +168 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/tokenizer/index.d.ts +247 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/tokenizer/index.js +2710 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/tokenizer/preprocessor.d.ts +36 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/tokenizer/preprocessor.js +196 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/tree-adapters/default.d.ts +84 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/tree-adapters/default.js +173 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/tree-adapters/interface.d.ts +255 -0
- package/workflow/tools/crawler/node_modules/parse5/dist/tree-adapters/interface.js +1 -0
- package/workflow/tools/crawler/node_modules/parse5/package.json +50 -0
- package/workflow/tools/crawler/node_modules/punycode/LICENSE-MIT.txt +20 -0
- package/workflow/tools/crawler/node_modules/punycode/README.md +148 -0
- package/workflow/tools/crawler/node_modules/punycode/package.json +58 -0
- package/workflow/tools/crawler/node_modules/punycode/punycode.es6.js +444 -0
- package/workflow/tools/crawler/node_modules/punycode/punycode.js +443 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/LICENSE.txt +20 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/README.mdown +74 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/build/CSSOM.js +1932 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSConditionRule.js +25 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSContainerRule.js +50 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSDocumentRule.js +39 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSFontFaceRule.js +36 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSGroupingRule.js +69 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSHostRule.js +37 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSImportRule.js +132 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSKeyframeRule.js +37 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSKeyframesRule.js +39 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSMediaRule.js +53 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSOM.js +3 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSRule.js +45 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSStartingStyleRule.js +37 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSStyleDeclaration.js +148 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSStyleRule.js +190 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSStyleSheet.js +88 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSSupportsRule.js +36 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSValue.js +43 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/CSSValueExpression.js +344 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/MatcherList.js +62 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/MediaList.js +61 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/StyleSheet.js +17 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/clone.js +75 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/index.js +25 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/lib/parse.js +504 -0
- package/workflow/tools/crawler/node_modules/rrweb-cssom/package.json +27 -0
- package/workflow/tools/crawler/node_modules/safer-buffer/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/workflow/tools/crawler/node_modules/safer-buffer/Readme.md +156 -0
- package/workflow/tools/crawler/node_modules/safer-buffer/dangerous.js +58 -0
- package/workflow/tools/crawler/node_modules/safer-buffer/package.json +34 -0
- package/workflow/tools/crawler/node_modules/safer-buffer/safer.js +77 -0
- package/workflow/tools/crawler/node_modules/safer-buffer/tests.js +406 -0
- package/workflow/tools/crawler/node_modules/saxes/README.md +323 -0
- package/workflow/tools/crawler/node_modules/saxes/package.json +71 -0
- package/workflow/tools/crawler/node_modules/saxes/saxes.d.ts +635 -0
- package/workflow/tools/crawler/node_modules/saxes/saxes.js +2053 -0
- package/workflow/tools/crawler/node_modules/saxes/saxes.js.map +1 -0
- package/workflow/tools/crawler/node_modules/symbol-tree/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/symbol-tree/README.md +545 -0
- package/workflow/tools/crawler/node_modules/symbol-tree/lib/SymbolTree.js +838 -0
- package/workflow/tools/crawler/node_modules/symbol-tree/lib/SymbolTreeNode.js +54 -0
- package/workflow/tools/crawler/node_modules/symbol-tree/lib/TreeIterator.js +69 -0
- package/workflow/tools/crawler/node_modules/symbol-tree/lib/TreePosition.js +11 -0
- package/workflow/tools/crawler/node_modules/symbol-tree/package.json +47 -0
- package/workflow/tools/crawler/node_modules/temml/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/temml/README.md +43 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/copy-tex/README.md +42 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/copy-tex/copy-tex.js +66 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/copy-tex/copy-tex.min.js +1 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/mhchem/README.md +26 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/mhchem/mhchem.js +1719 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/mhchem/mhchem.min.js +1 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/physics/README.md +20 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/physics/physics.js +131 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/texvc/README.md +23 -0
- package/workflow/tools/crawler/node_modules/temml/contrib/texvc/texvc.js +61 -0
- package/workflow/tools/crawler/node_modules/temml/dist/Temml-Asana.css +316 -0
- package/workflow/tools/crawler/node_modules/temml/dist/Temml-Latin-Modern.css +334 -0
- package/workflow/tools/crawler/node_modules/temml/dist/Temml-Libertinus.css +332 -0
- package/workflow/tools/crawler/node_modules/temml/dist/Temml-Local.css +327 -0
- package/workflow/tools/crawler/node_modules/temml/dist/Temml-NotoSans.css +331 -0
- package/workflow/tools/crawler/node_modules/temml/dist/Temml-STIX2.css +322 -0
- package/workflow/tools/crawler/node_modules/temml/dist/Temml.woff2 +0 -0
- package/workflow/tools/crawler/node_modules/temml/dist/temml.cjs +14522 -0
- package/workflow/tools/crawler/node_modules/temml/dist/temml.d.ts +63 -0
- package/workflow/tools/crawler/node_modules/temml/dist/temml.js +12611 -0
- package/workflow/tools/crawler/node_modules/temml/dist/temml.min.js +1 -0
- package/workflow/tools/crawler/node_modules/temml/dist/temml.mjs +14520 -0
- package/workflow/tools/crawler/node_modules/temml/dist/temmlPostProcess.js +83 -0
- package/workflow/tools/crawler/node_modules/temml/package.json +49 -0
- package/workflow/tools/crawler/node_modules/temml/src/Lexer.js +115 -0
- package/workflow/tools/crawler/node_modules/temml/src/MacroExpander.js +436 -0
- package/workflow/tools/crawler/node_modules/temml/src/Namespace.js +107 -0
- package/workflow/tools/crawler/node_modules/temml/src/ParseError.js +64 -0
- package/workflow/tools/crawler/node_modules/temml/src/Parser.js +1014 -0
- package/workflow/tools/crawler/node_modules/temml/src/Settings.js +54 -0
- package/workflow/tools/crawler/node_modules/temml/src/SourceLocation.js +29 -0
- package/workflow/tools/crawler/node_modules/temml/src/Style.js +146 -0
- package/workflow/tools/crawler/node_modules/temml/src/Token.js +40 -0
- package/workflow/tools/crawler/node_modules/temml/src/asciiFromScript.js +29 -0
- package/workflow/tools/crawler/node_modules/temml/src/auto-render.js +263 -0
- package/workflow/tools/crawler/node_modules/temml/src/buildMathML.js +351 -0
- package/workflow/tools/crawler/node_modules/temml/src/constants.js +25 -0
- package/workflow/tools/crawler/node_modules/temml/src/defineEnvironment.js +25 -0
- package/workflow/tools/crawler/node_modules/temml/src/defineFunction.js +69 -0
- package/workflow/tools/crawler/node_modules/temml/src/defineMacro.js +11 -0
- package/workflow/tools/crawler/node_modules/temml/src/domTree.js +219 -0
- package/workflow/tools/crawler/node_modules/temml/src/environments/array.js +989 -0
- package/workflow/tools/crawler/node_modules/temml/src/environments/borderTree.js +139 -0
- package/workflow/tools/crawler/node_modules/temml/src/environments/cd.js +260 -0
- package/workflow/tools/crawler/node_modules/temml/src/environments.js +8 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/accent.js +196 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/accentunder.js +38 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/arrow.js +232 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/bordermatrix.js +42 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/cancelto.js +36 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/char.js +33 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/color.js +255 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/cr.js +45 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/def.js +264 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/delimsizing.js +350 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/enclose.js +227 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/envTag.js +38 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/environment.js +59 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/font.js +154 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/genfrac.js +342 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/hbox.js +30 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/horizBrace.js +32 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/html.js +95 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/includegraphics.js +131 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/kern.js +82 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/label.js +29 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/lap.js +75 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/math.js +40 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/mathchoice.js +41 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/mclass.js +221 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/multiscript.js +91 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/not.js +46 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/op.js +358 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/operatorname.js +141 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/ordgroup.js +9 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/phantom.js +73 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/pmb.js +30 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/raise.js +68 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/ref.js +26 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/reflect.js +24 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/relax.js +17 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/rule.js +54 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/sfrac.js +68 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/sizing.js +64 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/smash.js +66 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/sqrt.js +50 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/styling.js +58 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/supsub.js +170 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/symbolsOp.js +62 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/symbolsOrd.js +98 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/symbolsSpacing.js +53 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/tag.js +8 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/text.js +79 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/tip.js +63 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/toggle.js +13 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/vcenter.js +30 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions/verb.js +33 -0
- package/workflow/tools/crawler/node_modules/temml/src/functions.js +61 -0
- package/workflow/tools/crawler/node_modules/temml/src/linebreaking.js +138 -0
- package/workflow/tools/crawler/node_modules/temml/src/macros.js +711 -0
- package/workflow/tools/crawler/node_modules/temml/src/mathMLTree.js +180 -0
- package/workflow/tools/crawler/node_modules/temml/src/parseNode.js +42 -0
- package/workflow/tools/crawler/node_modules/temml/src/parseTree.js +40 -0
- package/workflow/tools/crawler/node_modules/temml/src/postProcess.js +72 -0
- package/workflow/tools/crawler/node_modules/temml/src/replace.js +225 -0
- package/workflow/tools/crawler/node_modules/temml/src/stretchy.js +120 -0
- package/workflow/tools/crawler/node_modules/temml/src/symbols.js +1109 -0
- package/workflow/tools/crawler/node_modules/temml/src/tree.js +50 -0
- package/workflow/tools/crawler/node_modules/temml/src/unicodeAccents.js +16 -0
- package/workflow/tools/crawler/node_modules/temml/src/unicodeSupOrSub.js +108 -0
- package/workflow/tools/crawler/node_modules/temml/src/unicodeSymbolBuilder.js +31 -0
- package/workflow/tools/crawler/node_modules/temml/src/unicodeSymbols.js +320 -0
- package/workflow/tools/crawler/node_modules/temml/src/units.js +109 -0
- package/workflow/tools/crawler/node_modules/temml/src/utils.js +127 -0
- package/workflow/tools/crawler/node_modules/temml/src/variant.js +102 -0
- package/workflow/tools/crawler/node_modules/temml/temml.js +193 -0
- package/workflow/tools/crawler/node_modules/tldts/LICENSE +13 -0
- package/workflow/tools/crawler/node_modules/tldts/README.md +327 -0
- package/workflow/tools/crawler/node_modules/tldts/bin/cli.js +21 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/cjs/index.js +666 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/cjs/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/cjs/src/data/trie.js +14 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/cjs/src/data/trie.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/cjs/src/suffix-trie.js +67 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/cjs/src/suffix-trie.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/cjs/tsconfig.tsbuildinfo +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/es6/index.js +33 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/es6/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/es6/src/data/trie.js +11 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/es6/src/data/trie.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/es6/src/suffix-trie.js +64 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/es6/src/suffix-trie.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/es6/tsconfig.bundle.tsbuildinfo +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/index.cjs.min.js +2 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/index.cjs.min.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/index.esm.min.js +2 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/index.esm.min.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/index.umd.min.js +2 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/index.umd.min.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/types/index.d.ts +7 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/types/src/data/trie.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/tldts/dist/types/src/suffix-trie.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/tldts/index.ts +62 -0
- package/workflow/tools/crawler/node_modules/tldts/package.json +91 -0
- package/workflow/tools/crawler/node_modules/tldts/src/data/trie.ts +14 -0
- package/workflow/tools/crawler/node_modules/tldts/src/suffix-trie.ts +110 -0
- package/workflow/tools/crawler/node_modules/tldts-core/LICENSE +13 -0
- package/workflow/tools/crawler/node_modules/tldts-core/README.md +3 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/index.js +561 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/domain-without-suffix.js +15 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/domain-without-suffix.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/domain.js +83 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/domain.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/extract-hostname.js +149 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/extract-hostname.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/factory.js +104 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/factory.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/is-ip.js +72 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/is-ip.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/is-valid.js +69 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/is-valid.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/lookup/fast-path.js +69 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/lookup/fast-path.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/lookup/interface.js +3 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/lookup/interface.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/options.js +22 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/options.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/subdomain.js +14 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/src/subdomain.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/cjs/tsconfig.tsbuildinfo +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/index.js +4 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/index.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/domain-without-suffix.js +12 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/domain-without-suffix.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/domain.js +80 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/domain.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/extract-hostname.js +146 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/extract-hostname.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/factory.js +99 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/factory.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/is-ip.js +69 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/is-ip.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/is-valid.js +66 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/is-valid.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/lookup/fast-path.js +66 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/lookup/fast-path.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/lookup/interface.js +2 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/lookup/interface.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/options.js +19 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/options.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/subdomain.js +11 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/src/subdomain.js.map +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/es6/tsconfig.bundle.tsbuildinfo +1 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/index.d.ts +4 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/domain-without-suffix.d.ts +6 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/domain.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/extract-hostname.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/factory.d.ts +28 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/is-ip.d.ts +6 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/is-valid.d.ts +15 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/lookup/fast-path.d.ts +2 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/lookup/interface.d.ts +9 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/options.d.ts +10 -0
- package/workflow/tools/crawler/node_modules/tldts-core/dist/types/src/subdomain.d.ts +4 -0
- package/workflow/tools/crawler/node_modules/tldts-core/index.ts +10 -0
- package/workflow/tools/crawler/node_modules/tldts-core/package.json +68 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/domain-without-suffix.ts +14 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/domain.ts +100 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/extract-hostname.ts +170 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/factory.ts +160 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/is-ip.ts +87 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/is-valid.ts +79 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/lookup/fast-path.ts +80 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/lookup/interface.ts +10 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/options.ts +39 -0
- package/workflow/tools/crawler/node_modules/tldts-core/src/subdomain.ts +11 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/LICENSE +12 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/README.md +154 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/canonicalDomain.d.ts +33 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/canonicalDomain.js +65 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/constants.d.ts +54 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/constants.js +38 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/cookie.d.ts +326 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/cookie.js +831 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/cookieCompare.d.ts +58 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/cookieCompare.js +84 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/cookieJar.d.ts +621 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/cookieJar.js +1000 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/defaultPath.d.ts +40 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/defaultPath.js +60 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/domainMatch.d.ts +38 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/domainMatch.js +94 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/formatDate.d.ts +15 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/formatDate.js +20 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/index.d.ts +29 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/index.js +54 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/parseDate.d.ts +103 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/parseDate.js +323 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/permutePath.d.ts +14 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/cookie/permutePath.js +32 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/getPublicSuffix.d.ts +55 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/getPublicSuffix.js +71 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/memstore.d.ts +220 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/memstore.js +187 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/pathMatch.d.ts +17 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/pathMatch.js +40 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/permuteDomain.d.ts +15 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/permuteDomain.js +44 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/store.d.ts +211 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/store.js +76 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/utils.d.ts +34 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/utils.js +99 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/validators.d.ts +24 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/validators.js +90 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/version.d.ts +5 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/dist/version.js +8 -0
- package/workflow/tools/crawler/node_modules/tough-cookie/package.json +144 -0
- package/workflow/tools/crawler/node_modules/tr46/LICENSE.md +21 -0
- package/workflow/tools/crawler/node_modules/tr46/README.md +76 -0
- package/workflow/tools/crawler/node_modules/tr46/index.js +344 -0
- package/workflow/tools/crawler/node_modules/tr46/lib/mappingTable.json +1 -0
- package/workflow/tools/crawler/node_modules/tr46/lib/regexes.js +29 -0
- package/workflow/tools/crawler/node_modules/tr46/lib/statusMapping.js +9 -0
- package/workflow/tools/crawler/node_modules/tr46/package.json +44 -0
- package/workflow/tools/crawler/node_modules/turndown/LICENSE +21 -0
- package/workflow/tools/crawler/node_modules/turndown/README.md +232 -0
- package/workflow/tools/crawler/node_modules/turndown/dist/turndown.js +976 -0
- package/workflow/tools/crawler/node_modules/turndown/lib/turndown.browser.cjs.js +973 -0
- package/workflow/tools/crawler/node_modules/turndown/lib/turndown.browser.es.js +971 -0
- package/workflow/tools/crawler/node_modules/turndown/lib/turndown.browser.umd.js +979 -0
- package/workflow/tools/crawler/node_modules/turndown/lib/turndown.cjs.js +949 -0
- package/workflow/tools/crawler/node_modules/turndown/lib/turndown.es.js +947 -0
- package/workflow/tools/crawler/node_modules/turndown/lib/turndown.umd.js +955 -0
- package/workflow/tools/crawler/node_modules/turndown/package.json +52 -0
- package/workflow/tools/crawler/node_modules/w3c-xmlserializer/LICENSE.md +25 -0
- package/workflow/tools/crawler/node_modules/w3c-xmlserializer/README.md +41 -0
- package/workflow/tools/crawler/node_modules/w3c-xmlserializer/lib/attributes.js +125 -0
- package/workflow/tools/crawler/node_modules/w3c-xmlserializer/lib/constants.js +44 -0
- package/workflow/tools/crawler/node_modules/w3c-xmlserializer/lib/serialize.js +365 -0
- package/workflow/tools/crawler/node_modules/w3c-xmlserializer/package.json +32 -0
- package/workflow/tools/crawler/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/workflow/tools/crawler/node_modules/webidl-conversions/README.md +99 -0
- package/workflow/tools/crawler/node_modules/webidl-conversions/lib/index.js +450 -0
- package/workflow/tools/crawler/node_modules/webidl-conversions/package.json +35 -0
- package/workflow/tools/crawler/node_modules/whatwg-encoding/LICENSE.txt +7 -0
- package/workflow/tools/crawler/node_modules/whatwg-encoding/README.md +50 -0
- package/workflow/tools/crawler/node_modules/whatwg-encoding/lib/labels-to-names.json +217 -0
- package/workflow/tools/crawler/node_modules/whatwg-encoding/lib/supported-names.json +38 -0
- package/workflow/tools/crawler/node_modules/whatwg-encoding/lib/whatwg-encoding.js +60 -0
- package/workflow/tools/crawler/node_modules/whatwg-encoding/package.json +32 -0
- package/workflow/tools/crawler/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
- package/workflow/tools/crawler/node_modules/whatwg-mimetype/README.md +101 -0
- package/workflow/tools/crawler/node_modules/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
- package/workflow/tools/crawler/node_modules/whatwg-mimetype/lib/mime-type.js +127 -0
- package/workflow/tools/crawler/node_modules/whatwg-mimetype/lib/parser.js +105 -0
- package/workflow/tools/crawler/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
- package/workflow/tools/crawler/node_modules/whatwg-mimetype/lib/utils.js +60 -0
- package/workflow/tools/crawler/node_modules/whatwg-mimetype/package.json +45 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/README.md +106 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/index.js +27 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/Function.js +42 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/URL-impl.js +233 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/URL.js +499 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/URLSearchParams-impl.js +135 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/URLSearchParams.js +505 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/encoding.js +16 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/infra.js +26 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/url-state-machine.js +1274 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/urlencoded.js +89 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/lib/utils.js +190 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/package.json +53 -0
- package/workflow/tools/crawler/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
- package/workflow/tools/crawler/node_modules/ws/LICENSE +20 -0
- package/workflow/tools/crawler/node_modules/ws/README.md +548 -0
- package/workflow/tools/crawler/node_modules/ws/browser.js +8 -0
- package/workflow/tools/crawler/node_modules/ws/index.js +13 -0
- package/workflow/tools/crawler/node_modules/ws/lib/buffer-util.js +131 -0
- package/workflow/tools/crawler/node_modules/ws/lib/constants.js +19 -0
- package/workflow/tools/crawler/node_modules/ws/lib/event-target.js +292 -0
- package/workflow/tools/crawler/node_modules/ws/lib/extension.js +203 -0
- package/workflow/tools/crawler/node_modules/ws/lib/limiter.js +55 -0
- package/workflow/tools/crawler/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/workflow/tools/crawler/node_modules/ws/lib/receiver.js +706 -0
- package/workflow/tools/crawler/node_modules/ws/lib/sender.js +602 -0
- package/workflow/tools/crawler/node_modules/ws/lib/stream.js +161 -0
- package/workflow/tools/crawler/node_modules/ws/lib/subprotocol.js +62 -0
- package/workflow/tools/crawler/node_modules/ws/lib/validation.js +152 -0
- package/workflow/tools/crawler/node_modules/ws/lib/websocket-server.js +554 -0
- package/workflow/tools/crawler/node_modules/ws/lib/websocket.js +1393 -0
- package/workflow/tools/crawler/node_modules/ws/package.json +69 -0
- package/workflow/tools/crawler/node_modules/ws/wrapper.mjs +8 -0
- package/workflow/tools/crawler/node_modules/xml-name-validator/LICENSE.txt +176 -0
- package/workflow/tools/crawler/node_modules/xml-name-validator/README.md +35 -0
- package/workflow/tools/crawler/node_modules/xml-name-validator/lib/xml-name-validator.js +9 -0
- package/workflow/tools/crawler/node_modules/xml-name-validator/package.json +30 -0
- package/workflow/tools/crawler/node_modules/xmlchars/LICENSE +18 -0
- package/workflow/tools/crawler/node_modules/xmlchars/README.md +33 -0
- package/workflow/tools/crawler/node_modules/xmlchars/package.json +51 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xml/1.0/ed4.d.ts +31 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xml/1.0/ed4.js +44 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xml/1.0/ed4.js.map +1 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xml/1.0/ed5.d.ts +51 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xml/1.0/ed5.js +105 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xml/1.0/ed5.js.map +1 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xml/1.1/ed2.d.ts +73 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xml/1.1/ed2.js +145 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xml/1.1/ed2.js.map +1 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xmlchars.d.ts +170 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xmlchars.js +191 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xmlchars.js.map +1 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xmlns/1.0/ed3.js +65 -0
- package/workflow/tools/crawler/node_modules/xmlchars/xmlns/1.0/ed3.js.map +1 -0
- package/workflow/tools/crawler/package-lock.json +817 -0
- package/workflow/tools/crawler/package.json +16 -0
- package/workflow/tools/crawler/test-robot-report.mjs +31 -0
- package/workflow/tools/pack.sh +35 -0
- package/workflow/tools/setup.sh +93 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle.min.js","mappings":"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U,QACV,SAAU,QACV,SAAU,QACV,SAAU,QACV,SAAU,QACV,SAAU,UACV,SAAU,U,8GC/lCC,EAAAvG,wBAAkD,CAC7DuG,EAAG,cACH,IAAK,eACL,IAAK,cACL,IAAK,eACL,IAAK,cACL,IAAK,eACL,IAAK,cACL,IAAK,eACL,IAAK,cACL,IAAK,WACL,IAAK,WACL,IAAK,GACL,IAAK,OACL,IAAK,aACL,IAAK,MACL,IAAK,KACL,IAAK,IACL,IAAK,MACL,IAAK,KACL,IAAK,KACL,IAAK,KACL,IAAK,IACL,IAAK,IACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,SACL,IAAK,SACL,IAAK,IACL,EAAG,MACH,EAAG,IACH,EAAG,IACH,EAAG,IACH,EAAG,GACH,EAAG,QACH,EAAG,IACH,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,SACL,IAAK,QACL,EAAG,IACH,IAAK,gBACL,IAAK,eACL,IAAK,QACL,IAAK,IACL,KAAM,KACN,KAAM,KACN,IAAK,MACL,IAAK,cACL,IAAK,cACL,IAAK,WACL,EAAG,IACH,EAAG,cACH,IAAK,IACL,IAAK,IACL,KAAM,KACN,KAAM,KACN,IAAK,IACL,IAAK,MACL,IAAK,GACL,IAAK,GACL,IAAK,IACL,KAAM,KACN,KAAM,eACN,IAAK,UACL,IAAK,YACL,IAAK,YACL,IAAK,QACL,IAAK,kBACL,IAAK,kBACL,IAAK,UACL,IAAK,QACL,IAAK,IACL,IAAK,cACL,KAAM,cACN,IAAK,MACL,IAAK,cACL,IAAK,SACL,IAAK,WACL,IAAK,UACL,IAAK,SACL,IAAK,WACL,IAAK,aACL,IAAK,GACL,IAAK,IACL,IAAK,SACL,IAAK,IACL,IAAK,SACL,IAAK,QACL,IAAK,QACL,IAAK,WACL,IAAK,SACL,IAAK,GACL,IAAK,GACL,IAAK,kBACL,IAAK,UACL,IAAK,GACL,IAAK,GACL,IAAK,UACL,IAAK,UACL,IAAK,WACL,IAAK,SACL,IAAK,QACL,IAAK,QACL,IAAK,UACL,IAAK,UACL,IAAK,QACL,IAAK,QACL,IAAK,qBACL,IAAK,oBACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,SACL,IAAK,SACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,mBACL,IAAK,GACL,IAAK,mBACL,IAAK,WACL,IAAK,SACL,IAAK,SACL,IAAK,QACL,IAAK,UACL,IAAK,UACL,IAAK,SACL,IAAK,QACL,IAAK,UACL,IAAK,WACL,IAAK,WACL,IAAK,UACL,IAAK,UACL,IAAK,SACL,IAAK,GACL,IAAK,GACL,IAAK,QACL,IAAK,aACL,IAAK,YACL,IAAK,WACL,IAAK,KACL,IAAK,IACL,IAAK,OACL,IAAK,IACL,IAAK,IACL,IAAK,gBACL,IAAK,eACL,IAAK,gBACL,IAAK,GACL,IAAK,oBACL,IAAK,UACL,IAAK,kBACL,IAAK,kBACL,IAAK,SACL,IAAK,kBACL,IAAK,GACL,IAAK,UACL,IAAK,GACL,IAAK,GACL,IAAK,SACL,IAAK,SACL,IAAK,qCACL,IAAK,GACL,IAAK,qCACL,IAAK,8BACL,IAAK,GACL,IAAK,6BACL,IAAK,qCACL,IAAK,kCACL,IAAK,iCACL,IAAK,iCACL,IAAK,6BACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,iCACL,IAAK,gCACL,IAAK,gCACL,IAAK,+BACL,IAAK,sBACL,IAAK,sBACL,IAAK,sBACL,IAAK,sBACL,IAAK,cACL,IAAK,eACL,IAAK,YACL,IAAK,cACL,IAAK,cACL,IAAK,YACL,IAAK,eACL,IAAK,cACL,IAAK,cACL,IAAK,YACL,IAAK,eACL,IAAK,cACL,IAAK,cACL,IAAK,YACL,IAAK,eACL,IAAK,cACL,IAAK,cACL,IAAK,YACL,IAAK,eACL,IAAK,cACL,IAAK,gBACL,IAAK,mBACL,IAAK,gBACL,IAAK,mBACL,IAAK,gBACL,IAAK,gBACL,IAAK,mBACL,IAAK,mBACL,IAAK,GACL,IAAK,mBACL,IAAK,gBACL,IAAK,GACL,IAAK,GACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,qBACL,IAAK,oBACL,IAAK,eACL,IAAK,cACL,IAAK,cACL,IAAK,eACL,IAAK,eACL,IAAK,cACL,IAAK,cACL,IAAK,cACL,IAAK,QACL,IAAK,QACL,IAAK,cACL,IAAK,YACL,IAAK,eACL,IAAK,cACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,UACL,IAAK,UACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,IACL,IAAK,iBACL,IAAK,oBACL,IAAK,qBACL,IAAK,cACL,IAAK,eACL,IAAK,cACL,IAAK,eACL,IAAK,cACL,IAAK,eACL,IAAK,eACL,IAAK,eACL,IAAK,eACL,IAAK,eACL,IAAK,cACL,IAAK,YACL,IAAK,eACL,IAAK,eACL,IAAK,eACL,IAAK,cACL,IAAK,eACL,IAAK,cACL,IAAK,cACL,IAAK,YACL,IAAK,YACL,IAAK,cACL,IAAK,eACL,IAAK,cACL,IAAK,WACL,IAAK,oBACL,IAAK,gBACL,IAAK,eACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,eACL,IAAK,cACL,IAAK,WACL,IAAK,cACL,IAAK,uBACL,IAAK,mBACL,IAAK,kBACL,IAAK,mBACL,IAAK,eACL,IAAK,cACL,IAAK,cACL,IAAK,YACL,IAAK,eACL,IAAK,mBACL,IAAK,eACL,IAAK,cACL,IAAK,oBACL,IAAK,gBACL,IAAK,eACL,IAAK,oBACL,IAAK,gBACL,IAAK,eACL,IAAK,gBACL,IAAK,GACL,IAAK,eACL,IAAK,gBACL,IAAK,YACL,IAAK,YACL,IAAK,cACL,IAAK,YACL,IAAK,YACL,IAAK,YACL,IAAK,YACL,IAAK,YACL,IAAK,YACL,IAAK,cACL,IAAK,eACL,IAAK,YACL,IAAK,cACL,IAAK,eACL,IAAK,cACL,IAAK,cACL,IAAK,eACL,IAAK,YACL,IAAK,cACL,IAAK,cACL,IAAK,YACL,IAAK,oBACL,IAAK,cACL,IAAK,gBACL,IAAK,eACL,IAAK,YACL,IAAK,YACL,IAAK,YACL,IAAK,YACL,IAAK,gBACL,IAAK,mBACL,IAAK,cACL,IAAK,eACL,IAAK,YACL,IAAK,cACL,IAAK,gBACL,IAAK,oBACL,IAAK,eACL,IAAK,sBACL,IAAK,sBACL,IAAK,mBACL,IAAK,qBACL,IAAK,eACL,IAAK,mBACL,IAAK,oBACL,IAAK,GACL,IAAK,oBACL,IAAK,oBACL,IAAK,qBACL,IAAK,qBACL,IAAK,mBACL,IAAK,kBACL,IAAK,mBACL,IAAK,oBACL,IAAK,kBACL,IAAK,qBACL,IAAK,oBACL,IAAK,oBACL,IAAK,wBACL,IAAK,oBACL,IAAK,mBACL,IAAK,YACL,IAAK,YACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,YACL,IAAK,GACL,IAAK,wBACL,IAAK,mBACL,IAAK,kBACL,IAAK,mBACL,IAAK,kBACL,IAAK,6BACL,IAAK,cACL,IAAK,mBACL,IAAK,YACL,IAAK,kBACL,IAAK,mBACL,IAAK,kBACL,IAAK,cACL,IAAK,sBACL,IAAK,YACL,IAAK,qBACL,IAAK,YACL,IAAK,YACL,IAAK,GACL,IAAK,YACL,IAAK,YACL,IAAK,YACL,IAAK,YACL,IAAK,gBACL,IAAK,mBACL,IAAK,cACL,IAAK,eACL,IAAK,YACL,IAAK,cACL,MAAO,oBACP,KAAM,mBACN,IAAK,QACL,IAAK,GACL,IAAK,KACL,IAAK,MACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,UACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,cACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,mBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,sBACL,IAAK,oBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,SACL,IAAK,QACL,IAAK,UACL,KAAM,GACN,IAAK,GACL,IAAK,cACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,8BACL,IAAK,8BACL,IAAK,iCACL,IAAK,iCACL,IAAK,8BACL,IAAK,8BACL,IAAK,cACL,IAAK,cACL,IAAK,oBACL,IAAK,oBACL,IAAK,gCACL,IAAK,gCACL,IAAK,0BACL,IAAK,0BACL,IAAK,GACL,IAAK,GACL,IAAK,QACL,IAAK,OACL,IAAK,yCACL,IAAK,yCACL,IAAK,+BACL,IAAK,+BACL,IAAK,kCACL,IAAK,kCACL,IAAK,wBACL,IAAK,wBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,4BACL,IAAK,4BACL,IAAK,eACL,IAAK,eACL,IAAK,GACL,IAAK,GACL,IAAK,qBACL,IAAK,oBACL,IAAK,KACL,IAAK,KACL,IAAK,oBACL,KAAM,iBACN,IAAK,OACL,KAAM,iBACN,IAAK,OACL,IAAK,2BACL,IAAK,2BACL,IAAK,sBACL,IAAK,sBACL,IAAK,GACL,IAAK,GACL,IAAK,kBACL,IAAK,kBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,2BACL,IAAK,2BACL,IAAK,0BACL,IAAK,2BACL,IAAK,yBACL,IAAK,yBACL,IAAK,eACL,IAAK,eACL,IAAK,oCACL,IAAK,0BACL,IAAK,0BACL,IAAK,0BACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,KAAM,mBACN,IAAK,QACL,KAAM,mBACN,IAAK,QACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,6BACL,IAAK,GACL,IAAK,MACL,IAAK,KACL,IAAK,MACL,IAAK,GACL,IAAK,mBACL,IAAK,kBACL,IAAK,yBACL,IAAK,wBACL,IAAK,kBACL,IAAK,kBACL,IAAK,GACL,IAAK,GACL,IAAK,eACL,IAAK,GACL,IAAK,GACL,IAAK,iBACL,IAAK,wBACL,IAAK,GACL,IAAK,GACL,IAAK,uBACL,IAAK,sBACL,IAAK,SACL,IAAK,yBACL,IAAK,uBACL,IAAK,wBACL,IAAK,mBACL,IAAK,qBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,QACL,IAAK,UACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,eACL,IAAK,iBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,oBACL,IAAK,oBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,oBACL,IAAK,oBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,aACL,IAAK,aACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,kBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,uBACL,IAAK,uBACL,IAAK,iBACL,IAAK,YACL,IAAK,YACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,QACL,IAAK,uBACL,IAAK,wBACL,IAAK,sBACL,IAAK,WACL,IAAK,WACL,IAAK,mBACL,IAAK,KACL,IAAK,GACL,IAAK,iBACL,IAAK,WACL,IAAK,GACL,IAAK,IACL,IAAK,iBACL,IAAK,gBACL,IAAK,cACL,IAAK,IACL,IAAK,sBACL,IAAK,GACL,IAAK,cACL,IAAK,QACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,YACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,YACL,IAAK,iBACL,IAAK,GACL,IAAK,WACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,SACL,IAAK,MACL,IAAK,MACL,IAAK,GACL,IAAK,GACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,KAAM,yBACN,IAAK,oBACL,KAAM,wBACN,IAAK,mBACL,IAAK,GACL,IAAK,aACL,IAAK,GACL,IAAK,0BACL,IAAK,oBACL,IAAK,GACL,IAAK,kBACL,IAAK,kBACL,IAAK,wBACL,IAAK,sBACL,IAAK,qBACL,IAAK,SACL,IAAK,SACL,IAAK,SACL,IAAK,SACL,IAAK,eACL,IAAK,UACL,IAAK,WACL,IAAK,GACL,IAAK,eACL,IAAK,eACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,sBACL,IAAK,sBACL,IAAK,sBACL,IAAK,2BACL,IAAK,eACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,GACL,IAAK,aACL,IAAK,kBACL,IAAK,aACL,IAAK,eACL,IAAK,IACL,IAAK,SACL,IAAK,QACL,IAAK,kBACL,IAAK,YACL,IAAK,mBACL,IAAK,mBACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,oBACL,IAAK,oBACL,IAAK,mBACL,IAAK,mBACL,IAAK,cACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,UACL,IAAK,IACL,IAAK,4BACL,IAAK,4BACL,IAAK,4BACL,IAAK,4BACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,UACL,IAAK,UACL,IAAK,SACL,IAAK,SACL,IAAK,gBACL,IAAK,gBACL,IAAK,uBACL,IAAK,uBACL,IAAK,MACL,IAAK,QACL,IAAK,QACL,IAAK,WACL,IAAK,WACL,IAAK,UACL,IAAK,QACL,IAAK,UACL,IAAK,SACL,IAAK,QACL,IAAK,SACL,IAAK,YACL,IAAK,aACL,IAAK,kBACL,IAAK,oBACL,IAAK,qBACL,IAAK,qBACL,IAAK,QACL,EAAG,OACH,EAAG,IACH,IAAK,GACL,IAAK,mBACL,IAAK,mBACL,IAAK,kBACL,IAAK,iBACL,IAAK,SACL,IAAK,SACL,IAAK,YACL,IAAK,YACL,IAAK,WACL,IAAK,UACL,IAAK,WACL,IAAK,WACL,IAAK,SACL,IAAK,SACL,IAAK,UACL,IAAK,UACL,IAAK,eACL,IAAK,eACL,KAAM,kBACN,IAAK,aACL,KAAM,kBACN,IAAK,aACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,KAAM,iBACN,IAAK,YACL,IAAK,YACL,IAAK,uBACL,IAAK,uBACL,IAAK,kBACL,IAAK,kBACL,IAAK,aACL,IAAK,aACL,IAAK,QACL,IAAK,QACL,IAAK,GACL,IAAK,QACL,KAAM,aACN,IAAK,QACL,IAAK,mBACL,IAAK,mBACL,IAAK,oBACL,IAAK,IACL,IAAK,IACL,IAAK,KACL,IAAK,UACL,IAAK,UACL,IAAK,UACL,IAAK,UACL,KAAM,GACN,IAAK,GACL,KAAM,GACN,IAAK,GACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,KAAM,QACN,IAAK,IACL,IAAK,QACL,IAAK,UACL,KAAM,QACN,IAAK,QACL,IAAK,QACL,IAAK,MACL,IAAK,KACL,IAAK,QACL,IAAK,KACL,IAAK,IACL,IAAK,QACL,IAAK,aACL,IAAK,SACL,IAAK,IACL,IAAK,IACL,IAAK,WACL,IAAK,OACL,IAAK,OACL,IAAK,UACL,IAAK,IACL,KAAM,YACN,IAAK,WACL,KAAM,YACN,IAAK,WACL,IAAK,cACL,IAAK,cACL,IAAK,QACL,IAAK,WACL,IAAK,eACL,IAAK,gBACL,IAAK,QACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,gBACL,IAAK,gBACL,IAAK,gBACL,IAAK,gBACL,IAAK,YACL,IAAK,YACL,IAAK,YACL,IAAK,iBACL,IAAK,iBACL,IAAK,iBACL,IAAK,iBACL,IAAK,iBACL,IAAK,iBACL,IAAK,iBACL,IAAK,iBACL,IAAK,iBACL,IAAK,iBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,aACL,IAAK,aACL,IAAK,aACL,IAAK,WACL,IAAK,gBACL,IAAK,WACL,IAAK,gBACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,gBACL,IAAK,uBACL,IAAK,sBACL,IAAK,uBACL,IAAK,sBACL,IAAK,QACL,IAAK,QACL,IAAK,KACL,IAAK,KACL,IAAK,cACL,IAAK,GACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,kBACL,iBAAkB,GAClB,IAAK,QACL,IAAK,UACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,SACL,IAAK,SACL,IAAK,SACL,IAAK,SACL,IAAK,QACL,KAAM,YACN,IAAK,OACL,KAAM,YACN,IAAK,OACL,IAAK,cACL,IAAK,cACL,IAAK,UACL,IAAK,UACL,IAAK,cACL,IAAK,UACL,IAAK,cACL,IAAK,cACL,IAAK,UACL,IAAK,KACL,IAAK,UACL,IAAK,UACL,IAAK,UACL,IAAK,SACL,IAAK,eACL,IAAK,UACL,IAAK,aACL,IAAK,kBACL,IAAK,aACL,IAAK,SACL,IAAK,WACL,KAAM,KACN,IAAK,IACL,KAAM,KACN,KAAM,IACN,KAAM,KACN,KAAM,KACN,KAAM,KACN,KAAM,KACN,IAAK,QACL,IAAK,YACL,IAAK,aACL,IAAK,MACL,IAAK,WACL,IAAK,KACL,IAAK,IACL,IAAK,KACL,KAAM,KACN,IAAK,IACL,IAAK,QACL,IAAK,QACL,KAAM,KACN,IAAK,cACL,IAAK,cACL,IAAK,cACL,IAAK,cACL,IAAK,aACL,IAAK,aACL,IAAK,gBACL,IAAK,gBACL,KAAM,aACN,IAAK,WACL,KAAM,aACN,IAAK,WACL,IAAK,YACL,IAAK,UACL,IAAK,OACL,IAAK,IACL,IAAK,YACL,IAAK,WACL,IAAK,WACL,IAAK,SACL,KAAM,SACN,IAAK,QACL,IAAK,oBACL,IAAK,oBACL,IAAK,WACL,IAAK,WACL,IAAK,UACL,IAAK,UACL,IAAK,QACL,IAAK,UACL,IAAK,UACL,IAAK,OACL,IAAK,UACL,IAAK,UACL,IAAK,UACL,IAAK,OACL,IAAK,IACL,MAAO,UACP,KAAM,KACN,KAAM,KACN,IAAK,YACL,IAAK,eACL,IAAK,cACL,IAAK,IACL,IAAK,IACL,IAAK,MACL,IAAK,MACL,IAAK,MACL,IAAK,MACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,MACL,IAAK,MACL,IAAK,MACL,IAAK,MACL,IAAK,MACL,IAAK,MACL,IAAK,kBACL,IAAK,iBACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,SACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,mBACL,IAAK,mBACL,IAAK,oBACL,IAAK,oBACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,kBACL,IAAK,kBACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,UACL,IAAK,UACL,IAAK,aACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,MACL,IAAK,aACL,IAAK,IACL,IAAK,IACL,EAAG,UACH,EAAG,SACH,EAAG,UACH,EAAG,UACH,EAAG,UACH,EAAG,UACH,EAAG,YACH,EAAG,SACH,EAAG,QACH,EAAG,UACH,EAAG,UACH,EAAG,SACH,EAAG,UACH,EAAG,WACH,EAAG,OACH,EAAG,YACH,EAAG,OACH,EAAG,OACH,EAAG,QACH,EAAG,UACH,EAAG,UACH,EAAG,QACH,EAAG,YACH,EAAG,YACH,EAAG,QACH,EAAG,QACH,EAAG,QACH,EAAG,QACH,EAAG,QACH,EAAG,UACH,EAAG,UACH,EAAG,UACH,IAAK,aACL,IAAK,oBACL,IAAK,qBACL,IAAK,UACL,IAAK,gBACL,EAAG,OACH,EAAG,UACH,IAAK,cACL,IAAK,WACL,IAAK,WACL,IAAK,gBACL,IAAK,UACL,EAAG,SACH,EAAG,gBACH,EAAG,UACH,EAAG,aACH,EAAG,WACH,EAAG,QACH,EAAG,eACHC,EAAG,IACH,IAAK,SACL,EAAG,IACH,IAAK,UACL,EAAG,UACH,EAAG,QACH,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,OACL,IAAK,WACL,IAAK,IACL,IAAK,SACL,IAAK,SACL,IAAK,UACL,IAAK,IACL,IAAK,OACL,IAAK,YACL,IAAK,cACL,IAAK,cACL,IAAK,eACL,IAAK,IACL,IAAK,QACL,IAAK,QACL,EAAG,SACH,IAAK,eACL,IAAK,SACL,IAAK,QACL,IAAK,WACL,IAAK,QACL,IAAK,UACL,IAAK,cACL,EAAG,OACH,IAAK,OACL,EAAG,UACH,IAAK,WACL,IAAK,QACLC,EAAG,MACH,IAAK,MACL,IAAK,yBACL,IAAK,yBACL,IAAK,gBACL,IAAK,QACL,EAAG,YACH,EAAG,IACH,IAAK,YACL,EAAG,IACH,EAAG,YACH,GAAM,UACN,IAAK,SACL,EAAG,UACH,GAAM,QACN,EAAG,SACH,EAAG,IACH,EAAG,SACH,EAAG,WACH,IAAK,QACL,IAAK,SACL,EAAG,WACH,EAAG,WACH,EAAG,IACH,GAAM,YACN,EAAG,cACH,EAAG,O,2GCjrCQ,EAAArH,qBAA+C,CAC1D,SAAU,cACV,WAAY,WACZ,WAAY,WACZ,WAAY,QACZ,WAAY,KACZ,SAAU,QACV,WAAY,cACZ,WAAY,cACZ,WAAY,cACZ,WAAY,cACZ,WAAY,KACZ,WAAY,WACZ,WAAY,YACZ,WAAY,aACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,UACZ,WAAY,YACZ,WAAY,cACZ,WAAY,UACZ,WAAY,WACZ,SAAU,OACV,WAAY,UACZ,WAAY,YACZ,WAAY,SACZ,WAAY,QACZ,WAAY,QACZ,WAAY,QACZ,WAAY,QACZ,WAAY,QACZ,WAAY,QACZ,WAAY,QACZ,WAAY,UACZ,WAAY,UACZ,WAAY,SACZ,WAAY,QACZ,WAAY,YACZ,WAAY,aACZ,WAAY,KACZ,WAAY,IACZ,WAAY,WACZ,WAAY,WACZ,WAAY,WACZ,SAAU,QACV,SAAU,UACV,KAAM,cACN,WAAY,SACZ,WAAY,SACZ,WAAY,SACZ,UAAW,UACX,UAAW,UACX,UAAW,QACX,UAAW,QACX,UAAW,QACX,UAAW,WACX,UAAW,QACX,UAAW,QACX,UAAW,YACX,UAAW,QACX,UAAW,UACX,UAAW,UACX,UAAW,QACX,UAAW,OACX,UAAW,OACX,UAAW,OACX,UAAW,OACX,UAAW,OACX,UAAW,OACX,UAAW,WACX,UAAW,WACX,UAAW,UACX,UAAW,SACX,UAAW,aACX,UAAW,UACX,UAAW,UACX,UAAW,QACX,UAAW,SACX,UAAW,eACX,UAAW,YACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,UACX,UAAW,SACX,UAAW,UACX,WAAY,UACZ,IAAU,wBACV,IAAU,wB,4GCzFC,EAAAC,sBAAgD,CAC3D,IAAK,cACL,IAAK,WACL,IAAK,WACL,IAAK,QACL,IAAK,eACL,IAAK,QACL,IAAK,WACL,IAAK,YACL,IAAK,aACL,IAAK,UACL,IAAK,UACL,IAAK,UACL,IAAK,UACL,IAAK,YACL,IAAK,cACL,EAAG,UACH,IAAK,aACL,IAAK,OACL,IAAK,UACL,IAAK,YACL,IAAK,SACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,QACL,IAAK,UACL,IAAK,UACL,IAAK,SACL,IAAK,QACL,IAAK,YACL,IAAK,aACL,IAAK,KACL,IAAK,IACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,QACL,IAAK,UACL,KAAM,cACN,IAAK,SACL,IAAK,SACL,IAAK,SACL,EAAG,UACH,EAAG,UACH,EAAG,QACH,EAAG,QACH,EAAG,QACH,EAAG,WACH,EAAG,QACH,EAAG,QACH,EAAG,YACH,EAAG,QACH,EAAG,UACH,EAAG,UACH,EAAG,QACH,EAAG,OACH,EAAG,OACH,EAAG,OACH,EAAG,OACH,EAAG,OACH,EAAG,OACH,EAAG,WACH,EAAG,WACH,EAAG,UACH,EAAG,SACH,EAAG,aACH,EAAG,UACH,EAAG,UACH,EAAG,QACH,EAAG,SACH,EAAG,eACH,EAAG,YACH,EAAG,UACH,EAAG,UACH,EAAG,UACH,EAAG,UACH,EAAG,SACH,EAAG,UACH,IAAK,UACL,EAAG,YACH,EAAG,OACH,IAAK,OACL,EAAG,UACH,IAAK,gBACL,EAAG,cACH,EAAG,UACH,IAAK,oBACL,IAAK,qBACL,EAAG,IACH,IAAK,QACL,IAAK,OACL,IAAK,OACL,EAAG,OACH,EAAG,SACH,IAAK,WACL,IAAK,kBACL,KAAM,gBACN,IAAK,WACL,EAAG,UACH,EAAG,IACH,IAAK,IACL,EAAG,OACH,EAAG,IACH,EAAG,OACH,IAAK,cACL,IAAK,UACL,IAAK,gBACL,EAAG,UACH,IAAK,cACL,IAAK,WACL,IAAK,WACL,IAAK,WACL,IAAK,gBACL,IAAK,UACL,EAAG,SACH,EAAG,gBACH,EAAG,UACH,EAAG,aACH,EAAG,WACH,EAAG,QACHmH,EAAG,IACH,IAAK,SACL,EAAG,IACH,EAAG,UACH,EAAG,QACH,EAAG,UACH,EAAG,SACH,EAAG,eACH,EAAG,SACH,GAAI,WACJ,IAAK,WACL,IAAK,WACL,IAAK,IACL,GAAI,IACJ,GAAI,IACJ,GAAI,IACJ,GAAI,IACJ,GAAI,IACJ,GAAI,IACJ,GAAI,IACJ,GAAI,IACJ,GAAI,IACJ,EAAG,QACH,GAAM,SACN,IAAK,UACL,EAAK,OACL,GAAM,OACN,EAAG,YACH,EAAG,YACH,GAAI,YACJ,EAAG,OACH,EAAG,OACH,EAAG,UACH,GAAM,QACN,EAAG,UACH,EAAG,QACH,EAAG,UACH,EAAG,QACH,EAAG,YACH,GAAI,WACJ,IAAK,UACL,EAAG,QACH,GAAM,WACN,EAAG,IACH,EAAG,IACH,EAAG,IACH,EAAG,IACH,IAAK,QACL,KAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,GAAM,IACN,EAAG,IACH,IAAK,SACL,IAAK,SACL,IAAK,UACL,IAAK,QACL,EAAG,QACH,IAAK,QACL,EAAG,SACH,EAAG,IACH,IAAK,cACL,EAAG,WACH,IAAK,SACL,IAAK,cACL,IAAK,cACL,IAAK,QACL,IAAK,QACL,IAAK,cACL,IAAK,YACL,IAAK,eACL,IAAK,QACL,IAAK,QACL,IAAK,cACL,EAAG,IACH,EAAG,IACH,EAAG,IACH,GAAI,IACJ,GAAI,IACJ,GAAI,IACJ,EAAG,IACH,EAAG,IACH,IAAK,WACLpQ,EAAG,IACH,GAAM,OACN,IAAK,mBACL,IAAK,mBACL,IAAK,mBACL,IAAK,mBACL,IAAK,mBACL,IAAK,mBACL,IAAK,mBACL,IAAK,mBACL,IAAK,mBACL,IAAK,mBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,oBACL,IAAK,MACL,IAAK,aACL,IAAK,MACL,IAAK,aACLqQ,EAAG,MACH,IAAK,MACL,IAAK,yBACL,IAAK,yBACL,IAAK,gBACL,IAAK,QACL,IAAK,WACL,IAAK,WACL,IAAK,UACL,IAAK,UACL,EAAG,eACH,EAAG,YACH,EAAG,IACH,IAAK,gBACL,EAAG,UACH,IAAK,aACL,IAAK,eACL,IAAK,YACL,IAAK,SACL,IAAK,WACL,IAAK,UACL,EAAG,IACH,IAAK,UACL,EAAG,YACH,IAAK,cACL,IAAK,YACL,IAAK,OACL,IAAK,QACL,IAAK,IACL,GAAM,UACN,IAAK,SACL,IAAK,IACL,IAAK,kBACL,IAAK,kBACL,IAAK,kBACL,IAAK,SACL,EAAG,UACH,IAAK,kBACL,IAAK,IACL,IAAK,aACL,IAAK,cACL,GAAM,QACN,EAAG,SACH,EAAG,IACH,IAAK,WACL,IAAK,QACL,EAAG,SACH,EAAG,WACH,EAAG,OACH,IAAK,IACL,EAAG,IACH,IAAK,QACL,IAAK,cACL,IAAK,QACL,IAAK,SACL,IAAK,IACL,EAAG,WACH,IAAK,aACL,IAAK,mBACL,IA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B,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ,KACxB,EAAG,CAAEqI,KAAM,IAAKrI,OAAQ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C5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAE5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,EAAG,CAAED,OAAQ,IAAKC,QAAS,UAC3B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,EAAG,CAAED,OAAQ,IAAKC,QAAS,UAC3B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,EAAG,CAAED,OAAQ,IAAKC,QAAS,UAC3B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,EAAG,CAAED,OAAQ,IAAKC,QAAS,UAC3B,EAAG,CAAED,OAAQ,IAAKC,QAAS,UAC3B,EAAG,CAAED,OAAQ,IAAKC,QAAS,UAC3B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAAED,OAAQ,IAAKC,QAAS,UAC5B,GAAI,CAA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","sources":["webpack://MathMLToLaTeX/webpack/universalModuleDefinition","webpack://MathMLToLaTeX/./node_modules/@xmldom/xmldom/lib/conventions.js","webpack://MathMLToLaTeX/./node_modules/@xmldom/xmldom/lib/dom-parser.js","webpack://MathMLToLaTeX/./node_modules/@xmldom/xmldom/lib/dom.js","webpack://MathMLToLaTeX/./node_modules/@xmldom/xmldom/lib/entities.js","webpack://MathMLToLaTeX/./node_modules/@xmldom/xmldom/lib/index.js","webpack://MathMLToLaTeX/./node_modules/@xmldom/xmldom/lib/sax.js","webpack://MathMLToLaTeX/./src/data/errors/index.ts","webpack://MathMLToLaTeX/./src/data/errors/invalid-number-of-children.ts","webpack://MathMLToLaTeX/./src/data/helpers/index.ts","webpack://MathMLToLaTeX/./src/data/helpers/join-with-many-separators.ts","webpack://MathMLToLaTeX/./src/data/helpers/mathml-element-to-latex-converter.ts","webpack://MathMLToLaTeX/./src/data/helpers/normalize-whitespace.ts","webpack://MathMLToLaTeX/./src/data/helpers/wrappers/bracket.ts","webpack://MathMLToLaTeX/./src/data/helpers/wrappers/generic.ts","webpack://MathMLToLaTeX/./src/data/helpers/wrappers/index.ts","webpack://MathMLToLaTeX/./src/data/helpers/wrappers/parenthesis.ts","webpack://MathMLToLaTeX/./src/data/helpers/wrappers/wrapper.ts","webpack://MathMLToLaTeX/./src/data/protocols/mathml-element.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/generic-spacing-wrapper.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/generic-under-over.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/index.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/maction.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/math.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/menclose.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/merror.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mfenced.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mfrac.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mi.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mmultiscripts.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mn.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mo.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mphantom.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mroot.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mrow.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mspace.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/msqrt.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/msub.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/msubsup.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/msup.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mtable.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mtext.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/mtr.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/munderover.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/converters/void.ts","webpack://MathMLToLaTeX/./src/data/usecases/mathml-to-latex-convertion/mathml-element-to-latex-converter-adapter.ts","webpack://MathMLToLaTeX/./src/infra/usecases/xmldom-to-mathml-elements/error-handler.ts","webpack://MathMLToLaTeX/./src/infra/usecases/xmldom-to-mathml-elements/index.ts","webpack://MathMLToLaTeX/./src/infra/usecases/xmldom-to-mathml-elements/xmldom-elements-to-mathml-elements-adapter.ts","webpack://MathMLToLaTeX/./src/infra/usecases/xmldom-to-mathml-elements/xmldom-to-mathml-element-adapter.ts","webpack://MathMLToLaTeX/./src/main/factories/index.ts","webpack://MathMLToLaTeX/./src/main/factories/make-to-math-elements-converter.ts","webpack://MathMLToLaTeX/./src/main/index.ts","webpack://MathMLToLaTeX/./src/main/mathml-to-latex.ts","webpack://MathMLToLaTeX/./src/syntax/all-math-operators-by-char.ts","webpack://MathMLToLaTeX/./src/syntax/all-math-operators-by-glyph.ts","webpack://MathMLToLaTeX/./src/syntax/all-math-symbols-by-char.ts","webpack://MathMLToLaTeX/./src/syntax/all-math-symbols-by-glyph.ts","webpack://MathMLToLaTeX/./src/syntax/index.ts","webpack://MathMLToLaTeX/./src/syntax/latex-accents.ts","webpack://MathMLToLaTeX/./src/syntax/math-numbers-by-glyph.ts","webpack://MathMLToLaTeX/./src/syntax/utf8-converter.ts","webpack://MathMLToLaTeX/webpack/bootstrap","webpack://MathMLToLaTeX/./src/index.ts"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"MathMLToLaTeX\"] = factory();\n\telse\n\t\troot[\"MathMLToLaTeX\"] = factory();\n})(this, () => {\nreturn ","'use strict'\n\n/**\n * Ponyfill for `Array.prototype.find` which is only available in ES6 runtimes.\n *\n * Works with anything that has a `length` property and index access properties, including NodeList.\n *\n * @template {unknown} T\n * @param {Array<T> | ({length:number, [number]: T})} list\n * @param {function (item: T, index: number, list:Array<T> | ({length:number, [number]: T})):boolean} predicate\n * @param {Partial<Pick<ArrayConstructor['prototype'], 'find'>>?} ac `Array.prototype` by default,\n * \t\t\t\tallows injecting a custom implementation in tests\n * @returns {T | undefined}\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find\n * @see https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.find\n */\nfunction find(list, predicate, ac) {\n\tif (ac === undefined) {\n\t\tac = Array.prototype;\n\t}\n\tif (list && typeof ac.find === 'function') {\n\t\treturn ac.find.call(list, predicate);\n\t}\n\tfor (var i = 0; i < list.length; i++) {\n\t\tif (Object.prototype.hasOwnProperty.call(list, i)) {\n\t\t\tvar item = list[i];\n\t\t\tif (predicate.call(undefined, item, i, list)) {\n\t\t\t\treturn item;\n\t\t\t}\n\t\t}\n\t}\n}\n\n/**\n * \"Shallow freezes\" an object to render it immutable.\n * Uses `Object.freeze` if available,\n * otherwise the immutability is only in the type.\n *\n * Is used to create \"enum like\" objects.\n *\n * @template T\n * @param {T} object the object to freeze\n * @param {Pick<ObjectConstructor, 'freeze'> = Object} oc `Object` by default,\n * \t\t\t\tallows to inject custom object constructor for tests\n * @returns {Readonly<T>}\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze\n */\nfunction freeze(object, oc) {\n\tif (oc === undefined) {\n\t\toc = Object\n\t}\n\treturn oc && typeof oc.freeze === 'function' ? oc.freeze(object) : object\n}\n\n/**\n * Since we can not rely on `Object.assign` we provide a simplified version\n * that is sufficient for our needs.\n *\n * @param {Object} target\n * @param {Object | null | undefined} source\n *\n * @returns {Object} target\n * @throws TypeError if target is not an object\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign\n * @see https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.assign\n */\nfunction assign(target, source) {\n\tif (target === null || typeof target !== 'object') {\n\t\tthrow new TypeError('target is not an object')\n\t}\n\tfor (var key in source) {\n\t\tif (Object.prototype.hasOwnProperty.call(source, key)) {\n\t\t\ttarget[key] = source[key]\n\t\t}\n\t}\n\treturn target\n}\n\n/**\n * All mime types that are allowed as input to `DOMParser.parseFromString`\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString#Argument02 MDN\n * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#domparsersupportedtype WHATWG HTML Spec\n * @see DOMParser.prototype.parseFromString\n */\nvar MIME_TYPE = freeze({\n\t/**\n\t * `text/html`, the only mime type that triggers treating an XML document as HTML.\n\t *\n\t * @see DOMParser.SupportedType.isHTML\n\t * @see https://www.iana.org/assignments/media-types/text/html IANA MimeType registration\n\t * @see https://en.wikipedia.org/wiki/HTML Wikipedia\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString MDN\n\t * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-domparser-parsefromstring WHATWG HTML Spec\n\t */\n\tHTML: 'text/html',\n\n\t/**\n\t * Helper method to check a mime type if it indicates an HTML document\n\t *\n\t * @param {string} [value]\n\t * @returns {boolean}\n\t *\n\t * @see https://www.iana.org/assignments/media-types/text/html IANA MimeType registration\n\t * @see https://en.wikipedia.org/wiki/HTML Wikipedia\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString MDN\n\t * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-domparser-parsefromstring \t */\n\tisHTML: function (value) {\n\t\treturn value === MIME_TYPE.HTML\n\t},\n\n\t/**\n\t * `application/xml`, the standard mime type for XML documents.\n\t *\n\t * @see https://www.iana.org/assignments/media-types/application/xml IANA MimeType registration\n\t * @see https://tools.ietf.org/html/rfc7303#section-9.1 RFC 7303\n\t * @see https://en.wikipedia.org/wiki/XML_and_MIME Wikipedia\n\t */\n\tXML_APPLICATION: 'application/xml',\n\n\t/**\n\t * `text/html`, an alias for `application/xml`.\n\t *\n\t * @see https://tools.ietf.org/html/rfc7303#section-9.2 RFC 7303\n\t * @see https://www.iana.org/assignments/media-types/text/xml IANA MimeType registration\n\t * @see https://en.wikipedia.org/wiki/XML_and_MIME Wikipedia\n\t */\n\tXML_TEXT: 'text/xml',\n\n\t/**\n\t * `application/xhtml+xml`, indicates an XML document that has the default HTML namespace,\n\t * but is parsed as an XML document.\n\t *\n\t * @see https://www.iana.org/assignments/media-types/application/xhtml+xml IANA MimeType registration\n\t * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocument WHATWG DOM Spec\n\t * @see https://en.wikipedia.org/wiki/XHTML Wikipedia\n\t */\n\tXML_XHTML_APPLICATION: 'application/xhtml+xml',\n\n\t/**\n\t * `image/svg+xml`,\n\t *\n\t * @see https://www.iana.org/assignments/media-types/image/svg+xml IANA MimeType registration\n\t * @see https://www.w3.org/TR/SVG11/ W3C SVG 1.1\n\t * @see https://en.wikipedia.org/wiki/Scalable_Vector_Graphics Wikipedia\n\t */\n\tXML_SVG_IMAGE: 'image/svg+xml',\n})\n\n/**\n * Namespaces that are used in this code base.\n *\n * @see http://www.w3.org/TR/REC-xml-names\n */\nvar NAMESPACE = freeze({\n\t/**\n\t * The XHTML namespace.\n\t *\n\t * @see http://www.w3.org/1999/xhtml\n\t */\n\tHTML: 'http://www.w3.org/1999/xhtml',\n\n\t/**\n\t * Checks if `uri` equals `NAMESPACE.HTML`.\n\t *\n\t * @param {string} [uri]\n\t *\n\t * @see NAMESPACE.HTML\n\t */\n\tisHTML: function (uri) {\n\t\treturn uri === NAMESPACE.HTML\n\t},\n\n\t/**\n\t * The SVG namespace.\n\t *\n\t * @see http://www.w3.org/2000/svg\n\t */\n\tSVG: 'http://www.w3.org/2000/svg',\n\n\t/**\n\t * The `xml:` namespace.\n\t *\n\t * @see http://www.w3.org/XML/1998/namespace\n\t */\n\tXML: 'http://www.w3.org/XML/1998/namespace',\n\n\t/**\n\t * The `xmlns:` namespace\n\t *\n\t * @see https://www.w3.org/2000/xmlns/\n\t */\n\tXMLNS: 'http://www.w3.org/2000/xmlns/',\n})\n\nexports.assign = assign;\nexports.find = find;\nexports.freeze = freeze;\nexports.MIME_TYPE = MIME_TYPE;\nexports.NAMESPACE = NAMESPACE;\n","var conventions = require(\"./conventions\");\nvar dom = require('./dom')\nvar entities = require('./entities');\nvar sax = require('./sax');\n\nvar DOMImplementation = dom.DOMImplementation;\n\nvar NAMESPACE = conventions.NAMESPACE;\n\nvar ParseError = sax.ParseError;\nvar XMLReader = sax.XMLReader;\n\n/**\n * Normalizes line ending according to https://www.w3.org/TR/xml11/#sec-line-ends:\n *\n * > XML parsed entities are often stored in computer files which,\n * > for editing convenience, are organized into lines.\n * > These lines are typically separated by some combination\n * > of the characters CARRIAGE RETURN (#xD) and LINE FEED (#xA).\n * >\n * > To simplify the tasks of applications, the XML processor must behave\n * > as if it normalized all line breaks in external parsed entities (including the document entity)\n * > on input, before parsing, by translating all of the following to a single #xA character:\n * >\n * > 1. the two-character sequence #xD #xA\n * > 2. the two-character sequence #xD #x85\n * > 3. the single character #x85\n * > 4. the single character #x2028\n * > 5. any #xD character that is not immediately followed by #xA or #x85.\n *\n * @param {string} input\n * @returns {string}\n */\nfunction normalizeLineEndings(input) {\n\treturn input\n\t\t.replace(/\\r[\\n\\u0085]/g, '\\n')\n\t\t.replace(/[\\r\\u0085\\u2028]/g, '\\n')\n}\n\n/**\n * @typedef Locator\n * @property {number} [columnNumber]\n * @property {number} [lineNumber]\n */\n\n/**\n * @typedef DOMParserOptions\n * @property {DOMHandler} [domBuilder]\n * @property {Function} [errorHandler]\n * @property {(string) => string} [normalizeLineEndings] used to replace line endings before parsing\n * \t\t\t\t\t\tdefaults to `normalizeLineEndings`\n * @property {Locator} [locator]\n * @property {Record<string, string>} [xmlns]\n *\n * @see normalizeLineEndings\n */\n\n/**\n * The DOMParser interface provides the ability to parse XML or HTML source code\n * from a string into a DOM `Document`.\n *\n * _xmldom is different from the spec in that it allows an `options` parameter,\n * to override the default behavior._\n *\n * @param {DOMParserOptions} [options]\n * @constructor\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser\n * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-parsing-and-serialization\n */\nfunction DOMParser(options){\n\tthis.options = options ||{locator:{}};\n}\n\nDOMParser.prototype.parseFromString = function(source,mimeType){\n\tvar options = this.options;\n\tvar sax = new XMLReader();\n\tvar domBuilder = options.domBuilder || new DOMHandler();//contentHandler and LexicalHandler\n\tvar errorHandler = options.errorHandler;\n\tvar locator = options.locator;\n\tvar defaultNSMap = options.xmlns||{};\n\tvar isHTML = /\\/x?html?$/.test(mimeType);//mimeType.toLowerCase().indexOf('html') > -1;\n \tvar entityMap = isHTML ? entities.HTML_ENTITIES : entities.XML_ENTITIES;\n\tif(locator){\n\t\tdomBuilder.setDocumentLocator(locator)\n\t}\n\n\tsax.errorHandler = buildErrorHandler(errorHandler,domBuilder,locator);\n\tsax.domBuilder = options.domBuilder || domBuilder;\n\tif(isHTML){\n\t\tdefaultNSMap[''] = NAMESPACE.HTML;\n\t}\n\tdefaultNSMap.xml = defaultNSMap.xml || NAMESPACE.XML;\n\tvar normalize = options.normalizeLineEndings || normalizeLineEndings;\n\tif (source && typeof source === 'string') {\n\t\tsax.parse(\n\t\t\tnormalize(source),\n\t\t\tdefaultNSMap,\n\t\t\tentityMap\n\t\t)\n\t} else {\n\t\tsax.errorHandler.error('invalid doc source')\n\t}\n\treturn domBuilder.doc;\n}\nfunction buildErrorHandler(errorImpl,domBuilder,locator){\n\tif(!errorImpl){\n\t\tif(domBuilder instanceof DOMHandler){\n\t\t\treturn domBuilder;\n\t\t}\n\t\terrorImpl = domBuilder ;\n\t}\n\tvar errorHandler = {}\n\tvar isCallback = errorImpl instanceof Function;\n\tlocator = locator||{}\n\tfunction build(key){\n\t\tvar fn = errorImpl[key];\n\t\tif(!fn && isCallback){\n\t\t\tfn = errorImpl.length == 2?function(msg){errorImpl(key,msg)}:errorImpl;\n\t\t}\n\t\terrorHandler[key] = fn && function(msg){\n\t\t\tfn('[xmldom '+key+']\\t'+msg+_locator(locator));\n\t\t}||function(){};\n\t}\n\tbuild('warning');\n\tbuild('error');\n\tbuild('fatalError');\n\treturn errorHandler;\n}\n\n//console.log('#\\n\\n\\n\\n\\n\\n\\n####')\n/**\n * +ContentHandler+ErrorHandler\n * +LexicalHandler+EntityResolver2\n * -DeclHandler-DTDHandler\n *\n * DefaultHandler:EntityResolver, DTDHandler, ContentHandler, ErrorHandler\n * DefaultHandler2:DefaultHandler,LexicalHandler, DeclHandler, EntityResolver2\n * @link http://www.saxproject.org/apidoc/org/xml/sax/helpers/DefaultHandler.html\n */\nfunction DOMHandler() {\n this.cdata = false;\n}\nfunction position(locator,node){\n\tnode.lineNumber = locator.lineNumber;\n\tnode.columnNumber = locator.columnNumber;\n}\n/**\n * @see org.xml.sax.ContentHandler#startDocument\n * @link http://www.saxproject.org/apidoc/org/xml/sax/ContentHandler.html\n */\nDOMHandler.prototype = {\n\tstartDocument : function() {\n \tthis.doc = new DOMImplementation().createDocument(null, null, null);\n \tif (this.locator) {\n \tthis.doc.documentURI = this.locator.systemId;\n \t}\n\t},\n\tstartElement:function(namespaceURI, localName, qName, attrs) {\n\t\tvar doc = this.doc;\n\t var el = doc.createElementNS(namespaceURI, qName||localName);\n\t var len = attrs.length;\n\t appendElement(this, el);\n\t this.currentElement = el;\n\n\t\tthis.locator && position(this.locator,el)\n\t for (var i = 0 ; i < len; i++) {\n\t var namespaceURI = attrs.getURI(i);\n\t var value = attrs.getValue(i);\n\t var qName = attrs.getQName(i);\n\t\t\tvar attr = doc.createAttributeNS(namespaceURI, qName);\n\t\t\tthis.locator &&position(attrs.getLocator(i),attr);\n\t\t\tattr.value = attr.nodeValue = value;\n\t\t\tel.setAttributeNode(attr)\n\t }\n\t},\n\tendElement:function(namespaceURI, localName, qName) {\n\t\tvar current = this.currentElement\n\t\tvar tagName = current.tagName;\n\t\tthis.currentElement = current.parentNode;\n\t},\n\tstartPrefixMapping:function(prefix, uri) {\n\t},\n\tendPrefixMapping:function(prefix) {\n\t},\n\tprocessingInstruction:function(target, data) {\n\t var ins = this.doc.createProcessingInstruction(target, data);\n\t this.locator && position(this.locator,ins)\n\t appendElement(this, ins);\n\t},\n\tignorableWhitespace:function(ch, start, length) {\n\t},\n\tcharacters:function(chars, start, length) {\n\t\tchars = _toString.apply(this,arguments)\n\t\t//console.log(chars)\n\t\tif(chars){\n\t\t\tif (this.cdata) {\n\t\t\t\tvar charNode = this.doc.createCDATASection(chars);\n\t\t\t} else {\n\t\t\t\tvar charNode = this.doc.createTextNode(chars);\n\t\t\t}\n\t\t\tif(this.currentElement){\n\t\t\t\tthis.currentElement.appendChild(charNode);\n\t\t\t}else if(/^\\s*$/.test(chars)){\n\t\t\t\tthis.doc.appendChild(charNode);\n\t\t\t\t//process xml\n\t\t\t}\n\t\t\tthis.locator && position(this.locator,charNode)\n\t\t}\n\t},\n\tskippedEntity:function(name) {\n\t},\n\tendDocument:function() {\n\t\tthis.doc.normalize();\n\t},\n\tsetDocumentLocator:function (locator) {\n\t if(this.locator = locator){// && !('lineNumber' in locator)){\n\t \tlocator.lineNumber = 0;\n\t }\n\t},\n\t//LexicalHandler\n\tcomment:function(chars, start, length) {\n\t\tchars = _toString.apply(this,arguments)\n\t var comm = this.doc.createComment(chars);\n\t this.locator && position(this.locator,comm)\n\t appendElement(this, comm);\n\t},\n\n\tstartCDATA:function() {\n\t //used in characters() methods\n\t this.cdata = true;\n\t},\n\tendCDATA:function() {\n\t this.cdata = false;\n\t},\n\n\tstartDTD:function(name, publicId, systemId) {\n\t\tvar impl = this.doc.implementation;\n\t if (impl && impl.createDocumentType) {\n\t var dt = impl.createDocumentType(name, publicId, systemId);\n\t this.locator && position(this.locator,dt)\n\t appendElement(this, dt);\n\t\t\t\t\tthis.doc.doctype = dt;\n\t }\n\t},\n\t/**\n\t * @see org.xml.sax.ErrorHandler\n\t * @link http://www.saxproject.org/apidoc/org/xml/sax/ErrorHandler.html\n\t */\n\twarning:function(error) {\n\t\tconsole.warn('[xmldom warning]\\t'+error,_locator(this.locator));\n\t},\n\terror:function(error) {\n\t\tconsole.error('[xmldom error]\\t'+error,_locator(this.locator));\n\t},\n\tfatalError:function(error) {\n\t\tthrow new ParseError(error, this.locator);\n\t}\n}\nfunction _locator(l){\n\tif(l){\n\t\treturn '\\n@'+(l.systemId ||'')+'#[line:'+l.lineNumber+',col:'+l.columnNumber+']'\n\t}\n}\nfunction _toString(chars,start,length){\n\tif(typeof chars == 'string'){\n\t\treturn chars.substr(start,length)\n\t}else{//java sax connect width xmldom on rhino(what about: \"? && !(chars instanceof String)\")\n\t\tif(chars.length >= start+length || start){\n\t\t\treturn new java.lang.String(chars,start,length)+'';\n\t\t}\n\t\treturn chars;\n\t}\n}\n\n/*\n * @link http://www.saxproject.org/apidoc/org/xml/sax/ext/LexicalHandler.html\n * used method of org.xml.sax.ext.LexicalHandler:\n * #comment(chars, start, length)\n * #startCDATA()\n * #endCDATA()\n * #startDTD(name, publicId, systemId)\n *\n *\n * IGNORED method of org.xml.sax.ext.LexicalHandler:\n * #endDTD()\n * #startEntity(name)\n * #endEntity(name)\n *\n *\n * @link http://www.saxproject.org/apidoc/org/xml/sax/ext/DeclHandler.html\n * IGNORED method of org.xml.sax.ext.DeclHandler\n * \t#attributeDecl(eName, aName, type, mode, value)\n * #elementDecl(name, model)\n * #externalEntityDecl(name, publicId, systemId)\n * #internalEntityDecl(name, value)\n * @link http://www.saxproject.org/apidoc/org/xml/sax/ext/EntityResolver2.html\n * IGNORED method of org.xml.sax.EntityResolver2\n * #resolveEntity(String name,String publicId,String baseURI,String systemId)\n * #resolveEntity(publicId, systemId)\n * #getExternalSubset(name, baseURI)\n * @link http://www.saxproject.org/apidoc/org/xml/sax/DTDHandler.html\n * IGNORED method of org.xml.sax.DTDHandler\n * #notationDecl(name, publicId, systemId) {};\n * #unparsedEntityDecl(name, publicId, systemId, notationName) {};\n */\n\"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl\".replace(/\\w+/g,function(key){\n\tDOMHandler.prototype[key] = function(){return null}\n})\n\n/* Private static helpers treated below as private instance methods, so don't need to add these to the public API; we might use a Relator to also get rid of non-standard public properties */\nfunction appendElement (hander,node) {\n if (!hander.currentElement) {\n hander.doc.appendChild(node);\n } else {\n hander.currentElement.appendChild(node);\n }\n}//appendChild and setAttributeNS are preformance key\n\nexports.__DOMHandler = DOMHandler;\nexports.normalizeLineEndings = normalizeLineEndings;\nexports.DOMParser = DOMParser;\n","var conventions = require(\"./conventions\");\n\nvar find = conventions.find;\nvar NAMESPACE = conventions.NAMESPACE;\n\n/**\n * A prerequisite for `[].filter`, to drop elements that are empty\n * @param {string} input\n * @returns {boolean}\n */\nfunction notEmptyString (input) {\n\treturn input !== ''\n}\n/**\n * @see https://infra.spec.whatwg.org/#split-on-ascii-whitespace\n * @see https://infra.spec.whatwg.org/#ascii-whitespace\n *\n * @param {string} input\n * @returns {string[]} (can be empty)\n */\nfunction splitOnASCIIWhitespace(input) {\n\t// U+0009 TAB, U+000A LF, U+000C FF, U+000D CR, U+0020 SPACE\n\treturn input ? input.split(/[\\t\\n\\f\\r ]+/).filter(notEmptyString) : []\n}\n\n/**\n * Adds element as a key to current if it is not already present.\n *\n * @param {Record<string, boolean | undefined>} current\n * @param {string} element\n * @returns {Record<string, boolean | undefined>}\n */\nfunction orderedSetReducer (current, element) {\n\tif (!current.hasOwnProperty(element)) {\n\t\tcurrent[element] = true;\n\t}\n\treturn current;\n}\n\n/**\n * @see https://infra.spec.whatwg.org/#ordered-set\n * @param {string} input\n * @returns {string[]}\n */\nfunction toOrderedSet(input) {\n\tif (!input) return [];\n\tvar list = splitOnASCIIWhitespace(input);\n\treturn Object.keys(list.reduce(orderedSetReducer, {}))\n}\n\n/**\n * Uses `list.indexOf` to implement something like `Array.prototype.includes`,\n * which we can not rely on being available.\n *\n * @param {any[]} list\n * @returns {function(any): boolean}\n */\nfunction arrayIncludes (list) {\n\treturn function(element) {\n\t\treturn list && list.indexOf(element) !== -1;\n\t}\n}\n\nfunction copy(src,dest){\n\tfor(var p in src){\n\t\tif (Object.prototype.hasOwnProperty.call(src, p)) {\n\t\t\tdest[p] = src[p];\n\t\t}\n\t}\n}\n\n/**\n^\\w+\\.prototype\\.([_\\w]+)\\s*=\\s*((?:.*\\{\\s*?[\\r\\n][\\s\\S]*?^})|\\S.*?(?=[;\\r\\n]));?\n^\\w+\\.prototype\\.([_\\w]+)\\s*=\\s*(\\S.*?(?=[;\\r\\n]));?\n */\nfunction _extends(Class,Super){\n\tvar pt = Class.prototype;\n\tif(!(pt instanceof Super)){\n\t\tfunction t(){};\n\t\tt.prototype = Super.prototype;\n\t\tt = new t();\n\t\tcopy(pt,t);\n\t\tClass.prototype = pt = t;\n\t}\n\tif(pt.constructor != Class){\n\t\tif(typeof Class != 'function'){\n\t\t\tconsole.error(\"unknown Class:\"+Class)\n\t\t}\n\t\tpt.constructor = Class\n\t}\n}\n\n// Node Types\nvar NodeType = {}\nvar ELEMENT_NODE = NodeType.ELEMENT_NODE = 1;\nvar ATTRIBUTE_NODE = NodeType.ATTRIBUTE_NODE = 2;\nvar TEXT_NODE = NodeType.TEXT_NODE = 3;\nvar CDATA_SECTION_NODE = NodeType.CDATA_SECTION_NODE = 4;\nvar ENTITY_REFERENCE_NODE = NodeType.ENTITY_REFERENCE_NODE = 5;\nvar ENTITY_NODE = NodeType.ENTITY_NODE = 6;\nvar PROCESSING_INSTRUCTION_NODE = NodeType.PROCESSING_INSTRUCTION_NODE = 7;\nvar COMMENT_NODE = NodeType.COMMENT_NODE = 8;\nvar DOCUMENT_NODE = NodeType.DOCUMENT_NODE = 9;\nvar DOCUMENT_TYPE_NODE = NodeType.DOCUMENT_TYPE_NODE = 10;\nvar DOCUMENT_FRAGMENT_NODE = NodeType.DOCUMENT_FRAGMENT_NODE = 11;\nvar NOTATION_NODE = NodeType.NOTATION_NODE = 12;\n\n// ExceptionCode\nvar ExceptionCode = {}\nvar ExceptionMessage = {};\nvar INDEX_SIZE_ERR = ExceptionCode.INDEX_SIZE_ERR = ((ExceptionMessage[1]=\"Index size error\"),1);\nvar DOMSTRING_SIZE_ERR = ExceptionCode.DOMSTRING_SIZE_ERR = ((ExceptionMessage[2]=\"DOMString size error\"),2);\nvar HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = ((ExceptionMessage[3]=\"Hierarchy request error\"),3);\nvar WRONG_DOCUMENT_ERR = ExceptionCode.WRONG_DOCUMENT_ERR = ((ExceptionMessage[4]=\"Wrong document\"),4);\nvar INVALID_CHARACTER_ERR = ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]=\"Invalid character\"),5);\nvar NO_DATA_ALLOWED_ERR = ExceptionCode.NO_DATA_ALLOWED_ERR = ((ExceptionMessage[6]=\"No data allowed\"),6);\nvar NO_MODIFICATION_ALLOWED_ERR = ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = ((ExceptionMessage[7]=\"No modification allowed\"),7);\nvar NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = ((ExceptionMessage[8]=\"Not found\"),8);\nvar NOT_SUPPORTED_ERR = ExceptionCode.NOT_SUPPORTED_ERR = ((ExceptionMessage[9]=\"Not supported\"),9);\nvar INUSE_ATTRIBUTE_ERR = ExceptionCode.INUSE_ATTRIBUTE_ERR = ((ExceptionMessage[10]=\"Attribute in use\"),10);\n//level2\nvar INVALID_STATE_ERR \t= ExceptionCode.INVALID_STATE_ERR \t= ((ExceptionMessage[11]=\"Invalid state\"),11);\nvar SYNTAX_ERR \t= ExceptionCode.SYNTAX_ERR \t= ((ExceptionMessage[12]=\"Syntax error\"),12);\nvar INVALID_MODIFICATION_ERR \t= ExceptionCode.INVALID_MODIFICATION_ERR \t= ((ExceptionMessage[13]=\"Invalid modification\"),13);\nvar NAMESPACE_ERR \t= ExceptionCode.NAMESPACE_ERR \t= ((ExceptionMessage[14]=\"Invalid namespace\"),14);\nvar INVALID_ACCESS_ERR \t= ExceptionCode.INVALID_ACCESS_ERR \t= ((ExceptionMessage[15]=\"Invalid access\"),15);\n\n/**\n * DOM Level 2\n * Object DOMException\n * @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html\n * @see http://www.w3.org/TR/REC-DOM-Level-1/ecma-script-language-binding.html\n */\nfunction DOMException(code, message) {\n\tif(message instanceof Error){\n\t\tvar error = message;\n\t}else{\n\t\terror = this;\n\t\tError.call(this, ExceptionMessage[code]);\n\t\tthis.message = ExceptionMessage[code];\n\t\tif(Error.captureStackTrace) Error.captureStackTrace(this, DOMException);\n\t}\n\terror.code = code;\n\tif(message) this.message = this.message + \": \" + message;\n\treturn error;\n};\nDOMException.prototype = Error.prototype;\ncopy(ExceptionCode,DOMException)\n\n/**\n * @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-536297177\n * The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented. NodeList objects in the DOM are live.\n * The items in the NodeList are accessible via an integral index, starting from 0.\n */\nfunction NodeList() {\n};\nNodeList.prototype = {\n\t/**\n\t * The number of nodes in the list. The range of valid child node indices is 0 to length-1 inclusive.\n\t * @standard level1\n\t */\n\tlength:0,\n\t/**\n\t * Returns the indexth item in the collection. If index is greater than or equal to the number of nodes in the list, this returns null.\n\t * @standard level1\n\t * @param index unsigned long\n\t * Index into the collection.\n\t * @return Node\n\t * \tThe node at the indexth position in the NodeList, or null if that is not a valid index.\n\t */\n\titem: function(index) {\n\t\treturn index >= 0 && index < this.length ? this[index] : null;\n\t},\n\ttoString:function(isHTML,nodeFilter){\n\t\tfor(var buf = [], i = 0;i<this.length;i++){\n\t\t\tserializeToString(this[i],buf,isHTML,nodeFilter);\n\t\t}\n\t\treturn buf.join('');\n\t},\n\t/**\n\t * @private\n\t * @param {function (Node):boolean} predicate\n\t * @returns {Node[]}\n\t */\n\tfilter: function (predicate) {\n\t\treturn Array.prototype.filter.call(this, predicate);\n\t},\n\t/**\n\t * @private\n\t * @param {Node} item\n\t * @returns {number}\n\t */\n\tindexOf: function (item) {\n\t\treturn Array.prototype.indexOf.call(this, item);\n\t},\n};\n\nfunction LiveNodeList(node,refresh){\n\tthis._node = node;\n\tthis._refresh = refresh\n\t_updateLiveList(this);\n}\nfunction _updateLiveList(list){\n\tvar inc = list._node._inc || list._node.ownerDocument._inc;\n\tif (list._inc !== inc) {\n\t\tvar ls = list._refresh(list._node);\n\t\t__set__(list,'length',ls.length);\n\t\tif (!list.$$length || ls.length < list.$$length) {\n\t\t\tfor (var i = ls.length; i in list; i++) {\n\t\t\t\tif (Object.prototype.hasOwnProperty.call(list, i)) {\n\t\t\t\t\tdelete list[i];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tcopy(ls,list);\n\t\tlist._inc = inc;\n\t}\n}\nLiveNodeList.prototype.item = function(i){\n\t_updateLiveList(this);\n\treturn this[i] || null;\n}\n\n_extends(LiveNodeList,NodeList);\n\n/**\n * Objects implementing the NamedNodeMap interface are used\n * to represent collections of nodes that can be accessed by name.\n * Note that NamedNodeMap does not inherit from NodeList;\n * NamedNodeMaps are not maintained in any particular order.\n * Objects contained in an object implementing NamedNodeMap may also be accessed by an ordinal index,\n * but this is simply to allow convenient enumeration of the contents of a NamedNodeMap,\n * and does not imply that the DOM specifies an order to these Nodes.\n * NamedNodeMap objects in the DOM are live.\n * used for attributes or DocumentType entities\n */\nfunction NamedNodeMap() {\n};\n\nfunction _findNodeIndex(list,node){\n\tvar i = list.length;\n\twhile(i--){\n\t\tif(list[i] === node){return i}\n\t}\n}\n\nfunction _addNamedNode(el,list,newAttr,oldAttr){\n\tif(oldAttr){\n\t\tlist[_findNodeIndex(list,oldAttr)] = newAttr;\n\t}else{\n\t\tlist[list.length++] = newAttr;\n\t}\n\tif(el){\n\t\tnewAttr.ownerElement = el;\n\t\tvar doc = el.ownerDocument;\n\t\tif(doc){\n\t\t\toldAttr && _onRemoveAttribute(doc,el,oldAttr);\n\t\t\t_onAddAttribute(doc,el,newAttr);\n\t\t}\n\t}\n}\nfunction _removeNamedNode(el,list,attr){\n\t//console.log('remove attr:'+attr)\n\tvar i = _findNodeIndex(list,attr);\n\tif(i>=0){\n\t\tvar lastIndex = list.length-1\n\t\twhile(i<lastIndex){\n\t\t\tlist[i] = list[++i]\n\t\t}\n\t\tlist.length = lastIndex;\n\t\tif(el){\n\t\t\tvar doc = el.ownerDocument;\n\t\t\tif(doc){\n\t\t\t\t_onRemoveAttribute(doc,el,attr);\n\t\t\t\tattr.ownerElement = null;\n\t\t\t}\n\t\t}\n\t}else{\n\t\tthrow new DOMException(NOT_FOUND_ERR,new Error(el.tagName+'@'+attr))\n\t}\n}\nNamedNodeMap.prototype = {\n\tlength:0,\n\titem:NodeList.prototype.item,\n\tgetNamedItem: function(key) {\n//\t\tif(key.indexOf(':')>0 || key == 'xmlns'){\n//\t\t\treturn null;\n//\t\t}\n\t\t//console.log()\n\t\tvar i = this.length;\n\t\twhile(i--){\n\t\t\tvar attr = this[i];\n\t\t\t//console.log(attr.nodeName,key)\n\t\t\tif(attr.nodeName == key){\n\t\t\t\treturn attr;\n\t\t\t}\n\t\t}\n\t},\n\tsetNamedItem: function(attr) {\n\t\tvar el = attr.ownerElement;\n\t\tif(el && el!=this._ownerElement){\n\t\t\tthrow new DOMException(INUSE_ATTRIBUTE_ERR);\n\t\t}\n\t\tvar oldAttr = this.getNamedItem(attr.nodeName);\n\t\t_addNamedNode(this._ownerElement,this,attr,oldAttr);\n\t\treturn oldAttr;\n\t},\n\t/* returns Node */\n\tsetNamedItemNS: function(attr) {// raises: WRONG_DOCUMENT_ERR,NO_MODIFICATION_ALLOWED_ERR,INUSE_ATTRIBUTE_ERR\n\t\tvar el = attr.ownerElement, oldAttr;\n\t\tif(el && el!=this._ownerElement){\n\t\t\tthrow new DOMException(INUSE_ATTRIBUTE_ERR);\n\t\t}\n\t\toldAttr = this.getNamedItemNS(attr.namespaceURI,attr.localName);\n\t\t_addNamedNode(this._ownerElement,this,attr,oldAttr);\n\t\treturn oldAttr;\n\t},\n\n\t/* returns Node */\n\tremoveNamedItem: function(key) {\n\t\tvar attr = this.getNamedItem(key);\n\t\t_removeNamedNode(this._ownerElement,this,attr);\n\t\treturn attr;\n\n\n\t},// raises: NOT_FOUND_ERR,NO_MODIFICATION_ALLOWED_ERR\n\n\t//for level2\n\tremoveNamedItemNS:function(namespaceURI,localName){\n\t\tvar attr = this.getNamedItemNS(namespaceURI,localName);\n\t\t_removeNamedNode(this._ownerElement,this,attr);\n\t\treturn attr;\n\t},\n\tgetNamedItemNS: function(namespaceURI, localName) {\n\t\tvar i = this.length;\n\t\twhile(i--){\n\t\t\tvar node = this[i];\n\t\t\tif(node.localName == localName && node.namespaceURI == namespaceURI){\n\t\t\t\treturn node;\n\t\t\t}\n\t\t}\n\t\treturn null;\n\t}\n};\n\n/**\n * The DOMImplementation interface represents an object providing methods\n * which are not dependent on any particular document.\n * Such an object is returned by the `Document.implementation` property.\n *\n * __The individual methods describe the differences compared to the specs.__\n *\n * @constructor\n *\n * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation MDN\n * @see https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-102161490 DOM Level 1 Core (Initial)\n * @see https://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-102161490 DOM Level 2 Core\n * @see https://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-102161490 DOM Level 3 Core\n * @see https://dom.spec.whatwg.org/#domimplementation DOM Living Standard\n */\nfunction DOMImplementation() {\n}\n\nDOMImplementation.prototype = {\n\t/**\n\t * The DOMImplementation.hasFeature() method returns a Boolean flag indicating if a given feature is supported.\n\t * The different implementations fairly diverged in what kind of features were reported.\n\t * The latest version of the spec settled to force this method to always return true, where the functionality was accurate and in use.\n\t *\n\t * @deprecated It is deprecated and modern browsers return true in all cases.\n\t *\n\t * @param {string} feature\n\t * @param {string} [version]\n\t * @returns {boolean} always true\n\t *\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/hasFeature MDN\n\t * @see https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-5CED94D7 DOM Level 1 Core\n\t * @see https://dom.spec.whatwg.org/#dom-domimplementation-hasfeature DOM Living Standard\n\t */\n\thasFeature: function(feature, version) {\n\t\t\treturn true;\n\t},\n\t/**\n\t * Creates an XML Document object of the specified type with its document element.\n\t *\n\t * __It behaves slightly different from the description in the living standard__:\n\t * - There is no interface/class `XMLDocument`, it returns a `Document` instance.\n\t * - `contentType`, `encoding`, `mode`, `origin`, `url` fields are currently not declared.\n\t * - this implementation is not validating names or qualified names\n\t * (when parsing XML strings, the SAX parser takes care of that)\n\t *\n\t * @param {string|null} namespaceURI\n\t * @param {string} qualifiedName\n\t * @param {DocumentType=null} doctype\n\t * @returns {Document}\n\t *\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocument MDN\n\t * @see https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocument DOM Level 2 Core (initial)\n\t * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocument DOM Level 2 Core\n\t *\n\t * @see https://dom.spec.whatwg.org/#validate-and-extract DOM: Validate and extract\n\t * @see https://www.w3.org/TR/xml/#NT-NameStartChar XML Spec: Names\n\t * @see https://www.w3.org/TR/xml-names/#ns-qualnames XML Namespaces: Qualified names\n\t */\n\tcreateDocument: function(namespaceURI, qualifiedName, doctype){\n\t\tvar doc = new Document();\n\t\tdoc.implementation = this;\n\t\tdoc.childNodes = new NodeList();\n\t\tdoc.doctype = doctype || null;\n\t\tif (doctype){\n\t\t\tdoc.appendChild(doctype);\n\t\t}\n\t\tif (qualifiedName){\n\t\t\tvar root = doc.createElementNS(namespaceURI, qualifiedName);\n\t\t\tdoc.appendChild(root);\n\t\t}\n\t\treturn doc;\n\t},\n\t/**\n\t * Returns a doctype, with the given `qualifiedName`, `publicId`, and `systemId`.\n\t *\n\t * __This behavior is slightly different from the in the specs__:\n\t * - this implementation is not validating names or qualified names\n\t * (when parsing XML strings, the SAX parser takes care of that)\n\t *\n\t * @param {string} qualifiedName\n\t * @param {string} [publicId]\n\t * @param {string} [systemId]\n\t * @returns {DocumentType} which can either be used with `DOMImplementation.createDocument` upon document creation\n\t * \t\t\t\t or can be put into the document via methods like `Node.insertBefore()` or `Node.replaceChild()`\n\t *\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocumentType MDN\n\t * @see https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocType DOM Level 2 Core\n\t * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocumenttype DOM Living Standard\n\t *\n\t * @see https://dom.spec.whatwg.org/#validate-and-extract DOM: Validate and extract\n\t * @see https://www.w3.org/TR/xml/#NT-NameStartChar XML Spec: Names\n\t * @see https://www.w3.org/TR/xml-names/#ns-qualnames XML Namespaces: Qualified names\n\t */\n\tcreateDocumentType: function(qualifiedName, publicId, systemId){\n\t\tvar node = new DocumentType();\n\t\tnode.name = qualifiedName;\n\t\tnode.nodeName = qualifiedName;\n\t\tnode.publicId = publicId || '';\n\t\tnode.systemId = systemId || '';\n\n\t\treturn node;\n\t}\n};\n\n\n/**\n * @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1950641247\n */\n\nfunction Node() {\n};\n\nNode.prototype = {\n\tfirstChild : null,\n\tlastChild : null,\n\tpreviousSibling : null,\n\tnextSibling : null,\n\tattributes : null,\n\tparentNode : null,\n\tchildNodes : null,\n\townerDocument : null,\n\tnodeValue : null,\n\tnamespaceURI : null,\n\tprefix : null,\n\tlocalName : null,\n\t// Modified in DOM Level 2:\n\tinsertBefore:function(newChild, refChild){//raises\n\t\treturn _insertBefore(this,newChild,refChild);\n\t},\n\treplaceChild:function(newChild, oldChild){//raises\n\t\t_insertBefore(this, newChild,oldChild, assertPreReplacementValidityInDocument);\n\t\tif(oldChild){\n\t\t\tthis.removeChild(oldChild);\n\t\t}\n\t},\n\tremoveChild:function(oldChild){\n\t\treturn _removeChild(this,oldChild);\n\t},\n\tappendChild:function(newChild){\n\t\treturn this.insertBefore(newChild,null);\n\t},\n\thasChildNodes:function(){\n\t\treturn this.firstChild != null;\n\t},\n\tcloneNode:function(deep){\n\t\treturn cloneNode(this.ownerDocument||this,this,deep);\n\t},\n\t// Modified in DOM Level 2:\n\tnormalize:function(){\n\t\tvar child = this.firstChild;\n\t\twhile(child){\n\t\t\tvar next = child.nextSibling;\n\t\t\tif(next && next.nodeType == TEXT_NODE && child.nodeType == TEXT_NODE){\n\t\t\t\tthis.removeChild(next);\n\t\t\t\tchild.appendData(next.data);\n\t\t\t}else{\n\t\t\t\tchild.normalize();\n\t\t\t\tchild = next;\n\t\t\t}\n\t\t}\n\t},\n \t// Introduced in DOM Level 2:\n\tisSupported:function(feature, version){\n\t\treturn this.ownerDocument.implementation.hasFeature(feature,version);\n\t},\n // Introduced in DOM Level 2:\n hasAttributes:function(){\n \treturn this.attributes.length>0;\n },\n\t/**\n\t * Look up the prefix associated to the given namespace URI, starting from this node.\n\t * **The default namespace declarations are ignored by this method.**\n\t * See Namespace Prefix Lookup for details on the algorithm used by this method.\n\t *\n\t * _Note: The implementation seems to be incomplete when compared to the algorithm described in the specs._\n\t *\n\t * @param {string | null} namespaceURI\n\t * @returns {string | null}\n\t * @see https://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-lookupNamespacePrefix\n\t * @see https://www.w3.org/TR/DOM-Level-3-Core/namespaces-algorithms.html#lookupNamespacePrefixAlgo\n\t * @see https://dom.spec.whatwg.org/#dom-node-lookupprefix\n\t * @see https://github.com/xmldom/xmldom/issues/322\n\t */\n lookupPrefix:function(namespaceURI){\n \tvar el = this;\n \twhile(el){\n \t\tvar map = el._nsMap;\n \t\t//console.dir(map)\n \t\tif(map){\n \t\t\tfor(var n in map){\n\t\t\t\t\t\tif (Object.prototype.hasOwnProperty.call(map, n) && map[n] === namespaceURI) {\n\t\t\t\t\t\t\treturn n;\n\t\t\t\t\t\t}\n \t\t\t}\n \t\t}\n \t\tel = el.nodeType == ATTRIBUTE_NODE?el.ownerDocument : el.parentNode;\n \t}\n \treturn null;\n },\n // Introduced in DOM Level 3:\n lookupNamespaceURI:function(prefix){\n \tvar el = this;\n \twhile(el){\n \t\tvar map = el._nsMap;\n \t\t//console.dir(map)\n \t\tif(map){\n \t\t\tif(Object.prototype.hasOwnProperty.call(map, prefix)){\n \t\t\t\treturn map[prefix] ;\n \t\t\t}\n \t\t}\n \t\tel = el.nodeType == ATTRIBUTE_NODE?el.ownerDocument : el.parentNode;\n \t}\n \treturn null;\n },\n // Introduced in DOM Level 3:\n isDefaultNamespace:function(namespaceURI){\n \tvar prefix = this.lookupPrefix(namespaceURI);\n \treturn prefix == null;\n }\n};\n\n\nfunction _xmlEncoder(c){\n\treturn c == '<' && '<' ||\n c == '>' && '>' ||\n c == '&' && '&' ||\n c == '\"' && '"' ||\n '&#'+c.charCodeAt()+';'\n}\n\n\ncopy(NodeType,Node);\ncopy(NodeType,Node.prototype);\n\n/**\n * @param callback return true for continue,false for break\n * @return boolean true: break visit;\n */\nfunction _visitNode(node,callback){\n\tif(callback(node)){\n\t\treturn true;\n\t}\n\tif(node = node.firstChild){\n\t\tdo{\n\t\t\tif(_visitNode(node,callback)){return true}\n }while(node=node.nextSibling)\n }\n}\n\n\n\nfunction Document(){\n\tthis.ownerDocument = this;\n}\n\nfunction _onAddAttribute(doc,el,newAttr){\n\tdoc && doc._inc++;\n\tvar ns = newAttr.namespaceURI ;\n\tif(ns === NAMESPACE.XMLNS){\n\t\t//update namespace\n\t\tel._nsMap[newAttr.prefix?newAttr.localName:''] = newAttr.value\n\t}\n}\n\nfunction _onRemoveAttribute(doc,el,newAttr,remove){\n\tdoc && doc._inc++;\n\tvar ns = newAttr.namespaceURI ;\n\tif(ns === NAMESPACE.XMLNS){\n\t\t//update namespace\n\t\tdelete el._nsMap[newAttr.prefix?newAttr.localName:'']\n\t}\n}\n\n/**\n * Updates `el.childNodes`, updating the indexed items and it's `length`.\n * Passing `newChild` means it will be appended.\n * Otherwise it's assumed that an item has been removed,\n * and `el.firstNode` and it's `.nextSibling` are used\n * to walk the current list of child nodes.\n *\n * @param {Document} doc\n * @param {Node} el\n * @param {Node} [newChild]\n * @private\n */\nfunction _onUpdateChild (doc, el, newChild) {\n\tif(doc && doc._inc){\n\t\tdoc._inc++;\n\t\t//update childNodes\n\t\tvar cs = el.childNodes;\n\t\tif (newChild) {\n\t\t\tcs[cs.length++] = newChild;\n\t\t} else {\n\t\t\tvar child = el.firstChild;\n\t\t\tvar i = 0;\n\t\t\twhile (child) {\n\t\t\t\tcs[i++] = child;\n\t\t\t\tchild = child.nextSibling;\n\t\t\t}\n\t\t\tcs.length = i;\n\t\t\tdelete cs[cs.length];\n\t\t}\n\t}\n}\n\n/**\n * Removes the connections between `parentNode` and `child`\n * and any existing `child.previousSibling` or `child.nextSibling`.\n *\n * @see https://github.com/xmldom/xmldom/issues/135\n * @see https://github.com/xmldom/xmldom/issues/145\n *\n * @param {Node} parentNode\n * @param {Node} child\n * @returns {Node} the child that was removed.\n * @private\n */\nfunction _removeChild (parentNode, child) {\n\tvar previous = child.previousSibling;\n\tvar next = child.nextSibling;\n\tif (previous) {\n\t\tprevious.nextSibling = next;\n\t} else {\n\t\tparentNode.firstChild = next;\n\t}\n\tif (next) {\n\t\tnext.previousSibling = previous;\n\t} else {\n\t\tparentNode.lastChild = previous;\n\t}\n\tchild.parentNode = null;\n\tchild.previousSibling = null;\n\tchild.nextSibling = null;\n\t_onUpdateChild(parentNode.ownerDocument, parentNode);\n\treturn child;\n}\n\n/**\n * Returns `true` if `node` can be a parent for insertion.\n * @param {Node} node\n * @returns {boolean}\n */\nfunction hasValidParentNodeType(node) {\n\treturn (\n\t\tnode &&\n\t\t(node.nodeType === Node.DOCUMENT_NODE || node.nodeType === Node.DOCUMENT_FRAGMENT_NODE || node.nodeType === Node.ELEMENT_NODE)\n\t);\n}\n\n/**\n * Returns `true` if `node` can be inserted according to it's `nodeType`.\n * @param {Node} node\n * @returns {boolean}\n */\nfunction hasInsertableNodeType(node) {\n\treturn (\n\t\tnode &&\n\t\t(isElementNode(node) ||\n\t\t\tisTextNode(node) ||\n\t\t\tisDocTypeNode(node) ||\n\t\t\tnode.nodeType === Node.DOCUMENT_FRAGMENT_NODE ||\n\t\t\tnode.nodeType === Node.COMMENT_NODE ||\n\t\t\tnode.nodeType === Node.PROCESSING_INSTRUCTION_NODE)\n\t);\n}\n\n/**\n * Returns true if `node` is a DOCTYPE node\n * @param {Node} node\n * @returns {boolean}\n */\nfunction isDocTypeNode(node) {\n\treturn node && node.nodeType === Node.DOCUMENT_TYPE_NODE;\n}\n\n/**\n * Returns true if the node is an element\n * @param {Node} node\n * @returns {boolean}\n */\nfunction isElementNode(node) {\n\treturn node && node.nodeType === Node.ELEMENT_NODE;\n}\n/**\n * Returns true if `node` is a text node\n * @param {Node} node\n * @returns {boolean}\n */\nfunction isTextNode(node) {\n\treturn node && node.nodeType === Node.TEXT_NODE;\n}\n\n/**\n * Check if en element node can be inserted before `child`, or at the end if child is falsy,\n * according to the presence and position of a doctype node on the same level.\n *\n * @param {Document} doc The document node\n * @param {Node} child the node that would become the nextSibling if the element would be inserted\n * @returns {boolean} `true` if an element can be inserted before child\n * @private\n * https://dom.spec.whatwg.org/#concept-node-ensure-pre-insertion-validity\n */\nfunction isElementInsertionPossible(doc, child) {\n\tvar parentChildNodes = doc.childNodes || [];\n\tif (find(parentChildNodes, isElementNode) || isDocTypeNode(child)) {\n\t\treturn false;\n\t}\n\tvar docTypeNode = find(parentChildNodes, isDocTypeNode);\n\treturn !(child && docTypeNode && parentChildNodes.indexOf(docTypeNode) > parentChildNodes.indexOf(child));\n}\n\n/**\n * Check if en element node can be inserted before `child`, or at the end if child is falsy,\n * according to the presence and position of a doctype node on the same level.\n *\n * @param {Node} doc The document node\n * @param {Node} child the node that would become the nextSibling if the element would be inserted\n * @returns {boolean} `true` if an element can be inserted before child\n * @private\n * https://dom.spec.whatwg.org/#concept-node-ensure-pre-insertion-validity\n */\nfunction isElementReplacementPossible(doc, child) {\n\tvar parentChildNodes = doc.childNodes || [];\n\n\tfunction hasElementChildThatIsNotChild(node) {\n\t\treturn isElementNode(node) && node !== child;\n\t}\n\n\tif (find(parentChildNodes, hasElementChildThatIsNotChild)) {\n\t\treturn false;\n\t}\n\tvar docTypeNode = find(parentChildNodes, isDocTypeNode);\n\treturn !(child && docTypeNode && parentChildNodes.indexOf(docTypeNode) > parentChildNodes.indexOf(child));\n}\n\n/**\n * @private\n * Steps 1-5 of the checks before inserting and before replacing a child are the same.\n *\n * @param {Node} parent the parent node to insert `node` into\n * @param {Node} node the node to insert\n * @param {Node=} child the node that should become the `nextSibling` of `node`\n * @returns {Node}\n * @throws DOMException for several node combinations that would create a DOM that is not well-formed.\n * @throws DOMException if `child` is provided but is not a child of `parent`.\n * @see https://dom.spec.whatwg.org/#concept-node-ensure-pre-insertion-validity\n * @see https://dom.spec.whatwg.org/#concept-node-replace\n */\nfunction assertPreInsertionValidity1to5(parent, node, child) {\n\t// 1. If `parent` is not a Document, DocumentFragment, or Element node, then throw a \"HierarchyRequestError\" DOMException.\n\tif (!hasValidParentNodeType(parent)) {\n\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Unexpected parent node type ' + parent.nodeType);\n\t}\n\t// 2. If `node` is a host-including inclusive ancestor of `parent`, then throw a \"HierarchyRequestError\" DOMException.\n\t// not implemented!\n\t// 3. If `child` is non-null and its parent is not `parent`, then throw a \"NotFoundError\" DOMException.\n\tif (child && child.parentNode !== parent) {\n\t\tthrow new DOMException(NOT_FOUND_ERR, 'child not in parent');\n\t}\n\tif (\n\t\t// 4. If `node` is not a DocumentFragment, DocumentType, Element, or CharacterData node, then throw a \"HierarchyRequestError\" DOMException.\n\t\t!hasInsertableNodeType(node) ||\n\t\t// 5. If either `node` is a Text node and `parent` is a document,\n\t\t// the sax parser currently adds top level text nodes, this will be fixed in 0.9.0\n\t\t// || (node.nodeType === Node.TEXT_NODE && parent.nodeType === Node.DOCUMENT_NODE)\n\t\t// or `node` is a doctype and `parent` is not a document, then throw a \"HierarchyRequestError\" DOMException.\n\t\t(isDocTypeNode(node) && parent.nodeType !== Node.DOCUMENT_NODE)\n\t) {\n\t\tthrow new DOMException(\n\t\t\tHIERARCHY_REQUEST_ERR,\n\t\t\t'Unexpected node type ' + node.nodeType + ' for parent node type ' + parent.nodeType\n\t\t);\n\t}\n}\n\n/**\n * @private\n * Step 6 of the checks before inserting and before replacing a child are different.\n *\n * @param {Document} parent the parent node to insert `node` into\n * @param {Node} node the node to insert\n * @param {Node | undefined} child the node that should become the `nextSibling` of `node`\n * @returns {Node}\n * @throws DOMException for several node combinations that would create a DOM that is not well-formed.\n * @throws DOMException if `child` is provided but is not a child of `parent`.\n * @see https://dom.spec.whatwg.org/#concept-node-ensure-pre-insertion-validity\n * @see https://dom.spec.whatwg.org/#concept-node-replace\n */\nfunction assertPreInsertionValidityInDocument(parent, node, child) {\n\tvar parentChildNodes = parent.childNodes || [];\n\tvar nodeChildNodes = node.childNodes || [];\n\n\t// DocumentFragment\n\tif (node.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {\n\t\tvar nodeChildElements = nodeChildNodes.filter(isElementNode);\n\t\t// If node has more than one element child or has a Text node child.\n\t\tif (nodeChildElements.length > 1 || find(nodeChildNodes, isTextNode)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'More than one element or text in fragment');\n\t\t}\n\t\t// Otherwise, if `node` has one element child and either `parent` has an element child,\n\t\t// `child` is a doctype, or `child` is non-null and a doctype is following `child`.\n\t\tif (nodeChildElements.length === 1 && !isElementInsertionPossible(parent, child)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Element in fragment can not be inserted before doctype');\n\t\t}\n\t}\n\t// Element\n\tif (isElementNode(node)) {\n\t\t// `parent` has an element child, `child` is a doctype,\n\t\t// or `child` is non-null and a doctype is following `child`.\n\t\tif (!isElementInsertionPossible(parent, child)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Only one element can be added and only after doctype');\n\t\t}\n\t}\n\t// DocumentType\n\tif (isDocTypeNode(node)) {\n\t\t// `parent` has a doctype child,\n\t\tif (find(parentChildNodes, isDocTypeNode)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Only one doctype is allowed');\n\t\t}\n\t\tvar parentElementChild = find(parentChildNodes, isElementNode);\n\t\t// `child` is non-null and an element is preceding `child`,\n\t\tif (child && parentChildNodes.indexOf(parentElementChild) < parentChildNodes.indexOf(child)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Doctype can only be inserted before an element');\n\t\t}\n\t\t// or `child` is null and `parent` has an element child.\n\t\tif (!child && parentElementChild) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Doctype can not be appended since element is present');\n\t\t}\n\t}\n}\n\n/**\n * @private\n * Step 6 of the checks before inserting and before replacing a child are different.\n *\n * @param {Document} parent the parent node to insert `node` into\n * @param {Node} node the node to insert\n * @param {Node | undefined} child the node that should become the `nextSibling` of `node`\n * @returns {Node}\n * @throws DOMException for several node combinations that would create a DOM that is not well-formed.\n * @throws DOMException if `child` is provided but is not a child of `parent`.\n * @see https://dom.spec.whatwg.org/#concept-node-ensure-pre-insertion-validity\n * @see https://dom.spec.whatwg.org/#concept-node-replace\n */\nfunction assertPreReplacementValidityInDocument(parent, node, child) {\n\tvar parentChildNodes = parent.childNodes || [];\n\tvar nodeChildNodes = node.childNodes || [];\n\n\t// DocumentFragment\n\tif (node.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {\n\t\tvar nodeChildElements = nodeChildNodes.filter(isElementNode);\n\t\t// If `node` has more than one element child or has a Text node child.\n\t\tif (nodeChildElements.length > 1 || find(nodeChildNodes, isTextNode)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'More than one element or text in fragment');\n\t\t}\n\t\t// Otherwise, if `node` has one element child and either `parent` has an element child that is not `child` or a doctype is following `child`.\n\t\tif (nodeChildElements.length === 1 && !isElementReplacementPossible(parent, child)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Element in fragment can not be inserted before doctype');\n\t\t}\n\t}\n\t// Element\n\tif (isElementNode(node)) {\n\t\t// `parent` has an element child that is not `child` or a doctype is following `child`.\n\t\tif (!isElementReplacementPossible(parent, child)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Only one element can be added and only after doctype');\n\t\t}\n\t}\n\t// DocumentType\n\tif (isDocTypeNode(node)) {\n\t\tfunction hasDoctypeChildThatIsNotChild(node) {\n\t\t\treturn isDocTypeNode(node) && node !== child;\n\t\t}\n\n\t\t// `parent` has a doctype child that is not `child`,\n\t\tif (find(parentChildNodes, hasDoctypeChildThatIsNotChild)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Only one doctype is allowed');\n\t\t}\n\t\tvar parentElementChild = find(parentChildNodes, isElementNode);\n\t\t// or an element is preceding `child`.\n\t\tif (child && parentChildNodes.indexOf(parentElementChild) < parentChildNodes.indexOf(child)) {\n\t\t\tthrow new DOMException(HIERARCHY_REQUEST_ERR, 'Doctype can only be inserted before an element');\n\t\t}\n\t}\n}\n\n/**\n * @private\n * @param {Node} parent the parent node to insert `node` into\n * @param {Node} node the node to insert\n * @param {Node=} child the node that should become the `nextSibling` of `node`\n * @returns {Node}\n * @throws DOMException for several node combinations that would create a DOM that is not well-formed.\n * @throws DOMException if `child` is provided but is not a child of `parent`.\n * @see https://dom.spec.whatwg.org/#concept-node-ensure-pre-insertion-validity\n */\nfunction _insertBefore(parent, node, child, _inDocumentAssertion) {\n\t// To ensure pre-insertion validity of a node into a parent before a child, run these steps:\n\tassertPreInsertionValidity1to5(parent, node, child);\n\n\t// If parent is a document, and any of the statements below, switched on the interface node implements,\n\t// are true, then throw a \"HierarchyRequestError\" DOMException.\n\tif (parent.nodeType === Node.DOCUMENT_NODE) {\n\t\t(_inDocumentAssertion || assertPreInsertionValidityInDocument)(parent, node, child);\n\t}\n\n\tvar cp = node.parentNode;\n\tif(cp){\n\t\tcp.removeChild(node);//remove and update\n\t}\n\tif(node.nodeType === DOCUMENT_FRAGMENT_NODE){\n\t\tvar newFirst = node.firstChild;\n\t\tif (newFirst == null) {\n\t\t\treturn node;\n\t\t}\n\t\tvar newLast = node.lastChild;\n\t}else{\n\t\tnewFirst = newLast = node;\n\t}\n\tvar pre = child ? child.previousSibling : parent.lastChild;\n\n\tnewFirst.previousSibling = pre;\n\tnewLast.nextSibling = child;\n\n\n\tif(pre){\n\t\tpre.nextSibling = newFirst;\n\t}else{\n\t\tparent.firstChild = newFirst;\n\t}\n\tif(child == null){\n\t\tparent.lastChild = newLast;\n\t}else{\n\t\tchild.previousSibling = newLast;\n\t}\n\tdo{\n\t\tnewFirst.parentNode = parent;\n\t}while(newFirst !== newLast && (newFirst= newFirst.nextSibling))\n\t_onUpdateChild(parent.ownerDocument||parent, parent);\n\t//console.log(parent.lastChild.nextSibling == null)\n\tif (node.nodeType == DOCUMENT_FRAGMENT_NODE) {\n\t\tnode.firstChild = node.lastChild = null;\n\t}\n\treturn node;\n}\n\n/**\n * Appends `newChild` to `parentNode`.\n * If `newChild` is already connected to a `parentNode` it is first removed from it.\n *\n * @see https://github.com/xmldom/xmldom/issues/135\n * @see https://github.com/xmldom/xmldom/issues/145\n * @param {Node} parentNode\n * @param {Node} newChild\n * @returns {Node}\n * @private\n */\nfunction _appendSingleChild (parentNode, newChild) {\n\tif (newChild.parentNode) {\n\t\tnewChild.parentNode.removeChild(newChild);\n\t}\n\tnewChild.parentNode = parentNode;\n\tnewChild.previousSibling = parentNode.lastChild;\n\tnewChild.nextSibling = null;\n\tif (newChild.previousSibling) {\n\t\tnewChild.previousSibling.nextSibling = newChild;\n\t} else {\n\t\tparentNode.firstChild = newChild;\n\t}\n\tparentNode.lastChild = newChild;\n\t_onUpdateChild(parentNode.ownerDocument, parentNode, newChild);\n\treturn newChild;\n}\n\nDocument.prototype = {\n\t//implementation : null,\n\tnodeName : '#document',\n\tnodeType : DOCUMENT_NODE,\n\t/**\n\t * The DocumentType node of the document.\n\t *\n\t * @readonly\n\t * @type DocumentType\n\t */\n\tdoctype : null,\n\tdocumentElement : null,\n\t_inc : 1,\n\n\tinsertBefore : function(newChild, refChild){//raises\n\t\tif(newChild.nodeType == DOCUMENT_FRAGMENT_NODE){\n\t\t\tvar child = newChild.firstChild;\n\t\t\twhile(child){\n\t\t\t\tvar next = child.nextSibling;\n\t\t\t\tthis.insertBefore(child,refChild);\n\t\t\t\tchild = next;\n\t\t\t}\n\t\t\treturn newChild;\n\t\t}\n\t\t_insertBefore(this, newChild, refChild);\n\t\tnewChild.ownerDocument = this;\n\t\tif (this.documentElement === null && newChild.nodeType === ELEMENT_NODE) {\n\t\t\tthis.documentElement = newChild;\n\t\t}\n\n\t\treturn newChild;\n\t},\n\tremoveChild : function(oldChild){\n\t\tif(this.documentElement == oldChild){\n\t\t\tthis.documentElement = null;\n\t\t}\n\t\treturn _removeChild(this,oldChild);\n\t},\n\treplaceChild: function (newChild, oldChild) {\n\t\t//raises\n\t\t_insertBefore(this, newChild, oldChild, assertPreReplacementValidityInDocument);\n\t\tnewChild.ownerDocument = this;\n\t\tif (oldChild) {\n\t\t\tthis.removeChild(oldChild);\n\t\t}\n\t\tif (isElementNode(newChild)) {\n\t\t\tthis.documentElement = newChild;\n\t\t}\n\t},\n\t// Introduced in DOM Level 2:\n\timportNode : function(importedNode,deep){\n\t\treturn importNode(this,importedNode,deep);\n\t},\n\t// Introduced in DOM Level 2:\n\tgetElementById :\tfunction(id){\n\t\tvar rtv = null;\n\t\t_visitNode(this.documentElement,function(node){\n\t\t\tif(node.nodeType == ELEMENT_NODE){\n\t\t\t\tif(node.getAttribute('id') == id){\n\t\t\t\t\trtv = node;\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t\treturn rtv;\n\t},\n\n\t/**\n\t * The `getElementsByClassName` method of `Document` interface returns an array-like object\n\t * of all child elements which have **all** of the given class name(s).\n\t *\n\t * Returns an empty list if `classeNames` is an empty string or only contains HTML white space characters.\n\t *\n\t *\n\t * Warning: This is a live LiveNodeList.\n\t * Changes in the DOM will reflect in the array as the changes occur.\n\t * If an element selected by this array no longer qualifies for the selector,\n\t * it will automatically be removed. Be aware of this for iteration purposes.\n\t *\n\t * @param {string} classNames is a string representing the class name(s) to match; multiple class names are separated by (ASCII-)whitespace\n\t *\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementsByClassName\n\t * @see https://dom.spec.whatwg.org/#concept-getelementsbyclassname\n\t */\n\tgetElementsByClassName: function(classNames) {\n\t\tvar classNamesSet = toOrderedSet(classNames)\n\t\treturn new LiveNodeList(this, function(base) {\n\t\t\tvar ls = [];\n\t\t\tif (classNamesSet.length > 0) {\n\t\t\t\t_visitNode(base.documentElement, function(node) {\n\t\t\t\t\tif(node !== base && node.nodeType === ELEMENT_NODE) {\n\t\t\t\t\t\tvar nodeClassNames = node.getAttribute('class')\n\t\t\t\t\t\t// can be null if the attribute does not exist\n\t\t\t\t\t\tif (nodeClassNames) {\n\t\t\t\t\t\t\t// before splitting and iterating just compare them for the most common case\n\t\t\t\t\t\t\tvar matches = classNames === nodeClassNames;\n\t\t\t\t\t\t\tif (!matches) {\n\t\t\t\t\t\t\t\tvar nodeClassNamesSet = toOrderedSet(nodeClassNames)\n\t\t\t\t\t\t\t\tmatches = classNamesSet.every(arrayIncludes(nodeClassNamesSet))\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif(matches) {\n\t\t\t\t\t\t\t\tls.push(node);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn ls;\n\t\t});\n\t},\n\n\t//document factory method:\n\tcreateElement :\tfunction(tagName){\n\t\tvar node = new Element();\n\t\tnode.ownerDocument = this;\n\t\tnode.nodeName = tagName;\n\t\tnode.tagName = tagName;\n\t\tnode.localName = tagName;\n\t\tnode.childNodes = new NodeList();\n\t\tvar attrs\t= node.attributes = new NamedNodeMap();\n\t\tattrs._ownerElement = node;\n\t\treturn node;\n\t},\n\tcreateDocumentFragment :\tfunction(){\n\t\tvar node = new DocumentFragment();\n\t\tnode.ownerDocument = this;\n\t\tnode.childNodes = new NodeList();\n\t\treturn node;\n\t},\n\tcreateTextNode :\tfunction(data){\n\t\tvar node = new Text();\n\t\tnode.ownerDocument = this;\n\t\tnode.appendData(data)\n\t\treturn node;\n\t},\n\tcreateComment :\tfunction(data){\n\t\tvar node = new Comment();\n\t\tnode.ownerDocument = this;\n\t\tnode.appendData(data)\n\t\treturn node;\n\t},\n\tcreateCDATASection :\tfunction(data){\n\t\tvar node = new CDATASection();\n\t\tnode.ownerDocument = this;\n\t\tnode.appendData(data)\n\t\treturn node;\n\t},\n\tcreateProcessingInstruction :\tfunction(target,data){\n\t\tvar node = new ProcessingInstruction();\n\t\tnode.ownerDocument = this;\n\t\tnode.tagName = node.nodeName = node.target = target;\n\t\tnode.nodeValue = node.data = data;\n\t\treturn node;\n\t},\n\tcreateAttribute :\tfunction(name){\n\t\tvar node = new Attr();\n\t\tnode.ownerDocument\t= this;\n\t\tnode.name = name;\n\t\tnode.nodeName\t= name;\n\t\tnode.localName = name;\n\t\tnode.specified = true;\n\t\treturn node;\n\t},\n\tcreateEntityReference :\tfunction(name){\n\t\tvar node = new EntityReference();\n\t\tnode.ownerDocument\t= this;\n\t\tnode.nodeName\t= name;\n\t\treturn node;\n\t},\n\t// Introduced in DOM Level 2:\n\tcreateElementNS :\tfunction(namespaceURI,qualifiedName){\n\t\tvar node = new Element();\n\t\tvar pl = qualifiedName.split(':');\n\t\tvar attrs\t= node.attributes = new NamedNodeMap();\n\t\tnode.childNodes = new NodeList();\n\t\tnode.ownerDocument = this;\n\t\tnode.nodeName = qualifiedName;\n\t\tnode.tagName = qualifiedName;\n\t\tnode.namespaceURI = namespaceURI;\n\t\tif(pl.length == 2){\n\t\t\tnode.prefix = pl[0];\n\t\t\tnode.localName = pl[1];\n\t\t}else{\n\t\t\t//el.prefix = null;\n\t\t\tnode.localName = qualifiedName;\n\t\t}\n\t\tattrs._ownerElement = node;\n\t\treturn node;\n\t},\n\t// Introduced in DOM Level 2:\n\tcreateAttributeNS :\tfunction(namespaceURI,qualifiedName){\n\t\tvar node = new Attr();\n\t\tvar pl = qualifiedName.split(':');\n\t\tnode.ownerDocument = this;\n\t\tnode.nodeName = qualifiedName;\n\t\tnode.name = qualifiedName;\n\t\tnode.namespaceURI = namespaceURI;\n\t\tnode.specified = true;\n\t\tif(pl.length == 2){\n\t\t\tnode.prefix = pl[0];\n\t\t\tnode.localName = pl[1];\n\t\t}else{\n\t\t\t//el.prefix = null;\n\t\t\tnode.localName = qualifiedName;\n\t\t}\n\t\treturn node;\n\t}\n};\n_extends(Document,Node);\n\n\nfunction Element() {\n\tthis._nsMap = {};\n};\nElement.prototype = {\n\tnodeType : ELEMENT_NODE,\n\thasAttribute : function(name){\n\t\treturn this.getAttributeNode(name)!=null;\n\t},\n\tgetAttribute : function(name){\n\t\tvar attr = this.getAttributeNode(name);\n\t\treturn attr && attr.value || '';\n\t},\n\tgetAttributeNode : function(name){\n\t\treturn this.attributes.getNamedItem(name);\n\t},\n\tsetAttribute : function(name, value){\n\t\tvar attr = this.ownerDocument.createAttribute(name);\n\t\tattr.value = attr.nodeValue = \"\" + value;\n\t\tthis.setAttributeNode(attr)\n\t},\n\tremoveAttribute : function(name){\n\t\tvar attr = this.getAttributeNode(name)\n\t\tattr && this.removeAttributeNode(attr);\n\t},\n\n\t//four real opeartion method\n\tappendChild:function(newChild){\n\t\tif(newChild.nodeType === DOCUMENT_FRAGMENT_NODE){\n\t\t\treturn this.insertBefore(newChild,null);\n\t\t}else{\n\t\t\treturn _appendSingleChild(this,newChild);\n\t\t}\n\t},\n\tsetAttributeNode : function(newAttr){\n\t\treturn this.attributes.setNamedItem(newAttr);\n\t},\n\tsetAttributeNodeNS : function(newAttr){\n\t\treturn this.attributes.setNamedItemNS(newAttr);\n\t},\n\tremoveAttributeNode : function(oldAttr){\n\t\t//console.log(this == oldAttr.ownerElement)\n\t\treturn this.attributes.removeNamedItem(oldAttr.nodeName);\n\t},\n\t//get real attribute name,and remove it by removeAttributeNode\n\tremoveAttributeNS : function(namespaceURI, localName){\n\t\tvar old = this.getAttributeNodeNS(namespaceURI, localName);\n\t\told && this.removeAttributeNode(old);\n\t},\n\n\thasAttributeNS : function(namespaceURI, localName){\n\t\treturn this.getAttributeNodeNS(namespaceURI, localName)!=null;\n\t},\n\tgetAttributeNS : function(namespaceURI, localName){\n\t\tvar attr = this.getAttributeNodeNS(namespaceURI, localName);\n\t\treturn attr && attr.value || '';\n\t},\n\tsetAttributeNS : function(namespaceURI, qualifiedName, value){\n\t\tvar attr = this.ownerDocument.createAttributeNS(namespaceURI, qualifiedName);\n\t\tattr.value = attr.nodeValue = \"\" + value;\n\t\tthis.setAttributeNode(attr)\n\t},\n\tgetAttributeNodeNS : function(namespaceURI, localName){\n\t\treturn this.attributes.getNamedItemNS(namespaceURI, localName);\n\t},\n\n\tgetElementsByTagName : function(tagName){\n\t\treturn new LiveNodeList(this,function(base){\n\t\t\tvar ls = [];\n\t\t\t_visitNode(base,function(node){\n\t\t\t\tif(node !== base && node.nodeType == ELEMENT_NODE && (tagName === '*' || node.tagName == tagName)){\n\t\t\t\t\tls.push(node);\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn ls;\n\t\t});\n\t},\n\tgetElementsByTagNameNS : function(namespaceURI, localName){\n\t\treturn new LiveNodeList(this,function(base){\n\t\t\tvar ls = [];\n\t\t\t_visitNode(base,function(node){\n\t\t\t\tif(node !== base && node.nodeType === ELEMENT_NODE && (namespaceURI === '*' || node.namespaceURI === namespaceURI) && (localName === '*' || node.localName == localName)){\n\t\t\t\t\tls.push(node);\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn ls;\n\n\t\t});\n\t}\n};\nDocument.prototype.getElementsByTagName = Element.prototype.getElementsByTagName;\nDocument.prototype.getElementsByTagNameNS = Element.prototype.getElementsByTagNameNS;\n\n\n_extends(Element,Node);\nfunction Attr() {\n};\nAttr.prototype.nodeType = ATTRIBUTE_NODE;\n_extends(Attr,Node);\n\n\nfunction CharacterData() {\n};\nCharacterData.prototype = {\n\tdata : '',\n\tsubstringData : function(offset, count) {\n\t\treturn this.data.substring(offset, offset+count);\n\t},\n\tappendData: function(text) {\n\t\ttext = this.data+text;\n\t\tthis.nodeValue = this.data = text;\n\t\tthis.length = text.length;\n\t},\n\tinsertData: function(offset,text) {\n\t\tthis.replaceData(offset,0,text);\n\n\t},\n\tappendChild:function(newChild){\n\t\tthrow new Error(ExceptionMessage[HIERARCHY_REQUEST_ERR])\n\t},\n\tdeleteData: function(offset, count) {\n\t\tthis.replaceData(offset,count,\"\");\n\t},\n\treplaceData: function(offset, count, text) {\n\t\tvar start = this.data.substring(0,offset);\n\t\tvar end = this.data.substring(offset+count);\n\t\ttext = start + text + end;\n\t\tthis.nodeValue = this.data = text;\n\t\tthis.length = text.length;\n\t}\n}\n_extends(CharacterData,Node);\nfunction Text() {\n};\nText.prototype = {\n\tnodeName : \"#text\",\n\tnodeType : TEXT_NODE,\n\tsplitText : function(offset) {\n\t\tvar text = this.data;\n\t\tvar newText = text.substring(offset);\n\t\ttext = text.substring(0, offset);\n\t\tthis.data = this.nodeValue = text;\n\t\tthis.length = text.length;\n\t\tvar newNode = this.ownerDocument.createTextNode(newText);\n\t\tif(this.parentNode){\n\t\t\tthis.parentNode.insertBefore(newNode, this.nextSibling);\n\t\t}\n\t\treturn newNode;\n\t}\n}\n_extends(Text,CharacterData);\nfunction Comment() {\n};\nComment.prototype = {\n\tnodeName : \"#comment\",\n\tnodeType : COMMENT_NODE\n}\n_extends(Comment,CharacterData);\n\nfunction CDATASection() {\n};\nCDATASection.prototype = {\n\tnodeName : \"#cdata-section\",\n\tnodeType : CDATA_SECTION_NODE\n}\n_extends(CDATASection,CharacterData);\n\n\nfunction DocumentType() {\n};\nDocumentType.prototype.nodeType = DOCUMENT_TYPE_NODE;\n_extends(DocumentType,Node);\n\nfunction Notation() {\n};\nNotation.prototype.nodeType = NOTATION_NODE;\n_extends(Notation,Node);\n\nfunction Entity() {\n};\nEntity.prototype.nodeType = ENTITY_NODE;\n_extends(Entity,Node);\n\nfunction EntityReference() {\n};\nEntityReference.prototype.nodeType = ENTITY_REFERENCE_NODE;\n_extends(EntityReference,Node);\n\nfunction DocumentFragment() {\n};\nDocumentFragment.prototype.nodeName =\t\"#document-fragment\";\nDocumentFragment.prototype.nodeType =\tDOCUMENT_FRAGMENT_NODE;\n_extends(DocumentFragment,Node);\n\n\nfunction ProcessingInstruction() {\n}\nProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE;\n_extends(ProcessingInstruction,Node);\nfunction XMLSerializer(){}\nXMLSerializer.prototype.serializeToString = function(node,isHtml,nodeFilter){\n\treturn nodeSerializeToString.call(node,isHtml,nodeFilter);\n}\nNode.prototype.toString = nodeSerializeToString;\nfunction nodeSerializeToString(isHtml,nodeFilter){\n\tvar buf = [];\n\tvar refNode = this.nodeType == 9 && this.documentElement || this;\n\tvar prefix = refNode.prefix;\n\tvar uri = refNode.namespaceURI;\n\n\tif(uri && prefix == null){\n\t\t//console.log(prefix)\n\t\tvar prefix = refNode.lookupPrefix(uri);\n\t\tif(prefix == null){\n\t\t\t//isHTML = true;\n\t\t\tvar visibleNamespaces=[\n\t\t\t{namespace:uri,prefix:null}\n\t\t\t//{namespace:uri,prefix:''}\n\t\t\t]\n\t\t}\n\t}\n\tserializeToString(this,buf,isHtml,nodeFilter,visibleNamespaces);\n\t//console.log('###',this.nodeType,uri,prefix,buf.join(''))\n\treturn buf.join('');\n}\n\nfunction needNamespaceDefine(node, isHTML, visibleNamespaces) {\n\tvar prefix = node.prefix || '';\n\tvar uri = node.namespaceURI;\n\t// According to [Namespaces in XML 1.0](https://www.w3.org/TR/REC-xml-names/#ns-using) ,\n\t// and more specifically https://www.w3.org/TR/REC-xml-names/#nsc-NoPrefixUndecl :\n\t// > In a namespace declaration for a prefix [...], the attribute value MUST NOT be empty.\n\t// in a similar manner [Namespaces in XML 1.1](https://www.w3.org/TR/xml-names11/#ns-using)\n\t// and more specifically https://www.w3.org/TR/xml-names11/#nsc-NSDeclared :\n\t// > [...] Furthermore, the attribute value [...] must not be an empty string.\n\t// so serializing empty namespace value like xmlns:ds=\"\" would produce an invalid XML document.\n\tif (!uri) {\n\t\treturn false;\n\t}\n\tif (prefix === \"xml\" && uri === NAMESPACE.XML || uri === NAMESPACE.XMLNS) {\n\t\treturn false;\n\t}\n\n\tvar i = visibleNamespaces.length\n\twhile (i--) {\n\t\tvar ns = visibleNamespaces[i];\n\t\t// get namespace prefix\n\t\tif (ns.prefix === prefix) {\n\t\t\treturn ns.namespace !== uri;\n\t\t}\n\t}\n\treturn true;\n}\n/**\n * Well-formed constraint: No < in Attribute Values\n * > The replacement text of any entity referred to directly or indirectly\n * > in an attribute value must not contain a <.\n * @see https://www.w3.org/TR/xml11/#CleanAttrVals\n * @see https://www.w3.org/TR/xml11/#NT-AttValue\n *\n * Literal whitespace other than space that appear in attribute values\n * are serialized as their entity references, so they will be preserved.\n * (In contrast to whitespace literals in the input which are normalized to spaces)\n * @see https://www.w3.org/TR/xml11/#AVNormalize\n * @see https://w3c.github.io/DOM-Parsing/#serializing-an-element-s-attributes\n */\nfunction addSerializedAttribute(buf, qualifiedName, value) {\n\tbuf.push(' ', qualifiedName, '=\"', value.replace(/[<>&\"\\t\\n\\r]/g, _xmlEncoder), '\"')\n}\n\nfunction serializeToString(node,buf,isHTML,nodeFilter,visibleNamespaces){\n\tif (!visibleNamespaces) {\n\t\tvisibleNamespaces = [];\n\t}\n\n\tif(nodeFilter){\n\t\tnode = nodeFilter(node);\n\t\tif(node){\n\t\t\tif(typeof node == 'string'){\n\t\t\t\tbuf.push(node);\n\t\t\t\treturn;\n\t\t\t}\n\t\t}else{\n\t\t\treturn;\n\t\t}\n\t\t//buf.sort.apply(attrs, attributeSorter);\n\t}\n\n\tswitch(node.nodeType){\n\tcase ELEMENT_NODE:\n\t\tvar attrs = node.attributes;\n\t\tvar len = attrs.length;\n\t\tvar child = node.firstChild;\n\t\tvar nodeName = node.tagName;\n\n\t\tisHTML = NAMESPACE.isHTML(node.namespaceURI) || isHTML\n\n\t\tvar prefixedNodeName = nodeName\n\t\tif (!isHTML && !node.prefix && node.namespaceURI) {\n\t\t\tvar defaultNS\n\t\t\t// lookup current default ns from `xmlns` attribute\n\t\t\tfor (var ai = 0; ai < attrs.length; ai++) {\n\t\t\t\tif (attrs.item(ai).name === 'xmlns') {\n\t\t\t\t\tdefaultNS = attrs.item(ai).value\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!defaultNS) {\n\t\t\t\t// lookup current default ns in visibleNamespaces\n\t\t\t\tfor (var nsi = visibleNamespaces.length - 1; nsi >= 0; nsi--) {\n\t\t\t\t\tvar namespace = visibleNamespaces[nsi]\n\t\t\t\t\tif (namespace.prefix === '' && namespace.namespace === node.namespaceURI) {\n\t\t\t\t\t\tdefaultNS = namespace.namespace\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (defaultNS !== node.namespaceURI) {\n\t\t\t\tfor (var nsi = visibleNamespaces.length - 1; nsi >= 0; nsi--) {\n\t\t\t\t\tvar namespace = visibleNamespaces[nsi]\n\t\t\t\t\tif (namespace.namespace === node.namespaceURI) {\n\t\t\t\t\t\tif (namespace.prefix) {\n\t\t\t\t\t\t\tprefixedNodeName = namespace.prefix + ':' + nodeName\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tbuf.push('<', prefixedNodeName);\n\n\t\tfor(var i=0;i<len;i++){\n\t\t\t// add namespaces for attributes\n\t\t\tvar attr = attrs.item(i);\n\t\t\tif (attr.prefix == 'xmlns') {\n\t\t\t\tvisibleNamespaces.push({ prefix: attr.localName, namespace: attr.value });\n\t\t\t}else if(attr.nodeName == 'xmlns'){\n\t\t\t\tvisibleNamespaces.push({ prefix: '', namespace: attr.value });\n\t\t\t}\n\t\t}\n\n\t\tfor(var i=0;i<len;i++){\n\t\t\tvar attr = attrs.item(i);\n\t\t\tif (needNamespaceDefine(attr,isHTML, visibleNamespaces)) {\n\t\t\t\tvar prefix = attr.prefix||'';\n\t\t\t\tvar uri = attr.namespaceURI;\n\t\t\t\taddSerializedAttribute(buf, prefix ? 'xmlns:' + prefix : \"xmlns\", uri);\n\t\t\t\tvisibleNamespaces.push({ prefix: prefix, namespace:uri });\n\t\t\t}\n\t\t\tserializeToString(attr,buf,isHTML,nodeFilter,visibleNamespaces);\n\t\t}\n\n\t\t// add namespace for current node\n\t\tif (nodeName === prefixedNodeName && needNamespaceDefine(node, isHTML, visibleNamespaces)) {\n\t\t\tvar prefix = node.prefix||'';\n\t\t\tvar uri = node.namespaceURI;\n\t\t\taddSerializedAttribute(buf, prefix ? 'xmlns:' + prefix : \"xmlns\", uri);\n\t\t\tvisibleNamespaces.push({ prefix: prefix, namespace:uri });\n\t\t}\n\n\t\tif(child || isHTML && !/^(?:meta|link|img|br|hr|input)$/i.test(nodeName)){\n\t\t\tbuf.push('>');\n\t\t\t//if is cdata child node\n\t\t\tif(isHTML && /^script$/i.test(nodeName)){\n\t\t\t\twhile(child){\n\t\t\t\t\tif(child.data){\n\t\t\t\t\t\tbuf.push(child.data);\n\t\t\t\t\t}else{\n\t\t\t\t\t\tserializeToString(child, buf, isHTML, nodeFilter, visibleNamespaces.slice());\n\t\t\t\t\t}\n\t\t\t\t\tchild = child.nextSibling;\n\t\t\t\t}\n\t\t\t}else\n\t\t\t{\n\t\t\t\twhile(child){\n\t\t\t\t\tserializeToString(child, buf, isHTML, nodeFilter, visibleNamespaces.slice());\n\t\t\t\t\tchild = child.nextSibling;\n\t\t\t\t}\n\t\t\t}\n\t\t\tbuf.push('</',prefixedNodeName,'>');\n\t\t}else{\n\t\t\tbuf.push('/>');\n\t\t}\n\t\t// remove added visible namespaces\n\t\t//visibleNamespaces.length = startVisibleNamespaces;\n\t\treturn;\n\tcase DOCUMENT_NODE:\n\tcase DOCUMENT_FRAGMENT_NODE:\n\t\tvar child = node.firstChild;\n\t\twhile(child){\n\t\t\tserializeToString(child, buf, isHTML, nodeFilter, visibleNamespaces.slice());\n\t\t\tchild = child.nextSibling;\n\t\t}\n\t\treturn;\n\tcase ATTRIBUTE_NODE:\n\t\treturn addSerializedAttribute(buf, node.name, node.value);\n\tcase TEXT_NODE:\n\t\t/**\n\t\t * The ampersand character (&) and the left angle bracket (<) must not appear in their literal form,\n\t\t * except when used as markup delimiters, or within a comment, a processing instruction, or a CDATA section.\n\t\t * If they are needed elsewhere, they must be escaped using either numeric character references or the strings\n\t\t * `&` and `<` respectively.\n\t\t * The right angle bracket (>) may be represented using the string \" > \", and must, for compatibility,\n\t\t * be escaped using either `>` or a character reference when it appears in the string `]]>` in content,\n\t\t * when that string is not marking the end of a CDATA section.\n\t\t *\n\t\t * In the content of elements, character data is any string of characters\n\t\t * which does not contain the start-delimiter of any markup\n\t\t * and does not include the CDATA-section-close delimiter, `]]>`.\n\t\t *\n\t\t * @see https://www.w3.org/TR/xml/#NT-CharData\n\t\t * @see https://w3c.github.io/DOM-Parsing/#xml-serializing-a-text-node\n\t\t */\n\t\treturn buf.push(node.data\n\t\t\t.replace(/[<&>]/g,_xmlEncoder)\n\t\t);\n\tcase CDATA_SECTION_NODE:\n\t\treturn buf.push( '<![CDATA[',node.data,']]>');\n\tcase COMMENT_NODE:\n\t\treturn buf.push( \"<!--\",node.data,\"-->\");\n\tcase DOCUMENT_TYPE_NODE:\n\t\tvar pubid = node.publicId;\n\t\tvar sysid = node.systemId;\n\t\tbuf.push('<!DOCTYPE ',node.name);\n\t\tif(pubid){\n\t\t\tbuf.push(' PUBLIC ', pubid);\n\t\t\tif (sysid && sysid!='.') {\n\t\t\t\tbuf.push(' ', sysid);\n\t\t\t}\n\t\t\tbuf.push('>');\n\t\t}else if(sysid && sysid!='.'){\n\t\t\tbuf.push(' SYSTEM ', sysid, '>');\n\t\t}else{\n\t\t\tvar sub = node.internalSubset;\n\t\t\tif(sub){\n\t\t\t\tbuf.push(\" [\",sub,\"]\");\n\t\t\t}\n\t\t\tbuf.push(\">\");\n\t\t}\n\t\treturn;\n\tcase PROCESSING_INSTRUCTION_NODE:\n\t\treturn buf.push( \"<?\",node.target,\" \",node.data,\"?>\");\n\tcase ENTITY_REFERENCE_NODE:\n\t\treturn buf.push( '&',node.nodeName,';');\n\t//case ENTITY_NODE:\n\t//case NOTATION_NODE:\n\tdefault:\n\t\tbuf.push('??',node.nodeName);\n\t}\n}\nfunction importNode(doc,node,deep){\n\tvar node2;\n\tswitch (node.nodeType) {\n\tcase ELEMENT_NODE:\n\t\tnode2 = node.cloneNode(false);\n\t\tnode2.ownerDocument = doc;\n\t\t//var attrs = node2.attributes;\n\t\t//var len = attrs.length;\n\t\t//for(var i=0;i<len;i++){\n\t\t\t//node2.setAttributeNodeNS(importNode(doc,attrs.item(i),deep));\n\t\t//}\n\tcase DOCUMENT_FRAGMENT_NODE:\n\t\tbreak;\n\tcase ATTRIBUTE_NODE:\n\t\tdeep = true;\n\t\tbreak;\n\t//case ENTITY_REFERENCE_NODE:\n\t//case PROCESSING_INSTRUCTION_NODE:\n\t////case TEXT_NODE:\n\t//case CDATA_SECTION_NODE:\n\t//case COMMENT_NODE:\n\t//\tdeep = false;\n\t//\tbreak;\n\t//case DOCUMENT_NODE:\n\t//case DOCUMENT_TYPE_NODE:\n\t//cannot be imported.\n\t//case ENTITY_NODE:\n\t//case NOTATION_NODE:\n\t//can not hit in level3\n\t//default:throw e;\n\t}\n\tif(!node2){\n\t\tnode2 = node.cloneNode(false);//false\n\t}\n\tnode2.ownerDocument = doc;\n\tnode2.parentNode = null;\n\tif(deep){\n\t\tvar child = node.firstChild;\n\t\twhile(child){\n\t\t\tnode2.appendChild(importNode(doc,child,deep));\n\t\t\tchild = child.nextSibling;\n\t\t}\n\t}\n\treturn node2;\n}\n//\n//var _relationMap = {firstChild:1,lastChild:1,previousSibling:1,nextSibling:1,\n//\t\t\t\t\tattributes:1,childNodes:1,parentNode:1,documentElement:1,doctype,};\nfunction cloneNode(doc,node,deep){\n\tvar node2 = new node.constructor();\n\tfor (var n in node) {\n\t\tif (Object.prototype.hasOwnProperty.call(node, n)) {\n\t\t\tvar v = node[n];\n\t\t\tif (typeof v != \"object\") {\n\t\t\t\tif (v != node2[n]) {\n\t\t\t\t\tnode2[n] = v;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\tif(node.childNodes){\n\t\tnode2.childNodes = new NodeList();\n\t}\n\tnode2.ownerDocument = doc;\n\tswitch (node2.nodeType) {\n\tcase ELEMENT_NODE:\n\t\tvar attrs\t= node.attributes;\n\t\tvar attrs2\t= node2.attributes = new NamedNodeMap();\n\t\tvar len = attrs.length\n\t\tattrs2._ownerElement = node2;\n\t\tfor(var i=0;i<len;i++){\n\t\t\tnode2.setAttributeNode(cloneNode(doc,attrs.item(i),true));\n\t\t}\n\t\tbreak;;\n\tcase ATTRIBUTE_NODE:\n\t\tdeep = true;\n\t}\n\tif(deep){\n\t\tvar child = node.firstChild;\n\t\twhile(child){\n\t\t\tnode2.appendChild(cloneNode(doc,child,deep));\n\t\t\tchild = child.nextSibling;\n\t\t}\n\t}\n\treturn node2;\n}\n\nfunction __set__(object,key,value){\n\tobject[key] = value\n}\n//do dynamic\ntry{\n\tif(Object.defineProperty){\n\t\tObject.defineProperty(LiveNodeList.prototype,'length',{\n\t\t\tget:function(){\n\t\t\t\t_updateLiveList(this);\n\t\t\t\treturn this.$$length;\n\t\t\t}\n\t\t});\n\n\t\tObject.defineProperty(Node.prototype,'textContent',{\n\t\t\tget:function(){\n\t\t\t\treturn getTextContent(this);\n\t\t\t},\n\n\t\t\tset:function(data){\n\t\t\t\tswitch(this.nodeType){\n\t\t\t\tcase ELEMENT_NODE:\n\t\t\t\tcase DOCUMENT_FRAGMENT_NODE:\n\t\t\t\t\twhile(this.firstChild){\n\t\t\t\t\t\tthis.removeChild(this.firstChild);\n\t\t\t\t\t}\n\t\t\t\t\tif(data || String(data)){\n\t\t\t\t\t\tthis.appendChild(this.ownerDocument.createTextNode(data));\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\n\t\t\t\tdefault:\n\t\t\t\t\tthis.data = data;\n\t\t\t\t\tthis.value = data;\n\t\t\t\t\tthis.nodeValue = data;\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\n\t\tfunction getTextContent(node){\n\t\t\tswitch(node.nodeType){\n\t\t\tcase ELEMENT_NODE:\n\t\t\tcase DOCUMENT_FRAGMENT_NODE:\n\t\t\t\tvar buf = [];\n\t\t\t\tnode = node.firstChild;\n\t\t\t\twhile(node){\n\t\t\t\t\tif(node.nodeType!==7 && node.nodeType !==8){\n\t\t\t\t\t\tbuf.push(getTextContent(node));\n\t\t\t\t\t}\n\t\t\t\t\tnode = node.nextSibling;\n\t\t\t\t}\n\t\t\t\treturn buf.join('');\n\t\t\tdefault:\n\t\t\t\treturn node.nodeValue;\n\t\t\t}\n\t\t}\n\n\t\t__set__ = function(object,key,value){\n\t\t\t//console.log(value)\n\t\t\tobject['$$'+key] = value\n\t\t}\n\t}\n}catch(e){//ie8\n}\n\n//if(typeof require == 'function'){\n\texports.DocumentType = DocumentType;\n\texports.DOMException = DOMException;\n\texports.DOMImplementation = DOMImplementation;\n\texports.Element = Element;\n\texports.Node = Node;\n\texports.NodeList = NodeList;\n\texports.XMLSerializer = XMLSerializer;\n//}\n","'use strict';\n\nvar freeze = require('./conventions').freeze;\n\n/**\n * The entities that are predefined in every XML document.\n *\n * @see https://www.w3.org/TR/2006/REC-xml11-20060816/#sec-predefined-ent W3C XML 1.1\n * @see https://www.w3.org/TR/2008/REC-xml-20081126/#sec-predefined-ent W3C XML 1.0\n * @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Predefined_entities_in_XML Wikipedia\n */\nexports.XML_ENTITIES = freeze({\n\tamp: '&',\n\tapos: \"'\",\n\tgt: '>',\n\tlt: '<',\n\tquot: '\"',\n});\n\n/**\n * A map of all entities that are detected in an HTML document.\n * They contain all entries from `XML_ENTITIES`.\n *\n * @see XML_ENTITIES\n * @see DOMParser.parseFromString\n * @see DOMImplementation.prototype.createHTMLDocument\n * @see https://html.spec.whatwg.org/#named-character-references WHATWG HTML(5) Spec\n * @see https://html.spec.whatwg.org/entities.json JSON\n * @see https://www.w3.org/TR/xml-entity-names/ W3C XML Entity Names\n * @see https://www.w3.org/TR/html4/sgml/entities.html W3C HTML4/SGML\n * @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Character_entity_references_in_HTML Wikipedia (HTML)\n * @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Entities_representing_special_characters_in_XHTML Wikpedia (XHTML)\n */\nexports.HTML_ENTITIES = freeze({\n\tAacute: '\\u00C1',\n\taacute: '\\u00E1',\n\tAbreve: '\\u0102',\n\tabreve: '\\u0103',\n\tac: '\\u223E',\n\tacd: '\\u223F',\n\tacE: '\\u223E\\u0333',\n\tAcirc: '\\u00C2',\n\tacirc: '\\u00E2',\n\tacute: '\\u00B4',\n\tAcy: '\\u0410',\n\tacy: '\\u0430',\n\tAElig: '\\u00C6',\n\taelig: '\\u00E6',\n\taf: '\\u2061',\n\tAfr: '\\uD835\\uDD04',\n\tafr: '\\uD835\\uDD1E',\n\tAgrave: '\\u00C0',\n\tagrave: '\\u00E0',\n\talefsym: '\\u2135',\n\taleph: '\\u2135',\n\tAlpha: '\\u0391',\n\talpha: '\\u03B1',\n\tAmacr: '\\u0100',\n\tamacr: '\\u0101',\n\tamalg: '\\u2A3F',\n\tAMP: '\\u0026',\n\tamp: '\\u0026',\n\tAnd: '\\u2A53',\n\tand: '\\u2227',\n\tandand: '\\u2A55',\n\tandd: '\\u2A5C',\n\tandslope: '\\u2A58',\n\tandv: '\\u2A5A',\n\tang: '\\u2220',\n\tange: '\\u29A4',\n\tangle: '\\u2220',\n\tangmsd: '\\u2221',\n\tangmsdaa: '\\u29A8',\n\tangmsdab: '\\u29A9',\n\tangmsdac: '\\u29AA',\n\tangmsdad: '\\u29AB',\n\tangmsdae: '\\u29AC',\n\tangmsdaf: '\\u29AD',\n\tangmsdag: '\\u29AE',\n\tangmsdah: '\\u29AF',\n\tangrt: '\\u221F',\n\tangrtvb: '\\u22BE',\n\tangrtvbd: '\\u299D',\n\tangsph: '\\u2222',\n\tangst: '\\u00C5',\n\tangzarr: '\\u237C',\n\tAogon: '\\u0104',\n\taogon: '\\u0105',\n\tAopf: '\\uD835\\uDD38',\n\taopf: '\\uD835\\uDD52',\n\tap: '\\u2248',\n\tapacir: '\\u2A6F',\n\tapE: '\\u2A70',\n\tape: '\\u224A',\n\tapid: '\\u224B',\n\tapos: '\\u0027',\n\tApplyFunction: '\\u2061',\n\tapprox: '\\u2248',\n\tapproxeq: '\\u224A',\n\tAring: '\\u00C5',\n\taring: '\\u00E5',\n\tAscr: '\\uD835\\uDC9C',\n\tascr: '\\uD835\\uDCB6',\n\tAssign: '\\u2254',\n\tast: '\\u002A',\n\tasymp: '\\u2248',\n\tasympeq: '\\u224D',\n\tAtilde: '\\u00C3',\n\tatilde: '\\u00E3',\n\tAuml: '\\u00C4',\n\tauml: '\\u00E4',\n\tawconint: '\\u2233',\n\tawint: '\\u2A11',\n\tbackcong: '\\u224C',\n\tbackepsilon: '\\u03F6',\n\tbackprime: '\\u2035',\n\tbacksim: '\\u223D',\n\tbacksimeq: '\\u22CD',\n\tBackslash: '\\u2216',\n\tBarv: '\\u2AE7',\n\tbarvee: '\\u22BD',\n\tBarwed: '\\u2306',\n\tbarwed: '\\u2305',\n\tbarwedge: '\\u2305',\n\tbbrk: '\\u23B5',\n\tbbrktbrk: '\\u23B6',\n\tbcong: '\\u224C',\n\tBcy: '\\u0411',\n\tbcy: '\\u0431',\n\tbdquo: '\\u201E',\n\tbecaus: '\\u2235',\n\tBecause: '\\u2235',\n\tbecause: '\\u2235',\n\tbemptyv: '\\u29B0',\n\tbepsi: '\\u03F6',\n\tbernou: '\\u212C',\n\tBernoullis: '\\u212C',\n\tBeta: '\\u0392',\n\tbeta: '\\u03B2',\n\tbeth: '\\u2136',\n\tbetween: '\\u226C',\n\tBfr: '\\uD835\\uDD05',\n\tbfr: '\\uD835\\uDD1F',\n\tbigcap: '\\u22C2',\n\tbigcirc: '\\u25EF',\n\tbigcup: '\\u22C3',\n\tbigodot: '\\u2A00',\n\tbigoplus: '\\u2A01',\n\tbigotimes: '\\u2A02',\n\tbigsqcup: '\\u2A06',\n\tbigstar: '\\u2605',\n\tbigtriangledown: '\\u25BD',\n\tbigtriangleup: '\\u25B3',\n\tbiguplus: '\\u2A04',\n\tbigvee: '\\u22C1',\n\tbigwedge: '\\u22C0',\n\tbkarow: '\\u290D',\n\tblacklozenge: '\\u29EB',\n\tblacksquare: '\\u25AA',\n\tblacktriangle: '\\u25B4',\n\tblacktriangledown: '\\u25BE',\n\tblacktriangleleft: '\\u25C2',\n\tblacktriangleright: '\\u25B8',\n\tblank: '\\u2423',\n\tblk12: '\\u2592',\n\tblk14: '\\u2591',\n\tblk34: '\\u2593',\n\tblock: '\\u2588',\n\tbne: '\\u003D\\u20E5',\n\tbnequiv: '\\u2261\\u20E5',\n\tbNot: '\\u2AED',\n\tbnot: '\\u2310',\n\tBopf: '\\uD835\\uDD39',\n\tbopf: '\\uD835\\uDD53',\n\tbot: '\\u22A5',\n\tbottom: '\\u22A5',\n\tbowtie: '\\u22C8',\n\tboxbox: '\\u29C9',\n\tboxDL: '\\u2557',\n\tboxDl: '\\u2556',\n\tboxdL: '\\u2555',\n\tboxdl: '\\u2510',\n\tboxDR: '\\u2554',\n\tboxDr: '\\u2553',\n\tboxdR: '\\u2552',\n\tboxdr: '\\u250C',\n\tboxH: '\\u2550',\n\tboxh: '\\u2500',\n\tboxHD: '\\u2566',\n\tboxHd: '\\u2564',\n\tboxhD: '\\u2565',\n\tboxhd: '\\u252C',\n\tboxHU: '\\u2569',\n\tboxHu: '\\u2567',\n\tboxhU: '\\u2568',\n\tboxhu: '\\u2534',\n\tboxminus: '\\u229F',\n\tboxplus: '\\u229E',\n\tboxtimes: '\\u22A0',\n\tboxUL: '\\u255D',\n\tboxUl: '\\u255C',\n\tboxuL: '\\u255B',\n\tboxul: '\\u2518',\n\tboxUR: '\\u255A',\n\tboxUr: '\\u2559',\n\tboxuR: '\\u2558',\n\tboxur: '\\u2514',\n\tboxV: '\\u2551',\n\tboxv: '\\u2502',\n\tboxVH: '\\u256C',\n\tboxVh: '\\u256B',\n\tboxvH: '\\u256A',\n\tboxvh: '\\u253C',\n\tboxVL: '\\u2563',\n\tboxVl: '\\u2562',\n\tboxvL: '\\u2561',\n\tboxvl: '\\u2524',\n\tboxVR: '\\u2560',\n\tboxVr: '\\u255F',\n\tboxvR: '\\u255E',\n\tboxvr: '\\u251C',\n\tbprime: '\\u2035',\n\tBreve: '\\u02D8',\n\tbreve: '\\u02D8',\n\tbrvbar: '\\u00A6',\n\tBscr: '\\u212C',\n\tbscr: '\\uD835\\uDCB7',\n\tbsemi: '\\u204F',\n\tbsim: '\\u223D',\n\tbsime: '\\u22CD',\n\tbsol: '\\u005C',\n\tbsolb: '\\u29C5',\n\tbsolhsub: '\\u27C8',\n\tbull: '\\u2022',\n\tbullet: '\\u2022',\n\tbump: '\\u224E',\n\tbumpE: '\\u2AAE',\n\tbumpe: '\\u224F',\n\tBumpeq: '\\u224E',\n\tbumpeq: '\\u224F',\n\tCacute: '\\u0106',\n\tcacute: '\\u0107',\n\tCap: '\\u22D2',\n\tcap: '\\u2229',\n\tcapand: '\\u2A44',\n\tcapbrcup: '\\u2A49',\n\tcapcap: '\\u2A4B',\n\tcapcup: '\\u2A47',\n\tcapdot: '\\u2A40',\n\tCapitalDifferentialD: '\\u2145',\n\tcaps: '\\u2229\\uFE00',\n\tcaret: '\\u2041',\n\tcaron: '\\u02C7',\n\tCayleys: '\\u212D',\n\tccaps: '\\u2A4D',\n\tCcaron: '\\u010C',\n\tccaron: '\\u010D',\n\tCcedil: '\\u00C7',\n\tccedil: '\\u00E7',\n\tCcirc: '\\u0108',\n\tccirc: '\\u0109',\n\tCconint: '\\u2230',\n\tccups: '\\u2A4C',\n\tccupssm: '\\u2A50',\n\tCdot: '\\u010A',\n\tcdot: '\\u010B',\n\tcedil: '\\u00B8',\n\tCedilla: '\\u00B8',\n\tcemptyv: '\\u29B2',\n\tcent: '\\u00A2',\n\tCenterDot: '\\u00B7',\n\tcenterdot: '\\u00B7',\n\tCfr: '\\u212D',\n\tcfr: '\\uD835\\uDD20',\n\tCHcy: '\\u0427',\n\tchcy: '\\u0447',\n\tcheck: '\\u2713',\n\tcheckmark: '\\u2713',\n\tChi: '\\u03A7',\n\tchi: '\\u03C7',\n\tcir: '\\u25CB',\n\tcirc: '\\u02C6',\n\tcirceq: '\\u2257',\n\tcirclearrowleft: '\\u21BA',\n\tcirclearrowright: '\\u21BB',\n\tcircledast: '\\u229B',\n\tcircledcirc: '\\u229A',\n\tcircleddash: '\\u229D',\n\tCircleDot: '\\u2299',\n\tcircledR: '\\u00AE',\n\tcircledS: '\\u24C8',\n\tCircleMinus: '\\u2296',\n\tCirclePlus: '\\u2295',\n\tCircleTimes: '\\u2297',\n\tcirE: '\\u29C3',\n\tcire: '\\u2257',\n\tcirfnint: '\\u2A10',\n\tcirmid: '\\u2AEF',\n\tcirscir: '\\u29C2',\n\tClockwiseContourIntegral: '\\u2232',\n\tCloseCurlyDoubleQuote: '\\u201D',\n\tCloseCurlyQuote: '\\u2019',\n\tclubs: '\\u2663',\n\tclubsuit: '\\u2663',\n\tColon: '\\u2237',\n\tcolon: '\\u003A',\n\tColone: '\\u2A74',\n\tcolone: '\\u2254',\n\tcoloneq: '\\u2254',\n\tcomma: '\\u002C',\n\tcommat: '\\u0040',\n\tcomp: '\\u2201',\n\tcompfn: '\\u2218',\n\tcomplement: '\\u2201',\n\tcomplexes: '\\u2102',\n\tcong: '\\u2245',\n\tcongdot: '\\u2A6D',\n\tCongruent: '\\u2261',\n\tConint: '\\u222F',\n\tconint: '\\u222E',\n\tContourIntegral: '\\u222E',\n\tCopf: '\\u2102',\n\tcopf: '\\uD835\\uDD54',\n\tcoprod: '\\u2210',\n\tCoproduct: '\\u2210',\n\tCOPY: '\\u00A9',\n\tcopy: '\\u00A9',\n\tcopysr: '\\u2117',\n\tCounterClockwiseContourIntegral: '\\u2233',\n\tcrarr: '\\u21B5',\n\tCross: '\\u2A2F',\n\tcross: '\\u2717',\n\tCscr: '\\uD835\\uDC9E',\n\tcscr: '\\uD835\\uDCB8',\n\tcsub: '\\u2ACF',\n\tcsube: '\\u2AD1',\n\tcsup: '\\u2AD0',\n\tcsupe: '\\u2AD2',\n\tctdot: '\\u22EF',\n\tcudarrl: '\\u2938',\n\tcudarrr: '\\u2935',\n\tcuepr: '\\u22DE',\n\tcuesc: '\\u22DF',\n\tcularr: '\\u21B6',\n\tcularrp: '\\u293D',\n\tCup: '\\u22D3',\n\tcup: '\\u222A',\n\tcupbrcap: '\\u2A48',\n\tCupCap: '\\u224D',\n\tcupcap: '\\u2A46',\n\tcupcup: '\\u2A4A',\n\tcupdot: '\\u228D',\n\tcupor: '\\u2A45',\n\tcups: '\\u222A\\uFE00',\n\tcurarr: '\\u21B7',\n\tcurarrm: '\\u293C',\n\tcurlyeqprec: '\\u22DE',\n\tcurlyeqsucc: '\\u22DF',\n\tcurlyvee: '\\u22CE',\n\tcurlywedge: '\\u22CF',\n\tcurren: '\\u00A4',\n\tcurvearrowleft: '\\u21B6',\n\tcurvearrowright: '\\u21B7',\n\tcuvee: '\\u22CE',\n\tcuwed: '\\u22CF',\n\tcwconint: '\\u2232',\n\tcwint: '\\u2231',\n\tcylcty: '\\u232D',\n\tDagger: '\\u2021',\n\tdagger: '\\u2020',\n\tdaleth: '\\u2138',\n\tDarr: '\\u21A1',\n\tdArr: '\\u21D3',\n\tdarr: '\\u2193',\n\tdash: '\\u2010',\n\tDashv: '\\u2AE4',\n\tdashv: '\\u22A3',\n\tdbkarow: '\\u290F',\n\tdblac: '\\u02DD',\n\tDcaron: '\\u010E',\n\tdcaron: '\\u010F',\n\tDcy: '\\u0414',\n\tdcy: '\\u0434',\n\tDD: '\\u2145',\n\tdd: '\\u2146',\n\tddagger: '\\u2021',\n\tddarr: '\\u21CA',\n\tDDotrahd: '\\u2911',\n\tddotseq: '\\u2A77',\n\tdeg: '\\u00B0',\n\tDel: '\\u2207',\n\tDelta: '\\u0394',\n\tdelta: '\\u03B4',\n\tdemptyv: '\\u29B1',\n\tdfisht: '\\u297F',\n\tDfr: '\\uD835\\uDD07',\n\tdfr: '\\uD835\\uDD21',\n\tdHar: '\\u2965',\n\tdharl: '\\u21C3',\n\tdharr: '\\u21C2',\n\tDiacriticalAcute: '\\u00B4',\n\tDiacriticalDot: '\\u02D9',\n\tDiacriticalDoubleAcute: '\\u02DD',\n\tDiacriticalGrave: '\\u0060',\n\tDiacriticalTilde: '\\u02DC',\n\tdiam: '\\u22C4',\n\tDiamond: '\\u22C4',\n\tdiamond: '\\u22C4',\n\tdiamondsuit: '\\u2666',\n\tdiams: '\\u2666',\n\tdie: '\\u00A8',\n\tDifferentialD: '\\u2146',\n\tdigamma: '\\u03DD',\n\tdisin: '\\u22F2',\n\tdiv: '\\u00F7',\n\tdivide: '\\u00F7',\n\tdivideontimes: '\\u22C7',\n\tdivonx: '\\u22C7',\n\tDJcy: '\\u0402',\n\tdjcy: '\\u0452',\n\tdlcorn: '\\u231E',\n\tdlcrop: '\\u230D',\n\tdollar: '\\u0024',\n\tDopf: '\\uD835\\uDD3B',\n\tdopf: '\\uD835\\uDD55',\n\tDot: '\\u00A8',\n\tdot: '\\u02D9',\n\tDotDot: '\\u20DC',\n\tdoteq: '\\u2250',\n\tdoteqdot: '\\u2251',\n\tDotEqual: '\\u2250',\n\tdotminus: '\\u2238',\n\tdotplus: '\\u2214',\n\tdotsquare: '\\u22A1',\n\tdoublebarwedge: '\\u2306',\n\tDoubleContourIntegral: '\\u222F',\n\tDoubleDot: '\\u00A8',\n\tDoubleDownArrow: '\\u21D3',\n\tDoubleLeftArrow: '\\u21D0',\n\tDoubleLeftRightArrow: '\\u21D4',\n\tDoubleLeftTee: '\\u2AE4',\n\tDoubleLongLeftArrow: '\\u27F8',\n\tDoubleLongLeftRightArrow: '\\u27FA',\n\tDoubleLongRightArrow: '\\u27F9',\n\tDoubleRightArrow: '\\u21D2',\n\tDoubleRightTee: '\\u22A8',\n\tDoubleUpArrow: '\\u21D1',\n\tDoubleUpDownArrow: '\\u21D5',\n\tDoubleVerticalBar: '\\u2225',\n\tDownArrow: '\\u2193',\n\tDownarrow: '\\u21D3',\n\tdownarrow: '\\u2193',\n\tDownArrowBar: '\\u2913',\n\tDownArrowUpArrow: '\\u21F5',\n\tDownBreve: '\\u0311',\n\tdowndownarrows: '\\u21CA',\n\tdownharpoonleft: '\\u21C3',\n\tdownharpoonright: '\\u21C2',\n\tDownLeftRightVector: '\\u2950',\n\tDownLeftTeeVector: '\\u295E',\n\tDownLeftVector: '\\u21BD',\n\tDownLeftVectorBar: '\\u2956',\n\tDownRightTeeVector: '\\u295F',\n\tDownRightVector: '\\u21C1',\n\tDownRightVectorBar: '\\u2957',\n\tDownTee: '\\u22A4',\n\tDownTeeArrow: '\\u21A7',\n\tdrbkarow: '\\u2910',\n\tdrcorn: '\\u231F',\n\tdrcrop: '\\u230C',\n\tDscr: '\\uD835\\uDC9F',\n\tdscr: '\\uD835\\uDCB9',\n\tDScy: '\\u0405',\n\tdscy: '\\u0455',\n\tdsol: '\\u29F6',\n\tDstrok: '\\u0110',\n\tdstrok: '\\u0111',\n\tdtdot: '\\u22F1',\n\tdtri: '\\u25BF',\n\tdtrif: '\\u25BE',\n\tduarr: '\\u21F5',\n\tduhar: '\\u296F',\n\tdwangle: '\\u29A6',\n\tDZcy: '\\u040F',\n\tdzcy: '\\u045F',\n\tdzigrarr: '\\u27FF',\n\tEacute: '\\u00C9',\n\teacute: '\\u00E9',\n\teaster: '\\u2A6E',\n\tEcaron: '\\u011A',\n\tecaron: '\\u011B',\n\tecir: '\\u2256',\n\tEcirc: '\\u00CA',\n\tecirc: '\\u00EA',\n\tecolon: '\\u2255',\n\tEcy: '\\u042D',\n\tecy: '\\u044D',\n\teDDot: '\\u2A77',\n\tEdot: '\\u0116',\n\teDot: '\\u2251',\n\tedot: '\\u0117',\n\tee: '\\u2147',\n\tefDot: '\\u2252',\n\tEfr: '\\uD835\\uDD08',\n\tefr: '\\uD835\\uDD22',\n\teg: '\\u2A9A',\n\tEgrave: '\\u00C8',\n\tegrave: '\\u00E8',\n\tegs: '\\u2A96',\n\tegsdot: '\\u2A98',\n\tel: '\\u2A99',\n\tElement: '\\u2208',\n\telinters: '\\u23E7',\n\tell: '\\u2113',\n\tels: '\\u2A95',\n\telsdot: '\\u2A97',\n\tEmacr: '\\u0112',\n\temacr: '\\u0113',\n\tempty: '\\u2205',\n\temptyset: '\\u2205',\n\tEmptySmallSquare: '\\u25FB',\n\temptyv: '\\u2205',\n\tEmptyVerySmallSquare: '\\u25AB',\n\temsp: '\\u2003',\n\temsp13: '\\u2004',\n\temsp14: '\\u2005',\n\tENG: '\\u014A',\n\teng: '\\u014B',\n\tensp: '\\u2002',\n\tEogon: '\\u0118',\n\teogon: '\\u0119',\n\tEopf: '\\uD835\\uDD3C',\n\teopf: '\\uD835\\uDD56',\n\tepar: '\\u22D5',\n\teparsl: '\\u29E3',\n\teplus: '\\u2A71',\n\tepsi: '\\u03B5',\n\tEpsilon: '\\u0395',\n\tepsilon: '\\u03B5',\n\tepsiv: '\\u03F5',\n\teqcirc: '\\u2256',\n\teqcolon: '\\u2255',\n\teqsim: '\\u2242',\n\teqslantgtr: '\\u2A96',\n\teqslantless: '\\u2A95',\n\tEqual: '\\u2A75',\n\tequals: '\\u003D',\n\tEqualTilde: '\\u2242',\n\tequest: '\\u225F',\n\tEquilibrium: '\\u21CC',\n\tequiv: '\\u2261',\n\tequivDD: '\\u2A78',\n\teqvparsl: '\\u29E5',\n\terarr: '\\u2971',\n\terDot: '\\u2253',\n\tEscr: '\\u2130',\n\tescr: '\\u212F',\n\tesdot: '\\u2250',\n\tEsim: '\\u2A73',\n\tesim: '\\u2242',\n\tEta: '\\u0397',\n\teta: '\\u03B7',\n\tETH: '\\u00D0',\n\teth: '\\u00F0',\n\tEuml: '\\u00CB',\n\teuml: '\\u00EB',\n\teuro: '\\u20AC',\n\texcl: '\\u0021',\n\texist: '\\u2203',\n\tExists: '\\u2203',\n\texpectation: '\\u2130',\n\tExponentialE: '\\u2147',\n\texponentiale: '\\u2147',\n\tfallingdotseq: '\\u2252',\n\tFcy: '\\u0424',\n\tfcy: '\\u0444',\n\tfemale: '\\u2640',\n\tffilig: '\\uFB03',\n\tfflig: '\\uFB00',\n\tffllig: '\\uFB04',\n\tFfr: '\\uD835\\uDD09',\n\tffr: '\\uD835\\uDD23',\n\tfilig: '\\uFB01',\n\tFilledSmallSquare: '\\u25FC',\n\tFilledVerySmallSquare: '\\u25AA',\n\tfjlig: '\\u0066\\u006A',\n\tflat: '\\u266D',\n\tfllig: '\\uFB02',\n\tfltns: '\\u25B1',\n\tfnof: '\\u0192',\n\tFopf: '\\uD835\\uDD3D',\n\tfopf: '\\uD835\\uDD57',\n\tForAll: '\\u2200',\n\tforall: '\\u2200',\n\tfork: '\\u22D4',\n\tforkv: '\\u2AD9',\n\tFouriertrf: '\\u2131',\n\tfpartint: '\\u2A0D',\n\tfrac12: '\\u00BD',\n\tfrac13: '\\u2153',\n\tfrac14: '\\u00BC',\n\tfrac15: '\\u2155',\n\tfrac16: '\\u2159',\n\tfrac18: '\\u215B',\n\tfrac23: '\\u2154',\n\tfrac25: '\\u2156',\n\tfrac34: '\\u00BE',\n\tfrac35: '\\u2157',\n\tfrac38: '\\u215C',\n\tfrac45: '\\u2158',\n\tfrac56: '\\u215A',\n\tfrac58: '\\u215D',\n\tfrac78: '\\u215E',\n\tfrasl: '\\u2044',\n\tfrown: '\\u2322',\n\tFscr: '\\u2131',\n\tfscr: '\\uD835\\uDCBB',\n\tgacute: '\\u01F5',\n\tGamma: '\\u0393',\n\tgamma: '\\u03B3',\n\tGammad: '\\u03DC',\n\tgammad: '\\u03DD',\n\tgap: '\\u2A86',\n\tGbreve: '\\u011E',\n\tgbreve: '\\u011F',\n\tGcedil: '\\u0122',\n\tGcirc: '\\u011C',\n\tgcirc: '\\u011D',\n\tGcy: '\\u0413',\n\tgcy: '\\u0433',\n\tGdot: '\\u0120',\n\tgdot: '\\u0121',\n\tgE: '\\u2267',\n\tge: '\\u2265',\n\tgEl: '\\u2A8C',\n\tgel: '\\u22DB',\n\tgeq: '\\u2265',\n\tgeqq: '\\u2267',\n\tgeqslant: '\\u2A7E',\n\tges: '\\u2A7E',\n\tgescc: '\\u2AA9',\n\tgesdot: '\\u2A80',\n\tgesdoto: '\\u2A82',\n\tgesdotol: '\\u2A84',\n\tgesl: '\\u22DB\\uFE00',\n\tgesles: '\\u2A94',\n\tGfr: '\\uD835\\uDD0A',\n\tgfr: '\\uD835\\uDD24',\n\tGg: '\\u22D9',\n\tgg: '\\u226B',\n\tggg: '\\u22D9',\n\tgimel: '\\u2137',\n\tGJcy: '\\u0403',\n\tgjcy: '\\u0453',\n\tgl: '\\u2277',\n\tgla: '\\u2AA5',\n\tglE: '\\u2A92',\n\tglj: '\\u2AA4',\n\tgnap: '\\u2A8A',\n\tgnapprox: '\\u2A8A',\n\tgnE: '\\u2269',\n\tgne: '\\u2A88',\n\tgneq: '\\u2A88',\n\tgneqq: '\\u2269',\n\tgnsim: '\\u22E7',\n\tGopf: '\\uD835\\uDD3E',\n\tgopf: '\\uD835\\uDD58',\n\tgrave: '\\u0060',\n\tGreaterEqual: '\\u2265',\n\tGreaterEqualLess: '\\u22DB',\n\tGreaterFullEqual: '\\u2267',\n\tGreaterGreater: '\\u2AA2',\n\tGreaterLess: '\\u2277',\n\tGreaterSlantEqual: '\\u2A7E',\n\tGreaterTilde: '\\u2273',\n\tGscr: '\\uD835\\uDCA2',\n\tgscr: '\\u210A',\n\tgsim: '\\u2273',\n\tgsime: '\\u2A8E',\n\tgsiml: '\\u2A90',\n\tGt: '\\u226B',\n\tGT: '\\u003E',\n\tgt: '\\u003E',\n\tgtcc: '\\u2AA7',\n\tgtcir: '\\u2A7A',\n\tgtdot: '\\u22D7',\n\tgtlPar: '\\u2995',\n\tgtquest: '\\u2A7C',\n\tgtrapprox: '\\u2A86',\n\tgtrarr: '\\u2978',\n\tgtrdot: '\\u22D7',\n\tgtreqless: '\\u22DB',\n\tgtreqqless: '\\u2A8C',\n\tgtrless: '\\u2277',\n\tgtrsim: '\\u2273',\n\tgvertneqq: '\\u2269\\uFE00',\n\tgvnE: '\\u2269\\uFE00',\n\tHacek: '\\u02C7',\n\thairsp: '\\u200A',\n\thalf: '\\u00BD',\n\thamilt: '\\u210B',\n\tHARDcy: '\\u042A',\n\thardcy: '\\u044A',\n\thArr: '\\u21D4',\n\tharr: '\\u2194',\n\tharrcir: '\\u2948',\n\tharrw: '\\u21AD',\n\tHat: '\\u005E',\n\thbar: '\\u210F',\n\tHcirc: '\\u0124',\n\thcirc: '\\u0125',\n\thearts: '\\u2665',\n\theartsuit: '\\u2665',\n\thellip: '\\u2026',\n\thercon: '\\u22B9',\n\tHfr: '\\u210C',\n\thfr: '\\uD835\\uDD25',\n\tHilbertSpace: '\\u210B',\n\thksearow: '\\u2925',\n\thkswarow: '\\u2926',\n\thoarr: '\\u21FF',\n\thomtht: '\\u223B',\n\thookleftarrow: '\\u21A9',\n\thookrightarrow: '\\u21AA',\n\tHopf: '\\u210D',\n\thopf: '\\uD835\\uDD59',\n\thorbar: '\\u2015',\n\tHorizontalLine: '\\u2500',\n\tHscr: '\\u210B',\n\thscr: '\\uD835\\uDCBD',\n\thslash: '\\u210F',\n\tHstrok: '\\u0126',\n\thstrok: '\\u0127',\n\tHumpDownHump: '\\u224E',\n\tHumpEqual: '\\u224F',\n\thybull: '\\u2043',\n\thyphen: '\\u2010',\n\tIacute: '\\u00CD',\n\tiacute: '\\u00ED',\n\tic: '\\u2063',\n\tIcirc: '\\u00CE',\n\ticirc: '\\u00EE',\n\tIcy: '\\u0418',\n\ticy: '\\u0438',\n\tIdot: '\\u0130',\n\tIEcy: '\\u0415',\n\tiecy: '\\u0435',\n\tiexcl: '\\u00A1',\n\tiff: '\\u21D4',\n\tIfr: '\\u2111',\n\tifr: '\\uD835\\uDD26',\n\tIgrave: '\\u00CC',\n\tigrave: '\\u00EC',\n\tii: '\\u2148',\n\tiiiint: '\\u2A0C',\n\tiiint: '\\u222D',\n\tiinfin: '\\u29DC',\n\tiiota: '\\u2129',\n\tIJlig: '\\u0132',\n\tijlig: '\\u0133',\n\tIm: '\\u2111',\n\tImacr: '\\u012A',\n\timacr: '\\u012B',\n\timage: '\\u2111',\n\tImaginaryI: '\\u2148',\n\timagline: '\\u2110',\n\timagpart: '\\u2111',\n\timath: '\\u0131',\n\timof: '\\u22B7',\n\timped: '\\u01B5',\n\tImplies: '\\u21D2',\n\tin: '\\u2208',\n\tincare: '\\u2105',\n\tinfin: '\\u221E',\n\tinfintie: '\\u29DD',\n\tinodot: '\\u0131',\n\tInt: '\\u222C',\n\tint: '\\u222B',\n\tintcal: '\\u22BA',\n\tintegers: '\\u2124',\n\tIntegral: '\\u222B',\n\tintercal: '\\u22BA',\n\tIntersection: '\\u22C2',\n\tintlarhk: '\\u2A17',\n\tintprod: '\\u2A3C',\n\tInvisibleComma: '\\u2063',\n\tInvisibleTimes: '\\u2062',\n\tIOcy: '\\u0401',\n\tiocy: '\\u0451',\n\tIogon: '\\u012E',\n\tiogon: '\\u012F',\n\tIopf: '\\uD835\\uDD40',\n\tiopf: '\\uD835\\uDD5A',\n\tIota: '\\u0399',\n\tiota: '\\u03B9',\n\tiprod: '\\u2A3C',\n\tiquest: '\\u00BF',\n\tIscr: '\\u2110',\n\tiscr: '\\uD835\\uDCBE',\n\tisin: '\\u2208',\n\tisindot: '\\u22F5',\n\tisinE: '\\u22F9',\n\tisins: '\\u22F4',\n\tisinsv: '\\u22F3',\n\tisinv: '\\u2208',\n\tit: '\\u2062',\n\tItilde: '\\u0128',\n\titilde: '\\u0129',\n\tIukcy: '\\u0406',\n\tiukcy: '\\u0456',\n\tIuml: '\\u00CF',\n\tiuml: '\\u00EF',\n\tJcirc: '\\u0134',\n\tjcirc: '\\u0135',\n\tJcy: '\\u0419',\n\tjcy: '\\u0439',\n\tJfr: '\\uD835\\uDD0D',\n\tjfr: '\\uD835\\uDD27',\n\tjmath: '\\u0237',\n\tJopf: '\\uD835\\uDD41',\n\tjopf: '\\uD835\\uDD5B',\n\tJscr: '\\uD835\\uDCA5',\n\tjscr: '\\uD835\\uDCBF',\n\tJsercy: '\\u0408',\n\tjsercy: '\\u0458',\n\tJukcy: '\\u0404',\n\tjukcy: '\\u0454',\n\tKappa: '\\u039A',\n\tkappa: '\\u03BA',\n\tkappav: '\\u03F0',\n\tKcedil: '\\u0136',\n\tkcedil: '\\u0137',\n\tKcy: '\\u041A',\n\tkcy: '\\u043A',\n\tKfr: '\\uD835\\uDD0E',\n\tkfr: '\\uD835\\uDD28',\n\tkgreen: '\\u0138',\n\tKHcy: '\\u0425',\n\tkhcy: '\\u0445',\n\tKJcy: '\\u040C',\n\tkjcy: '\\u045C',\n\tKopf: '\\uD835\\uDD42',\n\tkopf: '\\uD835\\uDD5C',\n\tKscr: '\\uD835\\uDCA6',\n\tkscr: '\\uD835\\uDCC0',\n\tlAarr: '\\u21DA',\n\tLacute: '\\u0139',\n\tlacute: '\\u013A',\n\tlaemptyv: '\\u29B4',\n\tlagran: '\\u2112',\n\tLambda: '\\u039B',\n\tlambda: '\\u03BB',\n\tLang: '\\u27EA',\n\tlang: '\\u27E8',\n\tlangd: '\\u2991',\n\tlangle: '\\u27E8',\n\tlap: '\\u2A85',\n\tLaplacetrf: '\\u2112',\n\tlaquo: '\\u00AB',\n\tLarr: '\\u219E',\n\tlArr: '\\u21D0',\n\tlarr: '\\u2190',\n\tlarrb: '\\u21E4',\n\tlarrbfs: '\\u291F',\n\tlarrfs: '\\u291D',\n\tlarrhk: '\\u21A9',\n\tlarrlp: '\\u21AB',\n\tlarrpl: '\\u2939',\n\tlarrsim: '\\u2973',\n\tlarrtl: '\\u21A2',\n\tlat: '\\u2AAB',\n\tlAtail: '\\u291B',\n\tlatail: '\\u2919',\n\tlate: '\\u2AAD',\n\tlates: '\\u2AAD\\uFE00',\n\tlBarr: '\\u290E',\n\tlbarr: '\\u290C',\n\tlbbrk: '\\u2772',\n\tlbrace: '\\u007B',\n\tlbrack: '\\u005B',\n\tlbrke: '\\u298B',\n\tlbrksld: '\\u298F',\n\tlbrkslu: '\\u298D',\n\tLcaron: '\\u013D',\n\tlcaron: '\\u013E',\n\tLcedil: '\\u013B',\n\tlcedil: '\\u013C',\n\tlceil: '\\u2308',\n\tlcub: '\\u007B',\n\tLcy: '\\u041B',\n\tlcy: '\\u043B',\n\tldca: '\\u2936',\n\tldquo: '\\u201C',\n\tldquor: '\\u201E',\n\tldrdhar: '\\u2967',\n\tldrushar: '\\u294B',\n\tldsh: '\\u21B2',\n\tlE: '\\u2266',\n\tle: '\\u2264',\n\tLeftAngleBracket: '\\u27E8',\n\tLeftArrow: '\\u2190',\n\tLeftarrow: '\\u21D0',\n\tleftarrow: '\\u2190',\n\tLeftArrowBar: '\\u21E4',\n\tLeftArrowRightArrow: '\\u21C6',\n\tleftarrowtail: '\\u21A2',\n\tLeftCeiling: '\\u2308',\n\tLeftDoubleBracket: '\\u27E6',\n\tLeftDownTeeVector: '\\u2961',\n\tLeftDownVector: '\\u21C3',\n\tLeftDownVectorBar: '\\u2959',\n\tLeftFloor: '\\u230A',\n\tleftharpoondown: '\\u21BD',\n\tleftharpoonup: '\\u21BC',\n\tleftleftarrows: '\\u21C7',\n\tLeftRightArrow: '\\u2194',\n\tLeftrightarrow: '\\u21D4',\n\tleftrightarrow: '\\u2194',\n\tleftrightarrows: '\\u21C6',\n\tleftrightharpoons: '\\u21CB',\n\tleftrightsquigarrow: '\\u21AD',\n\tLeftRightVector: '\\u294E',\n\tLeftTee: '\\u22A3',\n\tLeftTeeArrow: '\\u21A4',\n\tLeftTeeVector: '\\u295A',\n\tleftthreetimes: '\\u22CB',\n\tLeftTriangle: '\\u22B2',\n\tLeftTriangleBar: '\\u29CF',\n\tLeftTriangleEqual: '\\u22B4',\n\tLeftUpDownVector: '\\u2951',\n\tLeftUpTeeVector: '\\u2960',\n\tLeftUpVector: '\\u21BF',\n\tLeftUpVectorBar: '\\u2958',\n\tLeftVector: '\\u21BC',\n\tLeftVectorBar: '\\u2952',\n\tlEg: '\\u2A8B',\n\tleg: '\\u22DA',\n\tleq: '\\u2264',\n\tleqq: '\\u2266',\n\tleqslant: '\\u2A7D',\n\tles: '\\u2A7D',\n\tlescc: '\\u2AA8',\n\tlesdot: '\\u2A7F',\n\tlesdoto: '\\u2A81',\n\tlesdotor: '\\u2A83',\n\tlesg: '\\u22DA\\uFE00',\n\tlesges: '\\u2A93',\n\tlessapprox: '\\u2A85',\n\tlessdot: '\\u22D6',\n\tlesseqgtr: '\\u22DA',\n\tlesseqqgtr: '\\u2A8B',\n\tLessEqualGreater: '\\u22DA',\n\tLessFullEqual: '\\u2266',\n\tLessGreater: '\\u2276',\n\tlessgtr: '\\u2276',\n\tLessLess: '\\u2AA1',\n\tlesssim: '\\u2272',\n\tLessSlantEqual: '\\u2A7D',\n\tLessTilde: '\\u2272',\n\tlfisht: '\\u297C',\n\tlfloor: '\\u230A',\n\tLfr: '\\uD835\\uDD0F',\n\tlfr: '\\uD835\\uDD29',\n\tlg: '\\u2276',\n\tlgE: '\\u2A91',\n\tlHar: '\\u2962',\n\tlhard: '\\u21BD',\n\tlharu: '\\u21BC',\n\tlharul: '\\u296A',\n\tlhblk: '\\u2584',\n\tLJcy: '\\u0409',\n\tljcy: '\\u0459',\n\tLl: '\\u22D8',\n\tll: '\\u226A',\n\tllarr: '\\u21C7',\n\tllcorner: '\\u231E',\n\tLleftarrow: '\\u21DA',\n\tllhard: '\\u296B',\n\tlltri: '\\u25FA',\n\tLmidot: '\\u013F',\n\tlmidot: '\\u0140',\n\tlmoust: '\\u23B0',\n\tlmoustache: '\\u23B0',\n\tlnap: '\\u2A89',\n\tlnapprox: '\\u2A89',\n\tlnE: '\\u2268',\n\tlne: '\\u2A87',\n\tlneq: '\\u2A87',\n\tlneqq: '\\u2268',\n\tlnsim: '\\u22E6',\n\tloang: '\\u27EC',\n\tloarr: '\\u21FD',\n\tlobrk: '\\u27E6',\n\tLongLeftArrow: '\\u27F5',\n\tLongleftarrow: '\\u27F8',\n\tlongleftarrow: '\\u27F5',\n\tLongLeftRightArrow: '\\u27F7',\n\tLongleftrightarrow: '\\u27FA',\n\tlongleftrightarrow: '\\u27F7',\n\tlongmapsto: '\\u27FC',\n\tLongRightArrow: '\\u27F6',\n\tLongrightarrow: '\\u27F9',\n\tlongrightarrow: '\\u27F6',\n\tlooparrowleft: '\\u21AB',\n\tlooparrowright: '\\u21AC',\n\tlopar: '\\u2985',\n\tLopf: '\\uD835\\uDD43',\n\tlopf: '\\uD835\\uDD5D',\n\tloplus: '\\u2A2D',\n\tlotimes: '\\u2A34',\n\tlowast: '\\u2217',\n\tlowbar: '\\u005F',\n\tLowerLeftArrow: '\\u2199',\n\tLowerRightArrow: '\\u2198',\n\tloz: '\\u25CA',\n\tlozenge: '\\u25CA',\n\tlozf: '\\u29EB',\n\tlpar: '\\u0028',\n\tlparlt: '\\u2993',\n\tlrarr: '\\u21C6',\n\tlrcorner: '\\u231F',\n\tlrhar: '\\u21CB',\n\tlrhard: '\\u296D',\n\tlrm: '\\u200E',\n\tlrtri: '\\u22BF',\n\tlsaquo: '\\u2039',\n\tLscr: '\\u2112',\n\tlscr: '\\uD835\\uDCC1',\n\tLsh: '\\u21B0',\n\tlsh: '\\u21B0',\n\tlsim: '\\u2272',\n\tlsime: '\\u2A8D',\n\tlsimg: '\\u2A8F',\n\tlsqb: '\\u005B',\n\tlsquo: '\\u2018',\n\tlsquor: '\\u201A',\n\tLstrok: '\\u0141',\n\tlstrok: '\\u0142',\n\tLt: '\\u226A',\n\tLT: '\\u003C',\n\tlt: '\\u003C',\n\tltcc: '\\u2AA6',\n\tltcir: '\\u2A79',\n\tltdot: '\\u22D6',\n\tlthree: '\\u22CB',\n\tltimes: '\\u22C9',\n\tltlarr: '\\u2976',\n\tltquest: '\\u2A7B',\n\tltri: '\\u25C3',\n\tltrie: '\\u22B4',\n\tltrif: '\\u25C2',\n\tltrPar: '\\u2996',\n\tlurdshar: '\\u294A',\n\tluruhar: '\\u2966',\n\tlvertneqq: '\\u2268\\uFE00',\n\tlvnE: '\\u2268\\uFE00',\n\tmacr: '\\u00AF',\n\tmale: '\\u2642',\n\tmalt: '\\u2720',\n\tmaltese: '\\u2720',\n\tMap: '\\u2905',\n\tmap: '\\u21A6',\n\tmapsto: '\\u21A6',\n\tmapstodown: '\\u21A7',\n\tmapstoleft: '\\u21A4',\n\tmapstoup: '\\u21A5',\n\tmarker: '\\u25AE',\n\tmcomma: '\\u2A29',\n\tMcy: '\\u041C',\n\tmcy: '\\u043C',\n\tmdash: '\\u2014',\n\tmDDot: '\\u223A',\n\tmeasuredangle: '\\u2221',\n\tMediumSpace: '\\u205F',\n\tMellintrf: '\\u2133',\n\tMfr: '\\uD835\\uDD10',\n\tmfr: '\\uD835\\uDD2A',\n\tmho: '\\u2127',\n\tmicro: '\\u00B5',\n\tmid: '\\u2223',\n\tmidast: '\\u002A',\n\tmidcir: '\\u2AF0',\n\tmiddot: '\\u00B7',\n\tminus: '\\u2212',\n\tminusb: '\\u229F',\n\tminusd: '\\u2238',\n\tminusdu: '\\u2A2A',\n\tMinusPlus: '\\u2213',\n\tmlcp: '\\u2ADB',\n\tmldr: '\\u2026',\n\tmnplus: '\\u2213',\n\tmodels: '\\u22A7',\n\tMopf: '\\uD835\\uDD44',\n\tmopf: '\\uD835\\uDD5E',\n\tmp: '\\u2213',\n\tMscr: '\\u2133',\n\tmscr: '\\uD835\\uDCC2',\n\tmstpos: '\\u223E',\n\tMu: '\\u039C',\n\tmu: '\\u03BC',\n\tmultimap: '\\u22B8',\n\tmumap: '\\u22B8',\n\tnabla: '\\u2207',\n\tNacute: '\\u0143',\n\tnacute: '\\u0144',\n\tnang: '\\u2220\\u20D2',\n\tnap: '\\u2249',\n\tnapE: '\\u2A70\\u0338',\n\tnapid: '\\u224B\\u0338',\n\tnapos: '\\u0149',\n\tnapprox: '\\u2249',\n\tnatur: '\\u266E',\n\tnatural: '\\u266E',\n\tnaturals: '\\u2115',\n\tnbsp: '\\u00A0',\n\tnbump: '\\u224E\\u0338',\n\tnbumpe: '\\u224F\\u0338',\n\tncap: '\\u2A43',\n\tNcaron: '\\u0147',\n\tncaron: '\\u0148',\n\tNcedil: '\\u0145',\n\tncedil: '\\u0146',\n\tncong: '\\u2247',\n\tncongdot: '\\u2A6D\\u0338',\n\tncup: '\\u2A42',\n\tNcy: '\\u041D',\n\tncy: '\\u043D',\n\tndash: '\\u2013',\n\tne: '\\u2260',\n\tnearhk: '\\u2924',\n\tneArr: '\\u21D7',\n\tnearr: '\\u2197',\n\tnearrow: '\\u2197',\n\tnedot: '\\u2250\\u0338',\n\tNegativeMediumSpace: '\\u200B',\n\tNegativeThickSpace: '\\u200B',\n\tNegativeThinSpace: '\\u200B',\n\tNegativeVeryThinSpace: '\\u200B',\n\tnequiv: '\\u2262',\n\tnesear: '\\u2928',\n\tnesim: '\\u2242\\u0338',\n\tNestedGreaterGreater: '\\u226B',\n\tNestedLessLess: '\\u226A',\n\tNewLine: '\\u000A',\n\tnexist: '\\u2204',\n\tnexists: '\\u2204',\n\tNfr: '\\uD835\\uDD11',\n\tnfr: '\\uD835\\uDD2B',\n\tngE: '\\u2267\\u0338',\n\tnge: '\\u2271',\n\tngeq: '\\u2271',\n\tngeqq: '\\u2267\\u0338',\n\tngeqslant: '\\u2A7E\\u0338',\n\tnges: '\\u2A7E\\u0338',\n\tnGg: '\\u22D9\\u0338',\n\tngsim: '\\u2275',\n\tnGt: '\\u226B\\u20D2',\n\tngt: '\\u226F',\n\tngtr: '\\u226F',\n\tnGtv: '\\u226B\\u0338',\n\tnhArr: '\\u21CE',\n\tnharr: '\\u21AE',\n\tnhpar: '\\u2AF2',\n\tni: '\\u220B',\n\tnis: '\\u22FC',\n\tnisd: '\\u22FA',\n\tniv: '\\u220B',\n\tNJcy: '\\u040A',\n\tnjcy: '\\u045A',\n\tnlArr: '\\u21CD',\n\tnlarr: '\\u219A',\n\tnldr: '\\u2025',\n\tnlE: '\\u2266\\u0338',\n\tnle: '\\u2270',\n\tnLeftarrow: '\\u21CD',\n\tnleftarrow: '\\u219A',\n\tnLeftrightarrow: '\\u21CE',\n\tnleftrightarrow: '\\u21AE',\n\tnleq: '\\u2270',\n\tnleqq: '\\u2266\\u0338',\n\tnleqslant: '\\u2A7D\\u0338',\n\tnles: '\\u2A7D\\u0338',\n\tnless: '\\u226E',\n\tnLl: '\\u22D8\\u0338',\n\tnlsim: '\\u2274',\n\tnLt: '\\u226A\\u20D2',\n\tnlt: '\\u226E',\n\tnltri: '\\u22EA',\n\tnltrie: '\\u22EC',\n\tnLtv: '\\u226A\\u0338',\n\tnmid: '\\u2224',\n\tNoBreak: '\\u2060',\n\tNonBreakingSpace: '\\u00A0',\n\tNopf: '\\u2115',\n\tnopf: '\\uD835\\uDD5F',\n\tNot: '\\u2AEC',\n\tnot: '\\u00AC',\n\tNotCongruent: '\\u2262',\n\tNotCupCap: '\\u226D',\n\tNotDoubleVerticalBar: '\\u2226',\n\tNotElement: '\\u2209',\n\tNotEqual: '\\u2260',\n\tNotEqualTilde: '\\u2242\\u0338',\n\tNotExists: '\\u2204',\n\tNotGreater: '\\u226F',\n\tNotGreaterEqual: '\\u2271',\n\tNotGreaterFullEqual: '\\u2267\\u0338',\n\tNotGreaterGreater: '\\u226B\\u0338',\n\tNotGreaterLess: '\\u2279',\n\tNotGreaterSlantEqual: '\\u2A7E\\u0338',\n\tNotGreaterTilde: '\\u2275',\n\tNotHumpDownHump: '\\u224E\\u0338',\n\tNotHumpEqual: '\\u224F\\u0338',\n\tnotin: '\\u2209',\n\tnotindot: '\\u22F5\\u0338',\n\tnotinE: '\\u22F9\\u0338',\n\tnotinva: '\\u2209',\n\tnotinvb: '\\u22F7',\n\tnotinvc: '\\u22F6',\n\tNotLeftTriangle: '\\u22EA',\n\tNotLeftTriangleBar: '\\u29CF\\u0338',\n\tNotLeftTriangleEqual: '\\u22EC',\n\tNotLess: '\\u226E',\n\tNotLessEqual: '\\u2270',\n\tNotLessGreater: '\\u2278',\n\tNotLessLess: '\\u226A\\u0338',\n\tNotLessSlantEqual: '\\u2A7D\\u0338',\n\tNotLessTilde: '\\u2274',\n\tNotNestedGreaterGreater: '\\u2AA2\\u0338',\n\tNotNestedLessLess: '\\u2AA1\\u0338',\n\tnotni: '\\u220C',\n\tnotniva: '\\u220C',\n\tnotnivb: '\\u22FE',\n\tnotnivc: '\\u22FD',\n\tNotPrecedes: '\\u2280',\n\tNotPrecedesEqual: '\\u2AAF\\u0338',\n\tNotPrecedesSlantEqual: '\\u22E0',\n\tNotReverseElement: '\\u220C',\n\tNotRightTriangle: '\\u22EB',\n\tNotRightTriangleBar: '\\u29D0\\u0338',\n\tNotRightTriangleEqual: '\\u22ED',\n\tNotSquareSubset: '\\u228F\\u0338',\n\tNotSquareSubsetEqual: '\\u22E2',\n\tNotSquareSuperset: '\\u2290\\u0338',\n\tNotSquareSupersetEqual: '\\u22E3',\n\tNotSubset: '\\u2282\\u20D2',\n\tNotSubsetEqual: '\\u2288',\n\tNotSucceeds: '\\u2281',\n\tNotSucceedsEqual: '\\u2AB0\\u0338',\n\tNotSucceedsSlantEqual: '\\u22E1',\n\tNotSucceedsTilde: '\\u227F\\u0338',\n\tNotSuperset: '\\u2283\\u20D2',\n\tNotSupersetEqual: '\\u2289',\n\tNotTilde: '\\u2241',\n\tNotTildeEqual: '\\u2244',\n\tNotTildeFullEqual: '\\u2247',\n\tNotTildeTilde: '\\u2249',\n\tNotVerticalBar: '\\u2224',\n\tnpar: '\\u2226',\n\tnparallel: '\\u2226',\n\tnparsl: '\\u2AFD\\u20E5',\n\tnpart: '\\u2202\\u0338',\n\tnpolint: '\\u2A14',\n\tnpr: '\\u2280',\n\tnprcue: '\\u22E0',\n\tnpre: '\\u2AAF\\u0338',\n\tnprec: '\\u2280',\n\tnpreceq: '\\u2AAF\\u0338',\n\tnrArr: '\\u21CF',\n\tnrarr: '\\u219B',\n\tnrarrc: '\\u2933\\u0338',\n\tnrarrw: '\\u219D\\u0338',\n\tnRightarrow: '\\u21CF',\n\tnrightarrow: '\\u219B',\n\tnrtri: '\\u22EB',\n\tnrtrie: '\\u22ED',\n\tnsc: '\\u2281',\n\tnsccue: '\\u22E1',\n\tnsce: '\\u2AB0\\u0338',\n\tNscr: '\\uD835\\uDCA9',\n\tnscr: '\\uD835\\uDCC3',\n\tnshortmid: '\\u2224',\n\tnshortparallel: '\\u2226',\n\tnsim: '\\u2241',\n\tnsime: '\\u2244',\n\tnsimeq: '\\u2244',\n\tnsmid: '\\u2224',\n\tnspar: '\\u2226',\n\tnsqsube: '\\u22E2',\n\tnsqsupe: '\\u22E3',\n\tnsub: '\\u2284',\n\tnsubE: '\\u2AC5\\u0338',\n\tnsube: '\\u2288',\n\tnsubset: '\\u2282\\u20D2',\n\tnsubseteq: '\\u2288',\n\tnsubseteqq: '\\u2AC5\\u0338',\n\tnsucc: '\\u2281',\n\tnsucceq: '\\u2AB0\\u0338',\n\tnsup: '\\u2285',\n\tnsupE: '\\u2AC6\\u0338',\n\tnsupe: '\\u2289',\n\tnsupset: '\\u2283\\u20D2',\n\tnsupseteq: '\\u2289',\n\tnsupseteqq: '\\u2AC6\\u0338',\n\tntgl: '\\u2279',\n\tNtilde: '\\u00D1',\n\tntilde: '\\u00F1',\n\tntlg: '\\u2278',\n\tntriangleleft: '\\u22EA',\n\tntrianglelefteq: '\\u22EC',\n\tntriangleright: '\\u22EB',\n\tntrianglerighteq: '\\u22ED',\n\tNu: '\\u039D',\n\tnu: '\\u03BD',\n\tnum: '\\u0023',\n\tnumero: '\\u2116',\n\tnumsp: '\\u2007',\n\tnvap: '\\u224D\\u20D2',\n\tnVDash: '\\u22AF',\n\tnVdash: '\\u22AE',\n\tnvDash: '\\u22AD',\n\tnvdash: '\\u22AC',\n\tnvge: '\\u2265\\u20D2',\n\tnvgt: '\\u003E\\u20D2',\n\tnvHarr: '\\u2904',\n\tnvinfin: '\\u29DE',\n\tnvlArr: '\\u2902',\n\tnvle: '\\u2264\\u20D2',\n\tnvlt: '\\u003C\\u20D2',\n\tnvltrie: '\\u22B4\\u20D2',\n\tnvrArr: '\\u2903',\n\tnvrtrie: '\\u22B5\\u20D2',\n\tnvsim: '\\u223C\\u20D2',\n\tnwarhk: '\\u2923',\n\tnwArr: '\\u21D6',\n\tnwarr: '\\u2196',\n\tnwarrow: '\\u2196',\n\tnwnear: '\\u2927',\n\tOacute: '\\u00D3',\n\toacute: '\\u00F3',\n\toast: '\\u229B',\n\tocir: '\\u229A',\n\tOcirc: '\\u00D4',\n\tocirc: '\\u00F4',\n\tOcy: '\\u041E',\n\tocy: '\\u043E',\n\todash: '\\u229D',\n\tOdblac: '\\u0150',\n\todblac: '\\u0151',\n\todiv: '\\u2A38',\n\todot: '\\u2299',\n\todsold: '\\u29BC',\n\tOElig: '\\u0152',\n\toelig: '\\u0153',\n\tofcir: '\\u29BF',\n\tOfr: '\\uD835\\uDD12',\n\tofr: '\\uD835\\uDD2C',\n\togon: '\\u02DB',\n\tOgrave: '\\u00D2',\n\tograve: '\\u00F2',\n\togt: '\\u29C1',\n\tohbar: '\\u29B5',\n\tohm: '\\u03A9',\n\toint: '\\u222E',\n\tolarr: '\\u21BA',\n\tolcir: '\\u29BE',\n\tolcross: '\\u29BB',\n\toline: '\\u203E',\n\tolt: '\\u29C0',\n\tOmacr: '\\u014C',\n\tomacr: '\\u014D',\n\tOmega: '\\u03A9',\n\tomega: '\\u03C9',\n\tOmicron: '\\u039F',\n\tomicron: '\\u03BF',\n\tomid: '\\u29B6',\n\tominus: '\\u2296',\n\tOopf: '\\uD835\\uDD46',\n\toopf: '\\uD835\\uDD60',\n\topar: '\\u29B7',\n\tOpenCurlyDoubleQuote: '\\u201C',\n\tOpenCurlyQuote: '\\u2018',\n\toperp: '\\u29B9',\n\toplus: '\\u2295',\n\tOr: '\\u2A54',\n\tor: '\\u2228',\n\torarr: '\\u21BB',\n\tord: '\\u2A5D',\n\torder: '\\u2134',\n\torderof: '\\u2134',\n\tordf: '\\u00AA',\n\tordm: '\\u00BA',\n\torigof: '\\u22B6',\n\toror: '\\u2A56',\n\torslope: '\\u2A57',\n\torv: '\\u2A5B',\n\toS: '\\u24C8',\n\tOscr: '\\uD835\\uDCAA',\n\toscr: '\\u2134',\n\tOslash: '\\u00D8',\n\toslash: '\\u00F8',\n\tosol: '\\u2298',\n\tOtilde: '\\u00D5',\n\totilde: '\\u00F5',\n\tOtimes: '\\u2A37',\n\totimes: '\\u2297',\n\totimesas: '\\u2A36',\n\tOuml: '\\u00D6',\n\touml: '\\u00F6',\n\tovbar: '\\u233D',\n\tOverBar: '\\u203E',\n\tOverBrace: '\\u23DE',\n\tOverBracket: '\\u23B4',\n\tOverParenthesis: '\\u23DC',\n\tpar: '\\u2225',\n\tpara: '\\u00B6',\n\tparallel: '\\u2225',\n\tparsim: '\\u2AF3',\n\tparsl: '\\u2AFD',\n\tpart: '\\u2202',\n\tPartialD: '\\u2202',\n\tPcy: '\\u041F',\n\tpcy: '\\u043F',\n\tpercnt: '\\u0025',\n\tperiod: '\\u002E',\n\tpermil: '\\u2030',\n\tperp: '\\u22A5',\n\tpertenk: '\\u2031',\n\tPfr: '\\uD835\\uDD13',\n\tpfr: '\\uD835\\uDD2D',\n\tPhi: '\\u03A6',\n\tphi: '\\u03C6',\n\tphiv: '\\u03D5',\n\tphmmat: '\\u2133',\n\tphone: '\\u260E',\n\tPi: '\\u03A0',\n\tpi: '\\u03C0',\n\tpitchfork: '\\u22D4',\n\tpiv: '\\u03D6',\n\tplanck: '\\u210F',\n\tplanckh: '\\u210E',\n\tplankv: '\\u210F',\n\tplus: '\\u002B',\n\tplusacir: '\\u2A23',\n\tplusb: '\\u229E',\n\tpluscir: '\\u2A22',\n\tplusdo: '\\u2214',\n\tplusdu: '\\u2A25',\n\tpluse: '\\u2A72',\n\tPlusMinus: '\\u00B1',\n\tplusmn: '\\u00B1',\n\tplussim: '\\u2A26',\n\tplustwo: '\\u2A27',\n\tpm: '\\u00B1',\n\tPoincareplane: '\\u210C',\n\tpointint: '\\u2A15',\n\tPopf: '\\u2119',\n\tpopf: '\\uD835\\uDD61',\n\tpound: '\\u00A3',\n\tPr: '\\u2ABB',\n\tpr: '\\u227A',\n\tprap: '\\u2AB7',\n\tprcue: '\\u227C',\n\tprE: '\\u2AB3',\n\tpre: '\\u2AAF',\n\tprec: '\\u227A',\n\tprecapprox: '\\u2AB7',\n\tpreccurlyeq: '\\u227C',\n\tPrecedes: '\\u227A',\n\tPrecedesEqual: '\\u2AAF',\n\tPrecedesSlantEqual: '\\u227C',\n\tPrecedesTilde: '\\u227E',\n\tpreceq: '\\u2AAF',\n\tprecnapprox: '\\u2AB9',\n\tprecneqq: '\\u2AB5',\n\tprecnsim: '\\u22E8',\n\tprecsim: '\\u227E',\n\tPrime: '\\u2033',\n\tprime: '\\u2032',\n\tprimes: '\\u2119',\n\tprnap: '\\u2AB9',\n\tprnE: '\\u2AB5',\n\tprnsim: '\\u22E8',\n\tprod: '\\u220F',\n\tProduct: '\\u220F',\n\tprofalar: '\\u232E',\n\tprofline: '\\u2312',\n\tprofsurf: '\\u2313',\n\tprop: '\\u221D',\n\tProportion: '\\u2237',\n\tProportional: '\\u221D',\n\tpropto: '\\u221D',\n\tprsim: '\\u227E',\n\tprurel: '\\u22B0',\n\tPscr: '\\uD835\\uDCAB',\n\tpscr: '\\uD835\\uDCC5',\n\tPsi: '\\u03A8',\n\tpsi: '\\u03C8',\n\tpuncsp: '\\u2008',\n\tQfr: '\\uD835\\uDD14',\n\tqfr: '\\uD835\\uDD2E',\n\tqint: '\\u2A0C',\n\tQopf: '\\u211A',\n\tqopf: '\\uD835\\uDD62',\n\tqprime: '\\u2057',\n\tQscr: '\\uD835\\uDCAC',\n\tqscr: '\\uD835\\uDCC6',\n\tquaternions: '\\u210D',\n\tquatint: '\\u2A16',\n\tquest: '\\u003F',\n\tquesteq: '\\u225F',\n\tQUOT: '\\u0022',\n\tquot: '\\u0022',\n\trAarr: '\\u21DB',\n\trace: '\\u223D\\u0331',\n\tRacute: '\\u0154',\n\tracute: '\\u0155',\n\tradic: '\\u221A',\n\traemptyv: '\\u29B3',\n\tRang: '\\u27EB',\n\trang: '\\u27E9',\n\trangd: '\\u2992',\n\trange: '\\u29A5',\n\trangle: '\\u27E9',\n\traquo: '\\u00BB',\n\tRarr: '\\u21A0',\n\trArr: '\\u21D2',\n\trarr: '\\u2192',\n\trarrap: '\\u2975',\n\trarrb: '\\u21E5',\n\trarrbfs: '\\u2920',\n\trarrc: '\\u2933',\n\trarrfs: '\\u291E',\n\trarrhk: '\\u21AA',\n\trarrlp: '\\u21AC',\n\trarrpl: '\\u2945',\n\trarrsim: '\\u2974',\n\tRarrtl: '\\u2916',\n\trarrtl: '\\u21A3',\n\trarrw: '\\u219D',\n\trAtail: '\\u291C',\n\tratail: '\\u291A',\n\tratio: '\\u2236',\n\trationals: '\\u211A',\n\tRBarr: '\\u2910',\n\trBarr: '\\u290F',\n\trbarr: '\\u290D',\n\trbbrk: '\\u2773',\n\trbrace: '\\u007D',\n\trbrack: '\\u005D',\n\trbrke: '\\u298C',\n\trbrksld: '\\u298E',\n\trbrkslu: '\\u2990',\n\tRcaron: '\\u0158',\n\trcaron: '\\u0159',\n\tRcedil: '\\u0156',\n\trcedil: '\\u0157',\n\trceil: '\\u2309',\n\trcub: '\\u007D',\n\tRcy: '\\u0420',\n\trcy: '\\u0440',\n\trdca: '\\u2937',\n\trdldhar: '\\u2969',\n\trdquo: '\\u201D',\n\trdquor: '\\u201D',\n\trdsh: '\\u21B3',\n\tRe: '\\u211C',\n\treal: '\\u211C',\n\trealine: '\\u211B',\n\trealpart: '\\u211C',\n\treals: '\\u211D',\n\trect: '\\u25AD',\n\tREG: '\\u00AE',\n\treg: '\\u00AE',\n\tReverseElement: '\\u220B',\n\tReverseEquilibrium: '\\u21CB',\n\tReverseUpEquilibrium: '\\u296F',\n\trfisht: '\\u297D',\n\trfloor: '\\u230B',\n\tRfr: '\\u211C',\n\trfr: '\\uD835\\uDD2F',\n\trHar: '\\u2964',\n\trhard: '\\u21C1',\n\trharu: '\\u21C0',\n\trharul: '\\u296C',\n\tRho: '\\u03A1',\n\trho: '\\u03C1',\n\trhov: '\\u03F1',\n\tRightAngleBracket: '\\u27E9',\n\tRightArrow: '\\u2192',\n\tRightarrow: '\\u21D2',\n\trightarrow: '\\u2192',\n\tRightArrowBar: '\\u21E5',\n\tRightArrowLeftArrow: '\\u21C4',\n\trightarrowtail: '\\u21A3',\n\tRightCeiling: '\\u2309',\n\tRightDoubleBracket: '\\u27E7',\n\tRightDownTeeVector: '\\u295D',\n\tRightDownVector: '\\u21C2',\n\tRightDownVectorBar: '\\u2955',\n\tRightFloor: '\\u230B',\n\trightharpoondown: '\\u21C1',\n\trightharpoonup: '\\u21C0',\n\trightleftarrows: '\\u21C4',\n\trightleftharpoons: '\\u21CC',\n\trightrightarrows: '\\u21C9',\n\trightsquigarrow: '\\u219D',\n\tRightTee: '\\u22A2',\n\tRightTeeArrow: '\\u21A6',\n\tRightTeeVector: '\\u295B',\n\trightthreetimes: '\\u22CC',\n\tRightTriangle: '\\u22B3',\n\tRightTriangleBar: '\\u29D0',\n\tRightTriangleEqual: '\\u22B5',\n\tRightUpDownVector: '\\u294F',\n\tRightUpTeeVector: '\\u295C',\n\tRightUpVector: '\\u21BE',\n\tRightUpVectorBar: '\\u2954',\n\tRightVector: '\\u21C0',\n\tRightVectorBar: '\\u2953',\n\tring: '\\u02DA',\n\trisingdotseq: '\\u2253',\n\trlarr: '\\u21C4',\n\trlhar: '\\u21CC',\n\trlm: '\\u200F',\n\trmoust: '\\u23B1',\n\trmoustache: '\\u23B1',\n\trnmid: '\\u2AEE',\n\troang: '\\u27ED',\n\troarr: '\\u21FE',\n\trobrk: '\\u27E7',\n\tropar: '\\u2986',\n\tRopf: '\\u211D',\n\tropf: '\\uD835\\uDD63',\n\troplus: '\\u2A2E',\n\trotimes: '\\u2A35',\n\tRoundImplies: '\\u2970',\n\trpar: '\\u0029',\n\trpargt: '\\u2994',\n\trppolint: '\\u2A12',\n\trrarr: '\\u21C9',\n\tRrightarrow: '\\u21DB',\n\trsaquo: '\\u203A',\n\tRscr: '\\u211B',\n\trscr: '\\uD835\\uDCC7',\n\tRsh: '\\u21B1',\n\trsh: '\\u21B1',\n\trsqb: '\\u005D',\n\trsquo: '\\u2019',\n\trsquor: '\\u2019',\n\trthree: '\\u22CC',\n\trtimes: '\\u22CA',\n\trtri: '\\u25B9',\n\trtrie: '\\u22B5',\n\trtrif: '\\u25B8',\n\trtriltri: '\\u29CE',\n\tRuleDelayed: '\\u29F4',\n\truluhar: '\\u2968',\n\trx: '\\u211E',\n\tSacute: '\\u015A',\n\tsacute: '\\u015B',\n\tsbquo: '\\u201A',\n\tSc: '\\u2ABC',\n\tsc: '\\u227B',\n\tscap: '\\u2AB8',\n\tScaron: '\\u0160',\n\tscaron: '\\u0161',\n\tsccue: '\\u227D',\n\tscE: '\\u2AB4',\n\tsce: '\\u2AB0',\n\tScedil: '\\u015E',\n\tscedil: '\\u015F',\n\tScirc: '\\u015C',\n\tscirc: '\\u015D',\n\tscnap: '\\u2ABA',\n\tscnE: '\\u2AB6',\n\tscnsim: '\\u22E9',\n\tscpolint: '\\u2A13',\n\tscsim: '\\u227F',\n\tScy: '\\u0421',\n\tscy: '\\u0441',\n\tsdot: '\\u22C5',\n\tsdotb: '\\u22A1',\n\tsdote: '\\u2A66',\n\tsearhk: '\\u2925',\n\tseArr: '\\u21D8',\n\tsearr: '\\u2198',\n\tsearrow: '\\u2198',\n\tsect: '\\u00A7',\n\tsemi: '\\u003B',\n\tseswar: '\\u2929',\n\tsetminus: '\\u2216',\n\tsetmn: '\\u2216',\n\tsext: '\\u2736',\n\tSfr: '\\uD835\\uDD16',\n\tsfr: '\\uD835\\uDD30',\n\tsfrown: '\\u2322',\n\tsharp: '\\u266F',\n\tSHCHcy: '\\u0429',\n\tshchcy: '\\u0449',\n\tSHcy: '\\u0428',\n\tshcy: '\\u0448',\n\tShortDownArrow: '\\u2193',\n\tShortLeftArrow: '\\u2190',\n\tshortmid: '\\u2223',\n\tshortparallel: '\\u2225',\n\tShortRightArrow: '\\u2192',\n\tShortUpArrow: '\\u2191',\n\tshy: '\\u00AD',\n\tSigma: '\\u03A3',\n\tsigma: '\\u03C3',\n\tsigmaf: '\\u03C2',\n\tsigmav: '\\u03C2',\n\tsim: '\\u223C',\n\tsimdot: '\\u2A6A',\n\tsime: '\\u2243',\n\tsimeq: '\\u2243',\n\tsimg: '\\u2A9E',\n\tsimgE: '\\u2AA0',\n\tsiml: '\\u2A9D',\n\tsimlE: '\\u2A9F',\n\tsimne: '\\u2246',\n\tsimplus: '\\u2A24',\n\tsimrarr: '\\u2972',\n\tslarr: '\\u2190',\n\tSmallCircle: '\\u2218',\n\tsmallsetminus: '\\u2216',\n\tsmashp: '\\u2A33',\n\tsmeparsl: '\\u29E4',\n\tsmid: '\\u2223',\n\tsmile: '\\u2323',\n\tsmt: '\\u2AAA',\n\tsmte: '\\u2AAC',\n\tsmtes: '\\u2AAC\\uFE00',\n\tSOFTcy: '\\u042C',\n\tsoftcy: '\\u044C',\n\tsol: '\\u002F',\n\tsolb: '\\u29C4',\n\tsolbar: '\\u233F',\n\tSopf: '\\uD835\\uDD4A',\n\tsopf: '\\uD835\\uDD64',\n\tspades: '\\u2660',\n\tspadesuit: '\\u2660',\n\tspar: '\\u2225',\n\tsqcap: '\\u2293',\n\tsqcaps: '\\u2293\\uFE00',\n\tsqcup: '\\u2294',\n\tsqcups: '\\u2294\\uFE00',\n\tSqrt: '\\u221A',\n\tsqsub: '\\u228F',\n\tsqsube: '\\u2291',\n\tsqsubset: '\\u228F',\n\tsqsubseteq: '\\u2291',\n\tsqsup: '\\u2290',\n\tsqsupe: '\\u2292',\n\tsqsupset: '\\u2290',\n\tsqsupseteq: '\\u2292',\n\tsqu: '\\u25A1',\n\tSquare: '\\u25A1',\n\tsquare: '\\u25A1',\n\tSquareIntersection: '\\u2293',\n\tSquareSubset: '\\u228F',\n\tSquareSubsetEqual: '\\u2291',\n\tSquareSuperset: '\\u2290',\n\tSquareSupersetEqual: '\\u2292',\n\tSquareUnion: '\\u2294',\n\tsquarf: '\\u25AA',\n\tsquf: '\\u25AA',\n\tsrarr: '\\u2192',\n\tSscr: '\\uD835\\uDCAE',\n\tsscr: '\\uD835\\uDCC8',\n\tssetmn: '\\u2216',\n\tssmile: '\\u2323',\n\tsstarf: '\\u22C6',\n\tStar: '\\u22C6',\n\tstar: '\\u2606',\n\tstarf: '\\u2605',\n\tstraightepsilon: '\\u03F5',\n\tstraightphi: '\\u03D5',\n\tstrns: '\\u00AF',\n\tSub: '\\u22D0',\n\tsub: '\\u2282',\n\tsubdot: '\\u2ABD',\n\tsubE: '\\u2AC5',\n\tsube: '\\u2286',\n\tsubedot: '\\u2AC3',\n\tsubmult: '\\u2AC1',\n\tsubnE: '\\u2ACB',\n\tsubne: '\\u228A',\n\tsubplus: '\\u2ABF',\n\tsubrarr: '\\u2979',\n\tSubset: '\\u22D0',\n\tsubset: '\\u2282',\n\tsubseteq: '\\u2286',\n\tsubseteqq: '\\u2AC5',\n\tSubsetEqual: '\\u2286',\n\tsubsetneq: '\\u228A',\n\tsubsetneqq: '\\u2ACB',\n\tsubsim: '\\u2AC7',\n\tsubsub: '\\u2AD5',\n\tsubsup: '\\u2AD3',\n\tsucc: '\\u227B',\n\tsuccapprox: '\\u2AB8',\n\tsucccurlyeq: '\\u227D',\n\tSucceeds: '\\u227B',\n\tSucceedsEqual: '\\u2AB0',\n\tSucceedsSlantEqual: '\\u227D',\n\tSucceedsTilde: '\\u227F',\n\tsucceq: '\\u2AB0',\n\tsuccnapprox: '\\u2ABA',\n\tsuccneqq: '\\u2AB6',\n\tsuccnsim: '\\u22E9',\n\tsuccsim: '\\u227F',\n\tSuchThat: '\\u220B',\n\tSum: '\\u2211',\n\tsum: '\\u2211',\n\tsung: '\\u266A',\n\tSup: '\\u22D1',\n\tsup: '\\u2283',\n\tsup1: '\\u00B9',\n\tsup2: '\\u00B2',\n\tsup3: '\\u00B3',\n\tsupdot: '\\u2ABE',\n\tsupdsub: '\\u2AD8',\n\tsupE: '\\u2AC6',\n\tsupe: '\\u2287',\n\tsupedot: '\\u2AC4',\n\tSuperset: '\\u2283',\n\tSupersetEqual: '\\u2287',\n\tsuphsol: '\\u27C9',\n\tsuphsub: '\\u2AD7',\n\tsuplarr: '\\u297B',\n\tsupmult: '\\u2AC2',\n\tsupnE: '\\u2ACC',\n\tsupne: '\\u228B',\n\tsupplus: '\\u2AC0',\n\tSupset: '\\u22D1',\n\tsupset: '\\u2283',\n\tsupseteq: '\\u2287',\n\tsupseteqq: '\\u2AC6',\n\tsupsetneq: '\\u228B',\n\tsupsetneqq: '\\u2ACC',\n\tsupsim: '\\u2AC8',\n\tsupsub: '\\u2AD4',\n\tsupsup: '\\u2AD6',\n\tswarhk: '\\u2926',\n\tswArr: '\\u21D9',\n\tswarr: '\\u2199',\n\tswarrow: '\\u2199',\n\tswnwar: '\\u292A',\n\tszlig: '\\u00DF',\n\tTab: '\\u0009',\n\ttarget: '\\u2316',\n\tTau: '\\u03A4',\n\ttau: '\\u03C4',\n\ttbrk: '\\u23B4',\n\tTcaron: '\\u0164',\n\ttcaron: '\\u0165',\n\tTcedil: '\\u0162',\n\ttcedil: '\\u0163',\n\tTcy: '\\u0422',\n\ttcy: '\\u0442',\n\ttdot: '\\u20DB',\n\ttelrec: '\\u2315',\n\tTfr: '\\uD835\\uDD17',\n\ttfr: '\\uD835\\uDD31',\n\tthere4: '\\u2234',\n\tTherefore: '\\u2234',\n\ttherefore: '\\u2234',\n\tTheta: '\\u0398',\n\ttheta: '\\u03B8',\n\tthetasym: '\\u03D1',\n\tthetav: '\\u03D1',\n\tthickapprox: '\\u2248',\n\tthicksim: '\\u223C',\n\tThickSpace: '\\u205F\\u200A',\n\tthinsp: '\\u2009',\n\tThinSpace: '\\u2009',\n\tthkap: '\\u2248',\n\tthksim: '\\u223C',\n\tTHORN: '\\u00DE',\n\tthorn: '\\u00FE',\n\tTilde: '\\u223C',\n\ttilde: '\\u02DC',\n\tTildeEqual: '\\u2243',\n\tTildeFullEqual: '\\u2245',\n\tTildeTilde: '\\u2248',\n\ttimes: '\\u00D7',\n\ttimesb: '\\u22A0',\n\ttimesbar: '\\u2A31',\n\ttimesd: '\\u2A30',\n\ttint: '\\u222D',\n\ttoea: '\\u2928',\n\ttop: '\\u22A4',\n\ttopbot: '\\u2336',\n\ttopcir: '\\u2AF1',\n\tTopf: '\\uD835\\uDD4B',\n\ttopf: '\\uD835\\uDD65',\n\ttopfork: '\\u2ADA',\n\ttosa: '\\u2929',\n\ttprime: '\\u2034',\n\tTRADE: '\\u2122',\n\ttrade: '\\u2122',\n\ttriangle: '\\u25B5',\n\ttriangledown: '\\u25BF',\n\ttriangleleft: '\\u25C3',\n\ttrianglelefteq: '\\u22B4',\n\ttriangleq: '\\u225C',\n\ttriangleright: '\\u25B9',\n\ttrianglerighteq: '\\u22B5',\n\ttridot: '\\u25EC',\n\ttrie: '\\u225C',\n\ttriminus: '\\u2A3A',\n\tTripleDot: '\\u20DB',\n\ttriplus: '\\u2A39',\n\ttrisb: '\\u29CD',\n\ttritime: '\\u2A3B',\n\ttrpezium: '\\u23E2',\n\tTscr: '\\uD835\\uDCAF',\n\ttscr: '\\uD835\\uDCC9',\n\tTScy: '\\u0426',\n\ttscy: '\\u0446',\n\tTSHcy: '\\u040B',\n\ttshcy: '\\u045B',\n\tTstrok: '\\u0166',\n\ttstrok: '\\u0167',\n\ttwixt: '\\u226C',\n\ttwoheadleftarrow: '\\u219E',\n\ttwoheadrightarrow: '\\u21A0',\n\tUacute: '\\u00DA',\n\tuacute: '\\u00FA',\n\tUarr: '\\u219F',\n\tuArr: '\\u21D1',\n\tuarr: '\\u2191',\n\tUarrocir: '\\u2949',\n\tUbrcy: '\\u040E',\n\tubrcy: '\\u045E',\n\tUbreve: '\\u016C',\n\tubreve: '\\u016D',\n\tUcirc: '\\u00DB',\n\tucirc: '\\u00FB',\n\tUcy: '\\u0423',\n\tucy: '\\u0443',\n\tudarr: '\\u21C5',\n\tUdblac: '\\u0170',\n\tudblac: '\\u0171',\n\tudhar: '\\u296E',\n\tufisht: '\\u297E',\n\tUfr: '\\uD835\\uDD18',\n\tufr: '\\uD835\\uDD32',\n\tUgrave: '\\u00D9',\n\tugrave: '\\u00F9',\n\tuHar: '\\u2963',\n\tuharl: '\\u21BF',\n\tuharr: '\\u21BE',\n\tuhblk: '\\u2580',\n\tulcorn: '\\u231C',\n\tulcorner: '\\u231C',\n\tulcrop: '\\u230F',\n\tultri: '\\u25F8',\n\tUmacr: '\\u016A',\n\tumacr: '\\u016B',\n\tuml: '\\u00A8',\n\tUnderBar: '\\u005F',\n\tUnderBrace: '\\u23DF',\n\tUnderBracket: '\\u23B5',\n\tUnderParenthesis: '\\u23DD',\n\tUnion: '\\u22C3',\n\tUnionPlus: '\\u228E',\n\tUogon: '\\u0172',\n\tuogon: '\\u0173',\n\tUopf: '\\uD835\\uDD4C',\n\tuopf: '\\uD835\\uDD66',\n\tUpArrow: '\\u2191',\n\tUparrow: '\\u21D1',\n\tuparrow: '\\u2191',\n\tUpArrowBar: '\\u2912',\n\tUpArrowDownArrow: '\\u21C5',\n\tUpDownArrow: '\\u2195',\n\tUpdownarrow: '\\u21D5',\n\tupdownarrow: '\\u2195',\n\tUpEquilibrium: '\\u296E',\n\tupharpoonleft: '\\u21BF',\n\tupharpoonright: '\\u21BE',\n\tuplus: '\\u228E',\n\tUpperLeftArrow: '\\u2196',\n\tUpperRightArrow: '\\u2197',\n\tUpsi: '\\u03D2',\n\tupsi: '\\u03C5',\n\tupsih: '\\u03D2',\n\tUpsilon: '\\u03A5',\n\tupsilon: '\\u03C5',\n\tUpTee: '\\u22A5',\n\tUpTeeArrow: '\\u21A5',\n\tupuparrows: '\\u21C8',\n\turcorn: '\\u231D',\n\turcorner: '\\u231D',\n\turcrop: '\\u230E',\n\tUring: '\\u016E',\n\turing: '\\u016F',\n\turtri: '\\u25F9',\n\tUscr: '\\uD835\\uDCB0',\n\tuscr: '\\uD835\\uDCCA',\n\tutdot: '\\u22F0',\n\tUtilde: '\\u0168',\n\tutilde: '\\u0169',\n\tutri: '\\u25B5',\n\tutrif: '\\u25B4',\n\tuuarr: '\\u21C8',\n\tUuml: '\\u00DC',\n\tuuml: '\\u00FC',\n\tuwangle: '\\u29A7',\n\tvangrt: '\\u299C',\n\tvarepsilon: '\\u03F5',\n\tvarkappa: '\\u03F0',\n\tvarnothing: '\\u2205',\n\tvarphi: '\\u03D5',\n\tvarpi: '\\u03D6',\n\tvarpropto: '\\u221D',\n\tvArr: '\\u21D5',\n\tvarr: '\\u2195',\n\tvarrho: '\\u03F1',\n\tvarsigma: '\\u03C2',\n\tvarsubsetneq: '\\u228A\\uFE00',\n\tvarsubsetneqq: '\\u2ACB\\uFE00',\n\tvarsupsetneq: '\\u228B\\uFE00',\n\tvarsupsetneqq: '\\u2ACC\\uFE00',\n\tvartheta: '\\u03D1',\n\tvartriangleleft: '\\u22B2',\n\tvartriangleright: '\\u22B3',\n\tVbar: '\\u2AEB',\n\tvBar: '\\u2AE8',\n\tvBarv: '\\u2AE9',\n\tVcy: '\\u0412',\n\tvcy: '\\u0432',\n\tVDash: '\\u22AB',\n\tVdash: '\\u22A9',\n\tvDash: '\\u22A8',\n\tvdash: '\\u22A2',\n\tVdashl: '\\u2AE6',\n\tVee: '\\u22C1',\n\tvee: '\\u2228',\n\tveebar: '\\u22BB',\n\tveeeq: '\\u225A',\n\tvellip: '\\u22EE',\n\tVerbar: '\\u2016',\n\tverbar: '\\u007C',\n\tVert: '\\u2016',\n\tvert: '\\u007C',\n\tVerticalBar: '\\u2223',\n\tVerticalLine: '\\u007C',\n\tVerticalSeparator: '\\u2758',\n\tVerticalTilde: '\\u2240',\n\tVeryThinSpace: '\\u200A',\n\tVfr: '\\uD835\\uDD19',\n\tvfr: '\\uD835\\uDD33',\n\tvltri: '\\u22B2',\n\tvnsub: '\\u2282\\u20D2',\n\tvnsup: '\\u2283\\u20D2',\n\tVopf: '\\uD835\\uDD4D',\n\tvopf: '\\uD835\\uDD67',\n\tvprop: '\\u221D',\n\tvrtri: '\\u22B3',\n\tVscr: '\\uD835\\uDCB1',\n\tvscr: '\\uD835\\uDCCB',\n\tvsubnE: '\\u2ACB\\uFE00',\n\tvsubne: '\\u228A\\uFE00',\n\tvsupnE: '\\u2ACC\\uFE00',\n\tvsupne: '\\u228B\\uFE00',\n\tVvdash: '\\u22AA',\n\tvzigzag: '\\u299A',\n\tWcirc: '\\u0174',\n\twcirc: '\\u0175',\n\twedbar: '\\u2A5F',\n\tWedge: '\\u22C0',\n\twedge: '\\u2227',\n\twedgeq: '\\u2259',\n\tweierp: '\\u2118',\n\tWfr: '\\uD835\\uDD1A',\n\twfr: '\\uD835\\uDD34',\n\tWopf: '\\uD835\\uDD4E',\n\twopf: '\\uD835\\uDD68',\n\twp: '\\u2118',\n\twr: '\\u2240',\n\twreath: '\\u2240',\n\tWscr: '\\uD835\\uDCB2',\n\twscr: '\\uD835\\uDCCC',\n\txcap: '\\u22C2',\n\txcirc: '\\u25EF',\n\txcup: '\\u22C3',\n\txdtri: '\\u25BD',\n\tXfr: '\\uD835\\uDD1B',\n\txfr: '\\uD835\\uDD35',\n\txhArr: '\\u27FA',\n\txharr: '\\u27F7',\n\tXi: '\\u039E',\n\txi: '\\u03BE',\n\txlArr: '\\u27F8',\n\txlarr: '\\u27F5',\n\txmap: '\\u27FC',\n\txnis: '\\u22FB',\n\txodot: '\\u2A00',\n\tXopf: '\\uD835\\uDD4F',\n\txopf: '\\uD835\\uDD69',\n\txoplus: '\\u2A01',\n\txotime: '\\u2A02',\n\txrArr: '\\u27F9',\n\txrarr: '\\u27F6',\n\tXscr: '\\uD835\\uDCB3',\n\txscr: '\\uD835\\uDCCD',\n\txsqcup: '\\u2A06',\n\txuplus: '\\u2A04',\n\txutri: '\\u25B3',\n\txvee: '\\u22C1',\n\txwedge: '\\u22C0',\n\tYacute: '\\u00DD',\n\tyacute: '\\u00FD',\n\tYAcy: '\\u042F',\n\tyacy: '\\u044F',\n\tYcirc: '\\u0176',\n\tycirc: '\\u0177',\n\tYcy: '\\u042B',\n\tycy: '\\u044B',\n\tyen: '\\u00A5',\n\tYfr: '\\uD835\\uDD1C',\n\tyfr: '\\uD835\\uDD36',\n\tYIcy: '\\u0407',\n\tyicy: '\\u0457',\n\tYopf: '\\uD835\\uDD50',\n\tyopf: '\\uD835\\uDD6A',\n\tYscr: '\\uD835\\uDCB4',\n\tyscr: '\\uD835\\uDCCE',\n\tYUcy: '\\u042E',\n\tyucy: '\\u044E',\n\tYuml: '\\u0178',\n\tyuml: '\\u00FF',\n\tZacute: '\\u0179',\n\tzacute: '\\u017A',\n\tZcaron: '\\u017D',\n\tzcaron: '\\u017E',\n\tZcy: '\\u0417',\n\tzcy: '\\u0437',\n\tZdot: '\\u017B',\n\tzdot: '\\u017C',\n\tzeetrf: '\\u2128',\n\tZeroWidthSpace: '\\u200B',\n\tZeta: '\\u0396',\n\tzeta: '\\u03B6',\n\tZfr: '\\u2128',\n\tzfr: '\\uD835\\uDD37',\n\tZHcy: '\\u0416',\n\tzhcy: '\\u0436',\n\tzigrarr: '\\u21DD',\n\tZopf: '\\u2124',\n\tzopf: '\\uD835\\uDD6B',\n\tZscr: '\\uD835\\uDCB5',\n\tzscr: '\\uD835\\uDCCF',\n\tzwj: '\\u200D',\n\tzwnj: '\\u200C',\n});\n\n/**\n * @deprecated use `HTML_ENTITIES` instead\n * @see HTML_ENTITIES\n */\nexports.entityMap = exports.HTML_ENTITIES;\n","var dom = require('./dom')\nexports.DOMImplementation = dom.DOMImplementation\nexports.XMLSerializer = dom.XMLSerializer\nexports.DOMParser = require('./dom-parser').DOMParser\n","var NAMESPACE = require(\"./conventions\").NAMESPACE;\n\n//[4] \tNameStartChar\t ::= \t\":\" | [A-Z] | \"_\" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]\n//[4a] \tNameChar\t ::= \tNameStartChar | \"-\" | \".\" | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040]\n//[5] \tName\t ::= \tNameStartChar (NameChar)*\nvar nameStartChar = /[A-Z_a-z\\xC0-\\xD6\\xD8-\\xF6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]///\\u10000-\\uEFFFF\nvar nameChar = new RegExp(\"[\\\\-\\\\.0-9\"+nameStartChar.source.slice(1,-1)+\"\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]\");\nvar tagNamePattern = new RegExp('^'+nameStartChar.source+nameChar.source+'*(?:\\:'+nameStartChar.source+nameChar.source+'*)?$');\n//var tagNamePattern = /^[a-zA-Z_][\\w\\-\\.]*(?:\\:[a-zA-Z_][\\w\\-\\.]*)?$/\n//var handlers = 'resolveEntity,getExternalSubset,characters,endDocument,endElement,endPrefixMapping,ignorableWhitespace,processingInstruction,setDocumentLocator,skippedEntity,startDocument,startElement,startPrefixMapping,notationDecl,unparsedEntityDecl,error,fatalError,warning,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,comment,endCDATA,endDTD,endEntity,startCDATA,startDTD,startEntity'.split(',')\n\n//S_TAG,\tS_ATTR,\tS_EQ,\tS_ATTR_NOQUOT_VALUE\n//S_ATTR_SPACE,\tS_ATTR_END,\tS_TAG_SPACE, S_TAG_CLOSE\nvar S_TAG = 0;//tag name offerring\nvar S_ATTR = 1;//attr name offerring\nvar S_ATTR_SPACE=2;//attr name end and space offer\nvar S_EQ = 3;//=space?\nvar S_ATTR_NOQUOT_VALUE = 4;//attr value(no quot value only)\nvar S_ATTR_END = 5;//attr value end and no space(quot end)\nvar S_TAG_SPACE = 6;//(attr value end || tag end ) && (space offer)\nvar S_TAG_CLOSE = 7;//closed el<el />\n\n/**\n * Creates an error that will not be caught by XMLReader aka the SAX parser.\n *\n * @param {string} message\n * @param {any?} locator Optional, can provide details about the location in the source\n * @constructor\n */\nfunction ParseError(message, locator) {\n\tthis.message = message\n\tthis.locator = locator\n\tif(Error.captureStackTrace) Error.captureStackTrace(this, ParseError);\n}\nParseError.prototype = new Error();\nParseError.prototype.name = ParseError.name\n\nfunction XMLReader(){\n\n}\n\nXMLReader.prototype = {\n\tparse:function(source,defaultNSMap,entityMap){\n\t\tvar domBuilder = this.domBuilder;\n\t\tdomBuilder.startDocument();\n\t\t_copy(defaultNSMap ,defaultNSMap = {})\n\t\tparse(source,defaultNSMap,entityMap,\n\t\t\t\tdomBuilder,this.errorHandler);\n\t\tdomBuilder.endDocument();\n\t}\n}\nfunction parse(source,defaultNSMapCopy,entityMap,domBuilder,errorHandler){\n\tfunction fixedFromCharCode(code) {\n\t\t// String.prototype.fromCharCode does not supports\n\t\t// > 2 bytes unicode chars directly\n\t\tif (code > 0xffff) {\n\t\t\tcode -= 0x10000;\n\t\t\tvar surrogate1 = 0xd800 + (code >> 10)\n\t\t\t\t, surrogate2 = 0xdc00 + (code & 0x3ff);\n\n\t\t\treturn String.fromCharCode(surrogate1, surrogate2);\n\t\t} else {\n\t\t\treturn String.fromCharCode(code);\n\t\t}\n\t}\n\tfunction entityReplacer(a){\n\t\tvar k = a.slice(1,-1);\n\t\tif (Object.hasOwnProperty.call(entityMap, k)) {\n\t\t\treturn entityMap[k];\n\t\t}else if(k.charAt(0) === '#'){\n\t\t\treturn fixedFromCharCode(parseInt(k.substr(1).replace('x','0x')))\n\t\t}else{\n\t\t\terrorHandler.error('entity not found:'+a);\n\t\t\treturn a;\n\t\t}\n\t}\n\tfunction appendText(end){//has some bugs\n\t\tif(end>start){\n\t\t\tvar xt = source.substring(start,end).replace(/&#?\\w+;/g,entityReplacer);\n\t\t\tlocator&&position(start);\n\t\t\tdomBuilder.characters(xt,0,end-start);\n\t\t\tstart = end\n\t\t}\n\t}\n\tfunction position(p,m){\n\t\twhile(p>=lineEnd && (m = linePattern.exec(source))){\n\t\t\tlineStart = m.index;\n\t\t\tlineEnd = lineStart + m[0].length;\n\t\t\tlocator.lineNumber++;\n\t\t\t//console.log('line++:',locator,startPos,endPos)\n\t\t}\n\t\tlocator.columnNumber = p-lineStart+1;\n\t}\n\tvar lineStart = 0;\n\tvar lineEnd = 0;\n\tvar linePattern = /.*(?:\\r\\n?|\\n)|.*$/g\n\tvar locator = domBuilder.locator;\n\n\tvar parseStack = [{currentNSMap:defaultNSMapCopy}]\n\tvar closeMap = {};\n\tvar start = 0;\n\twhile(true){\n\t\ttry{\n\t\t\tvar tagStart = source.indexOf('<',start);\n\t\t\tif(tagStart<0){\n\t\t\t\tif(!source.substr(start).match(/^\\s*$/)){\n\t\t\t\t\tvar doc = domBuilder.doc;\n\t \t\t\tvar text = doc.createTextNode(source.substr(start));\n\t \t\t\tdoc.appendChild(text);\n\t \t\t\tdomBuilder.currentElement = text;\n\t\t\t\t}\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif(tagStart>start){\n\t\t\t\tappendText(tagStart);\n\t\t\t}\n\t\t\tswitch(source.charAt(tagStart+1)){\n\t\t\tcase '/':\n\t\t\t\tvar end = source.indexOf('>',tagStart+3);\n\t\t\t\tvar tagName = source.substring(tagStart + 2, end).replace(/[ \\t\\n\\r]+$/g, '');\n\t\t\t\tvar config = parseStack.pop();\n\t\t\t\tif(end<0){\n\n\t \t\ttagName = source.substring(tagStart+2).replace(/[\\s<].*/,'');\n\t \t\terrorHandler.error(\"end tag name: \"+tagName+' is not complete:'+config.tagName);\n\t \t\tend = tagStart+1+tagName.length;\n\t \t}else if(tagName.match(/\\s</)){\n\t \t\ttagName = tagName.replace(/[\\s<].*/,'');\n\t \t\terrorHandler.error(\"end tag name: \"+tagName+' maybe not complete');\n\t \t\tend = tagStart+1+tagName.length;\n\t\t\t\t}\n\t\t\t\tvar localNSMap = config.localNSMap;\n\t\t\t\tvar endMatch = config.tagName == tagName;\n\t\t\t\tvar endIgnoreCaseMach = endMatch || config.tagName&&config.tagName.toLowerCase() == tagName.toLowerCase()\n\t\t if(endIgnoreCaseMach){\n\t\t \tdomBuilder.endElement(config.uri,config.localName,tagName);\n\t\t\t\t\tif(localNSMap){\n\t\t\t\t\t\tfor (var prefix in localNSMap) {\n\t\t\t\t\t\t\tif (Object.prototype.hasOwnProperty.call(localNSMap, prefix)) {\n\t\t\t\t\t\t\t\tdomBuilder.endPrefixMapping(prefix);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif(!endMatch){\n\t\t \terrorHandler.fatalError(\"end tag name: \"+tagName+' is not match the current start tagName:'+config.tagName ); // No known test case\n\t\t\t\t\t}\n\t\t }else{\n\t\t \tparseStack.push(config)\n\t\t }\n\n\t\t\t\tend++;\n\t\t\t\tbreak;\n\t\t\t\t// end elment\n\t\t\tcase '?':// <?...?>\n\t\t\t\tlocator&&position(tagStart);\n\t\t\t\tend = parseInstruction(source,tagStart,domBuilder);\n\t\t\t\tbreak;\n\t\t\tcase '!':// <!doctype,<![CDATA,<!--\n\t\t\t\tlocator&&position(tagStart);\n\t\t\t\tend = parseDCC(source,tagStart,domBuilder,errorHandler);\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tlocator&&position(tagStart);\n\t\t\t\tvar el = new ElementAttributes();\n\t\t\t\tvar currentNSMap = parseStack[parseStack.length-1].currentNSMap;\n\t\t\t\t//elStartEnd\n\t\t\t\tvar end = parseElementStartPart(source,tagStart,el,currentNSMap,entityReplacer,errorHandler);\n\t\t\t\tvar len = el.length;\n\n\n\t\t\t\tif(!el.closed && fixSelfClosed(source,end,el.tagName,closeMap)){\n\t\t\t\t\tel.closed = true;\n\t\t\t\t\tif(!entityMap.nbsp){\n\t\t\t\t\t\terrorHandler.warning('unclosed xml attribute');\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif(locator && len){\n\t\t\t\t\tvar locator2 = copyLocator(locator,{});\n\t\t\t\t\t//try{//attribute position fixed\n\t\t\t\t\tfor(var i = 0;i<len;i++){\n\t\t\t\t\t\tvar a = el[i];\n\t\t\t\t\t\tposition(a.offset);\n\t\t\t\t\t\ta.locator = copyLocator(locator,{});\n\t\t\t\t\t}\n\t\t\t\t\tdomBuilder.locator = locator2\n\t\t\t\t\tif(appendElement(el,domBuilder,currentNSMap)){\n\t\t\t\t\t\tparseStack.push(el)\n\t\t\t\t\t}\n\t\t\t\t\tdomBuilder.locator = locator;\n\t\t\t\t}else{\n\t\t\t\t\tif(appendElement(el,domBuilder,currentNSMap)){\n\t\t\t\t\t\tparseStack.push(el)\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (NAMESPACE.isHTML(el.uri) && !el.closed) {\n\t\t\t\t\tend = parseHtmlSpecialContent(source,end,el.tagName,entityReplacer,domBuilder)\n\t\t\t\t} else {\n\t\t\t\t\tend++;\n\t\t\t\t}\n\t\t\t}\n\t\t}catch(e){\n\t\t\tif (e instanceof ParseError) {\n\t\t\t\tthrow e;\n\t\t\t}\n\t\t\terrorHandler.error('element parse error: '+e)\n\t\t\tend = -1;\n\t\t}\n\t\tif(end>start){\n\t\t\tstart = end;\n\t\t}else{\n\t\t\t//TODO: 这里有可能sax回退,有位置错误风险\n\t\t\tappendText(Math.max(tagStart,start)+1);\n\t\t}\n\t}\n}\nfunction copyLocator(f,t){\n\tt.lineNumber = f.lineNumber;\n\tt.columnNumber = f.columnNumber;\n\treturn t;\n}\n\n/**\n * @see #appendElement(source,elStartEnd,el,selfClosed,entityReplacer,domBuilder,parseStack);\n * @return end of the elementStartPart(end of elementEndPart for selfClosed el)\n */\nfunction parseElementStartPart(source,start,el,currentNSMap,entityReplacer,errorHandler){\n\n\t/**\n\t * @param {string} qname\n\t * @param {string} value\n\t * @param {number} startIndex\n\t */\n\tfunction addAttribute(qname, value, startIndex) {\n\t\tif (el.attributeNames.hasOwnProperty(qname)) {\n\t\t\terrorHandler.fatalError('Attribute ' + qname + ' redefined')\n\t\t}\n\t\tel.addValue(\n\t\t\tqname,\n\t\t\t// @see https://www.w3.org/TR/xml/#AVNormalize\n\t\t\t// since the xmldom sax parser does not \"interpret\" DTD the following is not implemented:\n\t\t\t// - recursive replacement of (DTD) entity references\n\t\t\t// - trimming and collapsing multiple spaces into a single one for attributes that are not of type CDATA\n\t\t\tvalue.replace(/[\\t\\n\\r]/g, ' ').replace(/&#?\\w+;/g, entityReplacer),\n\t\t\tstartIndex\n\t\t)\n\t}\n\tvar attrName;\n\tvar value;\n\tvar p = ++start;\n\tvar s = S_TAG;//status\n\twhile(true){\n\t\tvar c = source.charAt(p);\n\t\tswitch(c){\n\t\tcase '=':\n\t\t\tif(s === S_ATTR){//attrName\n\t\t\t\tattrName = source.slice(start,p);\n\t\t\t\ts = S_EQ;\n\t\t\t}else if(s === S_ATTR_SPACE){\n\t\t\t\ts = S_EQ;\n\t\t\t}else{\n\t\t\t\t//fatalError: equal must after attrName or space after attrName\n\t\t\t\tthrow new Error('attribute equal must after attrName'); // No known test case\n\t\t\t}\n\t\t\tbreak;\n\t\tcase '\\'':\n\t\tcase '\"':\n\t\t\tif(s === S_EQ || s === S_ATTR //|| s == S_ATTR_SPACE\n\t\t\t\t){//equal\n\t\t\t\tif(s === S_ATTR){\n\t\t\t\t\terrorHandler.warning('attribute value must after \"=\"')\n\t\t\t\t\tattrName = source.slice(start,p)\n\t\t\t\t}\n\t\t\t\tstart = p+1;\n\t\t\t\tp = source.indexOf(c,start)\n\t\t\t\tif(p>0){\n\t\t\t\t\tvalue = source.slice(start, p);\n\t\t\t\t\taddAttribute(attrName, value, start-1);\n\t\t\t\t\ts = S_ATTR_END;\n\t\t\t\t}else{\n\t\t\t\t\t//fatalError: no end quot match\n\t\t\t\t\tthrow new Error('attribute value no end \\''+c+'\\' match');\n\t\t\t\t}\n\t\t\t}else if(s == S_ATTR_NOQUOT_VALUE){\n\t\t\t\tvalue = source.slice(start, p);\n\t\t\t\taddAttribute(attrName, value, start);\n\t\t\t\terrorHandler.warning('attribute \"'+attrName+'\" missed start quot('+c+')!!');\n\t\t\t\tstart = p+1;\n\t\t\t\ts = S_ATTR_END\n\t\t\t}else{\n\t\t\t\t//fatalError: no equal before\n\t\t\t\tthrow new Error('attribute value must after \"=\"'); // No known test case\n\t\t\t}\n\t\t\tbreak;\n\t\tcase '/':\n\t\t\tswitch(s){\n\t\t\tcase S_TAG:\n\t\t\t\tel.setTagName(source.slice(start,p));\n\t\t\tcase S_ATTR_END:\n\t\t\tcase S_TAG_SPACE:\n\t\t\tcase S_TAG_CLOSE:\n\t\t\t\ts =S_TAG_CLOSE;\n\t\t\t\tel.closed = true;\n\t\t\tcase S_ATTR_NOQUOT_VALUE:\n\t\t\tcase S_ATTR:\n\t\t\t\tbreak;\n\t\t\t\tcase S_ATTR_SPACE:\n\t\t\t\t\tel.closed = true;\n\t\t\t\tbreak;\n\t\t\t//case S_EQ:\n\t\t\tdefault:\n\t\t\t\tthrow new Error(\"attribute invalid close char('/')\") // No known test case\n\t\t\t}\n\t\t\tbreak;\n\t\tcase ''://end document\n\t\t\terrorHandler.error('unexpected end of input');\n\t\t\tif(s == S_TAG){\n\t\t\t\tel.setTagName(source.slice(start,p));\n\t\t\t}\n\t\t\treturn p;\n\t\tcase '>':\n\t\t\tswitch(s){\n\t\t\tcase S_TAG:\n\t\t\t\tel.setTagName(source.slice(start,p));\n\t\t\tcase S_ATTR_END:\n\t\t\tcase S_TAG_SPACE:\n\t\t\tcase S_TAG_CLOSE:\n\t\t\t\tbreak;//normal\n\t\t\tcase S_ATTR_NOQUOT_VALUE://Compatible state\n\t\t\tcase S_ATTR:\n\t\t\t\tvalue = source.slice(start,p);\n\t\t\t\tif(value.slice(-1) === '/'){\n\t\t\t\t\tel.closed = true;\n\t\t\t\t\tvalue = value.slice(0,-1)\n\t\t\t\t}\n\t\t\tcase S_ATTR_SPACE:\n\t\t\t\tif(s === S_ATTR_SPACE){\n\t\t\t\t\tvalue = attrName;\n\t\t\t\t}\n\t\t\t\tif(s == S_ATTR_NOQUOT_VALUE){\n\t\t\t\t\terrorHandler.warning('attribute \"'+value+'\" missed quot(\")!');\n\t\t\t\t\taddAttribute(attrName, value, start)\n\t\t\t\t}else{\n\t\t\t\t\tif(!NAMESPACE.isHTML(currentNSMap['']) || !value.match(/^(?:disabled|checked|selected)$/i)){\n\t\t\t\t\t\terrorHandler.warning('attribute \"'+value+'\" missed value!! \"'+value+'\" instead!!')\n\t\t\t\t\t}\n\t\t\t\t\taddAttribute(value, value, start)\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tcase S_EQ:\n\t\t\t\tthrow new Error('attribute value missed!!');\n\t\t\t}\n//\t\t\tconsole.log(tagName,tagNamePattern,tagNamePattern.test(tagName))\n\t\t\treturn p;\n\t\t/*xml space '\\x20' | #x9 | #xD | #xA; */\n\t\tcase '\\u0080':\n\t\t\tc = ' ';\n\t\tdefault:\n\t\t\tif(c<= ' '){//space\n\t\t\t\tswitch(s){\n\t\t\t\tcase S_TAG:\n\t\t\t\t\tel.setTagName(source.slice(start,p));//tagName\n\t\t\t\t\ts = S_TAG_SPACE;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_ATTR:\n\t\t\t\t\tattrName = source.slice(start,p)\n\t\t\t\t\ts = S_ATTR_SPACE;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_ATTR_NOQUOT_VALUE:\n\t\t\t\t\tvar value = source.slice(start, p);\n\t\t\t\t\terrorHandler.warning('attribute \"'+value+'\" missed quot(\")!!');\n\t\t\t\t\taddAttribute(attrName, value, start)\n\t\t\t\tcase S_ATTR_END:\n\t\t\t\t\ts = S_TAG_SPACE;\n\t\t\t\t\tbreak;\n\t\t\t\t//case S_TAG_SPACE:\n\t\t\t\t//case S_EQ:\n\t\t\t\t//case S_ATTR_SPACE:\n\t\t\t\t//\tvoid();break;\n\t\t\t\t//case S_TAG_CLOSE:\n\t\t\t\t\t//ignore warning\n\t\t\t\t}\n\t\t\t}else{//not space\n//S_TAG,\tS_ATTR,\tS_EQ,\tS_ATTR_NOQUOT_VALUE\n//S_ATTR_SPACE,\tS_ATTR_END,\tS_TAG_SPACE, S_TAG_CLOSE\n\t\t\t\tswitch(s){\n\t\t\t\t//case S_TAG:void();break;\n\t\t\t\t//case S_ATTR:void();break;\n\t\t\t\t//case S_ATTR_NOQUOT_VALUE:void();break;\n\t\t\t\tcase S_ATTR_SPACE:\n\t\t\t\t\tvar tagName = el.tagName;\n\t\t\t\t\tif (!NAMESPACE.isHTML(currentNSMap['']) || !attrName.match(/^(?:disabled|checked|selected)$/i)) {\n\t\t\t\t\t\terrorHandler.warning('attribute \"'+attrName+'\" missed value!! \"'+attrName+'\" instead2!!')\n\t\t\t\t\t}\n\t\t\t\t\taddAttribute(attrName, attrName, start);\n\t\t\t\t\tstart = p;\n\t\t\t\t\ts = S_ATTR;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_ATTR_END:\n\t\t\t\t\terrorHandler.warning('attribute space is required\"'+attrName+'\"!!')\n\t\t\t\tcase S_TAG_SPACE:\n\t\t\t\t\ts = S_ATTR;\n\t\t\t\t\tstart = p;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_EQ:\n\t\t\t\t\ts = S_ATTR_NOQUOT_VALUE;\n\t\t\t\t\tstart = p;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_TAG_CLOSE:\n\t\t\t\t\tthrow new Error(\"elements closed character '/' and '>' must be connected to\");\n\t\t\t\t}\n\t\t\t}\n\t\t}//end outer switch\n\t\t//console.log('p++',p)\n\t\tp++;\n\t}\n}\n/**\n * @return true if has new namespace define\n */\nfunction appendElement(el,domBuilder,currentNSMap){\n\tvar tagName = el.tagName;\n\tvar localNSMap = null;\n\t//var currentNSMap = parseStack[parseStack.length-1].currentNSMap;\n\tvar i = el.length;\n\twhile(i--){\n\t\tvar a = el[i];\n\t\tvar qName = a.qName;\n\t\tvar value = a.value;\n\t\tvar nsp = qName.indexOf(':');\n\t\tif(nsp>0){\n\t\t\tvar prefix = a.prefix = qName.slice(0,nsp);\n\t\t\tvar localName = qName.slice(nsp+1);\n\t\t\tvar nsPrefix = prefix === 'xmlns' && localName\n\t\t}else{\n\t\t\tlocalName = qName;\n\t\t\tprefix = null\n\t\t\tnsPrefix = qName === 'xmlns' && ''\n\t\t}\n\t\t//can not set prefix,because prefix !== ''\n\t\ta.localName = localName ;\n\t\t//prefix == null for no ns prefix attribute\n\t\tif(nsPrefix !== false){//hack!!\n\t\t\tif(localNSMap == null){\n\t\t\t\tlocalNSMap = {}\n\t\t\t\t//console.log(currentNSMap,0)\n\t\t\t\t_copy(currentNSMap,currentNSMap={})\n\t\t\t\t//console.log(currentNSMap,1)\n\t\t\t}\n\t\t\tcurrentNSMap[nsPrefix] = localNSMap[nsPrefix] = value;\n\t\t\ta.uri = NAMESPACE.XMLNS\n\t\t\tdomBuilder.startPrefixMapping(nsPrefix, value)\n\t\t}\n\t}\n\tvar i = el.length;\n\twhile(i--){\n\t\ta = el[i];\n\t\tvar prefix = a.prefix;\n\t\tif(prefix){//no prefix attribute has no namespace\n\t\t\tif(prefix === 'xml'){\n\t\t\t\ta.uri = NAMESPACE.XML;\n\t\t\t}if(prefix !== 'xmlns'){\n\t\t\t\ta.uri = currentNSMap[prefix || '']\n\n\t\t\t\t//{console.log('###'+a.qName,domBuilder.locator.systemId+'',currentNSMap,a.uri)}\n\t\t\t}\n\t\t}\n\t}\n\tvar nsp = tagName.indexOf(':');\n\tif(nsp>0){\n\t\tprefix = el.prefix = tagName.slice(0,nsp);\n\t\tlocalName = el.localName = tagName.slice(nsp+1);\n\t}else{\n\t\tprefix = null;//important!!\n\t\tlocalName = el.localName = tagName;\n\t}\n\t//no prefix element has default namespace\n\tvar ns = el.uri = currentNSMap[prefix || ''];\n\tdomBuilder.startElement(ns,localName,tagName,el);\n\t//endPrefixMapping and startPrefixMapping have not any help for dom builder\n\t//localNSMap = null\n\tif(el.closed){\n\t\tdomBuilder.endElement(ns,localName,tagName);\n\t\tif(localNSMap){\n\t\t\tfor (prefix in localNSMap) {\n\t\t\t\tif (Object.prototype.hasOwnProperty.call(localNSMap, prefix)) {\n\t\t\t\t\tdomBuilder.endPrefixMapping(prefix);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}else{\n\t\tel.currentNSMap = currentNSMap;\n\t\tel.localNSMap = localNSMap;\n\t\t//parseStack.push(el);\n\t\treturn true;\n\t}\n}\nfunction parseHtmlSpecialContent(source,elStartEnd,tagName,entityReplacer,domBuilder){\n\tif(/^(?:script|textarea)$/i.test(tagName)){\n\t\tvar elEndStart = source.indexOf('</'+tagName+'>',elStartEnd);\n\t\tvar text = source.substring(elStartEnd+1,elEndStart);\n\t\tif(/[&<]/.test(text)){\n\t\t\tif(/^script$/i.test(tagName)){\n\t\t\t\t//if(!/\\]\\]>/.test(text)){\n\t\t\t\t\t//lexHandler.startCDATA();\n\t\t\t\t\tdomBuilder.characters(text,0,text.length);\n\t\t\t\t\t//lexHandler.endCDATA();\n\t\t\t\t\treturn elEndStart;\n\t\t\t\t//}\n\t\t\t}//}else{//text area\n\t\t\t\ttext = text.replace(/&#?\\w+;/g,entityReplacer);\n\t\t\t\tdomBuilder.characters(text,0,text.length);\n\t\t\t\treturn elEndStart;\n\t\t\t//}\n\n\t\t}\n\t}\n\treturn elStartEnd+1;\n}\nfunction fixSelfClosed(source,elStartEnd,tagName,closeMap){\n\t//if(tagName in closeMap){\n\tvar pos = closeMap[tagName];\n\tif(pos == null){\n\t\t//console.log(tagName)\n\t\tpos = source.lastIndexOf('</'+tagName+'>')\n\t\tif(pos<elStartEnd){//忘记闭合\n\t\t\tpos = source.lastIndexOf('</'+tagName)\n\t\t}\n\t\tcloseMap[tagName] =pos\n\t}\n\treturn pos<elStartEnd;\n\t//}\n}\n\nfunction _copy (source, target) {\n\tfor (var n in source) {\n\t\tif (Object.prototype.hasOwnProperty.call(source, n)) {\n\t\t\ttarget[n] = source[n];\n\t\t}\n\t}\n}\n\nfunction parseDCC(source,start,domBuilder,errorHandler){//sure start with '<!'\n\tvar next= source.charAt(start+2)\n\tswitch(next){\n\tcase '-':\n\t\tif(source.charAt(start + 3) === '-'){\n\t\t\tvar end = source.indexOf('-->',start+4);\n\t\t\t//append comment source.substring(4,end)//<!--\n\t\t\tif(end>start){\n\t\t\t\tdomBuilder.comment(source,start+4,end-start-4);\n\t\t\t\treturn end+3;\n\t\t\t}else{\n\t\t\t\terrorHandler.error(\"Unclosed comment\");\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}else{\n\t\t\t//error\n\t\t\treturn -1;\n\t\t}\n\tdefault:\n\t\tif(source.substr(start+3,6) == 'CDATA['){\n\t\t\tvar end = source.indexOf(']]>',start+9);\n\t\t\tdomBuilder.startCDATA();\n\t\t\tdomBuilder.characters(source,start+9,end-start-9);\n\t\t\tdomBuilder.endCDATA()\n\t\t\treturn end+3;\n\t\t}\n\t\t//<!DOCTYPE\n\t\t//startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)\n\t\tvar matchs = split(source,start);\n\t\tvar len = matchs.length;\n\t\tif(len>1 && /!doctype/i.test(matchs[0][0])){\n\t\t\tvar name = matchs[1][0];\n\t\t\tvar pubid = false;\n\t\t\tvar sysid = false;\n\t\t\tif(len>3){\n\t\t\t\tif(/^public$/i.test(matchs[2][0])){\n\t\t\t\t\tpubid = matchs[3][0];\n\t\t\t\t\tsysid = len>4 && matchs[4][0];\n\t\t\t\t}else if(/^system$/i.test(matchs[2][0])){\n\t\t\t\t\tsysid = matchs[3][0];\n\t\t\t\t}\n\t\t\t}\n\t\t\tvar lastMatch = matchs[len-1]\n\t\t\tdomBuilder.startDTD(name, pubid, sysid);\n\t\t\tdomBuilder.endDTD();\n\n\t\t\treturn lastMatch.index+lastMatch[0].length\n\t\t}\n\t}\n\treturn -1;\n}\n\n\n\nfunction parseInstruction(source,start,domBuilder){\n\tvar end = source.indexOf('?>',start);\n\tif(end){\n\t\tvar match = source.substring(start,end).match(/^<\\?(\\S*)\\s*([\\s\\S]*?)\\s*$/);\n\t\tif(match){\n\t\t\tvar len = match[0].length;\n\t\t\tdomBuilder.processingInstruction(match[1], match[2]) ;\n\t\t\treturn end+2;\n\t\t}else{//error\n\t\t\treturn -1;\n\t\t}\n\t}\n\treturn -1;\n}\n\nfunction ElementAttributes(){\n\tthis.attributeNames = {}\n}\nElementAttributes.prototype = {\n\tsetTagName:function(tagName){\n\t\tif(!tagNamePattern.test(tagName)){\n\t\t\tthrow new Error('invalid tagName:'+tagName)\n\t\t}\n\t\tthis.tagName = tagName\n\t},\n\taddValue:function(qName, value, offset) {\n\t\tif(!tagNamePattern.test(qName)){\n\t\t\tthrow new Error('invalid attribute:'+qName)\n\t\t}\n\t\tthis.attributeNames[qName] = this.length;\n\t\tthis[this.length++] = {qName:qName,value:value,offset:offset}\n\t},\n\tlength:0,\n\tgetLocalName:function(i){return this[i].localName},\n\tgetLocator:function(i){return this[i].locator},\n\tgetQName:function(i){return this[i].qName},\n\tgetURI:function(i){return this[i].uri},\n\tgetValue:function(i){return this[i].value}\n//\t,getIndex:function(uri, localName)){\n//\t\tif(localName){\n//\n//\t\t}else{\n//\t\t\tvar qName = uri\n//\t\t}\n//\t},\n//\tgetValue:function(){return this.getValue(this.getIndex.apply(this,arguments))},\n//\tgetType:function(uri,localName){}\n//\tgetType:function(i){},\n}\n\n\n\nfunction split(source,start){\n\tvar match;\n\tvar buf = [];\n\tvar reg = /'[^']+'|\"[^\"]+\"|[^\\s<>\\/=]+=?|(\\/?\\s*>|<)/g;\n\treg.lastIndex = start;\n\treg.exec(source);//skip <\n\twhile(match = reg.exec(source)){\n\t\tbuf.push(match);\n\t\tif(match[1])return buf;\n\t}\n}\n\nexports.XMLReader = XMLReader;\nexports.ParseError = ParseError;\n","export { InvalidNumberOfChildrenError } from './invalid-number-of-children';\n","export class InvalidNumberOfChildrenError extends Error {\n constructor(tagName: string, expectedNumberOfChild: number, currentNumberOfChild: number, comparison = 'exactly') {\n super(\n `${tagName} tag must have ${comparison} ${expectedNumberOfChild} children. It's actually ${currentNumberOfChild}`,\n );\n this.name = 'InvalidNumberOfChildrenError';\n }\n}\n","export * from './wrappers';\nexport * from './join-with-many-separators';\nexport * from './mathml-element-to-latex-converter';\nexport * from './normalize-whitespace';\n","export class JoinWithManySeparators {\n private _separators: string[];\n\n constructor(separators: string[]) {\n this._separators = separators;\n }\n\n static join(arr: string[], separators: string[], defaultSeparator: string = ''): string {\n const effectiveSeparators =\n separators.length > 0 ? separators : defaultSeparator !== undefined ? [defaultSeparator] : [];\n return new JoinWithManySeparators(effectiveSeparators)._join(arr);\n }\n\n private _join(arr: string[]): string {\n return arr.reduce((joinedStr, currentStr, currentIndex, strArr) => {\n const separator = currentIndex === strArr.length - 1 ? '' : this._get(currentIndex);\n return joinedStr + currentStr + separator;\n }, '');\n }\n\n private _get(index: number) {\n if (!this._separators[index]) return this._separators[this._separators.length - 1];\n return this._separators[index];\n }\n}\n","import { MathMLElement } from '../protocols/mathml-element';\nimport { ToLaTeXConverter } from '../../domain/usecases/to-latex-converter';\nimport { MathMLElementToLatexConverterAdapter } from '../usecases/mathml-to-latex-convertion/mathml-element-to-latex-converter-adapter';\n\nexport const mathMLElementToLaTeXConverter = (mathMLElement: MathMLElement): ToLaTeXConverter =>\n new MathMLElementToLatexConverterAdapter(mathMLElement).toLatexConverter();\n","export const normalizeWhiteSpaces = (str: string): string => {\n return str.replace(/\\s+/g, ' ');\n};\n","import { Wrapper } from './wrapper';\n\nexport class BracketWrapper {\n protected _open = '{';\n protected _close = '}';\n\n wrap(str: string): string {\n return new Wrapper(this._open, this._close).wrap(str);\n }\n}\n","import { Wrapper } from './wrapper';\n\nexport class GenericWrapper {\n protected _open: string;\n protected _close: string;\n\n constructor(open: string, close: string) {\n this._open = '\\\\left' + open;\n this._close = '\\\\right' + close;\n }\n\n wrap(str: string): string {\n return new Wrapper(this._open, this._close).wrap(str);\n }\n}\n","export { BracketWrapper } from './bracket';\nexport { ParenthesisWrapper } from './parenthesis';\nexport { GenericWrapper } from './generic';\n","import { Wrapper } from './wrapper';\n\nexport class ParenthesisWrapper {\n protected _open = '\\\\left(';\n protected _close = '\\\\right)';\n\n wrap(str: string): string {\n return new Wrapper(this._open, this._close).wrap(str);\n }\n\n wrapIfMoreThanOneChar(str: string): string {\n if (str.length <= 1) return str;\n return this.wrap(str);\n }\n}\n","export class Wrapper {\n protected _open: string;\n protected _close: string;\n\n constructor(open: string, close: string) {\n this._open = open;\n this._close = close;\n }\n\n wrap(str: string): string {\n return this._open + str + this._close;\n }\n}\n","export interface MathMLElement {\n readonly name: string;\n readonly value: string;\n readonly children: MathMLElement[];\n attributes: Record<string, string>;\n}\n\nexport class VoidMathMLElement implements MathMLElement {\n readonly name = 'void';\n readonly value = '';\n readonly children = [];\n attributes = {};\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers';\n\nexport class GenericSpacingWrapper implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n return this._mathmlElement.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' ');\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers/mathml-element-to-latex-converter';\nimport { InvalidNumberOfChildrenError } from '../../../errors';\nimport { latexAccents } from '../../../../syntax/latex-accents';\n\nexport class GenericUnderOver implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { name, children } = this._mathmlElement;\n const childrenLength = children.length;\n\n if (childrenLength !== 2) throw new InvalidNumberOfChildrenError(name, 2, childrenLength);\n\n const content = mathMLElementToLaTeXConverter(children[0]).convert();\n const accent = mathMLElementToLaTeXConverter(children[1]).convert();\n\n return this._applyCommand(content, accent);\n }\n\n private _applyCommand(content: string, accent: string): string {\n const type = this._mathmlElement.name.match(/under/) ? TagTypes.Under : TagTypes.Over;\n return new UnderOverSetter(type).apply(content, accent);\n }\n}\n\nclass UnderOverSetter {\n private readonly _type;\n\n constructor(type: TagTypes) {\n this._type = type;\n }\n\n apply(content: string, accent: string) {\n return latexAccents.includes(accent) ? `${accent}{${content}}` : `${this._defaultCommand}{${accent}}{${content}}`;\n }\n\n private get _defaultCommand(): string {\n if (this._type === TagTypes.Under) return '\\\\underset';\n return '\\\\overset';\n }\n}\n\nenum TagTypes {\n Under,\n Over,\n}\n","export { Math } from './math';\nexport { MI } from './mi';\nexport { MO } from './mo';\nexport { MN } from './mn';\nexport { MSqrt } from './msqrt';\nexport { MFenced } from './mfenced';\nexport { MFrac } from './mfrac';\nexport { MRoot } from './mroot';\nexport { MAction } from './maction';\nexport { MEnclose } from './menclose';\nexport { MError } from './merror';\nexport { MPhantom } from './mphantom';\nexport { MSup } from './msup';\nexport { MSub } from './msub';\nexport { MSubsup } from './msubsup';\nexport { MMultiscripts } from './mmultiscripts';\nexport { MText } from './mtext';\nexport { MUnderover } from './munderover';\nexport { MTable } from './mtable';\nexport { MTr } from './mtr';\nexport { GenericSpacingWrapper } from './generic-spacing-wrapper';\nexport { GenericUnderOver } from './generic-under-over';\nexport { MRow } from './mrow';\nexport { MSpace } from './mspace';\nexport { Void } from './void';\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers/mathml-element-to-latex-converter';\n\nexport class MAction implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { children } = this._mathmlElement;\n\n if (this._isToggle())\n return children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' \\\\Longrightarrow ');\n\n return mathMLElementToLaTeXConverter(children[0]).convert();\n }\n\n private _isToggle(): boolean {\n const { actiontype } = this._mathmlElement.attributes;\n return actiontype === 'toggle' || !actiontype;\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers/mathml-element-to-latex-converter';\nimport { normalizeWhiteSpaces } from '../../../helpers/normalize-whitespace';\n\nexport class Math implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const unnormalizedLatex = this._mathmlElement.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' ');\n\n return normalizeWhiteSpaces(unnormalizedLatex);\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers/mathml-element-to-latex-converter';\n\nexport class MEnclose implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const latexJoinedChildren = this._mathmlElement.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' ');\n\n if (this._notation === 'actuarial') return `\\\\overline{\\\\left.${latexJoinedChildren}\\\\right|}`;\n if (this._notation === 'radical') return `\\\\sqrt{${latexJoinedChildren}}`;\n if (['box', 'roundedbox', 'circle'].includes(this._notation)) return `\\\\boxed{${latexJoinedChildren}}`;\n if (this._notation === 'left') return `\\\\left|${latexJoinedChildren}`;\n if (this._notation === 'right') return `${latexJoinedChildren}\\\\right|`;\n if (this._notation === 'top') return `\\\\overline{${latexJoinedChildren}}`;\n if (this._notation === 'bottom') return `\\\\underline{${latexJoinedChildren}}`;\n if (this._notation === 'updiagonalstrike') return `\\\\cancel{${latexJoinedChildren}}`;\n if (this._notation === 'downdiagonalstrike') return `\\\\bcancel{${latexJoinedChildren}}`;\n if (this._notation === 'updiagonalarrow') return `\\\\cancelto{}{${latexJoinedChildren}}`;\n if (['verticalstrike', 'horizontalstrike'].includes(this._notation)) return `\\\\hcancel{${latexJoinedChildren}}`;\n if (this._notation === 'madruwb') return `\\\\underline{${latexJoinedChildren}\\\\right|}`;\n if (this._notation === 'phasorangle') return `{\\\\angle \\\\underline{${latexJoinedChildren}}}`;\n\n return `\\\\overline{\\\\left.\\\\right)${latexJoinedChildren}}`;\n }\n\n private get _notation(): string {\n return this._mathmlElement.attributes.notation || 'longdiv';\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers/mathml-element-to-latex-converter';\n\nexport class MError implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const latexJoinedChildren = this._mathmlElement.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' ');\n\n return `\\\\color{red}{${latexJoinedChildren}}`;\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers/mathml-element-to-latex-converter';\nimport { GenericWrapper, JoinWithManySeparators } from '../../../helpers';\n\nexport class MFenced implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n private readonly open: string;\n private readonly close: string;\n\n constructor(mathmlElement: MathMLElement) {\n this._mathmlElement = mathmlElement;\n this.open = this._mathmlElement.attributes.open || '';\n this.close = this._mathmlElement.attributes.close || '';\n }\n\n convert(): string {\n const latexChildren = this._mathmlElement.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert());\n\n if (this._isThereRelativeOfName(this._mathmlElement.children, 'mtable'))\n return new Matrix(this.open, this.close).apply(latexChildren);\n\n const separatorsAttr = this._mathmlElement.attributes.separators;\n const hasSeparatorsAttribute = separatorsAttr !== undefined;\n const separatorsArray = separatorsAttr ? Array.from(separatorsAttr) : [];\n\n // Use comma default only if no separators **attribute** was provided\n const defaultSeparator = !hasSeparatorsAttribute ? ',' : '';\n return new Vector(this.open, this.close, separatorsArray, defaultSeparator).apply(latexChildren);\n }\n\n private _isThereRelativeOfName(mathmlElements: MathMLElement[], elementName: string): boolean {\n return mathmlElements.some(\n (child) => child.name === elementName || this._isThereRelativeOfName(child.children, elementName),\n );\n }\n}\n\nclass Vector {\n private readonly open: string;\n private readonly close: string;\n\n constructor(\n open: string,\n close: string,\n private readonly separators: string[],\n private readonly defaultSeparator: string,\n ) {\n this.open = open || '(';\n this.close = close || ')';\n }\n\n apply(latexContents: string[]): string {\n const contentWithoutWrapper = JoinWithManySeparators.join(latexContents, this.separators, this.defaultSeparator);\n return new GenericWrapper(this.open, this.close).wrap(contentWithoutWrapper);\n }\n}\n\nclass Matrix {\n private readonly separators: Separators;\n private readonly _genericCommand = 'matrix';\n\n constructor(open: string, close: string) {\n this.separators = new Separators(open, close);\n }\n\n apply(latexContents: string[]): string {\n const command = this._command;\n const matrix = `\\\\begin{${command}}\\n${latexContents.join('')}\\n\\\\end{${command}}`;\n\n return command === this._genericCommand ? this.separators.wrap(matrix) : matrix;\n }\n\n private get _command(): string {\n if (this.separators.areParentheses()) return 'pmatrix';\n if (this.separators.areSquareBrackets()) return 'bmatrix';\n if (this.separators.areBrackets()) return 'Bmatrix';\n if (this.separators.areDivides()) return 'vmatrix';\n if (this.separators.areParallels()) return 'Vmatrix';\n if (this.separators.areNotEqual()) return this._genericCommand;\n return 'bmatrix';\n }\n}\n\nclass Separators {\n constructor(\n private readonly open: string,\n private readonly close: string,\n ) {}\n\n wrap(str: string): string {\n return new GenericWrapper(this.open, this.close).wrap(str);\n }\n\n areParentheses(): boolean {\n return this._compare('(', ')');\n }\n\n areSquareBrackets(): boolean {\n return this._compare('[', ']');\n }\n\n areBrackets(): boolean {\n return this._compare('{', '}');\n }\n\n areDivides(): boolean {\n return this._compare('|', '|');\n }\n\n areParallels(): boolean {\n return this._compare('||', '||');\n }\n\n areNotEqual(): boolean {\n return this.open !== this.close;\n }\n\n private _compare(openToCompare: string, closeToCompare: string): boolean {\n return this.open === openToCompare && this.close === closeToCompare;\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { InvalidNumberOfChildrenError } from '../../../errors';\nimport { ParenthesisWrapper, mathMLElementToLaTeXConverter } from '../../../helpers';\n\nexport class MFrac implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { children, name } = this._mathmlElement;\n const childrenLength = children.length;\n\n if (childrenLength !== 2) throw new InvalidNumberOfChildrenError(name, 2, childrenLength);\n\n const num = mathMLElementToLaTeXConverter(children[0]).convert();\n const den = mathMLElementToLaTeXConverter(children[1]).convert();\n\n if (this._isBevelled()) return `${this._wrapIfMoreThanOneChar(num)}/${this._wrapIfMoreThanOneChar(den)}`;\n\n return `\\\\frac{${num}}{${den}}`;\n }\n\n private _wrapIfMoreThanOneChar(str: string): string {\n return new ParenthesisWrapper().wrapIfMoreThanOneChar(str);\n }\n\n private _isBevelled(): boolean {\n return !!this._mathmlElement.attributes.bevelled;\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { normalizeWhiteSpaces } from '../../../helpers';\nimport { allMathSymbolsByChar, allMathSymbolsByGlyph, mathNumberByGlyph } from '../../../../syntax';\nimport { UTF8ToLtXConverter } from 'data/protocols';\nimport { HashUTF8ToLtXConverter } from '../../../../syntax/utf8-converter';\n\nexport class MI implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n private readonly utf8Converter: UTF8ToLtXConverter = new HashUTF8ToLtXConverter();\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const normalizedValue = normalizeWhiteSpaces(this._mathmlElement.value);\n if (normalizedValue === ' ') return Character.apply(normalizedValue);\n\n const trimmedValue = normalizedValue.trim();\n const convertedChar = Character.apply(trimmedValue);\n\n const parsedChar = this.utf8Converter.convert(convertedChar);\n if (parsedChar !== convertedChar) return parsedChar;\n\n return this.wrapInMathVariant(convertedChar, this.getMathVariant(this._mathmlElement.attributes));\n }\n\n private getMathVariant(attributes: Record<string, unknown> | undefined) {\n if (!attributes || !attributes.mathvariant) return undefined;\n return attributes.mathvariant as string;\n }\n\n private wrapInMathVariant(value: string, mathVariant: string | undefined) {\n switch (mathVariant) {\n case 'bold':\n return `\\\\mathbf{${value}}`;\n case 'italic':\n return `\\\\mathit{${value}}`;\n case 'bold-italic':\n return `\\\\mathbf{\\\\mathit{${value}}}`;\n case 'double-struck':\n return `\\\\mathbb{${value}}`;\n case 'bold-fraktur':\n return `\\\\mathbf{\\\\mathfrak{${value}}}`;\n case 'script':\n return `\\\\mathcal{${value}}`;\n case 'bold-script':\n return `\\\\mathbf{\\\\mathcal{${value}}}`;\n case 'fraktur':\n return `\\\\mathfrak{${value}}`;\n case 'sans-serif':\n return `\\\\mathsf{${value}}`;\n case 'bold-sans-serif':\n return `\\\\mathbf{\\\\mathsf{${value}}}`;\n case 'sans-serif-italic':\n return `\\\\mathsf{\\\\mathit{${value}}}`;\n case 'sans-serif-bold-italic':\n return `\\\\mathbf{\\\\mathsf{\\\\mathit{${value}}}}`;\n case 'monospace':\n return `\\\\mathtt{${value}}`;\n default:\n return value;\n }\n }\n}\n\nclass Character {\n private _value: string;\n\n constructor(value: string) {\n this._value = value;\n }\n\n static apply(value: string): string {\n return new Character(value)._apply();\n }\n\n private _apply(): string {\n return (\n this._findByCharacter() ||\n this._findByGlyph() ||\n this._findByNumber() ||\n new HashUTF8ToLtXConverter().convert(this._value)\n );\n }\n\n private _findByCharacter(): string | undefined {\n return allMathSymbolsByChar[this._value];\n }\n\n private _findByGlyph(): string | undefined {\n return allMathSymbolsByGlyph[this._value];\n }\n\n private _findByNumber(): string | undefined {\n return mathNumberByGlyph[this._value];\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter, ParenthesisWrapper } from '../../../helpers';\nimport { InvalidNumberOfChildrenError } from '../../../errors';\n\nexport class MMultiscripts implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { name, children } = this._mathmlElement;\n const childrenLength = children.length;\n\n if (childrenLength < 3) throw new InvalidNumberOfChildrenError(name, 3, childrenLength, 'at least');\n\n const baseContent = mathMLElementToLaTeXConverter(children[0]).convert();\n\n return this._prescriptLatex() + this._wrapInParenthesisIfThereIsSpace(baseContent) + this._postscriptLatex();\n }\n\n private _prescriptLatex(): string {\n const { children } = this._mathmlElement;\n let sub;\n let sup;\n\n if (this._isPrescripts(children[1])) {\n sub = children[2];\n sup = children[3];\n } else if (this._isPrescripts(children[3])) {\n sub = children[4];\n sup = children[5];\n } else return '';\n\n const subLatex = mathMLElementToLaTeXConverter(sub).convert();\n const supLatex = mathMLElementToLaTeXConverter(sup).convert();\n\n return `\\\\_{${subLatex}}^{${supLatex}}`;\n }\n\n private _postscriptLatex(): string {\n const { children } = this._mathmlElement;\n if (this._isPrescripts(children[1])) return '';\n\n const sub = children[1];\n const sup = children[2];\n\n const subLatex = mathMLElementToLaTeXConverter(sub).convert();\n const supLatex = mathMLElementToLaTeXConverter(sup).convert();\n\n return `_{${subLatex}}^{${supLatex}}`;\n }\n\n private _wrapInParenthesisIfThereIsSpace(str: string): string {\n if (!str.match(/\\s+/g)) return str;\n return new ParenthesisWrapper().wrap(str);\n }\n\n private _isPrescripts(child: MathMLElement): boolean {\n return child?.name === 'mprescripts';\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { normalizeWhiteSpaces } from '../../../helpers';\nimport { mathNumberByGlyph } from '../../../../syntax';\n\nexport class MN implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const normalizedValue = normalizeWhiteSpaces(this._mathmlElement.value).trim();\n const convertedValue = mathNumberByGlyph[normalizedValue];\n\n return convertedValue || normalizedValue;\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { normalizeWhiteSpaces } from '../../../helpers';\nimport {\n HashUTF8ToLtXConverter,\n allMathOperatorsByChar,\n allMathOperatorsByGlyph,\n mathNumberByGlyph,\n} from '../../../../syntax';\n\nexport class MO implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const normalizedValue = normalizeWhiteSpaces(this._mathmlElement.value);\n const trimmedValue = normalizedValue.trim();\n\n return Operator.operate(trimmedValue);\n }\n}\n\nclass Operator {\n private _value: string;\n\n constructor(value: string) {\n this._value = value;\n }\n\n static operate(value: string): string {\n return new Operator(value)._operate();\n }\n\n private _operate(): string {\n return (\n this._findByCharacter() ||\n this._findByGlyph() ||\n this._findByNumber() ||\n new HashUTF8ToLtXConverter().convert(this._value)\n );\n }\n\n private _findByCharacter(): string | undefined {\n return allMathOperatorsByChar[this._value];\n }\n\n private _findByGlyph(): string | undefined {\n return allMathOperatorsByGlyph[this._value];\n }\n\n private _findByNumber(): string | undefined {\n return mathNumberByGlyph[this._value];\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\n\nexport class MPhantom implements ToLaTeXConverter {\n private readonly _mathmlElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n return '';\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers';\nimport { InvalidNumberOfChildrenError } from '../../../errors';\n\nexport class MRoot implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { name, children } = this._mathmlElement;\n const childrenLength = children.length;\n\n if (childrenLength !== 2) throw new InvalidNumberOfChildrenError(name, 2, childrenLength);\n\n const content = mathMLElementToLaTeXConverter(children[0]).convert();\n const rootIndex = mathMLElementToLaTeXConverter(children[1]).convert();\n\n return `\\\\sqrt[${rootIndex}]{${content}}`;\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers';\n\nexport class MRow implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n // Check if this is a linear system pattern: { + mtable + empty closing operator\n if (this._isLinearSystemPattern()) {\n return this._convertAsLinearSystem();\n }\n\n return this._mathmlElement.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' ');\n }\n\n private _isLinearSystemPattern(): boolean {\n const { children } = this._mathmlElement;\n\n if (children.length !== 3) return false;\n\n // First child should be opening brace operator\n const firstChild = children[0];\n const isOpeningBrace = firstChild.name === 'mo' && firstChild.value.trim() === '{';\n\n // Second child should be mtable\n const secondChild = children[1];\n const isMTable = secondChild.name === 'mtable';\n\n // Third child should be empty closing operator\n const thirdChild = children[2];\n const isEmptyClosing = thirdChild.name === 'mo' && thirdChild.value.trim() === '';\n\n return isOpeningBrace && isMTable && isEmptyClosing;\n }\n\n private _convertAsLinearSystem(): string {\n const mtableChild = this._mathmlElement.children[1];\n const tableContent = mtableChild.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' \\\\\\\\ ');\n\n return `\\\\begin{cases} ${tableContent} \\\\end{cases}`;\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\n\nexport class MSpace implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { linebreak } = this._mathmlElement.attributes;\n\n if (linebreak === 'newline') {\n return ' \\\\\\\\ ';\n }\n\n return ' ';\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers';\n\nexport class MSqrt implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const latexJoinedChildren = this._mathmlElement.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' ');\n\n return `\\\\sqrt{${latexJoinedChildren}}`;\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter, ParenthesisWrapper, BracketWrapper } from '../../../helpers';\nimport { InvalidNumberOfChildrenError } from '../../../errors';\n\nexport class MSub implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { name, children } = this._mathmlElement;\n const childrenLength = children.length;\n\n if (childrenLength !== 2) throw new InvalidNumberOfChildrenError(name, 2, childrenLength);\n\n const baseChild = children[0];\n const subscriptChild = children[1];\n\n return `${this._handleBaseChild(baseChild)}_${this._handleSubscriptChild(subscriptChild)}`;\n }\n\n private _handleBaseChild(base: MathMLElement): string {\n const baseChildren = base.children;\n const baseStr = mathMLElementToLaTeXConverter(base).convert();\n\n if (baseChildren.length <= 1) {\n return baseStr;\n }\n\n return new ParenthesisWrapper().wrapIfMoreThanOneChar(baseStr);\n }\n\n private _handleSubscriptChild(subscript: MathMLElement): string {\n const subscriptStr = mathMLElementToLaTeXConverter(subscript).convert();\n\n return new BracketWrapper().wrap(subscriptStr);\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter, ParenthesisWrapper, BracketWrapper } from '../../../helpers';\nimport { InvalidNumberOfChildrenError } from '../../../errors';\n\nexport class MSubsup implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { name, children } = this._mathmlElement;\n const childrenLength = children.length;\n\n if (childrenLength !== 3) throw new InvalidNumberOfChildrenError(name, 3, childrenLength);\n\n const baseChild = children[0];\n const subscriptChild = children[1];\n const superscriptChild = children[2];\n\n return `${this._handleBaseChild(baseChild)}_${this._handleSubscriptChild(subscriptChild)}^${this._handleSuperscriptChild(superscriptChild)}`;\n }\n\n private _handleBaseChild(base: MathMLElement): string {\n const baseChildren = base.children;\n const baseStr = mathMLElementToLaTeXConverter(base).convert();\n\n if (baseChildren.length <= 1) {\n return baseStr;\n }\n\n return new ParenthesisWrapper().wrapIfMoreThanOneChar(baseStr);\n }\n\n private _handleSubscriptChild(subscript: MathMLElement): string {\n const subscriptStr = mathMLElementToLaTeXConverter(subscript).convert();\n\n return new BracketWrapper().wrap(subscriptStr);\n }\n\n private _handleSuperscriptChild(superscript: MathMLElement): string {\n const superscriptStr = mathMLElementToLaTeXConverter(superscript).convert();\n\n return new BracketWrapper().wrap(superscriptStr);\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter, ParenthesisWrapper, BracketWrapper } from '../../../helpers';\nimport { InvalidNumberOfChildrenError } from '../../../errors';\n\nexport class MSup implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { name, children } = this._mathmlElement;\n const childrenLength = children.length;\n\n if (childrenLength !== 2) throw new InvalidNumberOfChildrenError(name, 2, childrenLength);\n\n const baseChild = children[0];\n const exponentChild = children[1];\n\n return `${this._handleBaseChild(baseChild)}^${this._handleExponentChild(exponentChild)}`;\n }\n\n private _handleBaseChild(base: MathMLElement): string {\n const baseChildren = base.children;\n const baseStr = mathMLElementToLaTeXConverter(base).convert();\n\n if (baseChildren.length <= 1) {\n return baseStr;\n }\n\n return new ParenthesisWrapper().wrapIfMoreThanOneChar(baseStr);\n }\n\n private _handleExponentChild(exponent: MathMLElement): string {\n const exponentStr = mathMLElementToLaTeXConverter(exponent).convert();\n\n return new BracketWrapper().wrap(exponentStr);\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers';\n\nexport class MTable implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n this._addFlagRecursiveIfName(this._mathmlElement.children, 'mtable', 'innerTable');\n }\n\n convert(): string {\n const tableContent = this._mathmlElement.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' \\\\\\\\\\n');\n\n return this._hasFlag('innerTable') ? this._wrap(tableContent) : tableContent;\n }\n\n private _wrap(latex: string): string {\n return `\\\\begin{matrix}${latex}\\\\end{matrix}`;\n }\n\n private _addFlagRecursiveIfName(mathmlElements: MathMLElement[], name: string, flag: string): void {\n mathmlElements.forEach((mathmlElement) => {\n if (mathmlElement.name === name) mathmlElement.attributes[flag] = flag;\n this._addFlagRecursiveIfName(mathmlElement.children, name, flag);\n });\n }\n\n private _hasFlag(flag: string): boolean {\n return !!this._mathmlElement.attributes[flag];\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { MI } from './mi';\n\nexport class MText implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { attributes, value } = this._mathmlElement;\n\n return [...value]\n .map<Char>((char) => {\n // if is a letter, number or space, return it\n if (/^[a-zA-Z0-9]$/.test(char) || char === ' ')\n return {\n value: char,\n isAlphanumeric: true,\n };\n\n // if is a symbol, set it to mi parser\n return {\n value: char,\n isAlphanumeric: false,\n };\n })\n .reduce<Char[]>((acc, char) => {\n // merge consecutive alphanumeric characters\n if (char.isAlphanumeric) {\n const lastChar = acc[acc.length - 1];\n if (lastChar && lastChar.isAlphanumeric) {\n lastChar.value += char.value;\n return acc;\n }\n }\n\n return [...acc, char];\n }, [])\n .map((char) => {\n if (!char.isAlphanumeric) {\n return new MI({\n name: 'mi',\n attributes: {},\n children: [],\n value: char.value,\n }).convert();\n }\n\n return new TextCommand(attributes.mathvariant).apply(char.value);\n })\n .join('');\n }\n}\n\nclass TextCommand {\n private readonly _mathvariant: string;\n\n constructor(mathvariant: string | undefined) {\n this._mathvariant = mathvariant || 'normal';\n }\n\n apply(value: string) {\n return this._commands.reduce((acc, command, index) => {\n if (index === 0) return `${command}{${value}}`;\n return `${command}{${acc}}`;\n }, '');\n }\n\n private get _commands(): string[] {\n switch (this._mathvariant) {\n case 'bold':\n return ['\\\\textbf'];\n case 'italic':\n return ['\\\\textit'];\n case 'bold-italic':\n return ['\\\\textit', '\\\\textbf'];\n case 'double-struck':\n return ['\\\\mathbb'];\n case 'monospace':\n return ['\\\\mathtt'];\n case 'bold-fraktur':\n case 'fraktur':\n return ['\\\\mathfrak'];\n default:\n return ['\\\\text'];\n }\n }\n}\n\ntype Char = {\n value: string;\n isAlphanumeric: boolean;\n};\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers';\n\nexport class MTr implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n return this._mathmlElement.children\n .map((child) => mathMLElementToLaTeXConverter(child))\n .map((converter) => converter.convert())\n .join(' & ');\n }\n}\n","import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';\nimport { MathMLElement } from '../../../protocols/mathml-element';\nimport { mathMLElementToLaTeXConverter } from '../../../helpers';\nimport { InvalidNumberOfChildrenError } from '../../../errors';\n\nexport class MUnderover implements ToLaTeXConverter {\n private readonly _mathmlElement: MathMLElement;\n\n constructor(mathElement: MathMLElement) {\n this._mathmlElement = mathElement;\n }\n\n convert(): string {\n const { name, children } = this._mathmlElement;\n const childrenLength = children.length;\n\n if (childrenLength !== 3) throw new InvalidNumberOfChildrenError(name, 3, childrenLength);\n\n const base = mathMLElementToLaTeXConverter(children[0]).convert();\n const underContent = mathMLElementToLaTeXConverter(children[1]).convert();\n const overContent = mathMLElementToLaTeXConverter(children[2]).convert();\n\n return `${base}_{${underContent}}^{${overContent}}`;\n }\n}\n","import { ToLaTeXConverter } from 'domain/usecases/to-latex-converter';\n\nexport class Void implements ToLaTeXConverter {\n constructor(private readonly _mathmlElement: MathMLElement) {}\n\n convert(): string {\n return '';\n }\n}\n","import * as ToLatexConverters from './converters';\nimport { MathMLElement, VoidMathMLElement } from '../../../data/protocols/mathml-element';\nimport { ToLaTeXConverter, ToLaTeXConverterClass } from '../../../domain/usecases/to-latex-converter';\n\nexport class MathMLElementToLatexConverterAdapter {\n private readonly _mathMLElement: MathMLElement;\n\n constructor(mathMLElement: MathMLElement) {\n this._mathMLElement = mathMLElement ?? new VoidMathMLElement();\n }\n\n toLatexConverter(): ToLaTeXConverter {\n const { name } = this._mathMLElement;\n const Converter = fromMathMLElementToLatexConverter[name] || ToLatexConverters.GenericSpacingWrapper;\n\n return new Converter(this._mathMLElement);\n }\n}\n\nconst fromMathMLElementToLatexConverter: Record<string, ToLaTeXConverterClass> = {\n math: ToLatexConverters.Math,\n mi: ToLatexConverters.MI,\n mo: ToLatexConverters.MO,\n mn: ToLatexConverters.MN,\n msqrt: ToLatexConverters.MSqrt,\n mfenced: ToLatexConverters.MFenced,\n mfrac: ToLatexConverters.MFrac,\n mroot: ToLatexConverters.MRoot,\n maction: ToLatexConverters.MAction,\n menclose: ToLatexConverters.MEnclose,\n merror: ToLatexConverters.MError,\n mphantom: ToLatexConverters.MPhantom,\n msup: ToLatexConverters.MSup,\n msub: ToLatexConverters.MSub,\n msubsup: ToLatexConverters.MSubsup,\n mmultiscripts: ToLatexConverters.MMultiscripts,\n mtext: ToLatexConverters.MText,\n munderover: ToLatexConverters.MUnderover,\n mtable: ToLatexConverters.MTable,\n mtr: ToLatexConverters.MTr,\n mover: ToLatexConverters.GenericUnderOver,\n munder: ToLatexConverters.GenericUnderOver,\n mrow: ToLatexConverters.MRow,\n mspace: ToLatexConverters.MSpace,\n mpadded: ToLatexConverters.GenericSpacingWrapper,\n void: ToLatexConverters.Void,\n};\n","export class ErrorHandler {\n private _errors: string[] = [];\n errorLocator = {};\n\n fixError(xml: string, errorMessage: string): string {\n if (!this._isMissingAttributeValueError(errorMessage)) return xml;\n\n this._errors.push(errorMessage);\n return this._fixMissingAttribute(errorMessage, xml);\n }\n\n isThereAnyErrors(): boolean {\n return this._errors.length > 0;\n }\n\n cleanErrors(): void {\n this._errors = [];\n }\n\n private _fixMissingAttribute(errorMessage: string, xml: string): string {\n const missingAttribute = errorMessage.split('\"')[1];\n if (missingAttribute) return xml.replace(this._matchMissingValueForAttribute(missingAttribute), '');\n\n while (this._mathGenericMissingValue().exec(xml)) {\n xml = xml.replace(this._mathGenericMissingValue(), '$1$3');\n }\n return xml;\n }\n\n private _matchMissingValueForAttribute(attribute: string): RegExp {\n return new RegExp(`(${attribute}=(?!(\\\"|\\')))|(${attribute}(?!(\\\"|\\')))`, 'gm');\n }\n\n private _mathGenericMissingValue(): RegExp {\n return /(\\<.* )(\\w+=(?!\\\"|\\'))(.*\\>)/gm;\n }\n\n private _isMissingAttributeValueError(errorMessage: string): boolean {\n return (\n (!!errorMessage.includes('attribute') && !!errorMessage.includes('missed')) ||\n errorMessage.includes('attribute value missed')\n );\n }\n}\n","export * from './xmldom-to-mathml-element-adapter';\nexport * from './error-handler';\nexport * from './xmldom-elements-to-mathml-elements-adapter';\n","import { MathMLElement } from '../../../data/protocols/mathml-element';\n\nexport class ElementsToMathMLAdapter {\n convert(els: Element[]): MathMLElement[] {\n return els.filter((el: Element) => el.tagName !== undefined).map((el: Element) => this._convertElement(el));\n }\n\n private _convertElement(el: Element): MathMLElement {\n return {\n name: el.tagName,\n attributes: this._convertElementAttributes(el.attributes),\n value: this._hasElementChild(el) ? '' : el.textContent || '',\n children: this._hasElementChild(el)\n ? this.convert(Array.from(el.childNodes) as Element[])\n : ([] as MathMLElement[]),\n };\n }\n\n private _convertElementAttributes(attributes: NamedNodeMap): Record<string, string> {\n return Array.from(attributes).reduce(\n (acc, attr: Attr) =>\n Object.assign({ [attr.nodeName]: attr.nodeValue === attr.nodeName ? '' : attr.nodeValue }, acc),\n {},\n );\n }\n\n private _hasElementChild(el: Element): boolean {\n const childNodes = el.childNodes;\n return !!childNodes && childNodes.length !== 0 && this._isThereAnyNoTextNode(childNodes);\n }\n\n private _isThereAnyNoTextNode(children: NodeListOf<ChildNode>): boolean {\n return Array.from(children).some((child) => child.nodeName !== '#text');\n }\n}\n","import xmldom from '@xmldom/xmldom';\n\nimport { DOMParser } from '@xmldom/xmldom';\nimport { ElementsToMathMLAdapter } from './xmldom-elements-to-mathml-elements-adapter';\nimport { ErrorHandler } from './error-handler';\nimport { MathMLElement } from '../../../data/protocols/mathml-element';\n\nexport class XmlToMathMLAdapter {\n private _xml = '';\n private readonly _xmlDOM: DOMParser;\n private readonly _errorHandler: ErrorHandler;\n private readonly _elementsConvertor: ElementsToMathMLAdapter;\n\n constructor(elementsConvertor: ElementsToMathMLAdapter, errorHandler: ErrorHandler) {\n this._elementsConvertor = elementsConvertor;\n this._errorHandler = errorHandler;\n\n this._xmlDOM = new xmldom.DOMParser({\n locator: this._errorHandler.errorLocator,\n errorHandler: this._fixError.bind(this),\n });\n }\n\n convert(xml: string): MathMLElement[] {\n this._xml = this._removeLineBreaks(xml);\n this._xml = this._removeMsWordPrefixes(this._xml);\n\n return this._elementsConvertor.convert(this._mathMLElements);\n }\n\n private _fixError(errorMessage: string): void {\n this._xml = this._errorHandler.fixError(this._xml, errorMessage);\n }\n\n private _removeLineBreaks(xml: string): string {\n const LINE_BREAK = /\\n|\\r\\n|\\r/g;\n return xml.replace(LINE_BREAK, '');\n }\n\n private _removeMsWordPrefixes(xml: string): string {\n const MS_WORD_PREFIX = /mml:/g;\n return xml.replace(MS_WORD_PREFIX, '');\n }\n\n private get _mathMLElements(): Element[] {\n let elements = this._xmlDOM.parseFromString(this._xml).getElementsByTagName('math');\n if (this._errorHandler.isThereAnyErrors()) {\n this._errorHandler.cleanErrors();\n elements = this._xmlDOM.parseFromString(this._xml).getElementsByTagName('math');\n }\n\n return Array.from(elements) as Element[];\n }\n}\n","export * from './make-to-math-elements-converter';\n","import {\n XmlToMathMLAdapter,\n ElementsToMathMLAdapter,\n ErrorHandler,\n} from '../../infra/usecases/xmldom-to-mathml-elements';\n\nexport const makeToMathElementsConverter = (): XmlToMathMLAdapter => {\n const elementsToMathMLAdapter = new ElementsToMathMLAdapter();\n const errorHandler = new ErrorHandler();\n\n return new XmlToMathMLAdapter(elementsToMathMLAdapter, errorHandler);\n};\n","export * from './mathml-to-latex';\n","import { MathMLElementToLatexConverterAdapter } from '../data/usecases/mathml-to-latex-convertion/mathml-element-to-latex-converter-adapter';\nimport { makeToMathElementsConverter } from './factories';\n\nexport class MathMLToLaTeX {\n static convert(mathml: string): string {\n const mathmlElements = makeToMathElementsConverter().convert(mathml);\n const mathmlElementsToLaTeXConverters = mathmlElements.map((mathMLElement) =>\n new MathMLElementToLatexConverterAdapter(mathMLElement).toLatexConverter(),\n );\n return mathmlElementsToLaTeXConverters\n .map((toLatexConverters) => toLatexConverters.convert())\n .join('')\n .trim();\n }\n}\n","export const allMathOperatorsByChar: Record<string, string> = {\n _: '\\\\underline',\n '⏡': '\\\\underbrace',\n '⏠': '\\\\overbrace',\n '⏟': '\\\\underbrace',\n '⏞': '\\\\overbrace',\n '⏝': '\\\\underbrace',\n '⏜': '\\\\overbrace',\n '⎵': '\\\\underbrace',\n '⎴': '\\\\overbrace',\n '⃜': '\\\\square',\n '⃛': '\\\\square',\n '⁤': '',\n '⁗': \"''''\",\n '‾': '\\\\bar',\n '‷': '```',\n '‶': '``',\n '‵': '`',\n '‴': \"'''\",\n '″': \"''\",\n '‟': '``',\n '„': ',,',\n '‛': '`',\n '‚': ',',\n '̂': '\\\\hat',\n '˷': '\\\\sim',\n '˝': '\\\\sim',\n '˜': '\\\\sim',\n '˚': '\\\\circ',\n '˙': '\\\\cdot',\n '˘': '',\n 'ˍ': '\\\\_',\n 'ˋ': 'ˋ',\n 'ˊ': 'ˊ',\n 'ˉ': 'ˉ',\n 'ˇ': '',\n 'ˆ': '\\\\hat',\n 'º': 'o',\n '¹': '1',\n '¸': '¸',\n '´': '´',\n '³': '3',\n '²': '2',\n '°': '\\\\circ',\n '¯': '\\\\bar',\n 'ª': 'a',\n '¨': '\\\\cdot\\\\cdot',\n '~': '\\\\sim',\n '`': '`',\n '^': '\\\\hat',\n '--': '--',\n '++': '++',\n '&': '\\\\&',\n '⁡': '',\n '∜': '\\\\sqrt[4]{}',\n '∛': '\\\\sqrt[3]{}',\n '√': '\\\\sqrt{}',\n 'ⅆ': 'd',\n 'ⅅ': '\\\\mathbb{D}',\n '?': '?',\n '@': '@',\n '//': '//',\n '!!': '!!',\n '!': '!',\n '♯': '\\\\#',\n '♮': '',\n '♭': '',\n '′': \"'\",\n '<>': '<>',\n '**': '\\\\star\\\\star',\n '∇': '\\\\nabla',\n '∂': '\\\\partial',\n '⊙': '\\\\bigodot',\n '¬': '\\\\neg',\n '∢': '\\\\measuredangle',\n '∡': '\\\\measuredangle',\n '∠': '\\\\angle',\n '÷': '\\\\div',\n '/': '/',\n '∖': '\\\\backslash',\n '\\\\': '\\\\backslash',\n '%': '\\\\%',\n '⊗': '\\\\bigotimes',\n '·': '\\\\cdot',\n '⨿': '\\\\coprod',\n '⨯': '\\\\times',\n '⋅': '\\\\cdot',\n '⊡': '\\\\boxdot',\n '⊠': '\\\\boxtimes',\n '⁢': '',\n '⁃': '-',\n '•': '\\\\cdot',\n '×': '\\\\times',\n '.': '.',\n '*': '\\\\star',\n '∪': '\\\\cup',\n '∩': '\\\\cap',\n '∐': '\\\\coprod',\n '∏': '\\\\prod',\n '≀': '',\n '⫿': '',\n '⫼': '\\\\mid\\\\mid\\\\mid',\n '⨉': '\\\\times',\n '⨈': '',\n '⨇': '',\n '⨆': '\\\\sqcup',\n '⨅': '\\\\sqcap',\n '⨂': '\\\\otimes',\n '⨀': '\\\\odot',\n '⋂': '\\\\cap',\n '⋁': '\\\\vee',\n '⋀': '\\\\wedge',\n '⨄': '\\\\uplus',\n '⨃': '\\\\cup',\n '⋃': '\\\\cup',\n '⨜': '\\\\underline{\\\\int}',\n '⨛': '\\\\overline{\\\\int}',\n '⨚': '\\\\int',\n '⨙': '\\\\int',\n '⨘': '\\\\int',\n '⨗': '\\\\int',\n '⨖': '\\\\oint',\n '⨕': '\\\\oint',\n '⨔': '\\\\int',\n '⨓': '\\\\int',\n '⨒': '\\\\int',\n '⨑': '\\\\int',\n '⨐': '\\\\int',\n '⨏': '\\\\bcancel{\\\\int}',\n '⨎': '',\n '⨍': '\\\\hcancel{\\\\int}',\n '⨌': '\\\\iiiint',\n '∳': '\\\\oint',\n '∲': '\\\\oint',\n '∱': '\\\\int',\n '∰': '\\\\oiint',\n '∯': '\\\\oiint',\n '∮': '\\\\oint',\n '∫': '\\\\int',\n '⨁': '\\\\oplus',\n '⊘': '\\\\oslash',\n '⊖': '\\\\ominus',\n '⊕': '\\\\oplus',\n '∭': '\\\\iiint',\n '∬': '\\\\iint',\n '⨋': '',\n '⨊': '',\n '∑': '\\\\sum',\n '⊟': '\\\\boxminus',\n '⊞': '\\\\boxplus',\n '∔': '\\\\dot{+}',\n '∓': '+-',\n '−': '-',\n '±': '\\\\pm',\n '-': '-',\n '+': '+',\n '⭆': '\\\\Rrightarrow',\n '⭅': '\\\\Lleftarrow',\n '⧴': ':\\\\rightarrow',\n '⧯': '',\n '⧟': '\\\\bullet-\\\\bullet',\n '⦟': '\\\\angle',\n '⦞': '\\\\measuredangle',\n '⦝': '\\\\measuredangle',\n '⦜': '\\\\perp',\n '⦛': '\\\\measuredangle',\n '⦚': '',\n '⦙': '\\\\vdots',\n '⥿': '',\n '⥾': '',\n '⥽': '\\\\prec',\n '⥼': '\\\\succ',\n '⥻': '\\\\underset{\\\\rightarrow}{\\\\supset}',\n '⥺': '',\n '⥹': '\\\\underset{\\\\rightarrow}{\\\\subset}',\n '⥸': '\\\\underset{\\\\rightarrow}{>}',\n '⥷': '',\n '⥶': '\\\\underset{\\\\leftarrow}{<}',\n '⥵': '\\\\underset{\\\\approx}{\\\\rightarrow}',\n '⥴': '\\\\underset{\\\\sim}{\\\\rightarrow}',\n '⥳': '\\\\underset{\\\\sim}{\\\\leftarrow}',\n '⥲': '\\\\overset{\\\\sim}{\\\\rightarrow}',\n '⥱': '\\\\overset{=}{\\\\rightarrow}',\n '⥰': '',\n '⥯': '',\n '⥮': '',\n '⥭': '\\\\overline{\\\\rightharpoondown}',\n '⥬': '\\\\underline{\\\\rightharpoonup}',\n '⥫': '\\\\overline{\\\\leftharpoondown}',\n '⥪': '\\\\underline{\\\\leftharpoonup}',\n '⥩': '\\\\rightleftharpoons',\n '⥨': '\\\\rightleftharpoons',\n '⥧': '\\\\rightleftharpoons',\n '⥦': '\\\\rightleftharpoons',\n '⥥': '\\\\Downarrow',\n '⥤': '\\\\Rightarrow',\n '⥣': '\\\\Uparrow',\n '⥢': '\\\\Leftarrow',\n '⥡': '\\\\downarrow',\n '⥠': '\\\\uparrow',\n '⥟': '\\\\rightarrow',\n '⥞': '\\\\leftarrow',\n '⥝': '\\\\downarrow',\n '⥜': '\\\\uparrow',\n '⥛': '\\\\rightarrow',\n '⥚': '\\\\leftarrow',\n '⥙': '\\\\downarrow',\n '⥘': '\\\\uparrow',\n '⥗': '\\\\rightarrow',\n '⥖': '\\\\leftarrow',\n '⥕': '\\\\downarrow',\n '⥔': '\\\\uparrow',\n '⥓': '\\\\rightarrow',\n '⥒': '\\\\leftarrow',\n '⥑': '\\\\updownarrow',\n '⥐': '\\\\leftrightarrow',\n '⥏': '\\\\updownarrow',\n '⥎': '\\\\leftrightarrow',\n '⥍': '\\\\updownarrow',\n '⥌': '\\\\updownarrow',\n '⥋': '\\\\leftrightarrow',\n '⥊': '\\\\leftrightarrow',\n '⥉': '',\n '⥈': '\\\\leftrightarrow',\n '⥇': '\\\\nrightarrow',\n '⥆': '',\n '⥅': '',\n '⥄': '\\\\rightleftarrows',\n '⥃': '\\\\leftrightarrows',\n '⥂': '\\\\rightleftarrows',\n '⥁': '\\\\circlearrowright',\n '⥀': '\\\\circlearrowleft',\n '⤿': '\\\\rightarrow',\n '⤾': '\\\\leftarrow',\n '⤽': '',\n '⤼': '',\n '⤻': '',\n '⤺': '',\n '⤹': '',\n '⤸': '',\n '⤷': '\\\\Rsh',\n '⤶': '\\\\Lsh',\n '⤵': '\\\\downarrow',\n '⤴': '\\\\uparrow',\n '⤳': '\\\\leadsto',\n '⤲': '',\n '⤱': '',\n '⤰': '',\n '⤯': '',\n '⤮': '',\n '⤭': '',\n '⤬': '\\\\times',\n '⤫': '\\\\times',\n '⤪': '',\n '⤩': '',\n '⤨': '',\n '⤧': '',\n '⤦': '',\n '⤥': '',\n '⤤': '',\n '⤣': '',\n '⤢': '',\n '⤡': '',\n '⤠': '\\\\mapsto\\\\cdot',\n '⤟': '\\\\cdot\\\\leftarrow',\n '⤞': '\\\\rightarrow\\\\cdot',\n '⤝': '\\\\leftarrow',\n '⤜': '\\\\rightarrow',\n '⤛': '\\\\leftarrow',\n '⤚': '\\\\rightarrow',\n '⤙': '\\\\leftarrow',\n '⤘': '\\\\rightarrow',\n '⤗': '\\\\rightarrow',\n '⤖': '\\\\rightarrow',\n '⤕': '\\\\rightarrow',\n '⤔': '\\\\rightarrow',\n '⤓': '\\\\downarrow',\n '⤒': '\\\\uparrow',\n '⤑': '\\\\rightarrow',\n '⤐': '\\\\rightarrow',\n '⤏': '\\\\rightarrow',\n '⤎': '\\\\leftarrow',\n '⤍': '\\\\rightarrow',\n '⤌': '\\\\leftarrow',\n '⤋': '\\\\Downarrow',\n '⤊': '\\\\Uparrow',\n '⤉': '\\\\uparrow',\n '⤈': '\\\\downarrow',\n '⤇': '\\\\Rightarrow',\n '⤆': '\\\\Leftarrow',\n '⤅': '\\\\mapsto',\n '⤄': '\\\\nLeftrightarrow',\n '⤃': '\\\\nRightarrow',\n '⤂': '\\\\nLeftarrow',\n '⤁': '\\\\rightsquigarrow',\n '⤀': '\\\\rightsquigarrow',\n '⟿': '\\\\rightsquigarrow',\n '⟾': '\\\\Rightarrow',\n '⟽': '\\\\Leftarrow',\n '⟼': '\\\\mapsto',\n '⟻': '\\\\leftarrow',\n '⟺': '\\\\Longleftrightarrow',\n '⟹': '\\\\Longrightarrow',\n '⟸': '\\\\Longleftarrow',\n '⟷': '\\\\leftrightarrow',\n '⟶': '\\\\rightarrow',\n '⟵': '\\\\leftarrow',\n '⟱': '\\\\Downarrow',\n '⟰': '\\\\Uparrow',\n '⊸': '\\\\rightarrow',\n '⇿': '\\\\leftrightarrow',\n '⇾': '\\\\rightarrow',\n '⇽': '\\\\leftarrow',\n '⇼': '\\\\nleftrightarrow',\n '⇻': '\\\\nrightarrow',\n '⇺': '\\\\nleftarrow',\n '⇹': '\\\\nleftrightarrow',\n '⇸': '\\\\nrightarrow',\n '⇷': '\\\\nleftarrow',\n '⇶': '\\\\Rrightarrow',\n '⇵': '',\n '⇴': '\\\\rightarrow',\n '⇳': '\\\\Updownarrow',\n '⇲': '\\\\searrow',\n '⇱': '\\\\nwarrow',\n '⇰': '\\\\Leftarrow',\n '⇯': '\\\\Uparrow',\n '⇮': '\\\\Uparrow',\n '⇭': '\\\\Uparrow',\n '⇬': '\\\\Uparrow',\n '⇫': '\\\\Uparrow',\n '⇪': '\\\\Uparrow',\n '⇩': '\\\\Downarrow',\n '⇨': '\\\\Rightarrow',\n '⇧': '\\\\Uparrow',\n '⇦': '\\\\Leftarrow',\n '⇥': '\\\\rightarrow',\n '⇤': '\\\\leftarrow',\n '⇣': '\\\\downarrow',\n '⇢': '\\\\rightarrow',\n '⇡': '\\\\uparrow',\n '⇠': '\\\\leftarrow',\n '⇟': '\\\\downarrow',\n '⇞': '\\\\uparrow',\n '⇝': '\\\\rightsquigarrow',\n '⇜': '\\\\leftarrow',\n '⇛': '\\\\Rrightarrow',\n '⇚': '\\\\Lleftarrow',\n '⇙': '\\\\swarrow',\n '⇘': '\\\\searrow',\n '⇗': '\\\\nearrow',\n '⇖': '\\\\nwarrow',\n '⇕': '\\\\Updownarrow',\n '⇔': '\\\\Leftrightarrow',\n '⇓': '\\\\Downarrow',\n '⇒': '\\\\Rightarrow',\n '⇑': '\\\\Uparrow',\n '⇐': '\\\\Leftarrow',\n '⇏': '\\\\nRightarrow',\n '⇎': '\\\\nLeftrightarrow',\n '⇍': '\\\\nLeftarrow',\n '⇌': '\\\\rightleftharpoons',\n '⇋': '\\\\leftrightharpoons',\n '⇊': '\\\\downdownarrows',\n '⇉': '\\\\rightrightarrows',\n '⇈': '\\\\upuparrows',\n '⇇': '\\\\leftleftarrows',\n '⇆': '\\\\leftrightarrows',\n '⇅': '',\n '⇄': '\\\\rightleftarrows',\n '⇃': '\\\\downharpoonleft',\n '⇂': '\\\\downharpoonright',\n '⇁': '\\\\rightharpoondown',\n '⇀': '\\\\rightharpoonup',\n '↿': '\\\\upharpoonleft',\n '↾': '\\\\upharpoonright',\n '↽': '\\\\leftharpoondown',\n '↼': '\\\\leftharpoonup',\n '↻': '\\\\circlearrowright',\n '↺': '\\\\circlearrowleft',\n '↹': '\\\\leftrightarrows',\n '↸': '\\\\overline{\\\\nwarrow}',\n '↷': '\\\\curvearrowright',\n '↶': '\\\\curvearrowleft',\n '↵': '\\\\swarrow',\n '↴': '\\\\searrow',\n '↳': '\\\\Rsh',\n '↲': '\\\\Lsh',\n '↱': '\\\\Rsh',\n '↰': '\\\\Lsh',\n '↯': '\\\\swarrow',\n '↮': '',\n '↭': '\\\\leftrightsquigarrow',\n '↬': '\\\\looparrowright',\n '↫': '\\\\looparrowleft',\n '↪': '\\\\hookrightarrow',\n '↩': '\\\\hookleftarrow',\n '↨': '\\\\underline{\\\\updownarrow}',\n '↧': '\\\\downarrow',\n '↦': '\\\\rightarrowtail',\n '↥': '\\\\uparrow',\n '↤': '\\\\leftarrowtail',\n '↣': '\\\\rightarrowtail',\n '↢': '\\\\leftarrowtail',\n '↡': '\\\\downarrow',\n '↠': '\\\\twoheadrightarrow',\n '↟': '\\\\uparrow',\n '↞': '\\\\twoheadleftarrow',\n '↝': '\\\\nearrow',\n '↜': '\\\\nwarrow',\n '↛': '',\n '↚': '',\n '↙': '\\\\swarrow',\n '↘': '\\\\searrow',\n '↗': '\\\\nearrow',\n '↖': '\\\\nwarrow',\n '↕': '\\\\updownarrow',\n '↔': '\\\\leftrightarrow',\n '↓': '\\\\downarrow',\n '→': '\\\\rightarrow',\n '↑': '\\\\uparrow',\n '←': '\\\\leftarrow',\n '|||': '\\\\left|||\\\\right.',\n '||': '\\\\left||\\\\right.',\n '|': '\\\\left|\\\\right.',\n '⫾': '',\n '⫽': '//',\n '⫻': '///',\n '⫺': '',\n '⫹': '',\n '⫸': '',\n '⫷': '',\n '⫶': '\\\\vdots',\n '⫵': '',\n '⫴': '',\n '⫳': '',\n '⫲': '\\\\nparallel',\n '⫱': '',\n '⫰': '',\n '⫯': '',\n '⫮': '\\\\bcancel{\\\\mid}',\n '⫭': '',\n '⫬': '',\n '⫫': '',\n '⫪': '',\n '⫩': '',\n '⫨': '\\\\underline{\\\\perp}',\n '⫧': '\\\\overline{\\\\top}',\n '⫦': '',\n '⫥': '',\n '⫤': '',\n '⫣': '',\n '⫢': '',\n '⫡': '',\n '⫠': '\\\\perp',\n '⫟': '\\\\top',\n '⫞': '\\\\dashv',\n '⫝̸': '',\n '⫝': '',\n '⫛': '\\\\pitchfork',\n '⫚': '',\n '⫙': '',\n '⫘': '',\n '⫗': '',\n '⫖': '',\n '⫕': '',\n '⫔': '',\n '⫓': '',\n '⫒': '',\n '⫑': '',\n '⫐': '',\n '⫏': '',\n '⫎': '',\n '⫍': '',\n '⫌': '\\\\underset{\\\\neq}{\\\\supset}',\n '⫋': '\\\\underset{\\\\neq}{\\\\subset}',\n '⫊': '\\\\underset{\\\\approx}{\\\\supset}',\n '⫉': '\\\\underset{\\\\approx}{\\\\subset}',\n '⫈': '\\\\underset{\\\\sim}{\\\\supset}',\n '⫇': '\\\\underset{\\\\sim}{\\\\subset}',\n '⫆': '\\\\supseteqq',\n '⫅': '\\\\subseteqq',\n '⫄': '\\\\dot{\\\\supseteq}',\n '⫃': '\\\\dot{\\\\subseteq}',\n '⫂': '\\\\underset{\\\\times}{\\\\supset}',\n '⫁': '\\\\underset{\\\\times}{\\\\subset}',\n '⫀': '\\\\underset{+}{\\\\supset}',\n '⪿': '\\\\underset{+}{\\\\subset}',\n '⪾': '',\n '⪽': '',\n '⪼': '\\\\gg ',\n '⪻': '\\\\ll',\n '⪺': '\\\\underset{\\\\cancel{\\\\approx}}{\\\\succ}',\n '⪹': '\\\\underset{\\\\cancel{\\\\approx}}{\\\\prec}',\n '⪸': '\\\\underset{\\\\approx}{\\\\succ}',\n '⪷': '\\\\underset{\\\\approx}{\\\\prec}',\n '⪶': '\\\\underset{\\\\cancel{=}}{\\\\succ}',\n '⪵': '\\\\underset{\\\\cancel{=}}{\\\\prec}',\n '⪴': '\\\\underset{=}{\\\\succ}',\n '⪳': '\\\\underset{=}{\\\\prec}',\n '⪲': '',\n '⪱': '',\n '⪮': '',\n '⪭': '\\\\underline{\\\\hcancel{>}}',\n '⪬': '\\\\underline{\\\\hcancel{>}}',\n '⪫': '\\\\hcancel{>}',\n '⪪': '\\\\hcancel{<}',\n '⪩': '',\n '⪨': '',\n '⪧': '\\\\vartriangleright',\n '⪦': '\\\\vartriangleleft',\n '⪥': '><',\n '⪤': '><',\n '⪣': '\\\\underline{\\\\ll}',\n '⪢̸': '\\\\cancel{\\\\gg}',\n '⪢': '\\\\gg',\n '⪡̸': '\\\\cancel{\\\\ll}',\n '⪡': '\\\\ll',\n '⪠': '\\\\overset{\\\\sim}{\\\\geqq}',\n '⪟': '\\\\overset{\\\\sim}{\\\\leqq}',\n '⪞': '\\\\overset{\\\\sim}{>}',\n '⪝': '\\\\overset{\\\\sim}{<}',\n '⪜': '',\n '⪛': '',\n '⪚': '\\\\overset{=}{>}',\n '⪙': '\\\\overset{=}{<}',\n '⪘': '',\n '⪗': '',\n '⪖': '',\n '⪕': '',\n '⪔': '',\n '⪓': '',\n '⪒': '\\\\underset{=}{\\\\gtrless}',\n '⪑': '\\\\underset{=}{\\\\lessgtr}',\n '⪐': '\\\\underset{<}{\\\\gtrsim}',\n '⪏': '\\\\underset{>}{\\\\lesssim}',\n '⪎': '\\\\underset{\\\\simeq}{>}',\n '⪍': '\\\\underset{\\\\simeq}{<}',\n '⪌': '\\\\gtreqqless',\n '⪋': '\\\\lesseqqgtr',\n '⪊': '\\\\underset{\\\\cancel{\\\\approx}}{>}',\n '⪉': '\\\\underset{\\\\approx}{<}',\n '⪆': '\\\\underset{\\\\approx}{>}',\n '⪅': '\\\\underset{\\\\approx}{<}',\n '⪄': '',\n '⪃': '',\n '⪂': '',\n '⪁': '',\n '⪀': '',\n '⩿': '',\n '⩾̸': '\\\\bcancel{\\\\geq}',\n '⩾': '\\\\geq',\n '⩽̸': '\\\\bcancel{\\\\leq}',\n '⩽': '\\\\leq',\n '⩼': '',\n '⩻': '',\n '⩺': '',\n '⩹': '',\n '⩸': '\\\\overset{\\\\dots}{\\\\equiv}',\n '⩷': '',\n '⩶': '===',\n '⩵': '==',\n '⩴': '::=',\n '⩳': '',\n '⩲': '\\\\underset{=}{+}',\n '⩱': '\\\\overset{=}{+}',\n '⩰': '\\\\overset{\\\\approx}{=}',\n '⩯': '\\\\overset{\\\\wedge}{=}',\n '⩮': '\\\\overset{*}{=}',\n '⩭': '\\\\dot{\\\\approx}',\n '⩬': '',\n '⩫': '',\n '⩪': '\\\\dot{\\\\sim}',\n '⩩': '',\n '⩨': '',\n '⩧': '\\\\dot{\\\\equiv}',\n '⩦': '\\\\underset{\\\\cdot}{=}',\n '⩥': '',\n '⩤': '',\n '⩣': '\\\\underset{=}{\\\\vee}',\n '⩢': '\\\\overset{=}{\\\\vee}',\n '⩡': 'ul(vv)',\n '⩠': '\\\\underset{=}{\\\\wedge}',\n '⩟': '\\\\underline{\\\\wedge}',\n '⩞': '\\\\overset{=}{\\\\wedge}',\n '⩝': '\\\\hcancel{\\\\vee}',\n '⩜': '\\\\hcancel{\\\\wedge}',\n '⩛': '',\n '⩚': '',\n '⩙': '',\n '⩘': '\\\\vee',\n '⩗': '\\\\wedge',\n '⩖': '',\n '⩕': '',\n '⩔': '',\n '⩓': '',\n '⩒': '\\\\dot{\\\\vee}',\n '⩑': '\\\\dot{\\\\wedge}',\n '⩐': '',\n '⩏': '',\n '⩎': '',\n '⩍': '\\\\overline{\\\\cap}',\n '⩌': '\\\\overline{\\\\cup}',\n '⩋': '',\n '⩊': '',\n '⩉': '',\n '⩈': '',\n '⩇': '',\n '⩆': '',\n '⩅': '',\n '⩄': '',\n '⩃': '\\\\overline{\\\\cap}',\n '⩂': '\\\\overline{\\\\cup}',\n '⩁': '',\n '⩀': '',\n '⨾': '',\n '⨽': '\\\\llcorner',\n '⨼': '\\\\lrcorner',\n '⨻': '',\n '⨺': '',\n '⨹': '',\n '⨸': '',\n '⨷': '',\n '⨶': '\\\\hat{\\\\otimes}',\n '⨵': '',\n '⨴': '',\n '⨳': '',\n '⨲': '\\\\underline{\\\\times}',\n '⨱': '\\\\underline{\\\\times}',\n '⨰': '\\\\dot{\\\\times}',\n '⨮': '',\n '⨭': '',\n '⨬': '',\n '⨫': '',\n '⨪': '',\n '⨩': '',\n '⨨': '',\n '⨧': '',\n '⨦': '\\\\underset{\\\\sim}{+}',\n '⨥': '\\\\underset{\\\\circ}{+}',\n '⨤': '\\\\overset{\\\\sim}{+}',\n '⨣': '\\\\hat{+}',\n '⨢': '\\\\dot{+}',\n '⨡': '\\\\upharpoonright',\n '⨠': '>>',\n '⨟': '',\n '⨞': '\\\\triangleleft',\n '⨝': '\\\\bowtie',\n '⧿': '',\n '⧾': '+',\n '⧻': '\\\\hcancel{|||}',\n '⧺': '\\\\hcancel{||}',\n '⧹': '\\\\backslash',\n '⧸': '/',\n '⧷': 'hcancel{\\backslash}',\n '⧶': '',\n '⧵': '\\\\backslash',\n '⧲': '\\\\Phi',\n '⧱': '',\n '⧰': '',\n '⧮': '',\n '⧭': '',\n '⧬': '',\n '⧫': '\\\\lozenge',\n '⧪': '',\n '⧩': '',\n '⧨': '',\n '⧧': '\\\\ddagger',\n '⧢': '\\\\sqcup\\\\sqcup',\n '⧡': '',\n '⧠': '\\\\square',\n '⧞': '',\n '⧝': '',\n '⧜': '',\n '⧛': '\\\\{\\\\{',\n '⧙': '\\\\{',\n '⧘': '\\\\}',\n '⧗': '',\n '⧖': '',\n '⧕': '\\\\bowtie',\n '⧔': '\\\\bowtie',\n '⧓': '\\\\bowtie',\n '⧒': '\\\\bowtie',\n '⧑': '\\\\bowtie',\n '⧐̸': '| \\\\not\\\\triangleright',\n '⧐': '| \\\\triangleright',\n '⧏̸': '\\\\not\\\\triangleleft |',\n '⧏': '\\\\triangleleft |',\n '⧎': '',\n '⧍': '\\\\triangle',\n '⧌': '',\n '⧋': '\\\\underline{\\\\triangle}',\n '⧊': '\\\\dot{\\\\triangle}',\n '⧉': '',\n '⧈': '\\\\boxed{\\\\circ}',\n '⧇': '\\\\boxed{\\\\circ}',\n '⧆': '\\\\boxed{\\\\rightarrow}',\n '⧅': '\\\\bcancel{\\\\square}',\n '⧄': '\\\\cancel{\\\\square}',\n '⧃': '\\\\odot',\n '⧂': '\\\\odot',\n '⦿': '\\\\odot',\n '⦾': '\\\\odot',\n '⦽': '\\\\varnothing',\n '⦼': '\\\\oplus',\n '⦻': '\\\\otimes',\n '⦺': '',\n '⦹': '\\\\varnothing',\n '⦸': '\\\\varnothing',\n '⦷': '\\\\ominus',\n '⦶': '\\\\ominus',\n '⦵': '\\\\ominus',\n '⦴': '\\\\vec{\\\\varnothing}',\n '⦳': '\\\\vec{\\\\varnothing}',\n '⦲': '\\\\dot{\\\\varnothing}',\n '⦱': '\\\\overline{\\\\varnothing}',\n '⦰': '\\\\varnothing',\n '⦯': '',\n '⦮': '',\n '⦭': '',\n '⦬': '',\n '⦫': '',\n '⦪': '',\n '⦩': '',\n '⦨': '',\n '⦧': '',\n '⦦': '',\n '⦥': '',\n '⦤': '',\n '⦣': '',\n '⦢': '',\n '⦡': '\\\\not\\\\lor',\n '⦠': '\\\\bcancel{>}',\n '⦂': ':',\n '⦁': '\\\\circ',\n '❘': '|',\n '▲': '\\\\bigtriangleup',\n '⋿': '\\\\Epsilon',\n '⋾': '\\\\overline{\\\\ni}',\n '⋽': '\\\\overline{\\\\ni}',\n '⋼': '\\\\in',\n '⋻': '\\\\in',\n '⋺': '\\\\in',\n '⋹': '\\\\underline{\\\\in}',\n '⋸': '\\\\underline{\\\\in}',\n '⋷': '\\\\overline{\\\\in}',\n '⋶': '\\\\overline{\\\\in}',\n '⋵': '\\\\dot{\\\\in}',\n '⋴': '\\\\in',\n '⋳': '\\\\in',\n '⋲': '\\\\in',\n '⋰': '\\\\ddots',\n '⋩': '\\\\underset{\\\\sim}{\\\\succ}',\n '⋨': '\\\\underset{\\\\sim}{\\\\prec}',\n '⋧': '\\\\underset{\\\\not\\\\sim}{>}',\n '⋦': '\\\\underset{\\\\not\\\\sim}{<}',\n '⋥': '\\\\not\\\\sqsupseteq',\n '⋤': '\\\\not\\\\sqsubseteq',\n '⋣': '\\\\not\\\\sqsupseteq',\n '⋢': '\\\\not\\\\sqsubseteq',\n '⋡': '\\\\nsucc',\n '⋠': '\\\\nprec',\n '⋟': '\\\\succ',\n '⋞': '\\\\prec',\n '⋝': '\\\\overline{>}',\n '⋜': '\\\\overline{<}',\n '⋛': '\\\\underset{>}{\\\\leq}',\n '⋚': '\\\\underset{<}{\\\\geq}',\n '⋕': '\\\\#',\n '⋓': '\\\\cup',\n '⋒': '\\\\cap',\n '⋑': '\\\\supset',\n '⋐': '\\\\subset',\n '⋏': '\\\\wedge',\n '⋎': '\\\\vee',\n '⋍': '\\\\simeq',\n '⋈': '\\\\bowtie',\n '⋇': '\\\\ast',\n '⋆': '\\\\star',\n '⋄': '\\\\diamond',\n '⊿': '\\\\triangle',\n '⊾': '\\\\measuredangle',\n '⊽': '\\\\overline{\\\\lor}',\n '⊼': '\\\\overline{\\\\land}',\n '⊻': '\\\\underline{\\\\lor}',\n '⊺': '\\\\top',\n '⊹': '',\n '⊷': '\\\\circ\\\\multimap',\n '⊶': '\\\\circ\\\\multimap',\n '⊳': '\\\\triangleright',\n '⊲': '\\\\triangleleft',\n '⊱': '\\\\succ',\n '⊰': '\\\\prec',\n '⊫': '|\\\\models',\n '⊪': '|\\\\models',\n '⊧': '\\\\models',\n '⊦': '\\\\vdash',\n '⊝': '\\\\ominus',\n '⊜': '\\\\ominus',\n '⊛': '\\\\odot',\n '⊚': '\\\\odot',\n '⊔': '\\\\sqcup',\n '⊓': '\\\\sqcap',\n '⊒': '\\\\sqsupseteq',\n '⊑': '\\\\sqsubseteq',\n '⊐̸': '\\\\not\\\\sqsupset',\n '⊐': '\\\\sqsupset',\n '⊏̸': '\\\\not\\\\sqsubset',\n '⊏': '\\\\sqsubset',\n '⊎': '\\\\cup',\n '⊍': '\\\\cup',\n '⊌': '\\\\cup',\n '≿̸': '\\\\not\\\\succsim',\n '≿': '\\\\succsim',\n '≾': '\\\\precsim',\n '≹': '\\\\not\\\\overset{>}{<}',\n '≸': '\\\\not\\\\overset{>}{<}',\n '≷': '\\\\overset{>}{<}',\n '≶': '\\\\overset{<}{>}',\n '≵': '\\\\not\\\\geg',\n '≴': '\\\\not\\\\leq',\n '≳': '\\\\geg',\n '≲': '\\\\leq',\n '≬': '',\n '≧': '\\\\geg',\n '≦̸': '\\\\not\\\\leq',\n '≦': '\\\\leq',\n '≣': '\\\\overset{=}{=} ',\n '≞': '\\\\overset{m}{=} ',\n '≝': '\\\\overset{def}{=}',\n '≘': '=',\n '≖': '=',\n '≕': '=:',\n '≓': '\\\\doteq',\n '≒': '\\\\doteq',\n '≑': '\\\\doteq',\n '≐': '\\\\doteq',\n '≏̸': '',\n '≏': '',\n '≎̸': '',\n '≎': '',\n '≌': '\\\\approx',\n '≋': '\\\\approx',\n '≊': '\\\\approx',\n '≂̸': '\\\\neq',\n '≂': '=',\n '∿': '\\\\sim',\n '∾': '\\\\infty',\n '∽̱': '\\\\sim',\n '∽': '\\\\sim',\n '∻': '\\\\sim',\n '∺': ':-:',\n '∹': '-:',\n '∸': '\\\\bot',\n '∷': '::',\n '∶': ':',\n '∣': '|',\n '∟': '\\\\llcorner',\n '∙': '\\\\cdot',\n '∘': '\\\\circ',\n '∗': '*',\n '∕': '/',\n '∎': '\\\\square',\n '∍': '\\\\ni',\n '∊': '\\\\in',\n '∆': '\\\\Delta',\n '⁄': '/',\n '⪰̸': '\\\\nsucceq',\n '⪰': '\\\\succeq',\n '⪯̸': '\\\\npreceq',\n '⪯': '\\\\preceq',\n '⪈': '\\\\ngeqslant',\n '⪇': '\\\\nleqslant',\n '⧳': '\\\\Phi',\n '⧦': '\\\\models',\n '⧥': '\\\\not\\\\equiv',\n '⧤': '\\\\approx\\\\neq',\n '⧣': '\\\\neq',\n '⧁': '\\\\circle',\n '⧀': '\\\\circle',\n '◦': '\\\\circle',\n '◗': '\\\\circle',\n '◖': '\\\\circle',\n '●': '\\\\circle',\n '◎': '\\\\circledcirc',\n '◍': '\\\\circledcirc',\n '◌': '\\\\circledcirc',\n '◉': '\\\\circledcirc',\n '◈': '\\\\diamond',\n '◇': '\\\\diamond',\n '◆': '\\\\diamond',\n '◅': '\\\\triangleleft',\n '◄': '\\\\triangleleft',\n '◃': '\\\\triangleleft',\n '◂': '\\\\triangleleft',\n '◁': '\\\\triangleleft',\n '◀': '\\\\triangleleft',\n '▿': '\\\\triangledown',\n '▾': '\\\\triangledown',\n '▽': '\\\\triangledown',\n '▼': '\\\\triangledown',\n '▹': '\\\\triangleright',\n '▸': '\\\\triangleright',\n '▷': '\\\\triangleright',\n '▶': '\\\\triangleright',\n '▵': '\\\\triangle',\n '▴': '\\\\triangle',\n '△': '\\\\triangle',\n '▱': '\\\\square',\n '▰': '\\\\square',\n '▯': '\\\\square',\n '▮': '\\\\square',\n '▭': '\\\\square',\n '▫': '\\\\square',\n '▪': '\\\\square',\n '□': '\\\\square',\n '■': '\\\\square',\n '⋭': '\\\\not\\\\triangleright',\n '⋬': '\\\\not\\\\triangleleft',\n '⋫': '\\\\not\\\\triangleright',\n '⋪': '\\\\not\\\\triangleleft',\n '⋙': '\\\\ggg',\n '⋘': '\\\\lll',\n '⋗': '*>',\n '⋖': '<*',\n '⋔': '\\\\pitchfork',\n '⋌': '',\n '⋋': '',\n '⋊': '\\\\rtimes',\n '⋉': '\\\\ltimes',\n '⊵': '\\\\triangleright',\n '⊴': '',\n '⊥': '\\\\bot',\n '⊁': '\\\\nsucc',\n '⊀': '\\\\preceq',\n '≽': '\\\\succeq',\n '≼': '\\\\preceq',\n '≻': '\\\\succ',\n '≺': '\\\\prec',\n '≱': '\\\\geq/',\n '≰': '\\\\leq/',\n '≭': '\\\\neq',\n '≫̸': '\\\\not\\\\gg',\n '≫': '\\\\gg',\n '≪̸': '\\\\not\\\\ll',\n '≪': '\\\\ll',\n '≩': '\\\\ngeqslant',\n '≨': '\\\\nleqslant',\n '≡': '\\\\equiv',\n '≟': '\\\\doteq',\n '≜': '\\\\triangleq',\n '≛': '\\\\doteq',\n '≚': '\\\\triangleq',\n '≙': '\\\\triangleq',\n '≗': '\\\\doteq',\n '≔': ':=',\n '≍': '\\\\asymp',\n '≇': '\\\\ncong',\n '≆': '\\\\ncong',\n '≅': '\\\\cong',\n '≄': '\\\\not\\\\simeq',\n '≃': '\\\\simeq',\n '≁': '\\\\not\\\\sim',\n '∦': '\\\\not\\\\parallel',\n '∥': '\\\\parallel',\n '∤': '\\\\not|',\n '∝': '\\\\propto',\n '==': '==',\n '=': '=',\n ':=': ':=',\n '/=': '=',\n '-=': '-=',\n '+=': '+=',\n '*=': '*=',\n '!=': '!=',\n '≠': '\\\\neq',\n '≢': '\\\\equiv /',\n '≉': '\\\\approx /',\n '∼': 'sim',\n '≈': '\\\\approx',\n '≮': '</',\n '<': '<',\n '≯': '>/',\n '>=': '>=',\n '>': '>',\n '≥': '\\\\geq',\n '≤': '\\\\leq',\n '<=': '<=',\n '⊋': '\\\\supsetneq',\n '⊊': '\\\\subsetneq',\n '⊉': '\\\\nsupseteq',\n '⊈': '\\\\nsubseteq',\n '⊇': '\\\\supseteq',\n '⊆': '\\\\subseteq',\n '⊅': '\\\\not\\\\supset',\n '⊄': '\\\\not\\\\subset',\n '⊃⃒': '\\\\supset |',\n '⊃': '\\\\supset',\n '⊂⃒': '\\\\subset |',\n '⊂': '\\\\subset',\n '∌': '\\\\not\\\\in',\n '∉': '\\\\notin',\n '∈': '\\\\in',\n '∁': 'C',\n '∄': '\\\\nexists',\n '∃': '\\\\exists',\n '∀': '\\\\forall',\n '∧': '\\\\land',\n '&&': '\\\\&\\\\&',\n '∨': '\\\\lor',\n '⊯': '\\\\cancel{\\\\vDash}',\n '⊮': '\\\\cancel{\\\\Vdash}',\n '⊭': '\\\\nvDash',\n '⊬': '\\\\nvDash',\n '⊩': '\\\\Vdash',\n '⊨': '\\\\vDash',\n '⊤': '\\\\top',\n '⊣': '\\\\dashv',\n '⊢': '\\\\vdash',\n '∋': '\\\\ni',\n '⋱': '\\\\ddots',\n '⋯': '\\\\hdots',\n '⋮': '\\\\vdots',\n '…': '\\\\hdots',\n '϶': '\\\\ni',\n ':': ':',\n '...': '\\\\cdots',\n '..': '..',\n '->': '->',\n '∵': '\\\\because',\n '∴': '\\\\therefore ',\n '⁣': '',\n ',': ',',\n ';': ';',\n '⧽': '\\\\}',\n '⧼': '\\\\{',\n '⦘': '\\\\]',\n '⦗': '\\\\[',\n '⦖': '\\\\ll',\n '⦕': '\\\\gg',\n '⦔': '\\\\gg',\n '⦓': '\\\\ll',\n '⦒': '\\\\gg',\n '⦑': '\\\\ll',\n '⦐': '\\\\]',\n '⦏': '\\\\]',\n '⦎': '\\\\]',\n '⦍': '\\\\[',\n '⦌': '\\\\[',\n '⦋': '\\\\]',\n '⦊': '\\\\triangleright',\n '⦉': '\\\\triangleleft',\n '⦈': '|\\\\)',\n '⦇': '\\\\(|',\n '⦆': '|\\\\)',\n '⦅': '\\\\(\\\\(',\n '⦄': '|\\\\}',\n '⦃': '\\\\{|',\n '⦀': '\\\\||',\n '⟯': '\\\\left. \\\\right]',\n '⟮': '\\\\left[ \\\\right.',\n '⟭': '\\\\left. \\\\right]]',\n '⟬': '\\\\left[[ \\\\right.',\n '⟫': '\\\\gg',\n '⟪': '\\\\ll',\n '⟩': '\\\\rangle',\n '⟨': '\\\\langle',\n '⟧': '\\\\left. \\\\right]]',\n '⟦': '\\\\left[[ \\\\right.',\n '❳': '\\\\left.\\\\right)',\n '❲': '\\\\left(\\\\right.',\n '〉': '\\\\rangle',\n '〈': '\\\\langle',\n '⌋': '\\\\rfloor',\n '⌊': '\\\\lfloor',\n '⌉': '\\\\rceil',\n '⌈': '\\\\lceil',\n '‖': '\\\\parallel',\n '}': '\\\\left.\\\\right}',\n '{': '\\\\left{\\\\right.',\n ']': '\\\\left]\\\\right.',\n '[': '\\\\left[\\\\right.',\n ')': '\\\\left.\\\\right)',\n '(': '\\\\left(\\\\right.',\n '”': '\"',\n '“': '``',\n '’': \"'\",\n '‘': '`',\n '%CE%B1': '\\\\alpha',\n '%CE%B2': '\\\\beta',\n '%CE%B3': '\\\\gamma',\n '%CE%93': '\\\\Gamma',\n '%CE%B4': '\\\\delta',\n '%CE%94': '\\\\Delta',\n '%CF%B5': '\\\\epsilon',\n '%CE%B6': '\\\\zeta',\n '%CE%B7': '\\\\eta',\n '%CE%B8': '\\\\theta',\n '%CE%98': '\\\\Theta',\n '%CE%B9': '\\\\iota',\n '%CE%BA': '\\\\kappa',\n '%CE%BB': '\\\\lambda',\n '%CE%BC': '\\\\mu',\n '%CE%BD': '\\\\nu',\n '%CE%BF': '\\\\omicron',\n '%CF%80': '\\\\pi',\n '%CE%A0': '\\\\Pi',\n '%CF%81': '\\\\pho',\n '%CF%83': '\\\\sigma',\n '%CE%A3': '\\\\Sigma',\n '%CF%84': '\\\\tau',\n '%CF%85': '\\\\upsilon',\n '%CE%A5': '\\\\Upsilon',\n '%CF%95': '\\\\phi',\n '%CE%A6': '\\\\Phi',\n '%CF%87': '\\\\chi',\n '%CF%88': '\\\\psi',\n '%CE%A8': '\\\\Psi',\n '%CF%89': '\\\\omega',\n '%CE%A9': '\\\\Omega',\n};\n","export const allMathOperatorsByGlyph: Record<string, string> = {\n _: '\\\\underline',\n '⏡': '\\\\underbrace',\n '⏠': '\\\\overbrace',\n '⏟': '\\\\underbrace',\n '⏞': '\\\\overbrace',\n '⏝': '\\\\underbrace',\n '⏜': '\\\\overbrace',\n '⎵': '\\\\underbrace',\n '⎴': '\\\\overbrace',\n '⃜': '\\\\square',\n '⃛': '\\\\square',\n '': '',\n '⁗': \"''''\",\n '‾': '\\\\overline',\n '‷': '```',\n '‶': '``',\n '‵': '`',\n '‴': \"'''\",\n '″': \"''\",\n '‟': '``',\n '„': ',,',\n '‛': '`',\n '‚': ',',\n '^': '\\\\hat',\n '˷': '\\\\sim',\n '˝': '\\\\sim',\n '˜': '\\\\sim',\n '˚': '\\\\circ',\n '˙': '\\\\cdot',\n '˘': ' ',\n ˍ: '\\\\_',\n ˋ: 'ˋ',\n ˊ: 'ˊ',\n ˉ: 'ˉ',\n ˇ: '',\n ˆ: '\\\\hat',\n º: 'o',\n '¹': '1',\n '¸': ',',\n '´': '´',\n '³': '3',\n '²': '2',\n '°': '\\\\circ',\n '¯': '\\\\bar',\n ª: 'a',\n '↛': '\\\\nrightarrow',\n '¨': '\\\\cdot\\\\cdot',\n '~': '\\\\sim',\n '`': '`',\n '--': '--',\n '++': '++',\n '&': '\\\\&',\n '∜': '\\\\sqrt[4]{}',\n '∛': '\\\\sqrt[3]{}',\n '√': '\\\\sqrt{}',\n ⅆ: 'd',\n ⅅ: '\\\\mathbb{D}',\n '?': '?',\n '@': '@',\n '//': '//',\n '!!': '!!',\n '!': '!',\n '♯': '\\\\#',\n '♮': '',\n '♭': '',\n '′': \"'\",\n '<>': '<>',\n '**': '\\\\star\\\\star',\n '∇': '\\\\nabla',\n '∂': '\\\\partial',\n '⊙': '\\\\bigodot',\n '¬': '\\\\neg',\n '∢': '\\\\measuredangle',\n '∡': '\\\\measuredangle',\n '∠': '\\\\angle',\n '÷': '\\\\div',\n '/': '/',\n '∖': '\\\\backslash',\n '\\\\': '\\\\backslash',\n '%': '\\\\%',\n '⊗': '\\\\bigotimes',\n '·': '\\\\cdot',\n '⨿': '\\\\coprod',\n '⨯': '\\\\times',\n '⋅': '\\\\cdot',\n '⊡': '\\\\boxdot',\n '⊠': '\\\\boxtimes',\n '': '',\n '⁃': '-',\n '•': '\\\\cdot',\n '.': '.',\n '*': '\\\\star',\n '∪': '\\\\cup',\n '∩': '\\\\cap',\n '∐': '\\\\coprod',\n '∏': '\\\\prod',\n '≀': '',\n '⫿': '',\n '⫼': '\\\\mid\\\\mid\\\\mid',\n '⨉': '\\\\times',\n '⨈': '',\n '⨇': '',\n '⨆': '\\\\sqcup',\n '⨅': '\\\\sqcap',\n '⨂': '\\\\otimes',\n '⨀': '\\\\odot',\n '⋂': '\\\\cap',\n '⋁': '\\\\vee',\n '⋀': '\\\\wedge',\n '⨄': '\\\\uplus',\n '⨃': '\\\\cup',\n '⋃': '\\\\cup',\n '⨜': '\\\\underline{\\\\int}',\n '⨛': '\\\\overline{\\\\int}',\n '⨚': '\\\\int',\n '⨙': '\\\\int',\n '⨘': '\\\\int',\n '⨗': '\\\\int',\n '⨖': '\\\\oint',\n '⨕': '\\\\oint',\n '⨔': '\\\\int',\n '⨓': '\\\\int',\n '⨒': '\\\\int',\n '⨑': '\\\\int',\n '⨐': '\\\\int',\n '⨏': '\\\\bcancel{\\\\int}',\n '⨎': '',\n '⨍': '\\\\hcancel{\\\\int}',\n '⨌': '\\\\iiiint',\n '∳': '\\\\oint',\n '∲': '\\\\oint',\n '∱': '\\\\int',\n '∰': '\\\\oiint',\n '∯': '\\\\oiint',\n '∮': '\\\\oint',\n '∫': '\\\\int',\n '⨁': '\\\\oplus',\n '⊘': '\\\\oslash',\n '⊖': '\\\\ominus',\n '⊕': '\\\\oplus',\n '∭': '\\\\iiint',\n '∬': '\\\\iint',\n '⨋': '',\n '⨊': '',\n '∑': '\\\\sum',\n '⊟': '\\\\boxminus',\n '⊞': '\\\\boxplus',\n '∔': '\\\\dot{+}',\n '∓': '+-',\n '−': '-',\n '±': '\\\\pm',\n '-': '-',\n '+': '+',\n '⭆': '\\\\Rrightarrow',\n '⭅': '\\\\Lleftarrow',\n '⧴': ':\\\\rightarrow',\n '⧯': '',\n '⧟': '\\\\bullet-\\\\bullet',\n '⦟': '\\\\angle',\n '⦞': '\\\\measuredangle',\n '⦝': '\\\\measuredangle',\n '⦜': '\\\\perp',\n '⦛': '\\\\measuredangle',\n '⦚': '',\n '⦙': '\\\\vdots',\n '⥿': '',\n '⥾': '',\n '⥽': '\\\\prec',\n '⥼': '\\\\succ',\n '⥻': '\\\\underset{\\\\rightarrow}{\\\\supset}',\n '⥺': '',\n '⥹': '\\\\underset{\\\\rightarrow}{\\\\subset}',\n '⥸': '\\\\underset{\\\\rightarrow}{>}',\n '⥷': '',\n '⥶': '\\\\underset{\\\\leftarrow}{<}',\n '⥵': '\\\\underset{\\\\approx}{\\\\rightarrow}',\n '⥴': '\\\\underset{\\\\sim}{\\\\rightarrow}',\n '⥳': '\\\\underset{\\\\sim}{\\\\leftarrow}',\n '⥲': '\\\\overset{\\\\sim}{\\\\rightarrow}',\n '⥱': '\\\\overset{=}{\\\\rightarrow}',\n '⥰': '',\n '⥯': '',\n '⥮': '',\n '⥭': '\\\\overline{\\\\rightharpoondown}',\n '⥬': '\\\\underline{\\\\rightharpoonup}',\n '⥫': '\\\\overline{\\\\leftharpoondown}',\n '⥪': '\\\\underline{\\\\leftharpoonup}',\n '⥩': '\\\\rightleftharpoons',\n '⥨': '\\\\rightleftharpoons',\n '⥧': '\\\\rightleftharpoons',\n '⥦': '\\\\rightleftharpoons',\n '⥥': '\\\\Downarrow',\n '⥤': '\\\\Rightarrow',\n '⥣': '\\\\Uparrow',\n '⥢': '\\\\Leftarrow',\n '⥡': '\\\\downarrow',\n '⥠': '\\\\uparrow',\n '⥟': '\\\\rightarrow',\n '⥞': '\\\\leftarrow',\n '⥝': '\\\\downarrow',\n '⥜': '\\\\uparrow',\n '⥛': '\\\\rightarrow',\n '⥚': '\\\\leftarrow',\n '⥙': '\\\\downarrow',\n '⥘': '\\\\uparrow',\n '⥗': '\\\\rightarrow',\n '⥖': '\\\\leftarrow',\n '⥕': '\\\\downarrow',\n '⥔': '\\\\uparrow',\n '⥓': '\\\\rightarrow',\n '⥒': '\\\\leftarrow',\n '⥑': '\\\\updownarrow',\n '⥐': '\\\\leftrightarrow',\n '⥏': '\\\\updownarrow',\n '⥎': '\\\\leftrightarrow',\n '⥍': '\\\\updownarrow',\n '⥌': '\\\\updownarrow',\n '⥋': '\\\\leftrightarrow',\n '⥊': '\\\\leftrightarrow',\n '⥉': '',\n '⥈': '\\\\leftrightarrow',\n '⥇': '\\\\nrightarrow',\n '⥆': '',\n '⥅': '',\n '⥄': '\\\\rightleftarrows',\n '⥃': '\\\\leftrightarrows',\n '⥂': '\\\\rightleftarrows',\n '⥁': '\\\\circlearrowright',\n '⥀': '\\\\circlearrowleft',\n '⤿': '\\\\rightarrow',\n '⤾': '\\\\leftarrow',\n '⤽': '\\\\leftarrow',\n '⤼': '\\\\rightarrow',\n '⤻': '\\\\rightarrow',\n '⤺': '\\\\leftarrow',\n '⤹': '\\\\downarrow',\n '⤸': '\\\\downarrow',\n '⤷': '\\\\Rsh',\n '⤶': '\\\\Lsh',\n '⤵': '\\\\downarrow',\n '⤴': '\\\\uparrow',\n '⤳': '\\\\rightarrow',\n '⤲': '\\\\leftarrow',\n '⤱': ' ',\n '⤰': ' ',\n '⤯': ' ',\n '⤮': ' ',\n '⤭': ' ',\n '⤬': '\\\\times',\n '⤫': '\\\\times',\n '⤪': ' ',\n '⤩': ' ',\n '⤨': ' ',\n '⤧': ' ',\n '⤦': ' ',\n '⤥': ' ',\n '⤤': ' ',\n '⤣': ' ',\n '⤢': ' ',\n '⤡': ' ',\n '⤠': '\\\\mapsto\\\\cdot',\n '⤟': '\\\\cdot\\\\leftarrow',\n '⤞': '\\\\rightarrow\\\\cdot',\n '⤝': '\\\\leftarrow',\n '⤜': '\\\\rightarrow',\n '⤛': '\\\\leftarrow',\n '⤚': '\\\\rightarrow',\n '⤙': '\\\\leftarrow',\n '⤘': '\\\\rightarrow',\n '⤗': '\\\\rightarrow',\n '⤖': '\\\\rightarrow',\n '⤕': '\\\\rightarrow',\n '⤔': '\\\\rightarrow',\n '⤓': '\\\\downarrow',\n '⤒': '\\\\uparrow',\n '⤑': '\\\\rightarrow',\n '⤐': '\\\\rightarrow',\n '⤏': '\\\\rightarrow',\n '⤎': '\\\\leftarrow',\n '⤍': '\\\\rightarrow',\n '⤌': '\\\\leftarrow',\n '⤋': '\\\\Downarrow',\n '⤊': '\\\\Uparrow',\n '⤉': '\\\\uparrow',\n '⤈': '\\\\downarrow',\n '⤇': '\\\\Rightarrow',\n '⤆': '\\\\Leftarrow',\n '⤅': '\\\\mapsto',\n '⤄': '\\\\nLeftrightarrow',\n '⤃': '\\\\nRightarrow',\n '⤂': '\\\\nLeftarrow',\n '⤁': '\\\\rightsquigarrow',\n '⤀': '\\\\rightsquigarrow',\n '⟿': '\\\\rightsquigarrow',\n '⟾': '\\\\Rightarrow',\n '⟽': '\\\\Leftarrow',\n '⟼': '\\\\mapsto',\n '⟻': '\\\\leftarrow',\n '⟺': '\\\\Longleftrightarrow',\n '⟹': '\\\\Longrightarrow',\n '⟸': '\\\\Longleftarrow',\n '⟷': '\\\\leftrightarrow',\n '⟶': '\\\\rightarrow',\n '⟵': '\\\\leftarrow',\n '⟱': '\\\\Downarrow',\n '⟰': '\\\\Uparrow',\n '⊸': '\\\\rightarrow',\n '⇿': '\\\\leftrightarrow',\n '⇾': '\\\\rightarrow',\n '⇽': '\\\\leftarrow',\n '⇼': '\\\\nleftrightarrow',\n '⇻': '\\\\nrightarrow',\n '⇺': '\\\\nleftarrow',\n '⇹': '\\\\nleftrightarrow',\n '⇸': '\\\\nrightarrow',\n '⇷': '\\\\nleftarrow',\n '⇶': '\\\\Rrightarrow',\n '⇵': '',\n '⇴': '\\\\rightarrow',\n '⇳': '\\\\Updownarrow',\n '⇲': '\\\\searrow',\n '⇱': '\\\\nwarrow',\n '⇰': '\\\\Leftarrow',\n '⇯': '\\\\Uparrow',\n '⇮': '\\\\Uparrow',\n '⇭': '\\\\Uparrow',\n '⇬': '\\\\Uparrow',\n '⇫': '\\\\Uparrow',\n '⇪': '\\\\Uparrow',\n '⇩': '\\\\Downarrow',\n '⇨': '\\\\Rightarrow',\n '⇧': '\\\\Uparrow',\n '⇦': '\\\\Leftarrow',\n '⇥': '\\\\rightarrow',\n '⇤': '\\\\leftarrow',\n '⇣': '\\\\downarrow',\n '⇢': '\\\\rightarrow',\n '⇡': '\\\\uparrow',\n '⇠': '\\\\leftarrow',\n '⇟': '\\\\downarrow',\n '⇞': '\\\\uparrow',\n '⇝': '\\\\rightsquigarrow',\n '⇜': '\\\\leftarrow',\n '⇛': '\\\\Rrightarrow',\n '⇚': '\\\\Lleftarrow',\n '⇙': '\\\\swarrow',\n '⇘': '\\\\searrow',\n '⇗': '\\\\nearrow',\n '⇖': '\\\\nwarrow',\n '⇕': '\\\\Updownarrow',\n '⇔': '\\\\Leftrightarrow',\n '⇓': '\\\\Downarrow',\n '⇒': '\\\\Rightarrow',\n '⇑': '\\\\Uparrow',\n '⇐': '\\\\Leftarrow',\n '⇏': '\\\\nRightarrow',\n '⇎': '\\\\nLeftrightarrow',\n '⇍': '\\\\nLeftarrow',\n '⇌': '\\\\rightleftharpoons',\n '⇋': '\\\\leftrightharpoons',\n '⇊': '\\\\downdownarrows',\n '⇉': '\\\\rightrightarrows',\n '⇈': '\\\\upuparrows',\n '⇇': '\\\\leftleftarrows',\n '⇆': '\\\\leftrightarrows',\n '⇅': '',\n '⇄': '\\\\rightleftarrows',\n '⇃': '\\\\downharpoonleft',\n '⇂': '\\\\downharpoonright',\n '⇁': '\\\\rightharpoondown',\n '⇀': '\\\\rightharpoonup',\n '↿': '\\\\upharpoonleft',\n '↾': '\\\\upharpoonright',\n '↽': '\\\\leftharpoondown',\n '↼': '\\\\leftharpoonup',\n '↻': '\\\\circlearrowright',\n '↺': '\\\\circlearrowleft',\n '↹': '\\\\leftrightarrows',\n '↸': '\\\\overline{\\\\nwarrow}',\n '↷': '\\\\curvearrowright',\n '↶': '\\\\curvearrowleft',\n '↵': '\\\\swarrow',\n '↴': '\\\\searrow',\n '↳': '\\\\Rsh',\n '↲': '\\\\Lsh',\n '↱': '\\\\Rsh',\n '↰': '\\\\Lsh',\n '↯': '\\\\swarrow',\n '↮': '',\n '↭': '\\\\leftrightsquigarrow',\n '↬': '\\\\looparrowright',\n '↫': '\\\\looparrowleft',\n '↪': '\\\\hookrightarrow',\n '↩': '\\\\hookleftarrow',\n '↨': '\\\\underline{\\\\updownarrow}',\n '↧': '\\\\downarrow',\n '↦': '\\\\rightarrowtail',\n '↥': '\\\\uparrow',\n '↤': '\\\\leftarrowtail',\n '↣': '\\\\rightarrowtail',\n '↢': '\\\\leftarrowtail',\n '↡': '\\\\downarrow',\n '↠': '\\\\twoheadrightarrow',\n '↟': '\\\\uparrow',\n '↞': '\\\\twoheadleftarrow',\n '↝': '\\\\nearrow',\n '↜': '\\\\nwarrow',\n '↚': '',\n '↙': '\\\\swarrow',\n '↘': '\\\\searrow',\n '↗': '\\\\nearrow',\n '↖': '\\\\nwarrow',\n '↕': '\\\\updownarrow',\n '↔': '\\\\leftrightarrow',\n '↓': '\\\\downarrow',\n '→': '\\\\rightarrow',\n '↑': '\\\\uparrow',\n '←': '\\\\leftarrow',\n '|||': '\\\\left|||\\\\right.',\n '||': '\\\\left||\\\\right.',\n '|': '\\\\mid',\n '⫾': '',\n '⫽': '//',\n '⫻': '///',\n '⫺': '',\n '⫹': '',\n '⫸': '',\n '⫷': '',\n '⫶': '\\\\vdots',\n '⫵': '',\n '⫴': '',\n '⫳': '',\n '⫲': '\\\\nparallel',\n '⫱': '',\n '⫰': '',\n '⫯': '',\n '⫮': '\\\\bcancel{\\\\mid}',\n '⫭': '',\n '⫬': '',\n '⫫': '',\n '⫪': '',\n '⫩': '',\n '⫨': '\\\\underline{\\\\perp}',\n '⫧': '\\\\overline{\\\\top}',\n '⫦': '',\n '⫥': '',\n '⫤': '',\n '⫣': '',\n '⫢': '',\n '⫡': '',\n '⫠': '\\\\perp',\n '⫟': '\\\\top',\n '⫞': '\\\\dashv',\n '⫝̸': '',\n '⫝': '',\n '⫛': '\\\\pitchfork',\n '⫚': '',\n '⫙': '',\n '⫘': '',\n '⫗': '',\n '⫖': '',\n '⫕': '',\n '⫔': '',\n '⫓': '',\n '⫒': '',\n '⫑': '',\n '⫐': '',\n '⫏': '',\n '⫎': '',\n '⫍': '',\n '⫌': '\\\\underset{\\\\neq}{\\\\supset}',\n '⫋': '\\\\underset{\\\\neq}{\\\\subset}',\n '⫊': '\\\\underset{\\\\approx}{\\\\supset}',\n '⫉': '\\\\underset{\\\\approx}{\\\\subset}',\n '⫈': '\\\\underset{\\\\sim}{\\\\supset}',\n '⫇': '\\\\underset{\\\\sim}{\\\\subset}',\n '⫆': '\\\\supseteqq',\n '⫅': '\\\\subseteqq',\n '⫄': '\\\\dot{\\\\supseteq}',\n '⫃': '\\\\dot{\\\\subseteq}',\n '⫂': '\\\\underset{\\\\times}{\\\\supset}',\n '⫁': '\\\\underset{\\\\times}{\\\\subset}',\n '⫀': '\\\\underset{+}{\\\\supset}',\n '⪿': '\\\\underset{+}{\\\\subset}',\n '⪾': '',\n '⪽': '',\n '⪼': '\\\\gg ',\n '⪻': '\\\\ll',\n '⪺': '\\\\underset{\\\\cancel{\\\\approx}}{\\\\succ}',\n '⪹': '\\\\underset{\\\\cancel{\\\\approx}}{\\\\prec}',\n '⪸': '\\\\underset{\\\\approx}{\\\\succ}',\n '⪷': '\\\\underset{\\\\approx}{\\\\prec}',\n '⪶': '\\\\underset{\\\\cancel{=}}{\\\\succ}',\n '⪵': '\\\\underset{\\\\cancel{=}}{\\\\prec}',\n '⪴': '\\\\underset{=}{\\\\succ}',\n '⪳': '\\\\underset{=}{\\\\prec}',\n '⪲': '',\n '⪱': '',\n '⪮': '',\n '⪭': '\\\\underline{\\\\hcancel{>}}',\n '⪬': '\\\\underline{\\\\hcancel{>}}',\n '⪫': '\\\\hcancel{>}',\n '⪪': '\\\\hcancel{<}',\n '⪩': '',\n '⪨': '',\n '⪧': '\\\\vartriangleright',\n '⪦': '\\\\vartriangleleft',\n '⪥': '><',\n '⪤': '><',\n '⪣': '\\\\underline{\\\\ll}',\n '⪢̸': '\\\\cancel{\\\\gg}',\n '⪢': '\\\\gg',\n '⪡̸': '\\\\cancel{\\\\ll}',\n '⪡': '\\\\ll',\n '⪠': '\\\\overset{\\\\sim}{\\\\geqq}',\n '⪟': '\\\\overset{\\\\sim}{\\\\leqq}',\n '⪞': '\\\\overset{\\\\sim}{>}',\n '⪝': '\\\\overset{\\\\sim}{<}',\n '⪜': '',\n '⪛': '',\n '⪚': '\\\\overset{=}{>}',\n '⪙': '\\\\overset{=}{<}',\n '⪘': '',\n '⪗': '',\n '⪖': '',\n '⪕': '',\n '⪔': '',\n '⪓': '',\n '⪒': '\\\\underset{=}{\\\\gtrless}',\n '⪑': '\\\\underset{=}{\\\\lessgtr}',\n '⪐': '\\\\underset{<}{\\\\gtrsim}',\n '⪏': '\\\\underset{>}{\\\\lesssim}',\n '⪎': '\\\\underset{\\\\simeq}{>}',\n '⪍': '\\\\underset{\\\\simeq}{<}',\n '⪌': '\\\\gtreqqless',\n '⪋': '\\\\lesseqqgtr',\n '⪊': '\\\\underset{\\\\cancel{\\\\approx}}{>}',\n '⪉': '\\\\underset{\\\\approx}{<}',\n '⪆': '\\\\underset{\\\\approx}{>}',\n '⪅': '\\\\underset{\\\\approx}{<}',\n '⪄': '',\n '⪃': '',\n '⪂': '',\n '⪁': '',\n '⪀': '',\n '⩿': '',\n '⩾̸': '\\\\bcancel{\\\\geq}',\n '⩾': '\\\\geq',\n '⩽̸': '\\\\bcancel{\\\\leq}',\n '⩽': '\\\\leq',\n '⩼': '',\n '⩻': '',\n '⩺': '',\n '⩹': '',\n '⩸': '\\\\overset{\\\\dots}{\\\\equiv}',\n '⩷': '',\n '⩶': '===',\n '⩵': '==',\n '⩴': '::=',\n '⩳': '',\n '⩲': '\\\\underset{=}{+}',\n '⩱': '\\\\overset{=}{+}',\n '⩰': '\\\\overset{\\\\approx}{=}',\n '⩯': '\\\\overset{\\\\wedge}{=}',\n '⩮': '\\\\overset{*}{=}',\n '⩭': '\\\\dot{\\\\approx}',\n '⩬': '',\n '⩫': '',\n '⩪': '\\\\dot{\\\\sim}',\n '⩩': '',\n '⩨': '',\n '⩧': '\\\\dot{\\\\equiv}',\n '⩦': '\\\\underset{\\\\cdot}{=}',\n '⩥': '',\n '⩤': '',\n '⩣': '\\\\underset{=}{\\\\vee}',\n '⩢': '\\\\overset{=}{\\\\vee}',\n '⩡': 'ul(vv)',\n '⩠': '\\\\underset{=}{\\\\wedge}',\n '⩟': '\\\\underline{\\\\wedge}',\n '⩞': '\\\\overset{=}{\\\\wedge}',\n '⩝': '\\\\hcancel{\\\\vee}',\n '⩜': '\\\\hcancel{\\\\wedge}',\n '⩛': '',\n '⩚': '',\n '⩙': '',\n '⩘': '\\\\vee',\n '⩗': '\\\\wedge',\n '⩖': '',\n '⩕': '',\n '⩔': '',\n '⩓': '',\n '⩒': '\\\\dot{\\\\vee}',\n '⩑': '\\\\dot{\\\\wedge}',\n '⩐': '',\n '⩏': '',\n '⩎': '',\n '⩍': '\\\\overline{\\\\cap}',\n '⩌': '\\\\overline{\\\\cup}',\n '⩋': '',\n '⩊': '',\n '⩉': '',\n '⩈': '',\n '⩇': '',\n '⩆': '',\n '⩅': '',\n '⩄': '',\n '⩃': '\\\\overline{\\\\cap}',\n '⩂': '\\\\overline{\\\\cup}',\n '⩁': '',\n '⩀': '',\n '⨾': '',\n '⨽': '\\\\llcorner',\n '⨼': '\\\\lrcorner',\n '⨻': '',\n '⨺': '',\n '⨹': '',\n '⨸': '',\n '⨷': '',\n '⨶': '\\\\hat{\\\\otimes}',\n '⨵': '',\n '⨴': '',\n '⨳': '',\n '⨲': '\\\\underline{\\\\times}',\n '⨱': '\\\\underline{\\\\times}',\n '⨰': '\\\\dot{\\\\times}',\n '⨮': '\\\\bigodot',\n '⨭': '\\\\bigodot',\n '⨬': '',\n '⨫': '',\n '⨪': '',\n '⨩': '',\n '⨨': '',\n '⨧': '',\n '◻': '\\\\Box',\n '⨦': '\\\\underset{\\\\sim}{+}',\n '⨥': '\\\\underset{\\\\circ}{+}',\n '⨤': '\\\\overset{\\\\sim}{+}',\n '⨣': '\\\\hat{+}',\n '⨢': '\\\\dot{+}',\n '⨡': '\\\\upharpoonright',\n '⨠': '>>',\n '⨟': '',\n '⨞': '\\\\triangleleft',\n '⨝': '\\\\bowtie',\n '⧿': '',\n '⧾': '+',\n '⧻': '\\\\hcancel{|||}',\n '⧺': '\\\\hcancel{||}',\n '⧹': '\\\\backslash',\n '⧸': '/',\n '⧷': 'hcancel{\\backslash}',\n '⧶': '',\n '⧵': '\\\\backslash',\n '⧲': '\\\\Phi',\n '⧱': '',\n '⧰': '',\n '⧮': '',\n '⧭': '',\n '⧬': '',\n '⧫': '\\\\lozenge',\n '⧪': '',\n '⧩': '',\n '⧨': '',\n '⧧': '\\\\ddagger',\n '⧢': '\\\\sqcup\\\\sqcup',\n '⧡': '',\n '⧠': '\\\\square',\n '⧞': '',\n '⧝': '',\n '⧜': '',\n '⧛': '\\\\{\\\\{',\n '⧙': '\\\\{',\n '⧘': '\\\\}',\n '⧗': '',\n '⧖': '',\n '⧕': '\\\\bowtie',\n '⧔': '\\\\bowtie',\n '⧓': '\\\\bowtie',\n '⧒': '\\\\bowtie',\n '⧑': '\\\\bowtie',\n '⧐̸': '| \\\\not\\\\triangleright',\n '⧐': '| \\\\triangleright',\n '⧏̸': '\\\\not\\\\triangleleft |',\n '⧏': '\\\\triangleleft |',\n '⧎': '',\n '⧍': '\\\\triangle',\n '⧌': '',\n '⧋': '\\\\underline{\\\\triangle}',\n '⧊': '\\\\dot{\\\\triangle}',\n '⧉': '',\n '⧈': '\\\\boxed{\\\\circ}',\n '⧇': '\\\\boxed{\\\\circ}',\n '⧆': '\\\\boxed{\\\\rightarrow}',\n '⧅': '\\\\bcancel{\\\\square}',\n '⧄': '\\\\cancel{\\\\square}',\n '⧃': '\\\\odot',\n '⧂': '\\\\odot',\n '⦿': '\\\\odot',\n '⦾': '\\\\odot',\n '⦽': '\\\\varnothing',\n '⦼': '\\\\oplus',\n '⦻': '\\\\otimes',\n '⦺': '',\n '⦹': '\\\\varnothing',\n '⦸': '\\\\varnothing',\n '⦷': '\\\\ominus',\n '⦶': '\\\\ominus',\n '⦵': '\\\\ominus',\n '⦴': '\\\\vec{\\\\varnothing}',\n '⦳': '\\\\vec{\\\\varnothing}',\n '⦲': '\\\\dot{\\\\varnothing}',\n '⦱': '\\\\overline{\\\\varnothing}',\n '⦰': '\\\\varnothing',\n '⦯': '\\\\measuredangle',\n '⦮': '\\\\measuredangle',\n '⦭': '\\\\measuredangle',\n '⦬': '\\\\measuredangle',\n '⦫': '\\\\measuredangle',\n '⦪': '\\\\measuredangle',\n '⦩': '\\\\measuredangle',\n '⦨': '\\\\measuredangle',\n '⦧': '',\n '⦦': '',\n '⦥': '',\n '⦤': '',\n '⦣': '\\\\ulcorner',\n '⦢': '\\\\measuredangle',\n '⦡': '\\\\not\\\\lor',\n '⦠': '\\\\bcancel{>}',\n '⦂': ':',\n '⦁': '\\\\cdot',\n '❘': '\\\\mid',\n '▲': '\\\\bigtriangleup',\n '⋿': '\\\\Epsilon',\n '⋾': '\\\\overline{\\\\ni}',\n '⋽': '\\\\overline{\\\\ni}',\n '⋼': '\\\\in',\n '⋻': '\\\\in',\n '⋺': '\\\\in',\n '⋹': '\\\\underline{\\\\in}',\n '⋸': '\\\\underline{\\\\in}',\n '⋷': '\\\\overline{\\\\in}',\n '⋶': '\\\\overline{\\\\in}',\n '⋵': '\\\\dot{\\\\in}',\n '⋴': '\\\\in',\n '⋳': '\\\\in',\n '⋲': '\\\\in',\n '⋰': '\\\\ddots',\n '։': ':',\n '⋩': '\\\\underset{\\\\sim}{\\\\succ}',\n '⋨': '\\\\underset{\\\\sim}{\\\\prec}',\n '⋧': '\\\\underset{\\\\not\\\\sim}{>}',\n '⋦': '\\\\underset{\\\\not\\\\sim}{<}',\n '⋥': '\\\\not\\\\sqsupseteq',\n '⋤': '\\\\not\\\\sqsubseteq',\n '⋣': '\\\\not\\\\sqsupseteq',\n '⋢': '\\\\not\\\\sqsubseteq',\n '⋡': '\\\\nsucc',\n '⋠': '\\\\nprec',\n '⋟': '\\\\succ',\n '⋞': '\\\\prec',\n '⋝': '\\\\overline{>}',\n '⋜': '\\\\overline{<}',\n '⋛': '\\\\underset{>}{\\\\leq}',\n '⋚': '\\\\underset{<}{\\\\geq}',\n '⋕': '\\\\#',\n '⋓': '\\\\cup',\n '⋒': '\\\\cap',\n '⋑': '\\\\supset',\n '⋐': '\\\\subset',\n '⋏': '\\\\wedge',\n '⋎': '\\\\vee',\n '⋍': '\\\\simeq',\n '⋈': '\\\\Join',\n '⋇': '\\\\ast',\n '⋆': '\\\\star',\n '⋄': '\\\\diamond',\n '⊿': '\\\\triangle',\n '⊾': '\\\\measuredangle',\n '⊽': '\\\\overline{\\\\lor}',\n '⊼': '\\\\overline{\\\\land}',\n '⊻': '\\\\underline{\\\\lor}',\n '⊺': '\\\\top',\n 土: '\\\\pm',\n 十: '+',\n '⊹': '',\n '⊷': '\\\\circ\\\\multimap',\n '⊶': '\\\\circ\\\\multimap',\n '⊳': '\\\\triangleright',\n '⊲': '\\\\triangleleft',\n '⊱': '\\\\succ',\n '⊰': '\\\\prec',\n '⊫': '|\\\\models',\n '⊪': '|\\\\models',\n '⊧': '\\\\models',\n '⊦': '\\\\vdash',\n '⊝': '\\\\ominus',\n '⊜': '\\\\ominus',\n '⊛': '\\\\odot',\n '⊚': '\\\\odot',\n '⊔': '\\\\sqcup',\n '⊓': '\\\\sqcap',\n '⊒': '\\\\sqsupseteq',\n '⊑': '\\\\sqsubseteq',\n '⊐̸': '\\\\not\\\\sqsupset',\n '⊐': '\\\\sqsupset',\n '⊏̸': '\\\\not\\\\sqsubset',\n '⊏': '\\\\sqsubset',\n '⊎': '\\\\cup',\n '⊍': '\\\\cup',\n '⊌': '\\\\cup',\n '≿̸': '\\\\not\\\\succsim',\n '≿': '\\\\succsim',\n '≾': '\\\\precsim',\n '≹': '\\\\not\\\\overset{>}{<}',\n '≸': '\\\\not\\\\overset{>}{<}',\n '≷': '\\\\overset{>}{<}',\n '≶': '\\\\overset{<}{>}',\n '≵': '\\\\not\\\\geg',\n '≴': '\\\\not\\\\leq',\n '≳': '\\\\geg',\n '≲': '\\\\leq',\n '≬': '',\n '≧': '\\\\geg',\n '≦̸': '\\\\not\\\\leq',\n '≦': '\\\\leq',\n '≣': '\\\\overset{=}{=} ',\n '≞': '\\\\overset{m}{=} ',\n '≝': '\\\\overset{def}{=}',\n '≘': '=',\n '≖': '=',\n '≕': '=:',\n '≓': '\\\\doteq',\n '≒': '\\\\doteq',\n '≑': '\\\\doteq',\n '≐': '\\\\doteq',\n '≏̸': '',\n '≏': '',\n '≎̸': '',\n '≎': '',\n '≌': '\\\\approx',\n '≋': '\\\\approx',\n '≊': '\\\\approx',\n '≂̸': '\\\\neq',\n '≂': '=',\n '∿': '\\\\sim',\n '∾': '\\\\infty',\n '∽̱': '\\\\sim',\n '∽': '\\\\sim',\n '∻': '\\\\sim',\n '∺': ':-:',\n '∹': '-:',\n '∸': '\\\\bot',\n '∷': '::',\n '∶': ':',\n '∣': '\\\\mid',\n '∟': '\\\\llcorner',\n '∘': '\\\\circ',\n '∗': '*',\n '∕': '/',\n '∎': '\\\\square',\n '∍': '\\\\ni',\n '∊': '\\\\in',\n '∆': '\\\\Delta',\n '⁄': '/',\n '⪰̸': '\\\\nsucceq',\n '⪰': '\\\\succeq',\n '⪯̸': '\\\\npreceq',\n '⪯': '\\\\preceq',\n '⪈': '\\\\ngeqslant',\n '⪇': '\\\\nleqslant',\n '⧳': '\\\\Phi',\n '⧦': '\\\\models',\n '⧥': '\\\\not\\\\equiv',\n '⧤': '\\\\approx\\\\neq',\n '⧣': '\\\\neq',\n '⧁': '\\\\circle',\n '⧀': '\\\\circle',\n '◦': '\\\\circle',\n '◗': '\\\\circle',\n '◖': '\\\\circle',\n '●': '\\\\circle',\n '◎': '\\\\circledcirc',\n '◍': '\\\\circledcirc',\n '◌': '\\\\circledcirc',\n '◉': '\\\\circledcirc',\n '◈': '\\\\diamond',\n '◇': '\\\\diamond',\n '◆': '\\\\diamond',\n '◅': '\\\\triangleleft',\n '◄': '\\\\triangleleft',\n '◃': '\\\\triangleleft',\n '◂': '\\\\triangleleft',\n '◁': '\\\\triangleleft',\n '◀': '\\\\triangleleft',\n '▿': '\\\\triangledown',\n '▾': '\\\\triangledown',\n '▽': '\\\\triangledown',\n '▼': '\\\\triangledown',\n '▹': '\\\\triangleright',\n '▸': '\\\\triangleright',\n '▷': '\\\\triangleright',\n '▶': '\\\\triangleright',\n '▵': '\\\\triangle',\n '▴': '\\\\triangle',\n '△': '\\\\triangle',\n '▱': '\\\\square',\n '▰': '\\\\blacksquare',\n '▯': '\\\\square',\n '▮': '\\\\blacksquare',\n '▭': '\\\\square',\n '▫': '\\\\square',\n '▪': '\\\\square',\n '□': '\\\\square',\n '■': '\\\\blacksquare',\n '⋭': '\\\\not\\\\triangleright',\n '⋬': '\\\\not\\\\triangleleft',\n '⋫': '\\\\not\\\\triangleright',\n '⋪': '\\\\not\\\\triangleleft',\n '⋙': '\\\\ggg',\n '⋘': '\\\\lll',\n '⋗': '*>',\n '⋖': '<*',\n '⋔': '\\\\pitchfork',\n '⋌': '',\n '⋋': '\\\\bowtie',\n '⋊': '\\\\ltimes',\n '⋉': '\\\\rtimes',\n '⊵': '\\\\triangleright',\n '\\\\triangleleft': '',\n '⊥': '\\\\bot',\n '⊁': '\\\\nsucc',\n '⊀': '\\\\preceq',\n '≽': '\\\\succeq',\n '≼': '\\\\preceq',\n '≻': '\\\\succ',\n '≺': '\\\\prec',\n '≱': '\\\\geq/',\n '≰': '\\\\leq/',\n '≭': '\\\\neq',\n '≫̸': '\\\\not\\\\gg',\n '≫': '\\\\gg',\n '≪̸': '\\\\not\\\\ll',\n '≪': '\\\\ll',\n '≩': '\\\\ngeqslant',\n '≨': '\\\\nleqslant',\n '≡': '\\\\equiv',\n '≟': '\\\\doteq',\n '≜': '\\\\triangleq',\n '≛': '\\\\doteq',\n '≚': '\\\\triangleq',\n '≙': '\\\\triangleq',\n '≗': '\\\\doteq',\n '≔': ':=',\n '≍': '\\\\asymp',\n '≇': '\\\\ncong',\n '≆': '\\\\ncong',\n '≅': '\\\\cong',\n '≄': '\\\\not\\\\simeq',\n '≃': '\\\\simeq',\n '≁': '\\\\not\\\\sim',\n '∦': '\\\\not\\\\parallel',\n '∥': '\\\\parallel',\n '∤': '\\\\not|',\n '∝': '\\\\propto',\n '==': '==',\n '=': '=',\n ':=': ':=',\n '/=': '=',\n '-=': '-=',\n '+=': '+=',\n '*=': '*=',\n '!=': '!=',\n '≠': '\\\\neq',\n '≢': '\\\\equiv /',\n '≉': '\\\\approx /',\n '∼': 'sim',\n '≈': '\\\\approx',\n '≮': '</',\n '<': '<',\n '≯': '>/',\n '>=': '>=',\n '>': '>',\n '≥': '\\\\geq',\n '≤': '\\\\leq',\n '<=': '<=',\n '⊋': '\\\\supsetneq',\n '⊊': '\\\\subsetneq',\n '⊉': '\\\\nsupseteq',\n '⊈': '\\\\nsubseteq',\n '⊇': '\\\\supseteq',\n '⊆': '\\\\subseteq',\n '⊅': '\\\\not\\\\supset',\n '⊄': '\\\\not\\\\subset',\n '⊃⃒': '\\\\supset |',\n '⊃': '\\\\supset',\n '⊂⃒': '\\\\subset |',\n '⊂': '\\\\subset',\n '∌': '\\\\not\\\\in',\n '∉': '\\\\notin',\n '∈': '\\\\in',\n '∁': 'C',\n '∄': '\\\\nexists',\n '∃': '\\\\exists',\n '∀': '\\\\forall',\n '∧': '\\\\land',\n '&&': '\\\\&\\\\&',\n '∨': '\\\\lor',\n '⊯': '\\\\cancel{\\\\vDash}',\n '⊮': '\\\\cancel{\\\\Vdash}',\n '⊭': '\\\\nvDash',\n '⊬': '\\\\nvDash',\n '⊩': '\\\\Vdash',\n '⊨': '\\\\vDash',\n '⊤': '\\\\top',\n '⊣': '\\\\dashv',\n '⊢': '\\\\vdash',\n '∋': '\\\\ni',\n '⋱': '\\\\ddots',\n '⋯': '\\\\hdots',\n '⋮': '\\\\vdots',\n '϶': '\\\\ni',\n ':': ':',\n '...': '\\\\cdots',\n '..': '..',\n '->': '->',\n '∵': '\\\\because',\n '∴': '\\\\therefore ',\n '': '\\\\llbracket',\n ',': ',',\n ';': ';',\n '⧽': '\\\\}',\n '⧼': '\\\\{',\n '⦘': '\\\\]',\n '⦗': '\\\\[',\n '⦖': '\\\\ll',\n '⦕': '\\\\gg',\n '⦔': '\\\\gg',\n '⦓': '\\\\ll',\n '⦒': '\\\\gg',\n '⦑': '\\\\ll',\n '⦐': '\\\\]',\n '⦏': '\\\\]',\n '⦎': '\\\\]',\n '⦍': '\\\\[',\n '⦌': '\\\\[',\n '⦋': '\\\\]',\n '⦊': '\\\\triangleright',\n '⦉': '\\\\triangleleft',\n '⦈': '|\\\\)',\n '⦇': '\\\\(|',\n '⦆': '|\\\\)',\n '⦅': '\\\\(\\\\(',\n '⦄': '|\\\\}',\n '⦃': '\\\\{|',\n '⦀': '\\\\||',\n '⟯': '\\\\left. \\\\right]',\n '⟮': '\\\\left[ \\\\right.',\n '⟭': '\\\\left. \\\\right]]',\n '⟬': '\\\\left[[ \\\\right.',\n '⟫': '\\\\gg',\n '⟪': '\\\\ll',\n '⟧': '\\\\)|',\n '⟦': '\\\\(|',\n '❳': '\\\\left.\\\\right)',\n '❲': '\\\\left(\\\\right.',\n '〉': '\\\\rangle',\n '〈': '\\\\langle',\n '⌋': '\\\\rfloor',\n '⌊': '\\\\lfloor',\n '⌉': '\\\\rceil',\n '⌈': '\\\\lceil',\n '‖': '\\\\parallel',\n '}': '\\\\left.\\\\right}',\n '{': '\\\\left{\\\\right.',\n ']': '\\\\left]\\\\right.',\n '[': '\\\\left[\\\\right.',\n ')': '\\\\left.\\\\right)',\n '(': '\\\\left(\\\\right.',\n '”': '\\\\\"',\n '“': '\\\\text{``}',\n '’': \"'\",\n '‘': '`',\n α: '\\\\alpha',\n β: '\\\\beta',\n γ: '\\\\gamma',\n Γ: '\\\\Gamma',\n δ: '\\\\delta',\n Δ: '\\\\Delta',\n ϵ: '\\\\epsilon',\n ζ: '\\\\zeta',\n η: '\\\\eta',\n θ: '\\\\theta',\n Θ: '\\\\Theta',\n ι: '\\\\iota',\n κ: '\\\\kappa',\n λ: '\\\\lambda',\n ν: '\\\\nu',\n ο: '\\\\omicron',\n π: '\\\\pi',\n Π: '\\\\Pi',\n ρ: '\\\\rho',\n σ: '\\\\sigma',\n Σ: '\\\\Sigma',\n τ: '\\\\tau',\n υ: '\\\\upsilon',\n Υ: '\\\\Upsilon',\n ϕ: '\\\\phi',\n Φ: '\\\\Phi',\n χ: '\\\\chi',\n ψ: '\\\\psi',\n Ψ: '\\\\Psi',\n ω: '\\\\omega',\n Ω: '\\\\Omega',\n Ω: '\\\\Omega',\n '∅': '\\\\emptyset',\n '⟲': '\\\\circlearrowleft',\n '⟳': '\\\\circlearrowright',\n '×': '\\\\times',\n '½': '\\\\dfrac{1}{2}',\n μ: '\\\\mu',\n Ө: '\\\\theta',\n '✓': '\\\\checkmark',\n '⟩': '\\\\rangle',\n '⟨': '\\\\langle',\n '¼': '\\\\dfrac{1}{4}',\n '…': '\\\\ldots',\n ℏ: '\\\\hbar',\n ℜ: '\\\\mathfrak{R}',\n Ѳ: '\\\\theta',\n Ø: '\\\\emptyset',\n ϱ: '\\\\varrho',\n ф: '\\\\phi',\n ℇ: '\\\\varepsilon',\n T: 'T',\n '∙': '\\\\cdot',\n Ρ: 'P',\n '∞': '\\\\infty',\n ᐁ: '\\\\nabla',\n ƞ: '\\\\eta',\n '⁺': '^{+}',\n '⁻': '^{-}',\n '⁼': '^{=}',\n '⁽': '^{(}',\n '⁾': '^{)}',\n '〗': '\\\\)|',\n '〖': '\\\\langle',\n ';': ';',\n '൦': '\\\\circ',\n '┴': '\\\\perp',\n '✕': '\\\\times',\n '⎻': '-',\n '»': '\\\\gg',\n '⬆': '\\\\uparrow',\n '⬇': '\\\\downarrow',\n '⬅': '\\\\leftarrow',\n '➡': '\\\\rightarrow',\n '⎼': '-',\n '⎜': '\\\\mid',\n '⎥': '\\\\mid',\n ħ: '\\\\hbar',\n '⮕': '\\\\rightarrow',\n '・': '\\\\cdot',\n '¦': '\\\\mid',\n '£': '\\\\pounds',\n '¥': '\\\\yen',\n '✗': '\\\\times',\n '✔': '\\\\checkmark',\n ⁿ: '^{n}',\n '«': '\\\\ll',\n เ: '\\\\prime',\n '†': '\\\\dagger',\n '│': '\\\\mid',\n $: '\\\\$',\n '#': '\\\\#',\n '℃': '\\\\text{\\\\textdegree C}',\n '℉': '\\\\text{\\\\textdegree F}',\n '█': '\\\\blacksquare',\n '℧': '\\\\mho',\n ⅇ: '\\\\text{e}',\n ɼ: 'r',\n '‡': '\\\\ddagger',\n ἱ: 'i',\n ϒ: '\\\\Upsilon',\n '𝛿': '\\\\delta',\n '˳': '\\\\cdot',\n ѳ: '\\\\theta',\n '𝜙': '\\\\phi',\n П: '\\\\prod',\n о: 'o',\n ђ: '\\\\hbar',\n Ʌ: '\\\\Lambda',\n '।': '\\\\mid',\n '€': '\\\\euro',\n ῡ: '\\\\bar{u}',\n φ: '\\\\varphi',\n ȼ: 'c',\n '𝞮': '\\\\epsilon',\n Χ: '\\\\mathsf{X}',\n ₙ: '_{n}',\n};\n","export const allMathSymbolsByChar: Record<string, string> = {\n ' ': '\\\\textrm{ }',\n '∃': '\\\\exists',\n '∀': '\\\\forall',\n '⇔': '\\\\iff',\n '⇒': '=>',\n '¬': '\\\\neg',\n 'ℤ': '\\\\mathbb{Z}',\n 'ℝ': '\\\\mathbb{R}',\n 'ℚ': '\\\\mathbb{Q}',\n 'ℕ': '\\\\mathbb{N}',\n 'ℂ': 'CC',\n '□': '\\\\square',\n '⋄': '\\\\diamond',\n '△': '\\\\triangle',\n '⌢': '\\\\frown',\n '∠': '\\\\angle',\n '⋱': '\\\\ddots',\n '⋮': '\\\\vdots',\n '∵': '\\\\because',\n '∴': '\\\\therefore',\n 'ℵ': '\\\\aleph',\n '∅': '\\\\oslash',\n '±': '\\\\pm',\n '∇': '\\\\nabla',\n '∂': '\\\\partial',\n '∮': '\\\\oint',\n '∫': '\\\\int',\n '⋃': '\\\\cup',\n '∪': '\\\\cup',\n '⋂': '\\\\cap',\n '∩': '\\\\cap',\n '⋁': '\\\\vee',\n '∨': '\\\\vee',\n '⋀': '\\\\wedge',\n '∧': '\\\\wedge',\n '∏': '\\\\prod',\n '∑': '\\\\sum',\n '⊙': '\\\\bigodot',\n '⊗': '\\\\bigoplus',\n '⊕': 'o+',\n '∘': '@',\n '⋈': '\\\\bowtie',\n '⋊': '\\\\rtimes',\n '⋉': '\\\\ltimes',\n '÷': '\\\\div',\n '×': '\\\\times',\n '\\\\': '\\\\backslash',\n '⋆': '\\\\star',\n '∗': '\\\\star',\n '⋅': '\\\\cdot',\n 'Ω': '\\\\Omega',\n 'ω': '\\\\omega',\n 'Ψ': '\\\\Psi',\n 'ψ': '\\\\psi',\n 'χ': '\\\\chi',\n 'φ': '\\\\varphi',\n 'Φ': '\\\\Phi',\n 'ϕ': '\\\\phi',\n 'υ': '\\\\upsilon',\n 'τ': '\\\\tau',\n 'Σ': '\\\\Sigma',\n 'σ': '\\\\sigma',\n 'ρ': '\\\\rho',\n 'Π': '\\\\Pi',\n 'π': '\\\\pi',\n 'Ξ': '\\\\Xi',\n 'ξ': '\\\\xi',\n 'ν': '\\\\nu',\n 'μ': '\\\\mu',\n 'Λ': '\\\\Lambda',\n 'λ': '\\\\lambda',\n 'κ': '\\\\kappa',\n 'ι': '\\\\iota',\n 'ϑ': '\\\\vartheta',\n 'Θ': '\\\\Theta',\n 'θ': '\\\\theta',\n 'η': '\\\\eta',\n 'ζ': '\\\\zeta',\n 'ɛ': '\\\\varepsilon',\n 'ε': '\\\\epsilon',\n 'Δ': '\\\\Delta',\n 'δ': '\\\\delta',\n 'Γ': '\\\\Gamma',\n 'γ': '\\\\gamma',\n 'β': '\\\\beta',\n 'α': '\\\\alpha',\n '∞': '\\\\infty',\n '\\u202c': '\\\\text{\\\\textdir TRT}',\n '\\u200e': '\\\\text{\\\\textdir LTR}',\n};\n","export const allMathSymbolsByGlyph: Record<string, string> = {\n ' ': '\\\\textrm{ }',\n '∃': '\\\\exists',\n '∀': '\\\\forall',\n '⇔': '\\\\iff',\n '⇒': '\\\\Rightarrow',\n '¬': '\\\\neg',\n '□': '\\\\square',\n '⋄': '\\\\diamond',\n '△': '\\\\triangle',\n '⌢': '\\\\frown',\n '∠': '\\\\angle',\n '⋱': '\\\\ddots',\n '⋮': '\\\\vdots',\n '∵': '\\\\because',\n '∴': '\\\\therefore',\n ℵ: '\\\\aleph',\n '∅': '\\\\emptyset',\n '±': '\\\\pm',\n '∇': '\\\\nabla',\n '∂': '\\\\partial',\n '∮': '\\\\oint',\n '∫': '\\\\int',\n '⋃': '\\\\cup',\n '∪': '\\\\cup',\n '⋂': '\\\\cap',\n '∩': '\\\\cap',\n '⋁': '\\\\vee',\n '∨': '\\\\vee',\n '⋀': '\\\\wedge',\n '∧': '\\\\wedge',\n '∏': '\\\\prod',\n '∑': '\\\\sum',\n '⊙': '\\\\bigodot',\n '⊗': '\\\\bigoplus',\n '⊕': 'o+',\n '∘': '@',\n '⋈': '\\\\bowtie',\n '⋊': '\\\\rtimes',\n '⋉': '\\\\ltimes',\n '÷': '\\\\div',\n '×': '\\\\times',\n '\\\\': '\\\\backslash',\n '⋆': '\\\\star',\n '∗': '\\\\star',\n '⋅': '\\\\cdot',\n Ω: '\\\\Omega',\n ω: '\\\\omega',\n Ψ: '\\\\Psi',\n ψ: '\\\\psi',\n χ: '\\\\chi',\n φ: '\\\\varphi',\n Φ: '\\\\Phi',\n ϕ: '\\\\phi',\n υ: '\\\\upsilon',\n τ: '\\\\tau',\n Σ: '\\\\Sigma',\n σ: '\\\\sigma',\n ρ: '\\\\rho',\n Π: '\\\\Pi',\n π: '\\\\pi',\n Ξ: '\\\\Xi',\n ξ: '\\\\xi',\n ν: '\\\\nu',\n μ: '\\\\mu',\n Λ: '\\\\Lambda',\n λ: '\\\\lambda',\n κ: '\\\\kappa',\n ι: '\\\\iota',\n ϑ: '\\\\vartheta',\n Θ: '\\\\Theta',\n θ: '\\\\theta',\n η: '\\\\eta',\n ζ: '\\\\zeta',\n ɛ: '\\\\varepsilon',\n ε: '\\\\epsilon',\n Δ: '\\\\Delta',\n δ: '\\\\delta',\n Γ: '\\\\Gamma',\n γ: '\\\\gamma',\n β: '\\\\beta',\n α: '\\\\alpha',\n '∞': '\\\\infty',\n ϵ: '\\\\epsilon',\n µ: '\\\\mu',\n '²': '^{2}',\n ı: '\\\\imath',\n '∎': '\\\\blacksquare',\n ม: '\\\\mathbf{m}',\n Ω: '\\\\Omega',\n '⟲': '\\\\circlearrowleft',\n '⟳': '\\\\circlearrowright',\n त: ' ',\n '¥': '\\\\yen',\n '⁽': '^{(}',\n '⁾': '^{)}',\n ß: '\\\\ss',\n Ћ: '\\\\hbar',\n '⦵': '\\\\ominus',\n '⊿': '\\\\bigtriangleup',\n \"↛'\": '\\\\nrightarrow',\n '†': '\\\\dagger',\n เ: '\\\\prime',\n 白: ' ',\n '⿱': ' ',\n ℸ: '\\\\wp',\n 퓰: ' ',\n ⁿ: '^{n}',\n '✔': '\\\\checkmark',\n '✗': '\\\\times',\n '½': '\\\\dfrac{1}{2}',\n Ө: '\\\\theta',\n '✓': '\\\\checkmark',\n '⟩': '\\\\rangle',\n '⟨': '\\\\langle',\n '〈': '\\\\langle',\n '¼': '\\\\dfrac{1}{4}',\n '…': '\\\\ldots',\n ℏ: '\\\\hbar',\n ℜ: '\\\\mathfrak{R}',\n Ѳ: '\\\\theta',\n Ø: '\\\\emptyset',\n ϱ: '\\\\varrho',\n ф: '\\\\phi',\n T: 'T',\n '∙': '\\\\cdot',\n Ρ: 'P',\n ᐁ: '\\\\nabla',\n ƞ: '\\\\eta',\n ɣ: '\\\\gamma',\n ћ: '\\\\hbar',\n Ɛ: '\\\\varepsilon',\n ⅅ: '\\\\_{D}',\n 𝜆: '\\\\lambda',\n '〗': '\\\\rangle',\n '〖': '\\\\langle',\n ';': ';',\n 𝑥: 'x',\n 𝑦: 'y',\n 𝑧: 'z',\n 𝑖: 'i',\n 𝑗: 'j',\n 𝑘: 'k',\n 𝑚: 'm',\n 𝑒: 'e',\n 𝑟: 'r',\n ɳ: '\\\\eta',\n '𝛽': '\\\\beta',\n '⍵': '\\\\omega',\n '℘': '\\\\wp',\n '𝜋': '\\\\pi',\n Є: '\\\\epsilon',\n є: '\\\\epsilon',\n 𝜀: '\\\\epsilon',\n п: '\\\\pi',\n Ν: '\\\\nu',\n ɵ: '\\\\theta',\n '𝜓': '\\\\psi',\n ϴ: '\\\\theta',\n ɸ: '\\\\phi',\n Ӷ: '\\\\Gamma',\n ɭ: '\\\\ell',\n ʋ: '\\\\upsilon',\n 𝛟: '\\\\varphi',\n '⍬': '\\\\theta',\n Ф: '\\\\Phi',\n '𝜑': '\\\\varphi',\n ⅈ: 'i',\n ο: 'o',\n ơ: 'o',\n ƒ: 'f',\n '⍴': '\\\\rho',\n '🇽': 'x',\n '𝑝': 'p',\n '𝑞': 'q',\n '𝑠': 's',\n '𝑡': 't',\n '𝑢': 'u',\n '𝑣': 'v',\n '𝑤': 'w',\n '𝑎': 'a',\n '𝑏': 'b',\n '𝑐': 'c',\n '𝑑': 'd',\n '𝑓': 'f',\n '𝑔': 'g',\n '𝑙': 'l',\n '𝑛': 'n',\n '𝑜': 'o',\n '𝔀': 'w',\n '𝚟': 'v',\n ṁ: 'm',\n '൦': '\\\\circ',\n '┴': '\\\\perp',\n '✕': '\\\\times',\n '∣': '\\\\mid',\n Փ: '\\\\Phi',\n '⎜': '\\\\mid',\n ħ: '\\\\hbar',\n ፈ: ' ',\n '⦨': '\\\\llbracket',\n ế: '\\\\hat{e}',\n '¢': '\\\\cent',\n '⤹': '\\\\downarrow',\n '⤸': '\\\\downarrow',\n '⤷': '\\\\Rsh',\n '⤶': '\\\\Lsh',\n '⤵': '\\\\downarrow',\n '⤴': '\\\\uparrow',\n '⤳': '\\\\rightarrow',\n '|': '\\\\mid',\n '⎥': '\\\\mid',\n '♥': '\\\\heartsuit',\n О: '0',\n Υ: 'Y',\n х: 'x',\n 𝓏: 'z',\n 𝓎: 'y',\n 𝓍: 'x',\n р: 'p',\n а: 'a',\n '£': '\\\\pounds',\n m: 'm',\n '𝚵': '\\\\Xi',\n '⓪': '\\\\textcircled{0}',\n '①': '\\\\textcircled{1}',\n '②': '\\\\textcircled{2}',\n '③': '\\\\textcircled{3}',\n '④': '\\\\textcircled{4}',\n '⑤': '\\\\textcircled{5}',\n '⑥': '\\\\textcircled{6}',\n '⑦': '\\\\textcircled{7}',\n '⑧': '\\\\textcircled{8}',\n '⑨': '\\\\textcircled{9}',\n '⑩': '\\\\textcircled{10}',\n '⑪': '\\\\textcircled{11}',\n '⑫': '\\\\textcircled{12}',\n '⑬': '\\\\textcircled{13}',\n '⑭': '\\\\textcircled{14}',\n '⑮': '\\\\textcircled{15}',\n '⑯': '\\\\textcircled{16}',\n '⑰': '\\\\textcircled{17}',\n '⑱': '\\\\textcircled{18}',\n '⑲': '\\\\textcircled{19}',\n '⑳': '\\\\textcircled{20}',\n '㉑': '\\\\textcircled{21}',\n '㉒': '\\\\textcircled{22}',\n '㉓': '\\\\textcircled{23}',\n '㉔': '\\\\textcircled{24}',\n '㉕': '\\\\textcircled{25}',\n '㉖': '\\\\textcircled{26}',\n '㉗': '\\\\textcircled{27}',\n '㉘': '\\\\textcircled{28}',\n '㉙': '\\\\textcircled{29}',\n '㉚': '\\\\textcircled{30}',\n '㉛': '\\\\textcircled{31}',\n '㉜': '\\\\textcircled{32}',\n '㉝': '\\\\textcircled{33}',\n '㉞': '\\\\textcircled{34}',\n '㉟': '\\\\textcircled{35}',\n '㊱': '\\\\textcircled{36}',\n '㊲': '\\\\textcircled{37}',\n '㊳': '\\\\textcircled{38}',\n '㊴': '\\\\textcircled{39}',\n '㊵': '\\\\textcircled{40}',\n '㊶': '\\\\textcircled{41}',\n '㊷': '\\\\textcircled{42}',\n '㊸': '\\\\textcircled{43}',\n '㊹': '\\\\textcircled{44}',\n '㊺': '\\\\textcircled{45}',\n '㊻': '\\\\textcircled{46}',\n '㊼': '\\\\textcircled{47}',\n '㊽': '\\\\textcircled{48}',\n '㊾': '\\\\textcircled{49}',\n '㊿': '\\\\textcircled{50}',\n '&': '\\\\&',\n '‖': '\\\\parallel',\n '%': '\\\\%',\n '“': '\\\\text{``}',\n $: '\\\\$',\n '#': '\\\\#',\n '℃': '\\\\text{\\\\textdegree C}',\n '℉': '\\\\text{\\\\textdegree F}',\n '█': '\\\\blacksquare',\n '℧': '\\\\mho',\n '⌋': '\\\\rfloor',\n '⌊': '\\\\lfloor',\n '⌉': '\\\\rceil',\n '⌈': '\\\\lceil',\n ℇ: '\\\\varepsilon',\n ⅇ: '\\\\text{e}',\n ɼ: 'r',\n '↛': '\\\\nrightarrow',\n ˆ: '\\\\hat{}',\n '‾': '\\\\overline',\n '→': '\\\\rightarrow',\n '‡': '\\\\ddagger',\n '・': '\\\\cdot',\n '▱': '\\\\square',\n '∆': '\\\\Delta',\n ἱ: 'i',\n '∡': '\\\\angle',\n ϒ: '\\\\Upsilon',\n '↓': '\\\\downarrow',\n '↑': '\\\\uparrow',\n '»': '\\\\gg',\n '⊤': '\\\\top',\n '⧸': '/',\n '𝛿': '\\\\delta',\n '˳': '\\\\cdot',\n '։': ':',\n '⦪': '\\\\measuredangle',\n '⦩': '\\\\measuredangle',\n '⦫': '\\\\measuredangle',\n '⦁': '\\\\cdot',\n ѳ: '\\\\theta',\n '⦢': '\\\\measuredangle',\n '¸': ',',\n '⎻': '\\\\overline',\n '⟦': '\\\\llbracket',\n '𝜙': '\\\\phi',\n П: '\\\\prod',\n о: 'o',\n '≈': '\\\\approx',\n '≤': '\\\\leq',\n ђ: '\\\\hbar',\n Ʌ: '\\\\Lambda',\n 土: '\\\\pm',\n '⎼': '-',\n 十: '+',\n '≠': '\\\\neq',\n '←': '\\\\leftarrow',\n '।': '\\\\mid',\n '€': '\\\\euro',\n '˘': ' ',\n ῡ: '\\\\bar{u}',\n '∥': '\\\\parallel',\n '↔': '\\\\leftrightarrow',\n '√': '\\\\sqrt{}',\n ȼ: 'c',\n '𝞮': '\\\\epsilon',\n '·': '\\\\cdot',\n '⦬': '\\\\measuredangle',\n '⦮': '\\\\measuredangle',\n '⦭': '\\\\measuredangle',\n '«': '\\\\ll',\n Χ: '\\\\mathsf{X}',\n '│': '\\\\mid',\n '〉': '\\\\rangle',\n ₙ: '_{n}',\n '▫': '\\\\square',\n '●': '\\\\circle',\n '”': '\\\\\"',\n};\n","export * from './all-math-operators-by-char';\nexport * from './all-math-operators-by-glyph';\nexport * from './all-math-symbols-by-char';\nexport * from './all-math-symbols-by-glyph';\nexport * from './latex-accents';\nexport * from './math-numbers-by-glyph';\nexport * from './utf8-converter';\n","export const latexAccents = ['\\\\hat', '\\\\bar', '\\\\underbrace', '\\\\overbrace'];\n","export const mathNumberByGlyph: Record<string, string> = {\n '₀': '_{0}',\n '₁': '_{1}',\n '₂': '_{2}',\n '₃': '_{3}',\n '₄': '_{4}',\n '₅': '_{5}',\n '₆': '_{6}',\n '₇': '_{7}',\n '₈': '_{8}',\n '₉': '_{9}',\n '⁰': '^{0}',\n '¹': '^{1}',\n '²': '^{2}',\n '³': '^{3}',\n '⁴': '^{4}',\n '⁵': '^{5}',\n '⁶': '^{6}',\n '⁷': '^{7}',\n '⁸': '^{8}',\n '⁹': '^{9}',\n ⁿ: '^{n}',\n ₙ: '_{n}',\n '⓪': '\\\\textcircled{0}',\n '①': '\\\\textcircled{1}',\n '②': '\\\\textcircled{2}',\n '③': '\\\\textcircled{3}',\n '④': '\\\\textcircled{4}',\n '⑤': '\\\\textcircled{5}',\n '⑥': '\\\\textcircled{6}',\n '⑦': '\\\\textcircled{7}',\n '⑧': '\\\\textcircled{8}',\n '⑨': '\\\\textcircled{9}',\n '⑩': '\\\\textcircled{10}',\n '⑪': '\\\\textcircled{11}',\n '⑫': '\\\\textcircled{12}',\n '⑬': '\\\\textcircled{13}',\n '⑭': '\\\\textcircled{14}',\n '⑮': '\\\\textcircled{15}',\n '⑯': '\\\\textcircled{16}',\n '⑰': '\\\\textcircled{17}',\n '⑱': '\\\\textcircled{18}',\n '⑲': '\\\\textcircled{19}',\n '⑳': '\\\\textcircled{20}',\n '㉑': '\\\\textcircled{21}',\n '㉒': '\\\\textcircled{22}',\n '㉓': '\\\\textcircled{23}',\n '㉔': '\\\\textcircled{24}',\n '㉕': '\\\\textcircled{25}',\n '㉖': '\\\\textcircled{26}',\n '㉗': '\\\\textcircled{27}',\n '㉘': '\\\\textcircled{28}',\n '㉙': '\\\\textcircled{29}',\n '㉚': '\\\\textcircled{30}',\n '㉛': '\\\\textcircled{31}',\n '㉜': '\\\\textcircled{32}',\n '㉝': '\\\\textcircled{33}',\n '㉞': '\\\\textcircled{34}',\n '㉟': '\\\\textcircled{35}',\n '㊱': '\\\\textcircled{36}',\n '㊲': '\\\\textcircled{37}',\n '㊳': '\\\\textcircled{38}',\n '㊴': '\\\\textcircled{39}',\n '㊵': '\\\\textcircled{40}',\n '㊶': '\\\\textcircled{41}',\n '㊷': '\\\\textcircled{42}',\n '㊸': '\\\\textcircled{43}',\n '㊹': '\\\\textcircled{44}',\n '㊺': '\\\\textcircled{45}',\n '㊻': '\\\\textcircled{46}',\n '㊼': '\\\\textcircled{47}',\n '㊽': '\\\\textcircled{48}',\n '㊾': '\\\\textcircled{49}',\n '㊿': '\\\\textcircled{50}',\n '½': '\\\\dfrac{1}{2}',\n '⅓': '\\\\dfrac{1}{3}',\n '⅔': '\\\\dfrac{2}{3}',\n '¼': '\\\\dfrac{1}{4}',\n '¾': '\\\\dfrac{3}{4}',\n '⅕': '\\\\dfrac{1}{5}',\n '⅖': '\\\\dfrac{2}{5}',\n '⅗': '\\\\dfrac{3}{5}',\n '⅘': '\\\\dfrac{4}{5}',\n '⅙': '\\\\dfrac{1}{6}',\n '⅚': '\\\\dfrac{5}{6}',\n '⅐': '\\\\dfrac{1}{7}',\n '⅛': '\\\\dfrac{1}{8}',\n '⅜': '\\\\dfrac{3}{8}',\n '⅝': '\\\\dfrac{5}{8}',\n '⅞': '\\\\dfrac{7}{8}',\n '⅑': '\\\\dfrac{1}{9}',\n '⅒': '\\\\dfrac{1}{10}',\n};\n","export interface UTF8ToLtXConverter {\n convert(char: string): string;\n}\n\n/**\n * This class is used to convert some accents and special characters from utf-8 to latex math commands\n */\nexport class HashUTF8ToLtXConverter implements UTF8ToLtXConverter {\n public convert(char: string): string {\n const isAlphanumeric = char.match(/[a-z0-9]/i);\n if (isAlphanumeric) {\n return char;\n }\n\n const accentChar = vowelsWithAccents[char];\n if (accentChar) {\n const lxtCmd = this.convertAccentCharToLtX(accentChar);\n if (lxtCmd) {\n return lxtCmd;\n }\n\n return char;\n }\n\n const specialChar = this.convertSpecialCharToLtX(char);\n if (specialChar) {\n return specialChar;\n }\n\n return char;\n }\n\n private convertAccentCharToLtX(char: AccentChar): string | null {\n const { char: vowel, accent } = char;\n const cmd = accentToLTXCmd[accent];\n if (!cmd) {\n return null;\n }\n\n return `\\\\${cmd}{${vowel}}`;\n }\n\n private convertSpecialCharToLtX(char: string): string | null {\n const specialFontChar = specialFontChars[char];\n if (!specialFontChar) {\n return null;\n }\n\n const { letter, fontCmd } = specialFontChar;\n return `\\\\${fontCmd}{${letter}}`;\n }\n}\n\ntype AccentChar = {\n char: Char;\n accent: Accent;\n};\n\ntype Char =\n | 'a'\n | 'e'\n | 'i'\n | 'o'\n | 'u'\n | 'y'\n | 'A'\n | 'E'\n | 'I'\n | 'O'\n | 'U'\n | 'Y'\n | 'n'\n | 'N'\n | 'c'\n | 'C'\n | 'v'\n | 'V'\n | 'j'\n | 'J'\n | 'z'\n | 'Z';\ntype Accent = '´' | '`' | '^' | '~' | '¨' | 'ˆ' | '˚' | '˙' | '˘' | '˝' | 'ˇ' | 'ˆ' | '˜' | '-';\ntype LTXAccentCMD =\n | 'acute'\n | 'grave'\n | 'hat'\n | 'tilde'\n | 'ddot'\n | 'breve'\n | 'check'\n | 'dot'\n | 'mathring'\n | 'bar'\n | 'vec'\n | 'H';\n\nconst vowelsWithAccents: Record<string, AccentChar> = {\n á: { char: 'a', accent: '´' },\n à: { char: 'a', accent: '`' },\n â: { char: 'a', accent: '^' },\n ã: { char: 'a', accent: '~' },\n ä: { char: 'a', accent: '¨' },\n å: { char: 'a', accent: '˚' },\n ą: { char: 'a', accent: '˙' },\n ă: { char: 'a', accent: '˘' },\n ǎ: { char: 'a', accent: 'ˇ' },\n ǟ: { char: 'a', accent: 'ˆ' },\n ǻ: { char: 'a', accent: '˙' },\n ǡ: { char: 'a', accent: '-' },\n ā: { char: 'a', accent: '-' },\n é: { char: 'e', accent: '´' },\n è: { char: 'e', accent: '`' },\n ê: { char: 'e', accent: '^' },\n ë: { char: 'e', accent: '¨' },\n ę: { char: 'e', accent: '˙' },\n ě: { char: 'e', accent: 'ˇ' },\n ȇ: { char: 'i', accent: '^' },\n ё: { char: 'e', accent: '¨' },\n ē: { char: 'e', accent: '-' },\n í: { char: 'i', accent: '´' },\n ì: { char: 'i', accent: '`' },\n î: { char: 'i', accent: '^' },\n ï: { char: 'i', accent: '¨' },\n į: { char: 'i', accent: '˙' },\n ǐ: { char: 'i', accent: 'ˇ' },\n ȉ: { char: 'i', accent: '`' },\n ȋ: { char: 'i', accent: '¨' },\n ī: { char: 'i', accent: '-' },\n ó: { char: 'o', accent: '´' },\n ò: { char: 'o', accent: '`' },\n ô: { char: 'o', accent: '^' },\n õ: { char: 'o', accent: '~' },\n ö: { char: 'o', accent: '¨' },\n ő: { char: 'o', accent: '˝' },\n ǒ: { char: 'o', accent: 'ˇ' },\n ȍ: { char: 'o', accent: '`' },\n ȏ: { char: 'o', accent: '¨' },\n ȫ: { char: 'o', accent: '˘' },\n ȭ: { char: 'o', accent: '˝' },\n ȯ: { char: 'o', accent: '˙' },\n ō: { char: 'o', accent: '-' },\n ú: { char: 'u', accent: '´' },\n ù: { char: 'u', accent: '`' },\n û: { char: 'u', accent: '^' },\n ü: { char: 'u', accent: '¨' },\n ű: { char: 'u', accent: '˝' },\n ǔ: { char: 'u', accent: 'ˇ' },\n ǖ: { char: 'u', accent: '¨' },\n ǘ: { char: 'u', accent: '¨' },\n ǚ: { char: 'u', accent: '¨' },\n ǜ: { char: 'u', accent: '¨' },\n ȕ: { char: 'u', accent: '`' },\n ȗ: { char: 'u', accent: '¨' },\n ū: { char: 'u', accent: '-' },\n ý: { char: 'y', accent: '´' },\n ỳ: { char: 'y', accent: '`' },\n ŷ: { char: 'y', accent: '^' },\n ÿ: { char: 'y', accent: '¨' },\n ȳ: { char: 'y', accent: '-' },\n Á: { char: 'A', accent: '´' },\n À: { char: 'A', accent: '`' },\n Â: { char: 'A', accent: '^' },\n Ã: { char: 'A', accent: '~' },\n Ä: { char: 'A', accent: '¨' },\n Å: { char: 'A', accent: '˚' },\n Å: { char: 'A', accent: '˚' },\n Ȧ: { char: 'A', accent: '˙' },\n Ă: { char: 'A', accent: '˘' },\n Ǎ: { char: 'A', accent: 'ˇ' },\n Ǟ: { char: 'A', accent: '˝' },\n Ǻ: { char: 'A', accent: '˚' },\n Ǡ: { char: 'A', accent: '-' },\n Ā: { char: 'A', accent: '-' },\n É: { char: 'E', accent: '´' },\n È: { char: 'E', accent: '`' },\n Ė: { char: 'E', accent: '˙' },\n Ê: { char: 'E', accent: '^' },\n Ë: { char: 'E', accent: '¨' },\n Ě: { char: 'E', accent: 'ˇ' },\n Ȅ: { char: 'E', accent: '`' },\n Ȇ: { char: 'E', accent: '¨' },\n Ē: { char: 'E', accent: '-' },\n Í: { char: 'I', accent: '´' },\n Ì: { char: 'I', accent: '`' },\n Î: { char: 'I', accent: '^' },\n Ï: { char: 'I', accent: '¨' },\n Ĭ: { char: 'I', accent: '˘' },\n Ǐ: { char: 'I', accent: 'ˇ' },\n Ȉ: { char: 'I', accent: '`' },\n Ȋ: { char: 'I', accent: '¨' },\n Ī: { char: 'I', accent: '-' },\n Ó: { char: 'O', accent: '´' },\n Ò: { char: 'O', accent: '`' },\n Ô: { char: 'O', accent: '^' },\n Õ: { char: 'O', accent: '~' },\n Ö: { char: 'O', accent: '¨' },\n Ő: { char: 'O', accent: '˝' },\n Ǒ: { char: 'O', accent: 'ˇ' },\n Ȍ: { char: 'O', accent: '`' },\n Ȏ: { char: 'O', accent: '¨' },\n Ȫ: { char: 'O', accent: '˘' },\n Ȭ: { char: 'O', accent: '˝' },\n Ȯ: { char: 'O', accent: '˙' },\n Ō: { char: 'O', accent: '-' },\n Ú: { char: 'U', accent: '´' },\n Ù: { char: 'U', accent: '`' },\n Û: { char: 'U', accent: '^' },\n Ü: { char: 'U', accent: '¨' },\n Ű: { char: 'U', accent: '˝' },\n Ǔ: { char: 'U', accent: 'ˇ' },\n Ǖ: { char: 'U', accent: '¨' },\n Ȕ: { char: 'U', accent: '`' },\n Ȗ: { char: 'U', accent: '¨' },\n Ū: { char: 'U', accent: '-' },\n Ý: { char: 'Y', accent: '´' },\n Ỳ: { char: 'Y', accent: '`' },\n Ŷ: { char: 'Y', accent: '^' },\n Ÿ: { char: 'Y', accent: '¨' },\n Ȳ: { char: 'Y', accent: '-' },\n ñ: { char: 'n', accent: '~' },\n Ñ: { char: 'N', accent: '~' },\n ç: { char: 'c', accent: '˙' },\n Ç: { char: 'C', accent: '˙' },\n ṽ: { char: 'v', accent: '~' },\n Ṽ: { char: 'V', accent: '~' },\n ĵ: { char: 'j', accent: '^' },\n Ĵ: { char: 'J', accent: '^' },\n ź: { char: 'z', accent: '´' },\n Ź: { char: 'Z', accent: '´' },\n Ż: { char: 'Z', accent: '^' },\n ż: { char: 'z', accent: '^' },\n Ž: { char: 'Z', accent: 'ˇ' },\n ž: { char: 'z', accent: 'ˇ' },\n ẑ: { char: 'z', accent: 'ˆ' },\n};\n\nconst accentToLTXCmd: Record<Accent, LTXAccentCMD> = {\n '´': 'acute',\n '`': 'grave',\n '^': 'hat',\n '~': 'tilde',\n '¨': 'ddot',\n '˚': 'mathring',\n '˘': 'breve',\n ˇ: 'check',\n '˝': 'H',\n '˙': 'dot',\n '-': 'bar',\n ˆ: 'hat',\n '˜': 'tilde',\n};\n\ntype LTXFontCmds = 'mathbf' | 'mathit' | 'mathbb' | 'mathcal' | 'mathfrak' | 'mathsf' | 'mathtt';\ntype UppercaseLetter =\n | 'A'\n | 'B'\n | 'C'\n | 'D'\n | 'E'\n | 'F'\n | 'G'\n | 'H'\n | 'I'\n | 'J'\n | 'K'\n | 'L'\n | 'M'\n | 'N'\n | 'O'\n | 'P'\n | 'Q'\n | 'R'\n | 'S'\n | 'T'\n | 'U'\n | 'V'\n | 'W'\n | 'X'\n | 'Y'\n | 'Z'\n | '\\\\Beta'\n | '\\\\Gamma'\n | '\\\\Delta'\n | '\\\\Theta'\n | '\\\\Lambda'\n | '\\\\Xi'\n | '\\\\Pi'\n | '\\\\Sigma'\n | '\\\\Upsilon'\n | '\\\\Phi'\n | '\\\\Psi'\n | '\\\\Omega'\n | '0'\n | '1'\n | '2'\n | '3'\n | '4'\n | '5'\n | '6'\n | '7'\n | '8'\n | '9';\ntype SpecialFontChar = {\n letter: UppercaseLetter;\n fontCmd: LTXFontCmds;\n};\n\nconst specialFontChars: Record<string, SpecialFontChar> = {\n // letter A mathbf\n 𝐀: { letter: 'A', fontCmd: 'mathbf' },\n 𝐁: { letter: 'B', fontCmd: 'mathbf' },\n 𝐂: { letter: 'C', fontCmd: 'mathbf' },\n 𝐃: { letter: 'D', fontCmd: 'mathbf' },\n 𝐄: { letter: 'E', fontCmd: 'mathbf' },\n Ε: { letter: 'E', fontCmd: 'mathbf' },\n 𝐅: { letter: 'F', fontCmd: 'mathbf' },\n 𝐆: { letter: 'G', fontCmd: 'mathbf' },\n 𝐇: { letter: 'H', fontCmd: 'mathbf' },\n 𝐈: { letter: 'I', fontCmd: 'mathbf' },\n 𝐉: { letter: 'J', fontCmd: 'mathbf' },\n 𝐊: { letter: 'K', fontCmd: 'mathbf' },\n 𝐋: { letter: 'L', fontCmd: 'mathbf' },\n 𝐌: { letter: 'M', fontCmd: 'mathbf' },\n 𝐍: { letter: 'N', fontCmd: 'mathbf' },\n 𝐎: { letter: 'O', fontCmd: 'mathbf' },\n 𝐏: { letter: 'P', fontCmd: 'mathbf' },\n 𝐐: { letter: 'Q', fontCmd: 'mathbf' },\n 𝐑: { letter: 'R', fontCmd: 'mathbf' },\n 𝐒: { letter: 'S', fontCmd: 'mathbf' },\n 𝐓: { letter: 'T', fontCmd: 'mathbf' },\n 𝐔: { letter: 'U', fontCmd: 'mathbf' },\n 𝐕: { letter: 'V', fontCmd: 'mathbf' },\n 𝐖: { letter: 'W', fontCmd: 'mathbf' },\n 𝐗: { letter: 'X', fontCmd: 'mathbf' },\n 𝞆: { letter: 'X', fontCmd: 'mathbf' },\n 𝐘: { letter: 'Y', fontCmd: 'mathbf' },\n 𝐙: { letter: 'Z', fontCmd: 'mathbf' },\n '𝟎': { letter: '0', fontCmd: 'mathbf' },\n '𝟏': { letter: '1', fontCmd: 'mathbf' },\n '𝟐': { letter: '2', fontCmd: 'mathbf' },\n '𝟑': { letter: '3', fontCmd: 'mathbf' },\n '𝟒': { letter: '4', fontCmd: 'mathbf' },\n '𝟓': { letter: '5', fontCmd: 'mathbf' },\n '𝟔': { letter: '6', fontCmd: 'mathbf' },\n '𝟕': { letter: '7', fontCmd: 'mathbf' },\n '𝟖': { letter: '8', fontCmd: 'mathbf' },\n '𝟗': { letter: '9', fontCmd: 'mathbf' },\n // letter A mathit\n 𝐴: { letter: 'A', fontCmd: 'mathit' },\n 𝐵: { letter: 'B', fontCmd: 'mathit' },\n 𝐶: { letter: 'C', fontCmd: 'mathit' },\n 𝐷: { letter: 'D', fontCmd: 'mathit' },\n 𝐸: { letter: 'E', fontCmd: 'mathit' },\n 𝐹: { letter: 'F', fontCmd: 'mathit' },\n 𝐺: { letter: 'G', fontCmd: 'mathit' },\n 𝐻: { letter: 'H', fontCmd: 'mathit' },\n 𝐼: { letter: 'I', fontCmd: 'mathit' },\n Ι: { letter: 'I', fontCmd: 'mathit' },\n 𝐽: { letter: 'J', fontCmd: 'mathit' },\n 𝐾: { letter: 'K', fontCmd: 'mathit' },\n 𝐿: { letter: 'L', fontCmd: 'mathit' },\n 𝑀: { letter: 'M', fontCmd: 'mathit' },\n 𝑁: { letter: 'N', fontCmd: 'mathit' },\n 𝑂: { letter: 'O', fontCmd: 'mathit' },\n 𝑃: { letter: 'P', fontCmd: 'mathit' },\n 𝑄: { letter: 'Q', fontCmd: 'mathit' },\n 𝑅: { letter: 'R', fontCmd: 'mathit' },\n 𝑆: { letter: 'S', fontCmd: 'mathit' },\n 𝑇: { letter: 'T', fontCmd: 'mathit' },\n 𝑈: { letter: 'U', fontCmd: 'mathit' },\n 𝑉: { letter: 'V', fontCmd: 'mathit' },\n 𝑊: { letter: 'W', fontCmd: 'mathit' },\n 𝑋: { letter: 'X', fontCmd: 'mathit' },\n 𝑌: { letter: 'Y', fontCmd: 'mathit' },\n 𝑍: { letter: 'Z', fontCmd: 'mathit' },\n // letter A mathbb\n 𝔸: { letter: 'A', fontCmd: 'mathbb' },\n 𝔹: { letter: 'B', fontCmd: 'mathbb' },\n ℂ: { letter: 'C', fontCmd: 'mathbb' },\n 𝔻: { letter: 'D', fontCmd: 'mathbb' },\n 𝔼: { letter: 'E', fontCmd: 'mathbb' },\n 𝔽: { letter: 'F', fontCmd: 'mathbb' },\n 𝔾: { letter: 'G', fontCmd: 'mathbb' },\n ℍ: { letter: 'H', fontCmd: 'mathbb' },\n 𝕀: { letter: 'I', fontCmd: 'mathbb' },\n 𝕁: { letter: 'J', fontCmd: 'mathbb' },\n 𝕂: { letter: 'K', fontCmd: 'mathbb' },\n 𝕃: { letter: 'L', fontCmd: 'mathbb' },\n 𝕄: { letter: 'M', fontCmd: 'mathbb' },\n ℕ: { letter: 'N', fontCmd: 'mathbb' },\n 𝕆: { letter: 'O', fontCmd: 'mathbb' },\n ℙ: { letter: 'P', fontCmd: 'mathbb' },\n ℚ: { letter: 'Q', fontCmd: 'mathbb' },\n ℝ: { letter: 'R', fontCmd: 'mathbb' },\n 𝕊: { letter: 'S', fontCmd: 'mathbb' },\n 𝕋: { letter: 'T', fontCmd: 'mathbb' },\n 𝕌: { letter: 'U', fontCmd: 'mathbb' },\n 𝕍: { letter: 'V', fontCmd: 'mathbb' },\n 𝕎: { letter: 'W', fontCmd: 'mathbb' },\n 𝕏: { letter: 'X', fontCmd: 'mathbb' },\n 𝕐: { letter: 'Y', fontCmd: 'mathbb' },\n ℤ: { letter: 'Z', fontCmd: 'mathbb' },\n '𝟘': { letter: '0', fontCmd: 'mathbb' },\n '𝟙': { letter: '1', fontCmd: 'mathbb' },\n '𝟚': { letter: '2', fontCmd: 'mathbb' },\n '𝟛': { letter: '3', fontCmd: 'mathbb' },\n '𝟜': { letter: '4', fontCmd: 'mathbb' },\n '𝟝': { letter: '5', fontCmd: 'mathbb' },\n '𝟞': { letter: '6', fontCmd: 'mathbb' },\n '𝟟': { letter: '7', fontCmd: 'mathbb' },\n '𝟠': { letter: '8', fontCmd: 'mathbb' },\n '𝟡': { letter: '9', fontCmd: 'mathbb' },\n // letter A mathcal\n 𝒜: { letter: 'A', fontCmd: 'mathcal' },\n 𝓐: { letter: 'A', fontCmd: 'mathcal' },\n ℬ: { letter: 'B', fontCmd: 'mathcal' },\n 𝒞: { letter: 'C', fontCmd: 'mathcal' },\n 𝒟: { letter: 'D', fontCmd: 'mathcal' },\n 𝓓: { letter: 'D', fontCmd: 'mathcal' },\n ℰ: { letter: 'E', fontCmd: 'mathcal' },\n ℱ: { letter: 'F', fontCmd: 'mathcal' },\n 𝓕: { letter: 'F', fontCmd: 'mathcal' },\n 𝒢: { letter: 'G', fontCmd: 'mathcal' },\n ℋ: { letter: 'H', fontCmd: 'mathcal' },\n ℐ: { letter: 'I', fontCmd: 'mathcal' },\n 𝒥: { letter: 'J', fontCmd: 'mathcal' },\n 𝒦: { letter: 'K', fontCmd: 'mathcal' },\n ℒ: { letter: 'L', fontCmd: 'mathcal' },\n 𝓛: { letter: 'L', fontCmd: 'mathcal' },\n ℳ: { letter: 'M', fontCmd: 'mathcal' },\n 𝒩: { letter: 'N', fontCmd: 'mathcal' },\n 𝒪: { letter: 'O', fontCmd: 'mathcal' },\n 𝓞: { letter: 'O', fontCmd: 'mathcal' },\n 𝒫: { letter: 'P', fontCmd: 'mathcal' },\n 𝒬: { letter: 'Q', fontCmd: 'mathcal' },\n ℛ: { letter: 'R', fontCmd: 'mathcal' },\n 𝕽: { letter: 'R', fontCmd: 'mathcal' },\n '℟': { letter: 'R', fontCmd: 'mathcal' },\n 𝒮: { letter: 'S', fontCmd: 'mathcal' },\n 𝒯: { letter: 'T', fontCmd: 'mathcal' },\n 𝒰: { letter: 'U', fontCmd: 'mathcal' },\n 𝒱: { letter: 'V', fontCmd: 'mathcal' },\n 𝒲: { letter: 'W', fontCmd: 'mathcal' },\n 𝒳: { letter: 'X', fontCmd: 'mathcal' },\n 𝒴: { letter: 'Y', fontCmd: 'mathcal' },\n 𝒵: { letter: 'Z', fontCmd: 'mathcal' },\n // letter A mathfrak\n 𝔄: { letter: 'A', fontCmd: 'mathfrak' },\n 𝔅: { letter: 'B', fontCmd: 'mathfrak' },\n ℭ: { letter: 'C', fontCmd: 'mathfrak' },\n 𝔇: { letter: 'D', fontCmd: 'mathfrak' },\n 𝔈: { letter: 'E', fontCmd: 'mathfrak' },\n 𝔉: { letter: 'F', fontCmd: 'mathfrak' },\n 𝔊: { letter: 'G', fontCmd: 'mathfrak' },\n ℌ: { letter: 'H', fontCmd: 'mathfrak' },\n ℑ: { letter: 'I', fontCmd: 'mathfrak' },\n 𝔍: { letter: 'J', fontCmd: 'mathfrak' },\n 𝔎: { letter: 'K', fontCmd: 'mathfrak' },\n 𝔏: { letter: 'L', fontCmd: 'mathfrak' },\n 𝔐: { letter: 'M', fontCmd: 'mathfrak' },\n 𝔑: { letter: 'N', fontCmd: 'mathfrak' },\n 𝔒: { letter: 'O', fontCmd: 'mathfrak' },\n 𝔓: { letter: 'P', fontCmd: 'mathfrak' },\n 𝔔: { letter: 'Q', fontCmd: 'mathfrak' },\n ℜ: { letter: 'R', fontCmd: 'mathfrak' },\n 𝔖: { letter: 'S', fontCmd: 'mathfrak' },\n 𝔗: { letter: 'T', fontCmd: 'mathfrak' },\n 𝔘: { letter: 'U', fontCmd: 'mathfrak' },\n 𝔙: { letter: 'V', fontCmd: 'mathfrak' },\n 𝔚: { letter: 'W', fontCmd: 'mathfrak' },\n 𝔛: { letter: 'X', fontCmd: 'mathfrak' },\n 𝔜: { letter: 'Y', fontCmd: 'mathfrak' },\n ℨ: { letter: 'Z', fontCmd: 'mathfrak' },\n // letter A mathsf\n 𝖠: { letter: 'A', fontCmd: 'mathsf' },\n Α: { letter: 'A', fontCmd: 'mathsf' },\n 𝖡: { letter: 'B', fontCmd: 'mathsf' },\n Β: { letter: 'B', fontCmd: 'mathsf' },\n 𝖢: { letter: 'C', fontCmd: 'mathsf' },\n 𝖣: { letter: 'D', fontCmd: 'mathsf' },\n 𝖤: { letter: 'E', fontCmd: 'mathsf' },\n 𝖥: { letter: 'F', fontCmd: 'mathsf' },\n 𝖦: { letter: 'G', fontCmd: 'mathsf' },\n 𝖧: { letter: 'H', fontCmd: 'mathsf' },\n 𝖨: { letter: 'I', fontCmd: 'mathsf' },\n 𝖩: { letter: 'J', fontCmd: 'mathsf' },\n ȷ: { letter: 'J', fontCmd: 'mathsf' },\n 𝖪: { letter: 'K', fontCmd: 'mathsf' },\n Κ: { letter: 'K', fontCmd: 'mathsf' },\n 𝖫: { letter: 'L', fontCmd: 'mathsf' },\n 𝖬: { letter: 'M', fontCmd: 'mathsf' },\n 𝖭: { letter: 'N', fontCmd: 'mathsf' },\n 𝖮: { letter: 'O', fontCmd: 'mathsf' },\n 𝖯: { letter: 'P', fontCmd: 'mathsf' },\n 𝖰: { letter: 'Q', fontCmd: 'mathsf' },\n 𝖱: { letter: 'R', fontCmd: 'mathsf' },\n 𝖲: { letter: 'S', fontCmd: 'mathsf' },\n 𝖳: { letter: 'T', fontCmd: 'mathsf' },\n 𝖴: { letter: 'U', fontCmd: 'mathsf' },\n 𝖵: { letter: 'V', fontCmd: 'mathsf' },\n 𝖶: { letter: 'W', fontCmd: 'mathsf' },\n 𝖷: { letter: 'X', fontCmd: 'mathsf' },\n Χ: { letter: 'X', fontCmd: 'mathsf' },\n 𝖸: { letter: 'Y', fontCmd: 'mathsf' },\n 𝖹: { letter: 'Z', fontCmd: 'mathsf' },\n // letter A mathtt\n 𝚨: { letter: 'A', fontCmd: 'mathtt' },\n 𝚩: { letter: 'B', fontCmd: 'mathtt' },\n 𝚪: { letter: '\\\\Gamma', fontCmd: 'mathtt' },\n 𝚫: { letter: '\\\\Delta', fontCmd: 'mathtt' },\n 𝚬: { letter: 'E', fontCmd: 'mathtt' },\n 𝚭: { letter: 'F', fontCmd: 'mathtt' },\n 𝚮: { letter: 'G', fontCmd: 'mathtt' },\n 𝚯: { letter: '\\\\Theta', fontCmd: 'mathtt' },\n 𝚰: { letter: 'I', fontCmd: 'mathtt' },\n 𝚱: { letter: 'J', fontCmd: 'mathtt' },\n 𝚲: { letter: '\\\\Lambda', fontCmd: 'mathtt' },\n 𝚳: { letter: 'L', fontCmd: 'mathtt' },\n 𝚴: { letter: 'M', fontCmd: 'mathtt' },\n 𝚵: { letter: '\\\\Pi', fontCmd: 'mathtt' },\n 𝚶: { letter: 'O', fontCmd: 'mathtt' },\n 𝚷: { letter: '\\\\Pi', fontCmd: 'mathtt' },\n 𝚸: { letter: 'Q', fontCmd: 'mathtt' },\n 𝚹: { letter: 'R', fontCmd: 'mathtt' },\n 𝚺: { letter: 'S', fontCmd: 'mathtt' },\n 𝚻: { letter: 'T', fontCmd: 'mathtt' },\n 𝚼: { letter: 'U', fontCmd: 'mathtt' },\n 𝚽: { letter: '\\\\Phi', fontCmd: 'mathtt' },\n 𝚾: { letter: 'W', fontCmd: 'mathtt' },\n 𝚿: { letter: '\\\\Psi', fontCmd: 'mathtt' },\n 𝛀: { letter: '\\\\Omega', fontCmd: 'mathtt' },\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","export { MathMLToLaTeX } from './main';\n"],"names":["root","factory","exports","module","define","amd","this","freeze","object","oc","undefined","Object","MIME_TYPE","HTML","isHTML","value","XML_APPLICATION","XML_TEXT","XML_XHTML_APPLICATION","XML_SVG_IMAGE","NAMESPACE","uri","SVG","XML","XMLNS","assign","target","source","TypeError","key","prototype","hasOwnProperty","call","find","list","predicate","ac","Array","i","length","item","conventions","dom","entities","sax","DOMImplementation","ParseError","XMLReader","normalizeLineEndings","input","replace","DOMParser","options","locator","DOMHandler","cdata","position","node","lineNumber","columnNumber","_locator","l","systemId","_toString","chars","start","substr","java","lang","String","appendElement","hander","currentElement","appendChild","doc","parseFromString","mimeType","domBuilder","errorHandler","defaultNSMap","xmlns","test","entityMap","HTML_ENTITIES","XML_ENTITIES","setDocumentLocator","errorImpl","isCallback","Function","build","fn","msg","buildErrorHandler","xml","normalize","parse","error","startDocument","createDocument","documentURI","startElement","namespaceURI","localName","qName","attrs","el","createElementNS","len","getURI","getValue","attr","getQName","createAttributeNS","getLocator","nodeValue","setAttributeNode","endElement","current","tagName","parentNode","startPrefixMapping","prefix","endPrefixMapping","processingInstruction","data","ins","createProcessingInstruction","ignorableWhitespace","ch","characters","apply","arguments","charNode","createCDATASection","createTextNode","skippedEntity","name","endDocument","comment","comm","createComment","startCDATA","endCDATA","startDTD","publicId","impl","implementation","createDocumentType","dt","doctype","warning","console","warn","fatalError","notEmptyString","orderedSetReducer","element","toOrderedSet","split","filter","splitOnASCIIWhitespace","keys","reduce","copy","src","dest","p","_extends","Class","Super","pt","t","constructor","NodeType","ELEMENT_NODE","ATTRIBUTE_NODE","TEXT_NODE","CDATA_SECTION_NODE","ENTITY_REFERENCE_NODE","ENTITY_NODE","PROCESSING_INSTRUCTION_NODE","COMMENT_NODE","DOCUMENT_NODE","DOCUMENT_TYPE_NODE","DOCUMENT_FRAGMENT_NODE","NOTATION_NODE","ExceptionCode","ExceptionMessage","HIERARCHY_REQUEST_ERR","INDEX_SIZE_ERR","DOMSTRING_SIZE_ERR","NOT_FOUND_ERR","WRONG_DOCUMENT_ERR","INVALID_CHARACTER_ERR","NO_DATA_ALLOWED_ERR","NO_MODIFICATION_ALLOWED_ERR","INUSE_ATTRIBUTE_ERR","NOT_SUPPORTED_ERR","DOMException","code","message","Error","captureStackTrace","NodeList","LiveNodeList","refresh","_node","_refresh","_updateLiveList","inc","_inc","ownerDocument","ls","__set__","$$length","NamedNodeMap","_findNodeIndex","_addNamedNode","newAttr","oldAttr","ownerElement","_onRemoveAttribute","_nsMap","_onAddAttribute","_removeNamedNode","lastIndex","Node","_xmlEncoder","c","charCodeAt","_visitNode","callback","firstChild","nextSibling","Document","remove","_onUpdateChild","newChild","cs","childNodes","child","_removeChild","previous","previousSibling","next","lastChild","isDocTypeNode","nodeType","isElementNode","isTextNode","isElementInsertionPossible","parentChildNodes","docTypeNode","indexOf","isElementReplacementPossible","assertPreInsertionValidityInDocument","parent","nodeChildNodes","nodeChildElements","parentElementChild","assertPreReplacementValidityInDocument","_insertBefore","_inDocumentAssertion","hasValidParentNodeType","hasInsertableNodeType","assertPreInsertionValidity1to5","cp","removeChild","newFirst","newLast","pre","Element","Attr","CharacterData","Text","Comment","CDATASection","DocumentType","Notation","Entity","EntityReference","DocumentFragment","ProcessingInstruction","XMLSerializer","nodeSerializeToString","isHtml","nodeFilter","buf","refNode","documentElement","lookupPrefix","visibleNamespaces","namespace","serializeToString","join","needNamespaceDefine","ns","addSerializedAttribute","qualifiedName","push","attributes","nodeName","prefixedNodeName","defaultNS","ai","nsi","slice","pubid","sysid","sub","internalSubset","importNode","deep","node2","cloneNode","n","v","attrs2","_ownerElement","INVALID_STATE_ERR","SYNTAX_ERR","INVALID_MODIFICATION_ERR","NAMESPACE_ERR","INVALID_ACCESS_ERR","index","toString","getNamedItem","setNamedItem","setNamedItemNS","getNamedItemNS","removeNamedItem","removeNamedItemNS","hasFeature","feature","version","insertBefore","refChild","replaceChild","oldChild","hasChildNodes","appendData","isSupported","hasAttributes","map","lookupNamespaceURI","isDefaultNamespace","importedNode","getElementById","id","rtv","getAttribute","getElementsByClassName","classNames","classNamesSet","base","nodeClassNames","matches","nodeClassNamesSet","every","createElement","createDocumentFragment","createAttribute","specified","createEntityReference","pl","hasAttribute","getAttributeNode","setAttribute","removeAttribute","removeAttributeNode","_appendSingleChild","setAttributeNodeNS","removeAttributeNS","old","getAttributeNodeNS","hasAttributeNS","getAttributeNS","setAttributeNS","getElementsByTagName","getElementsByTagNameNS","substringData","offset","count","substring","text","insertData","replaceData","deleteData","splitText","newText","newNode","defineProperty","getTextContent","get","set","e","amp","apos","gt","lt","quot","Aacute","aacute","Abreve","abreve","acd","acE","Acirc","acirc","acute","Acy","acy","AElig","aelig","af","Afr","afr","Agrave","agrave","alefsym","aleph","Alpha","alpha","Amacr","amacr","amalg","AMP","And","and","andand","andd","andslope","andv","ang","ange","angle","angmsd","angmsdaa","angmsdab","angmsdac","angmsdad","angmsdae","angmsdaf","angmsdag","angmsdah","angrt","angrtvb","angrtvbd","angsph","angst","angzarr","Aogon","aogon","Aopf","aopf","ap","apacir","apE","ape","apid","ApplyFunction","approx","approxeq","Aring","aring","Ascr","ascr","Assign","ast","asymp","asympeq","Atilde","atilde","Auml","auml","awconint","awint","backcong","backepsilon","backprime","backsim","backsimeq","Backslash","Barv","barvee","Barwed","barwed","barwedge","bbrk","bbrktbrk","bcong","Bcy","bcy","bdquo","becaus","Because","because","bemptyv","bepsi","bernou","Bernoullis","Beta","beta","beth","between","Bfr","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","bnot","Bopf","bopf","bot","bottom","bowtie","boxbox","boxDL","boxDl","boxdL","boxdl","boxDR","boxDr","boxdR","boxdr","boxH","boxh","boxHD","boxHd","boxhD","boxhd","boxHU","boxHu","boxhU","boxhu","boxminus","boxplus","boxtimes","boxUL","boxUl","boxuL","boxul","boxUR","boxUr","boxuR","boxur","boxV","boxv","boxVH","boxVh","boxvH","boxvh","boxVL","boxVl","boxvL","boxvl","boxVR","boxVr","boxvR","boxvr","bprime","Breve","breve","brvbar","Bscr","bscr","bsemi","bsim","bsime","bsol","bsolb","bsolhsub","bull","bullet","bump","bumpE","bumpe","Bumpeq","bumpeq","Cacute","cacute","Cap","cap","capand","capbrcup","capcap","capcup","capdot","CapitalDifferentialD","caps","caret","caron","Cayleys","ccaps","Ccaron","ccaron","Ccedil","ccedil","Ccirc","ccirc","Cconint","ccups","ccupssm","Cdot","cdot","cedil","Cedilla","cemptyv","cent","CenterDot","centerdot","Cfr","cfr","CHcy","chcy","check","checkmark","Chi","chi","cir","circ","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","CircleDot","circledR","circledS","CircleMinus","CirclePlus","CircleTimes","cirE","cire","cirfnint","cirmid","cirscir","ClockwiseContourIntegral","CloseCurlyDoubleQuote","CloseCurlyQuote","clubs","clubsuit","Colon","colon","Colone","colone","coloneq","comma","commat","comp","compfn","complement","complexes","cong","congdot","Congruent","Conint","conint","ContourIntegral","Copf","copf","coprod","Coproduct","COPY","copysr","CounterClockwiseContourIntegral","crarr","Cross","cross","Cscr","cscr","csub","csube","csup","csupe","ctdot","cudarrl","cudarrr","cuepr","cuesc","cularr","cularrp","Cup","cup","cupbrcap","CupCap","cupcap","cupcup","cupdot","cupor","cups","curarr","curarrm","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curren","curvearrowleft","curvearrowright","cuvee","cuwed","cwconint","cwint","cylcty","Dagger","dagger","daleth","Darr","dArr","darr","dash","Dashv","dashv","dbkarow","dblac","Dcaron","dcaron","Dcy","dcy","DD","dd","ddagger","ddarr","DDotrahd","ddotseq","deg","Del","Delta","delta","demptyv","dfisht","Dfr","dfr","dHar","dharl","dharr","DiacriticalAcute","DiacriticalDot","DiacriticalDoubleAcute","DiacriticalGrave","DiacriticalTilde","diam","Diamond","diamond","diamondsuit","diams","die","DifferentialD","digamma","disin","div","divide","divideontimes","divonx","DJcy","djcy","dlcorn","dlcrop","dollar","Dopf","dopf","Dot","dot","DotDot","doteq","doteqdot","DotEqual","dotminus","dotplus","dotsquare","doublebarwedge","DoubleContourIntegral","DoubleDot","DoubleDownArrow","DoubleLeftArrow","DoubleLeftRightArrow","DoubleLeftTee","DoubleLongLeftArrow","DoubleLongLeftRightArrow","DoubleLongRightArrow","DoubleRightArrow","DoubleRightTee","DoubleUpArrow","DoubleUpDownArrow","DoubleVerticalBar","DownArrow","Downarrow","downarrow","DownArrowBar","DownArrowUpArrow","DownBreve","downdownarrows","downharpoonleft","downharpoonright","DownLeftRightVector","DownLeftTeeVector","DownLeftVector","DownLeftVectorBar","DownRightTeeVector","DownRightVector","DownRightVectorBar","DownTee","DownTeeArrow","drbkarow","drcorn","drcrop","Dscr","dscr","DScy","dscy","dsol","Dstrok","dstrok","dtdot","dtri","dtrif","duarr","duhar","dwangle","DZcy","dzcy","dzigrarr","Eacute","eacute","easter","Ecaron","ecaron","ecir","Ecirc","ecirc","ecolon","Ecy","ecy","eDDot","Edot","eDot","edot","ee","efDot","Efr","efr","eg","Egrave","egrave","egs","egsdot","elinters","ell","els","elsdot","Emacr","emacr","empty","emptyset","EmptySmallSquare","emptyv","EmptyVerySmallSquare","emsp","emsp13","emsp14","ENG","eng","ensp","Eogon","eogon","Eopf","eopf","epar","eparsl","eplus","epsi","Epsilon","epsilon","epsiv","eqcirc","eqcolon","eqsim","eqslantgtr","eqslantless","Equal","equals","EqualTilde","equest","Equilibrium","equiv","equivDD","eqvparsl","erarr","erDot","Escr","escr","esdot","Esim","esim","Eta","eta","ETH","eth","Euml","euml","euro","excl","exist","Exists","expectation","ExponentialE","exponentiale","fallingdotseq","Fcy","fcy","female","ffilig","fflig","ffllig","Ffr","ffr","filig","FilledSmallSquare","FilledVerySmallSquare","fjlig","flat","fllig","fltns","fnof","Fopf","fopf","ForAll","forall","fork","forkv","Fouriertrf","fpartint","frac12","frac13","frac14","frac15","frac16","frac18","frac23","frac25","frac34","frac35","frac38","frac45","frac56","frac58","frac78","frasl","frown","Fscr","fscr","gacute","Gamma","gamma","Gammad","gammad","gap","Gbreve","gbreve","Gcedil","Gcirc","gcirc","Gcy","gcy","Gdot","gdot","gE","ge","gEl","gel","geq","geqq","geqslant","ges","gescc","gesdot","gesdoto","gesdotol","gesl","gesles","Gfr","gfr","Gg","gg","ggg","gimel","GJcy","gjcy","gl","gla","glE","glj","gnap","gnapprox","gnE","gne","gneq","gneqq","gnsim","Gopf","gopf","grave","GreaterEqual","GreaterEqualLess","GreaterFullEqual","GreaterGreater","GreaterLess","GreaterSlantEqual","GreaterTilde","Gscr","gscr","gsim","gsime","gsiml","Gt","GT","gtcc","gtcir","gtdot","gtlPar","gtquest","gtrapprox","gtrarr","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","gvnE","Hacek","hairsp","half","hamilt","HARDcy","hardcy","hArr","harr","harrcir","harrw","Hat","hbar","Hcirc","hcirc","hearts","heartsuit","hellip","hercon","Hfr","hfr","HilbertSpace","hksearow","hkswarow","hoarr","homtht","hookleftarrow","hookrightarrow","Hopf","hopf","horbar","HorizontalLine","Hscr","hscr","hslash","Hstrok","hstrok","HumpDownHump","HumpEqual","hybull","hyphen","Iacute","iacute","ic","Icirc","icirc","Icy","icy","Idot","IEcy","iecy","iexcl","iff","Ifr","ifr","Igrave","igrave","ii","iiiint","iiint","iinfin","iiota","IJlig","ijlig","Im","Imacr","imacr","image","ImaginaryI","imagline","imagpart","imath","imof","imped","Implies","in","incare","infin","infintie","inodot","Int","int","intcal","integers","Integral","intercal","Intersection","intlarhk","intprod","InvisibleComma","InvisibleTimes","IOcy","iocy","Iogon","iogon","Iopf","iopf","Iota","iota","iprod","iquest","Iscr","iscr","isin","isindot","isinE","isins","isinsv","isinv","it","Itilde","itilde","Iukcy","iukcy","Iuml","iuml","Jcirc","jcirc","Jcy","jcy","Jfr","jfr","jmath","Jopf","jopf","Jscr","jscr","Jsercy","jsercy","Jukcy","jukcy","Kappa","kappa","kappav","Kcedil","kcedil","Kcy","kcy","Kfr","kfr","kgreen","KHcy","khcy","KJcy","kjcy","Kopf","kopf","Kscr","kscr","lAarr","Lacute","lacute","laemptyv","lagran","Lambda","lambda","Lang","langd","langle","lap","Laplacetrf","laquo","Larr","lArr","larr","larrb","larrbfs","larrfs","larrhk","larrlp","larrpl","larrsim","larrtl","lat","lAtail","latail","late","lates","lBarr","lbarr","lbbrk","lbrace","lbrack","lbrke","lbrksld","lbrkslu","Lcaron","lcaron","Lcedil","lcedil","lceil","lcub","Lcy","lcy","ldca","ldquo","ldquor","ldrdhar","ldrushar","ldsh","lE","le","LeftAngleBracket","LeftArrow","Leftarrow","leftarrow","LeftArrowBar","LeftArrowRightArrow","leftarrowtail","LeftCeiling","LeftDoubleBracket","LeftDownTeeVector","LeftDownVector","LeftDownVectorBar","LeftFloor","leftharpoondown","leftharpoonup","leftleftarrows","LeftRightArrow","Leftrightarrow","leftrightarrow","leftrightarrows","leftrightharpoons","leftrightsquigarrow","LeftRightVector","LeftTee","LeftTeeArrow","LeftTeeVector","leftthreetimes","LeftTriangle","LeftTriangleBar","LeftTriangleEqual","LeftUpDownVector","LeftUpTeeVector","LeftUpVector","LeftUpVectorBar","LeftVector","LeftVectorBar","lEg","leg","leq","leqq","leqslant","les","lescc","lesdot","lesdoto","lesdotor","lesg","lesges","lessapprox","lessdot","lesseqgtr","lesseqqgtr","LessEqualGreater","LessFullEqual","LessGreater","lessgtr","LessLess","lesssim","LessSlantEqual","LessTilde","lfisht","lfloor","Lfr","lfr","lg","lgE","lHar","lhard","lharu","lharul","lhblk","LJcy","ljcy","Ll","ll","llarr","llcorner","Lleftarrow","llhard","lltri","Lmidot","lmidot","lmoust","lmoustache","lnap","lnapprox","lnE","lne","lneq","lneqq","lnsim","loang","loarr","lobrk","LongLeftArrow","Longleftarrow","longleftarrow","LongLeftRightArrow","Longleftrightarrow","longleftrightarrow","longmapsto","LongRightArrow","Longrightarrow","longrightarrow","looparrowleft","looparrowright","lopar","Lopf","lopf","loplus","lotimes","lowast","lowbar","LowerLeftArrow","LowerRightArrow","loz","lozenge","lozf","lpar","lparlt","lrarr","lrcorner","lrhar","lrhard","lrm","lrtri","lsaquo","Lscr","lscr","Lsh","lsh","lsim","lsime","lsimg","lsqb","lsquo","lsquor","Lstrok","lstrok","Lt","LT","ltcc","ltcir","ltdot","lthree","ltimes","ltlarr","ltquest","ltri","ltrie","ltrif","ltrPar","lurdshar","luruhar","lvertneqq","lvnE","macr","male","malt","maltese","Map","mapsto","mapstodown","mapstoleft","mapstoup","marker","mcomma","Mcy","mcy","mdash","mDDot","measuredangle","MediumSpace","Mellintrf","Mfr","mfr","mho","micro","mid","midast","midcir","middot","minus","minusb","minusd","minusdu","MinusPlus","mlcp","mldr","mnplus","models","Mopf","mopf","mp","Mscr","mscr","mstpos","Mu","mu","multimap","mumap","nabla","Nacute","nacute","nang","nap","napE","napid","napos","napprox","natur","natural","naturals","nbsp","nbump","nbumpe","ncap","Ncaron","ncaron","Ncedil","ncedil","ncong","ncongdot","ncup","Ncy","ncy","ndash","ne","nearhk","neArr","nearr","nearrow","nedot","NegativeMediumSpace","NegativeThickSpace","NegativeThinSpace","NegativeVeryThinSpace","nequiv","nesear","nesim","NestedGreaterGreater","NestedLessLess","NewLine","nexist","nexists","Nfr","nfr","ngE","nge","ngeq","ngeqq","ngeqslant","nges","nGg","ngsim","nGt","ngt","ngtr","nGtv","nhArr","nharr","nhpar","ni","nis","nisd","niv","NJcy","njcy","nlArr","nlarr","nldr","nlE","nle","nLeftarrow","nleftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nles","nless","nLl","nlsim","nLt","nlt","nltri","nltrie","nLtv","nmid","NoBreak","NonBreakingSpace","Nopf","nopf","Not","not","NotCongruent","NotCupCap","NotDoubleVerticalBar","NotElement","NotEqual","NotEqualTilde","NotExists","NotGreater","NotGreaterEqual","NotGreaterFullEqual","NotGreaterGreater","NotGreaterLess","NotGreaterSlantEqual","NotGreaterTilde","NotHumpDownHump","NotHumpEqual","notin","notindot","notinE","notinva","notinvb","notinvc","NotLeftTriangle","NotLeftTriangleBar","NotLeftTriangleEqual","NotLess","NotLessEqual","NotLessGreater","NotLessLess","NotLessSlantEqual","NotLessTilde","NotNestedGreaterGreater","NotNestedLessLess","notni","notniva","notnivb","notnivc","NotPrecedes","NotPrecedesEqual","NotPrecedesSlantEqual","NotReverseElement","NotRightTriangle","NotRightTriangleBar","NotRightTriangleEqual","NotSquareSubset","NotSquareSubsetEqual","NotSquareSuperset","NotSquareSupersetEqual","NotSubset","NotSubsetEqual","NotSucceeds","NotSucceedsEqual","NotSucceedsSlantEqual","NotSucceedsTilde","NotSuperset","NotSupersetEqual","NotTilde","NotTildeEqual","NotTildeFullEqual","NotTildeTilde","NotVerticalBar","npar","nparallel","nparsl","npart","npolint","npr","nprcue","npre","nprec","npreceq","nrArr","nrarr","nrarrc","nrarrw","nRightarrow","nrightarrow","nrtri","nrtrie","nsc","nsccue","nsce","Nscr","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","Ntilde","ntilde","ntlg","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","Nu","nu","num","numero","numsp","nvap","nVDash","nVdash","nvDash","nvdash","nvge","nvgt","nvHarr","nvinfin","nvlArr","nvle","nvlt","nvltrie","nvrArr","nvrtrie","nvsim","nwarhk","nwArr","nwarr","nwarrow","nwnear","Oacute","oacute","oast","ocir","Ocirc","ocirc","Ocy","ocy","odash","Odblac","odblac","odiv","odot","odsold","OElig","oelig","ofcir","Ofr","ofr","ogon","Ograve","ograve","ogt","ohbar","ohm","oint","olarr","olcir","olcross","oline","olt","Omacr","omacr","Omega","omega","Omicron","omicron","omid","ominus","Oopf","oopf","opar","OpenCurlyDoubleQuote","OpenCurlyQuote","operp","oplus","Or","or","orarr","ord","order","orderof","ordf","ordm","origof","oror","orslope","orv","oS","Oscr","oscr","Oslash","oslash","osol","Otilde","otilde","Otimes","otimes","otimesas","Ouml","ouml","ovbar","OverBar","OverBrace","OverBracket","OverParenthesis","par","para","parallel","parsim","parsl","part","PartialD","Pcy","pcy","percnt","period","permil","perp","pertenk","Pfr","pfr","Phi","phi","phiv","phmmat","phone","Pi","pi","pitchfork","piv","planck","planckh","plankv","plus","plusacir","plusb","pluscir","plusdo","plusdu","pluse","PlusMinus","plusmn","plussim","plustwo","pm","Poincareplane","pointint","Popf","popf","pound","Pr","pr","prap","prcue","prE","prec","precapprox","preccurlyeq","Precedes","PrecedesEqual","PrecedesSlantEqual","PrecedesTilde","preceq","precnapprox","precneqq","precnsim","precsim","Prime","prime","primes","prnap","prnE","prnsim","prod","Product","profalar","profline","profsurf","prop","Proportion","Proportional","propto","prsim","prurel","Pscr","pscr","Psi","psi","puncsp","Qfr","qfr","qint","Qopf","qopf","qprime","Qscr","qscr","quaternions","quatint","quest","questeq","QUOT","rAarr","race","Racute","racute","radic","raemptyv","Rang","rang","rangd","range","rangle","raquo","Rarr","rArr","rarr","rarrap","rarrb","rarrbfs","rarrc","rarrfs","rarrhk","rarrlp","rarrpl","rarrsim","Rarrtl","rarrtl","rarrw","rAtail","ratail","ratio","rationals","RBarr","rBarr","rbarr","rbbrk","rbrace","rbrack","rbrke","rbrksld","rbrkslu","Rcaron","rcaron","Rcedil","rcedil","rceil","rcub","Rcy","rcy","rdca","rdldhar","rdquo","rdquor","rdsh","Re","real","realine","realpart","reals","rect","REG","reg","ReverseElement","ReverseEquilibrium","ReverseUpEquilibrium","rfisht","rfloor","Rfr","rfr","rHar","rhard","rharu","rharul","Rho","rho","rhov","RightAngleBracket","RightArrow","Rightarrow","rightarrow","RightArrowBar","RightArrowLeftArrow","rightarrowtail","RightCeiling","RightDoubleBracket","RightDownTeeVector","RightDownVector","RightDownVectorBar","RightFloor","rightharpoondown","rightharpoonup","rightleftarrows","rightleftharpoons","rightrightarrows","rightsquigarrow","RightTee","RightTeeArrow","RightTeeVector","rightthreetimes","RightTriangle","RightTriangleBar","RightTriangleEqual","RightUpDownVector","RightUpTeeVector","RightUpVector","RightUpVectorBar","RightVector","RightVectorBar","ring","risingdotseq","rlarr","rlhar","rlm","rmoust","rmoustache","rnmid","roang","roarr","robrk","ropar","Ropf","ropf","roplus","rotimes","RoundImplies","rpar","rpargt","rppolint","rrarr","Rrightarrow","rsaquo","Rscr","rscr","Rsh","rsh","rsqb","rsquo","rsquor","rthree","rtimes","rtri","rtrie","rtrif","rtriltri","RuleDelayed","ruluhar","rx","Sacute","sacute","sbquo","Sc","sc","scap","Scaron","scaron","sccue","scE","sce","Scedil","scedil","Scirc","scirc","scnap","scnE","scnsim","scpolint","scsim","Scy","scy","sdot","sdotb","sdote","searhk","seArr","searr","searrow","sect","semi","seswar","setminus","setmn","sext","Sfr","sfr","sfrown","sharp","SHCHcy","shchcy","SHcy","shcy","ShortDownArrow","ShortLeftArrow","shortmid","shortparallel","ShortRightArrow","ShortUpArrow","shy","Sigma","sigma","sigmaf","sigmav","sim","simdot","sime","simeq","simg","simgE","siml","simlE","simne","simplus","simrarr","slarr","SmallCircle","smallsetminus","smashp","smeparsl","smid","smile","smt","smte","smtes","SOFTcy","softcy","sol","solb","solbar","Sopf","sopf","spades","spadesuit","spar","sqcap","sqcaps","sqcup","sqcups","Sqrt","sqsub","sqsube","sqsubset","sqsubseteq","sqsup","sqsupe","sqsupset","sqsupseteq","squ","Square","square","SquareIntersection","SquareSubset","SquareSubsetEqual","SquareSuperset","SquareSupersetEqual","SquareUnion","squarf","squf","srarr","Sscr","sscr","ssetmn","ssmile","sstarf","Star","star","starf","straightepsilon","straightphi","strns","Sub","subdot","subE","sube","subedot","submult","subnE","subne","subplus","subrarr","Subset","subset","subseteq","subseteqq","SubsetEqual","subsetneq","subsetneqq","subsim","subsub","subsup","succ","succapprox","succcurlyeq","Succeeds","SucceedsEqual","SucceedsSlantEqual","SucceedsTilde","succeq","succnapprox","succneqq","succnsim","succsim","SuchThat","Sum","sum","sung","Sup","sup","sup1","sup2","sup3","supdot","supdsub","supE","supe","supedot","Superset","SupersetEqual","suphsol","suphsub","suplarr","supmult","supnE","supne","supplus","Supset","supset","supseteq","supseteqq","supsetneq","supsetneqq","supsim","supsub","supsup","swarhk","swArr","swarr","swarrow","swnwar","szlig","Tab","Tau","tau","tbrk","Tcaron","tcaron","Tcedil","tcedil","Tcy","tcy","tdot","telrec","Tfr","tfr","there4","Therefore","therefore","Theta","theta","thetasym","thetav","thickapprox","thicksim","ThickSpace","thinsp","ThinSpace","thkap","thksim","THORN","thorn","Tilde","tilde","TildeEqual","TildeFullEqual","TildeTilde","times","timesb","timesbar","timesd","tint","toea","top","topbot","topcir","Topf","topf","topfork","tosa","tprime","TRADE","trade","triangle","triangledown","triangleleft","trianglelefteq","triangleq","triangleright","trianglerighteq","tridot","trie","triminus","TripleDot","triplus","trisb","tritime","trpezium","Tscr","tscr","TScy","tscy","TSHcy","tshcy","Tstrok","tstrok","twixt","twoheadleftarrow","twoheadrightarrow","Uacute","uacute","Uarr","uArr","uarr","Uarrocir","Ubrcy","ubrcy","Ubreve","ubreve","Ucirc","ucirc","Ucy","ucy","udarr","Udblac","udblac","udhar","ufisht","Ufr","ufr","Ugrave","ugrave","uHar","uharl","uharr","uhblk","ulcorn","ulcorner","ulcrop","ultri","Umacr","umacr","uml","UnderBar","UnderBrace","UnderBracket","UnderParenthesis","Union","UnionPlus","Uogon","uogon","Uopf","uopf","UpArrow","Uparrow","uparrow","UpArrowBar","UpArrowDownArrow","UpDownArrow","Updownarrow","updownarrow","UpEquilibrium","upharpoonleft","upharpoonright","uplus","UpperLeftArrow","UpperRightArrow","Upsi","upsi","upsih","Upsilon","upsilon","UpTee","UpTeeArrow","upuparrows","urcorn","urcorner","urcrop","Uring","uring","urtri","Uscr","uscr","utdot","Utilde","utilde","utri","utrif","uuarr","Uuml","uuml","uwangle","vangrt","varepsilon","varkappa","varnothing","varphi","varpi","varpropto","vArr","varr","varrho","varsigma","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartheta","vartriangleleft","vartriangleright","Vbar","vBar","vBarv","Vcy","vcy","VDash","Vdash","vDash","vdash","Vdashl","Vee","vee","veebar","veeeq","vellip","Verbar","verbar","Vert","vert","VerticalBar","VerticalLine","VerticalSeparator","VerticalTilde","VeryThinSpace","Vfr","vfr","vltri","vnsub","vnsup","Vopf","vopf","vprop","vrtri","Vscr","vscr","vsubnE","vsubne","vsupnE","vsupne","Vvdash","vzigzag","Wcirc","wcirc","wedbar","Wedge","wedge","wedgeq","weierp","Wfr","wfr","Wopf","wopf","wp","wr","wreath","Wscr","wscr","xcap","xcirc","xcup","xdtri","Xfr","xfr","xhArr","xharr","Xi","xi","xlArr","xlarr","xmap","xnis","xodot","Xopf","xopf","xoplus","xotime","xrArr","xrarr","Xscr","xscr","xsqcup","xuplus","xutri","xvee","xwedge","Yacute","yacute","YAcy","yacy","Ycirc","ycirc","Ycy","ycy","yen","Yfr","yfr","YIcy","yicy","Yopf","yopf","Yscr","yscr","YUcy","yucy","Yuml","yuml","Zacute","zacute","Zcaron","zcaron","Zcy","zcy","Zdot","zdot","zeetrf","ZeroWidthSpace","Zeta","zeta","Zfr","zfr","ZHcy","zhcy","zigrarr","Zopf","zopf","Zscr","zscr","zwj","zwnj","nameStartChar","nameChar","RegExp","tagNamePattern","copyLocator","f","parseElementStartPart","currentNSMap","entityReplacer","addAttribute","qname","startIndex","attributeNames","addValue","attrName","s","charAt","setTagName","closed","match","localNSMap","a","nsp","nsPrefix","_copy","parseHtmlSpecialContent","elStartEnd","elEndStart","fixSelfClosed","closeMap","pos","lastIndexOf","parseDCC","end","matchs","exec","lastMatch","endDTD","parseInstruction","ElementAttributes","defaultNSMapCopy","k","surrogate1","surrogate2","fromCharCode","fixedFromCharCode","parseInt","appendText","xt","m","lineEnd","linePattern","lineStart","parseStack","tagStart","config","pop","endMatch","toLowerCase","locator2","Math","max","getLocalName","InvalidNumberOfChildrenError","expectedNumberOfChild","currentNumberOfChild","comparison","super","JoinWithManySeparators","separators","_separators","arr","defaultSeparator","effectiveSeparators","_join","joinedStr","currentStr","currentIndex","strArr","_get","mathMLElementToLaTeXConverter","mathMLElement","MathMLElementToLatexConverterAdapter","toLatexConverter","normalizeWhiteSpaces","str","_open","_close","wrap","Wrapper","open","close","BracketWrapper","ParenthesisWrapper","GenericWrapper","wrapIfMoreThanOneChar","children","mathElement","_mathmlElement","convert","converter","childrenLength","content","accent","_applyCommand","type","TagTypes","Under","Over","UnderOverSetter","_type","latexAccents","includes","_defaultCommand","MI","MO","MN","MSqrt","MFenced","MFrac","MRoot","MAction","MEnclose","MError","MPhantom","MSup","MSub","MSubsup","MMultiscripts","MText","MUnderover","MTable","MTr","GenericSpacingWrapper","GenericUnderOver","MRow","MSpace","Void","_isToggle","actiontype","unnormalizedLatex","latexJoinedChildren","_notation","notation","mathmlElement","latexChildren","_isThereRelativeOfName","Matrix","separatorsAttr","hasSeparatorsAttribute","separatorsArray","from","Vector","mathmlElements","elementName","some","latexContents","contentWithoutWrapper","_genericCommand","Separators","command","_command","matrix","areParentheses","areSquareBrackets","areBrackets","areDivides","areParallels","areNotEqual","_compare","openToCompare","closeToCompare","den","_isBevelled","_wrapIfMoreThanOneChar","bevelled","utf8Converter","HashUTF8ToLtXConverter","normalizedValue","Character","trimmedValue","trim","convertedChar","parsedChar","wrapInMathVariant","getMathVariant","mathvariant","mathVariant","_value","_apply","_findByCharacter","_findByGlyph","_findByNumber","allMathSymbolsByChar","allMathSymbolsByGlyph","mathNumberByGlyph","baseContent","_prescriptLatex","_wrapInParenthesisIfThereIsSpace","_postscriptLatex","_isPrescripts","Operator","operate","_operate","allMathOperatorsByChar","allMathOperatorsByGlyph","_isLinearSystemPattern","_convertAsLinearSystem","isOpeningBrace","isMTable","thirdChild","isEmptyClosing","linebreak","baseChild","subscriptChild","_handleBaseChild","_handleSubscriptChild","baseChildren","baseStr","subscript","subscriptStr","superscriptChild","_handleSuperscriptChild","superscript","superscriptStr","exponentChild","_handleExponentChild","exponent","exponentStr","_addFlagRecursiveIfName","tableContent","_hasFlag","_wrap","latex","flag","forEach","char","isAlphanumeric","acc","lastChar","TextCommand","_mathvariant","_commands","_mathMLElement","VoidMathMLElement","fromMathMLElementToLatexConverter","ToLatexConverters","math","mi","mo","mn","msqrt","mfenced","mfrac","mroot","maction","menclose","merror","mphantom","msup","msub","msubsup","mmultiscripts","mtext","munderover","mtable","mtr","mover","munder","mrow","mspace","mpadded","void","_errors","errorLocator","fixError","errorMessage","_isMissingAttributeValueError","_fixMissingAttribute","isThereAnyErrors","cleanErrors","missingAttribute","_matchMissingValueForAttribute","_mathGenericMissingValue","attribute","_convertElement","_convertElementAttributes","_hasElementChild","textContent","_isThereAnyNoTextNode","elementsConvertor","_xml","_elementsConvertor","_errorHandler","_xmlDOM","_fixError","bind","_removeLineBreaks","_removeMsWordPrefixes","_mathMLElements","elements","makeToMathElementsConverter","elementsToMathMLAdapter","ElementsToMathMLAdapter","ErrorHandler","XmlToMathMLAdapter","mathml","toLatexConverters","_","T","$","accentChar","vowelsWithAccents","convertAccentCharToLtX","convertSpecialCharToLtX","vowel","cmd","accentToLTXCmd","specialFontChar","specialFontChars","letter","fontCmd","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","__webpack_modules__","MathMLToLaTeX"],"sourceRoot":""}
|