redeyed-jekyll-theme 0.1.0 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (656) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +21 -21
  3. data/README.md +187 -52
  4. data/_config.yml +28 -22
  5. data/_data/assets/cross-origin.yml +1 -7
  6. data/_data/assets/self-host.yml +0 -6
  7. data/_data/authors.yml +0 -0
  8. data/_data/contact.yml +0 -0
  9. data/_data/locale/en.yml +63 -58
  10. data/_data/locale/es-ES.yml +79 -0
  11. data/_data/locale/fr-FR.yml +79 -0
  12. data/_data/locale/id-ID.yml +79 -0
  13. data/_data/locale/ko-KR.yml +79 -0
  14. data/_data/locale/my-MM.yml +79 -0
  15. data/_data/locale/pt-BR.yml +79 -0
  16. data/_data/locale/ru-RU.yml +79 -0
  17. data/_data/locale/uk-UA.yml +79 -0
  18. data/_data/locale/vi-VN.yml +77 -0
  19. data/_data/locale/zh-CN.yml +78 -0
  20. data/_data/share.yml +0 -0
  21. data/{_includes/comments.html → _drafts/.gitkeep} +0 -0
  22. data/_includes/{breadcrumbs.html → components/breadcrumbs.html} +0 -0
  23. data/_includes/{datetime.html → components/datetime.html} +0 -0
  24. data/_includes/{favicons.html → components/favicons.html} +14 -14
  25. data/_includes/{javascript.html → components/javascript.html} +8 -31
  26. data/_includes/{no-linenos.html → components/jumbotron.html} +0 -0
  27. data/_includes/components/lang.html +11 -0
  28. data/_includes/{navbar.html → components/navbar.html} +13 -6
  29. data/_includes/{pagination.html → components/no-linenos.html} +0 -0
  30. data/_includes/{options.html → components/options.html} +13 -13
  31. data/_includes/{post-nav.html → components/pagination.html} +0 -0
  32. data/_includes/{readtime.html → components/readtime.html} +0 -0
  33. data/_includes/{related-posts.html → components/related-posts.html} +0 -0
  34. data/_includes/{search-loader.html → components/search-loader.html} +46 -46
  35. data/_includes/{search-results.html → components/search-results.html} +0 -0
  36. data/_includes/{toc.html → components/toc.html} +0 -0
  37. data/_includes/{back-to-top.html → extensions/back-to-top.html} +2 -2
  38. data/_includes/extensions/code-highlight.html +89 -0
  39. data/_includes/extensions/comments/disqus.html +17 -0
  40. data/_includes/extensions/comments/giscus.html +56 -0
  41. data/_includes/extensions/comments/gitment.html +15 -0
  42. data/_includes/extensions/comments/utterances.html +46 -0
  43. data/_includes/extensions/geopattern.html +19 -0
  44. data/_includes/extensions/google-analytics.html +7 -0
  45. data/_includes/{google-tags-body.html → extensions/google-tags-body.html} +3 -3
  46. data/_includes/{google-tags-head.html → extensions/google-tags-head.html} +5 -5
  47. data/_includes/extensions/google-translate.html +108 -0
  48. data/_includes/extensions/hashlocate.html +44 -0
  49. data/_includes/extensions/mathjax.html +9 -0
  50. data/_includes/{mode-toggle.html → extensions/theme-mode.html} +0 -10
  51. data/_includes/extensions/theme-toggle.html +108 -0
  52. data/_includes/extensions/trianglify.html +26 -0
  53. data/_includes/functions/get-article-excerpt.html +33 -0
  54. data/_includes/functions/get-article-words.html +18 -0
  55. data/_includes/functions/get-banner.html +67 -0
  56. data/_includes/functions/get-categories.html +9 -0
  57. data/_includes/functions/get-datetimes.html +13 -0
  58. data/_includes/functions/get-reading-time.html +39 -0
  59. data/_includes/functions/get-tags.html +9 -0
  60. data/_includes/functions/get-value.html +41 -0
  61. data/_includes/{jsdelivr-combine.html → functions/js-combine.html} +18 -18
  62. data/_includes/functions/log.html +17 -0
  63. data/_includes/head.html +4 -4
  64. data/_includes/{copyright.html → views/copyright.html} +0 -0
  65. data/_includes/{footer.html → views/footer.html} +0 -0
  66. data/_includes/views/header-banner.html +9 -0
  67. data/_includes/views/header-wide.html +9 -0
  68. data/_includes/views/header.html +9 -0
  69. data/_includes/{panel-bottom.html → views/panel-bottom.html} +0 -0
  70. data/_includes/{panel-foot-2.html → views/panel-foot-2.html} +0 -0
  71. data/_includes/{panel-foot-3.html → views/panel-foot-3.html} +0 -0
  72. data/_includes/{panel-foot-4.html → views/panel-foot-4.html} +0 -0
  73. data/_includes/{panel-foot-full.html → views/panel-foot-full.html} +0 -0
  74. data/_includes/{panel-top-2.html → views/panel-top-2.html} +0 -0
  75. data/_includes/{panel-top-3.html → views/panel-top-3.html} +0 -0
  76. data/_includes/{panel-top-4.html → views/panel-top-4.html} +0 -0
  77. data/_includes/{panel-top-full.html → views/panel-top-full.html} +0 -0
  78. data/_includes/{post-share.html → views/post-nav.html} +0 -0
  79. data/_includes/{sidebar.html → views/post-share.html} +0 -0
  80. data/{_sass/addon/syntax.scss → _includes/views/sidebar.html} +0 -0
  81. data/_layouts/archive.html +5 -0
  82. data/_layouts/categories.html +5 -0
  83. data/_layouts/category.html +5 -0
  84. data/_layouts/compress.html +10 -10
  85. data/_layouts/default.html +0 -0
  86. data/_layouts/error.html +44 -0
  87. data/_layouts/errors/404.html +9 -0
  88. data/_layouts/home.html +5 -0
  89. data/_layouts/page.html +5 -5
  90. data/_layouts/panel-both.html +13 -13
  91. data/_layouts/panel-left.html +13 -13
  92. data/_layouts/panel-none.html +28 -30
  93. data/_layouts/panel-right.html +13 -13
  94. data/_layouts/post.html +5 -5
  95. data/_layouts/tag.html +5 -0
  96. data/_layouts/tags.html +5 -0
  97. data/{_sass/layout/page.scss → _posts/.gitkeep} +0 -0
  98. data/_sass/{layout/panel-both.scss → includes/components/_accordian.scss} +0 -0
  99. data/_sass/includes/components/_alert.scss +22 -0
  100. data/_sass/{layout/panel-left.scss → includes/components/_badge.scss} +0 -0
  101. data/_sass/{layout/panel-right.scss → includes/components/_button-group.scss} +0 -0
  102. data/_sass/{layout/post.scss → includes/components/_buttons.scss} +0 -0
  103. data/_sass/includes/components/_card.scss +0 -0
  104. data/_sass/includes/components/_carousel.scss +0 -0
  105. data/_sass/includes/components/_close.scss +0 -0
  106. data/_sass/includes/components/_containers.scss +0 -0
  107. data/_sass/includes/components/_dropdown.scss +16 -0
  108. data/_sass/includes/components/_forms.scss +0 -0
  109. data/_sass/includes/components/_images.scss +0 -0
  110. data/_sass/includes/components/_jumbotron.scss +0 -0
  111. data/_sass/includes/components/_list-group.scss +0 -0
  112. data/_sass/includes/components/_mixins.scss +28 -0
  113. data/_sass/includes/components/_modal.scss +0 -0
  114. data/_sass/includes/components/_nav.scss +0 -0
  115. data/_sass/includes/components/_offcanvas.scss +0 -0
  116. data/_sass/includes/components/_popover.scss +0 -0
  117. data/_sass/includes/components/_progress.scss +0 -0
  118. data/_sass/includes/components/_spinners.scss +0 -0
  119. data/_sass/includes/components/_tables.scss +0 -0
  120. data/_sass/includes/components/_toasts.scss +0 -0
  121. data/_sass/includes/components/_tooltip.scss +0 -0
  122. data/_sass/includes/components/_transitions.scss +0 -0
  123. data/_sass/includes/components/_type.scss +0 -0
  124. data/_sass/includes/components/forms/_floating-labels.scss +0 -0
  125. data/_sass/includes/components/forms/_form-check.scss +0 -0
  126. data/_sass/includes/components/forms/_form-control.scss +0 -0
  127. data/_sass/includes/components/forms/_form-range.scss +0 -0
  128. data/_sass/includes/components/forms/_form-select.scss +0 -0
  129. data/_sass/includes/components/forms/_form-text.scss +0 -0
  130. data/_sass/includes/components/forms/_input-group.scss +0 -0
  131. data/_sass/includes/components/forms/_labels.scss +0 -0
  132. data/_sass/includes/components/forms/_validation.scss +0 -0
  133. data/_sass/includes/components/helpers/_clearfix.scss +0 -0
  134. data/_sass/includes/components/helpers/_colored-links.scss +0 -0
  135. data/_sass/includes/components/helpers/_position.scss +0 -0
  136. data/_sass/includes/components/helpers/_ratio.scss +0 -0
  137. data/_sass/includes/components/helpers/_stretched-link.scss +0 -0
  138. data/_sass/includes/components/helpers/_text-truncation.scss +0 -0
  139. data/_sass/includes/components/helpers/_visually-hidden.scss +0 -0
  140. data/_sass/includes/components/mixins/_alert.scss +0 -0
  141. data/_sass/includes/components/mixins/_border-radius.scss +0 -0
  142. data/_sass/includes/components/mixins/_box-shadow.scss +9 -0
  143. data/_sass/includes/components/mixins/_breakpoints.scss +0 -0
  144. data/_sass/includes/components/mixins/_buttons.scss +0 -0
  145. data/_sass/includes/components/mixins/_caret.scss +0 -0
  146. data/_sass/includes/components/mixins/_clearfix.scss +0 -0
  147. data/_sass/includes/components/mixins/_color-scheme.scss +0 -0
  148. data/_sass/includes/components/mixins/_container.scss +0 -0
  149. data/_sass/includes/components/mixins/_deprecate.scss +0 -0
  150. data/_sass/includes/components/mixins/_forms.scss +10 -0
  151. data/_sass/includes/components/mixins/_gradients.scss +0 -0
  152. data/_sass/includes/components/mixins/_grid.scss +0 -0
  153. data/_sass/includes/components/mixins/_image.scss +0 -0
  154. data/_sass/includes/components/mixins/_list-group.scss +0 -0
  155. data/_sass/includes/components/mixins/_lists.scss +0 -0
  156. data/_sass/includes/components/mixins/_pagination.scss +0 -0
  157. data/_sass/includes/components/mixins/_reset-text.scss +0 -0
  158. data/_sass/includes/components/mixins/_resize.scss +0 -0
  159. data/_sass/includes/components/mixins/_table-variants.scss +0 -0
  160. data/_sass/includes/components/mixins/_text-truncate.scss +0 -0
  161. data/_sass/includes/components/mixins/_transition.scss +0 -0
  162. data/_sass/includes/components/mixins/_utilities.scss +0 -0
  163. data/_sass/includes/components/mixins/_visually-hidden.scss +0 -0
  164. data/_sass/includes/elements/_breadcrumb.scss +0 -0
  165. data/_sass/includes/elements/_datetime.scss +0 -0
  166. data/_sass/includes/elements/_navbar.scss +59 -0
  167. data/_sass/includes/elements/_pagination.scss +0 -0
  168. data/_sass/includes/elements/_readtime.scss +0 -0
  169. data/_sass/includes/elements/_related-posts.scss +0 -0
  170. data/_sass/includes/elements/_search-results.scss +0 -0
  171. data/_sass/includes/elements/_toc.scss +0 -0
  172. data/_sass/includes/extensions/_back-to-top.scss +0 -0
  173. data/_sass/includes/extensions/_code-highlight.scss +0 -0
  174. data/_sass/includes/extensions/_geopattern.scss +0 -0
  175. data/_sass/includes/extensions/_mathjax.scss +0 -0
  176. data/_sass/includes/extensions/_theme-mode.scss +0 -0
  177. data/_sass/includes/extensions/_theme-toggle.scss +0 -0
  178. data/_sass/includes/extensions/_trianglify.scss +0 -0
  179. data/_sass/includes/extensions/comments/_disqus.scss +0 -0
  180. data/_sass/includes/extensions/comments/_giscus.scss +0 -0
  181. data/_sass/includes/extensions/comments/_gitment.scss +0 -0
  182. data/_sass/includes/extensions/comments/_utterances.scss +0 -0
  183. data/_sass/includes/views/_copyright.scss +0 -0
  184. data/_sass/includes/views/_footer.scss +0 -0
  185. data/_sass/includes/views/_header-banner.scss +57 -0
  186. data/_sass/includes/views/_header-wide.scss +57 -0
  187. data/_sass/includes/views/_header.scss +57 -0
  188. data/_sass/includes/views/_panel-bottom.scss +0 -0
  189. data/_sass/includes/views/_panel-foot-2.scss +0 -0
  190. data/_sass/includes/views/_panel-foot-3.scss +0 -0
  191. data/_sass/includes/views/_panel-foot-4.scss +0 -0
  192. data/_sass/includes/views/_panel-foot-full.scss +0 -0
  193. data/_sass/includes/views/_panel-top-2.scss +0 -0
  194. data/_sass/includes/views/_panel-top-3.scss +0 -0
  195. data/_sass/includes/views/_panel-top-4.scss +0 -0
  196. data/_sass/includes/views/_panel-top-full.scss +0 -0
  197. data/_sass/includes/views/_post-nav.scss +0 -0
  198. data/_sass/includes/views/_post-share.scss +0 -0
  199. data/_sass/includes/views/_sidebar.scss +0 -0
  200. data/_sass/layouts/_base.scss +159 -0
  201. data/_sass/layouts/_breakpoints.scss +18 -0
  202. data/_sass/layouts/archive.scss +0 -0
  203. data/_sass/layouts/categories.scss +0 -0
  204. data/_sass/layouts/category.scss +0 -0
  205. data/_sass/layouts/error.scss +0 -0
  206. data/_sass/layouts/page.scss +0 -0
  207. data/_sass/layouts/panel-both.scss +3 -0
  208. data/_sass/layouts/panel-left.scss +3 -0
  209. data/_sass/layouts/panel-none.scss +100 -0
  210. data/_sass/layouts/panel-right.scss +3 -0
  211. data/_sass/layouts/post.scss +0 -0
  212. data/_sass/layouts/tag.scss +0 -0
  213. data/_sass/layouts/tags.scss +0 -0
  214. data/_sass/lib/bootstrap-5.0.2/scss/_accordion.scss +118 -0
  215. data/_sass/lib/bootstrap-5.0.2/scss/_alert.scss +57 -0
  216. data/_sass/lib/bootstrap-5.0.2/scss/_badge.scss +29 -0
  217. data/_sass/lib/bootstrap-5.0.2/scss/_breadcrumb.scss +28 -0
  218. data/_sass/lib/bootstrap-5.0.2/scss/_button-group.scss +139 -0
  219. data/_sass/lib/bootstrap-5.0.2/scss/_buttons.scss +111 -0
  220. data/_sass/lib/bootstrap-5.0.2/scss/_card.scss +215 -0
  221. data/_sass/lib/bootstrap-5.0.2/scss/_carousel.scss +229 -0
  222. data/_sass/lib/bootstrap-5.0.2/scss/_close.scss +40 -0
  223. data/_sass/lib/bootstrap-5.0.2/scss/_containers.scss +41 -0
  224. data/_sass/lib/bootstrap-5.0.2/scss/_dropdown.scss +240 -0
  225. data/_sass/lib/bootstrap-5.0.2/scss/_forms.scss +9 -0
  226. data/_sass/lib/bootstrap-5.0.2/scss/_functions.scss +263 -0
  227. data/_sass/lib/bootstrap-5.0.2/scss/_grid.scss +22 -0
  228. data/_sass/lib/bootstrap-5.0.2/scss/_helpers.scss +7 -0
  229. data/_sass/lib/bootstrap-5.0.2/scss/_images.scss +42 -0
  230. data/_sass/lib/bootstrap-5.0.2/scss/_list-group.scss +174 -0
  231. data/_sass/lib/bootstrap-5.0.2/scss/_mixins.scss +42 -0
  232. data/_sass/lib/bootstrap-5.0.2/scss/_modal.scss +219 -0
  233. data/_sass/lib/bootstrap-5.0.2/scss/_nav.scss +139 -0
  234. data/_sass/lib/bootstrap-5.0.2/scss/_navbar.scss +308 -0
  235. data/_sass/lib/bootstrap-5.0.2/scss/_offcanvas.scss +79 -0
  236. data/_sass/lib/bootstrap-5.0.2/scss/_pagination.scss +64 -0
  237. data/_sass/lib/bootstrap-5.0.2/scss/_popover.scss +158 -0
  238. data/_sass/lib/bootstrap-5.0.2/scss/_progress.scss +48 -0
  239. data/_sass/lib/bootstrap-5.0.2/scss/_reboot.scss +621 -0
  240. data/_sass/lib/bootstrap-5.0.2/scss/_root.scss +16 -0
  241. data/_sass/lib/bootstrap-5.0.2/scss/_spinners.scss +69 -0
  242. data/_sass/lib/bootstrap-5.0.2/scss/_tables.scss +151 -0
  243. data/_sass/lib/bootstrap-5.0.2/scss/_toasts.scss +51 -0
  244. data/_sass/lib/bootstrap-5.0.2/scss/_tooltip.scss +115 -0
  245. data/_sass/lib/bootstrap-5.0.2/scss/_transitions.scss +21 -0
  246. data/_sass/lib/bootstrap-5.0.2/scss/_type.scss +104 -0
  247. data/_sass/lib/bootstrap-5.0.2/scss/_utilities.scss +594 -0
  248. data/_sass/lib/bootstrap-5.0.2/scss/_variables.scss +1468 -0
  249. data/_sass/lib/bootstrap-5.0.2/scss/bootstrap-grid.scss +65 -0
  250. data/_sass/lib/bootstrap-5.0.2/scss/bootstrap-reboot.scss +15 -0
  251. data/_sass/lib/bootstrap-5.0.2/scss/bootstrap-utilities.scss +18 -0
  252. data/_sass/lib/bootstrap-5.0.2/scss/bootstrap.scss +52 -0
  253. data/_sass/lib/bootstrap-5.0.2/scss/forms/_floating-labels.scss +63 -0
  254. data/_sass/lib/bootstrap-5.0.2/scss/forms/_form-check.scss +152 -0
  255. data/_sass/lib/bootstrap-5.0.2/scss/forms/_form-control.scss +219 -0
  256. data/_sass/lib/bootstrap-5.0.2/scss/forms/_form-range.scss +91 -0
  257. data/_sass/lib/bootstrap-5.0.2/scss/forms/_form-select.scss +70 -0
  258. data/_sass/lib/bootstrap-5.0.2/scss/forms/_form-text.scss +11 -0
  259. data/_sass/lib/bootstrap-5.0.2/scss/forms/_input-group.scss +121 -0
  260. data/_sass/lib/bootstrap-5.0.2/scss/forms/_labels.scss +36 -0
  261. data/_sass/lib/bootstrap-5.0.2/scss/forms/_validation.scss +12 -0
  262. data/_sass/lib/bootstrap-5.0.2/scss/helpers/_clearfix.scss +3 -0
  263. data/_sass/lib/bootstrap-5.0.2/scss/helpers/_colored-links.scss +12 -0
  264. data/_sass/lib/bootstrap-5.0.2/scss/helpers/_position.scss +30 -0
  265. data/_sass/lib/bootstrap-5.0.2/scss/helpers/_ratio.scss +26 -0
  266. data/_sass/lib/bootstrap-5.0.2/scss/helpers/_stretched-link.scss +15 -0
  267. data/_sass/lib/bootstrap-5.0.2/scss/helpers/_text-truncation.scss +7 -0
  268. data/_sass/lib/bootstrap-5.0.2/scss/helpers/_visually-hidden.scss +8 -0
  269. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_alert.scss +11 -0
  270. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_border-radius.scss +78 -0
  271. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_box-shadow.scss +18 -0
  272. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_breakpoints.scss +127 -0
  273. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_buttons.scss +133 -0
  274. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_caret.scss +64 -0
  275. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_clearfix.scss +9 -0
  276. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_color-scheme.scss +7 -0
  277. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_container.scss +9 -0
  278. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_deprecate.scss +10 -0
  279. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_forms.scss +144 -0
  280. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_gradients.scss +47 -0
  281. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_grid.scss +132 -0
  282. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_image.scss +16 -0
  283. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_list-group.scss +24 -0
  284. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_lists.scss +7 -0
  285. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_pagination.scss +31 -0
  286. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_reset-text.scss +17 -0
  287. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_resize.scss +6 -0
  288. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_table-variants.scss +21 -0
  289. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_text-truncate.scss +8 -0
  290. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_transition.scss +26 -0
  291. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_utilities.scss +68 -0
  292. data/_sass/lib/bootstrap-5.0.2/scss/mixins/_visually-hidden.scss +29 -0
  293. data/_sass/lib/bootstrap-5.0.2/scss/utilities/_api.scss +47 -0
  294. data/_sass/lib/bootstrap-5.0.2/scss/vendor/_rfs.scss +354 -0
  295. data/_sass/redeyed-jekyll-theme.scss +57 -23
  296. data/_sass/theme/common.scss +98 -0
  297. data/_sass/theme/mixins.scss +103 -0
  298. data/_sass/theme/scheme-brew.scss +3 -0
  299. data/_sass/theme/scheme-dark.scss +244 -0
  300. data/_sass/theme/scheme-light.scss +225 -0
  301. data/_sass/theme/syntax-dark.scss +150 -0
  302. data/_sass/{colors/light-syntax.scss → theme/syntax-light.scss} +5 -5
  303. data/_sass/theme/syntax.scss +246 -0
  304. data/_sass/theme/typography.scss +151 -0
  305. data/_sass/theme/variables.scss +751 -0
  306. data/_sass/variables-hook.scss +3 -0
  307. data/assets/css/style.scss +53 -0
  308. data/assets/img/banner.svg +40 -0
  309. data/assets/img/d20R/d20R-128.png +0 -0
  310. data/assets/img/d20R/d20R-16.png +0 -0
  311. data/assets/img/d20R/d20R-200.png +0 -0
  312. data/assets/img/d20R/d20R-240.png +0 -0
  313. data/assets/img/d20R/d20R-32.png +0 -0
  314. data/assets/img/d20R/d20R-320.png +0 -0
  315. data/assets/img/d20R/d20R-48.png +0 -0
  316. data/assets/img/d20R/d20R-500.png +0 -0
  317. data/assets/img/d20R/d20R-600.png +0 -0
  318. data/assets/img/d20R/d20R-64.png +0 -0
  319. data/assets/img/d20R/d20R.svg +0 -0
  320. data/assets/img/d20RB/d20RB-128.png +0 -0
  321. data/assets/img/d20RB/d20RB-16.png +0 -0
  322. data/assets/img/d20RB/d20RB-200.png +0 -0
  323. data/assets/img/d20RB/d20RB-240.png +0 -0
  324. data/assets/img/d20RB/d20RB-32.png +0 -0
  325. data/assets/img/d20RB/d20RB-320.png +0 -0
  326. data/assets/img/d20RB/d20RB-48.png +0 -0
  327. data/assets/img/d20RB/d20RB-500.png +0 -0
  328. data/assets/img/d20RB/d20RB-600.png +0 -0
  329. data/assets/img/d20RB/d20RB-64.png +0 -0
  330. data/assets/img/d20RB/d20RB.svg +0 -0
  331. data/assets/img/favicons/android-chrome-192x192.png +0 -0
  332. data/assets/img/favicons/android-chrome-512x512.png +0 -0
  333. data/assets/img/favicons/apple-touch-icon.png +0 -0
  334. data/assets/img/favicons/browserconfig.xml +0 -0
  335. data/assets/img/favicons/favicon-16x16.png +0 -0
  336. data/assets/img/favicons/favicon-32x32.png +0 -0
  337. data/assets/img/favicons/favicon-d20.ico +0 -0
  338. data/assets/img/favicons/favicon.ico +0 -0
  339. data/assets/img/favicons/mstile-150x150.png +0 -0
  340. data/assets/img/favicons/mstile-310x150.png +0 -0
  341. data/assets/img/favicons/mstile-310x310.png +0 -0
  342. data/assets/img/favicons/mstile-70x70.png +0 -0
  343. data/assets/img/favicons/safari-pinned-tab.svg +0 -0
  344. data/assets/img/favicons/site.webmanifest +0 -0
  345. data/assets/img/icons/bars-solid.svg +1 -0
  346. data/assets/img/social/facebook.svg +7 -0
  347. data/assets/img/social/github.svg +7 -0
  348. data/assets/img/social/guilded.svg +7 -0
  349. data/assets/img/social/patreon.svg +7 -0
  350. data/assets/img/social/reddit.svg +10 -0
  351. data/assets/img/social/tumblr.svg +7 -0
  352. data/assets/img/social/twitter.svg +7 -0
  353. data/assets/js/data/search.json +0 -0
  354. data/assets/js/data/swcache.js +0 -0
  355. data/assets/js/dist/categories.min.js +1 -0
  356. data/assets/js/dist/common.min.js +1 -0
  357. data/assets/js/dist/home.min.js +1 -0
  358. data/assets/js/dist/misc.min.js +1 -0
  359. data/assets/js/dist/page.min.js +1 -0
  360. data/assets/js/dist/post.min.js +1 -0
  361. data/assets/js/dist/pvreport.min.js +1 -0
  362. data/assets/js/fetch.js +0 -0
  363. data/assets/js/pwa/app.js +0 -0
  364. data/assets/js/pwa/sw.js +0 -0
  365. data/assets/js/pwa/unregister.js +0 -0
  366. data/assets/lib/MaterialDesign-Webfont-master/.github/ISSUE_TEMPLATE.md +3 -0
  367. data/assets/lib/MaterialDesign-Webfont-master/LICENSE +20 -0
  368. data/assets/lib/MaterialDesign-Webfont-master/README.md +25 -0
  369. data/assets/lib/MaterialDesign-Webfont-master/css/materialdesignicons.css +27458 -0
  370. data/assets/lib/MaterialDesign-Webfont-master/css/materialdesignicons.css.map +16 -0
  371. data/assets/lib/MaterialDesign-Webfont-master/css/materialdesignicons.min.css +3 -0
  372. data/assets/lib/MaterialDesign-Webfont-master/css/materialdesignicons.min.css.map +16 -0
  373. data/assets/lib/MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.eot +0 -0
  374. data/assets/lib/MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.ttf +0 -0
  375. data/assets/lib/MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.woff +0 -0
  376. data/assets/lib/MaterialDesign-Webfont-master/fonts/materialdesignicons-webfont.woff2 +0 -0
  377. data/assets/lib/MaterialDesign-Webfont-master/package.json +30 -0
  378. data/assets/lib/MaterialDesign-Webfont-master/preview.html +717 -0
  379. data/assets/lib/MaterialDesign-Webfont-master/scripts/verify.js +41 -0
  380. data/assets/lib/MaterialDesign-Webfont-master/scss/_animated.scss +27 -0
  381. data/assets/lib/MaterialDesign-Webfont-master/scss/_core.scss +10 -0
  382. data/assets/lib/MaterialDesign-Webfont-master/scss/_extras.scss +65 -0
  383. data/assets/lib/MaterialDesign-Webfont-master/scss/_functions.scss +20 -0
  384. data/assets/lib/MaterialDesign-Webfont-master/scss/_icons.scss +10 -0
  385. data/assets/lib/MaterialDesign-Webfont-master/scss/_path.scss +10 -0
  386. data/assets/lib/MaterialDesign-Webfont-master/scss/_variables.scss +6807 -0
  387. data/assets/lib/MaterialDesign-Webfont-master/scss/materialdesignicons.scss +8 -0
  388. data/assets/lib/bootstrap-5.0.2/bootstrap.bundle.min.js +7 -0
  389. data/assets/lib/bootstrap-5.0.2/bootstrap.min.css +7 -0
  390. data/assets/lib/bootstrap-toc-1.0.1/bootstrap-toc.min.css +4 -0
  391. data/assets/lib/bootstrap-toc-1.0.1/bootstrap-toc.min.js +5 -0
  392. data/assets/lib/clipboard-2.0.9/clipboard.min.js +7 -0
  393. data/assets/lib/countup.js-1.9.3/countUp.min.js +1 -0
  394. data/assets/lib/dayjs-1.10.7/dayjs.min.js +1 -0
  395. data/assets/lib/dayjs-1.10.7/locale/en.min.js +7 -0
  396. data/assets/lib/dayjs-1.10.7/plugin/localizedFormat.min.js +5 -0
  397. data/assets/lib/dayjs-1.10.7/plugin/relativeTime.min.js +5 -0
  398. data/assets/lib/fonts/Alegreya/Alegreya-Italic-VariableFont_wght.ttf +0 -0
  399. data/assets/lib/fonts/Alegreya/Alegreya-VariableFont_wght.ttf +0 -0
  400. data/assets/lib/fonts/Alegreya/OFL.txt +93 -0
  401. data/assets/lib/fonts/Alegreya/README.txt +75 -0
  402. data/assets/lib/fonts/Alegreya/static/Alegreya-Black.ttf +0 -0
  403. data/assets/lib/fonts/Alegreya/static/Alegreya-BlackItalic.ttf +0 -0
  404. data/assets/lib/fonts/Alegreya/static/Alegreya-Bold.ttf +0 -0
  405. data/assets/lib/fonts/Alegreya/static/Alegreya-BoldItalic.ttf +0 -0
  406. data/assets/lib/fonts/Alegreya/static/Alegreya-ExtraBold.ttf +0 -0
  407. data/assets/lib/fonts/Alegreya/static/Alegreya-ExtraBoldItalic.ttf +0 -0
  408. data/assets/lib/fonts/Alegreya/static/Alegreya-Italic.ttf +0 -0
  409. data/assets/lib/fonts/Alegreya/static/Alegreya-Medium.ttf +0 -0
  410. data/assets/lib/fonts/Alegreya/static/Alegreya-MediumItalic.ttf +0 -0
  411. data/assets/lib/fonts/Alegreya/static/Alegreya-Regular.ttf +0 -0
  412. data/assets/lib/fonts/Alegreya/static/Alegreya-SemiBold.ttf +0 -0
  413. data/assets/lib/fonts/Alegreya/static/Alegreya-SemiBoldItalic.ttf +0 -0
  414. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-Black.ttf +0 -0
  415. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-BlackItalic.ttf +0 -0
  416. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-Bold.ttf +0 -0
  417. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-BoldItalic.ttf +0 -0
  418. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-ExtraBold.ttf +0 -0
  419. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-ExtraBoldItalic.ttf +0 -0
  420. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-Italic.ttf +0 -0
  421. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-Medium.ttf +0 -0
  422. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-MediumItalic.ttf +0 -0
  423. data/assets/lib/fonts/Alegreya_SC/AlegreyaSC-Regular.ttf +0 -0
  424. data/assets/lib/fonts/Alegreya_SC/OFL.txt +93 -0
  425. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-Black.ttf +0 -0
  426. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-BlackItalic.ttf +0 -0
  427. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-Bold.ttf +0 -0
  428. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-BoldItalic.ttf +0 -0
  429. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-ExtraBold.ttf +0 -0
  430. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-ExtraBoldItalic.ttf +0 -0
  431. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-Italic.ttf +0 -0
  432. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-Light.ttf +0 -0
  433. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-LightItalic.ttf +0 -0
  434. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-Medium.ttf +0 -0
  435. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-MediumItalic.ttf +0 -0
  436. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-Regular.ttf +0 -0
  437. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-Thin.ttf +0 -0
  438. data/assets/lib/fonts/Alegreya_Sans/AlegreyaSans-ThinItalic.ttf +0 -0
  439. data/assets/lib/fonts/Alegreya_Sans/OFL.txt +93 -0
  440. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-Black.ttf +0 -0
  441. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-BlackItalic.ttf +0 -0
  442. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-Bold.ttf +0 -0
  443. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-BoldItalic.ttf +0 -0
  444. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-ExtraBold.ttf +0 -0
  445. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-ExtraBoldItalic.ttf +0 -0
  446. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-Italic.ttf +0 -0
  447. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-Light.ttf +0 -0
  448. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-LightItalic.ttf +0 -0
  449. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-Medium.ttf +0 -0
  450. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-MediumItalic.ttf +0 -0
  451. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-Regular.ttf +0 -0
  452. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-Thin.ttf +0 -0
  453. data/assets/lib/fonts/Alegreya_Sans_SC/AlegreyaSansSC-ThinItalic.ttf +0 -0
  454. data/assets/lib/fonts/Alegreya_Sans_SC/OFL.txt +93 -0
  455. data/assets/lib/fonts/Cormorant/Cormorant-Italic-VariableFont_wght.ttf +0 -0
  456. data/assets/lib/fonts/Cormorant/Cormorant-VariableFont_wght.ttf +0 -0
  457. data/assets/lib/fonts/Cormorant/OFL.txt +93 -0
  458. data/assets/lib/fonts/Cormorant/README.txt +73 -0
  459. data/assets/lib/fonts/Cormorant/static/Cormorant-Bold.ttf +0 -0
  460. data/assets/lib/fonts/Cormorant/static/Cormorant-BoldItalic.ttf +0 -0
  461. data/assets/lib/fonts/Cormorant/static/Cormorant-Italic.ttf +0 -0
  462. data/assets/lib/fonts/Cormorant/static/Cormorant-Light.ttf +0 -0
  463. data/assets/lib/fonts/Cormorant/static/Cormorant-LightItalic.ttf +0 -0
  464. data/assets/lib/fonts/Cormorant/static/Cormorant-Medium.ttf +0 -0
  465. data/assets/lib/fonts/Cormorant/static/Cormorant-MediumItalic.ttf +0 -0
  466. data/assets/lib/fonts/Cormorant/static/Cormorant-Regular.ttf +0 -0
  467. data/assets/lib/fonts/Cormorant/static/Cormorant-SemiBold.ttf +0 -0
  468. data/assets/lib/fonts/Cormorant/static/Cormorant-SemiBoldItalic.ttf +0 -0
  469. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-Bold.ttf +0 -0
  470. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-BoldItalic.ttf +0 -0
  471. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-Italic.ttf +0 -0
  472. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-Light.ttf +0 -0
  473. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-LightItalic.ttf +0 -0
  474. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-Medium.ttf +0 -0
  475. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-MediumItalic.ttf +0 -0
  476. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-Regular.ttf +0 -0
  477. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-SemiBold.ttf +0 -0
  478. data/assets/lib/fonts/Cormorant_Garamond/CormorantGaramond-SemiBoldItalic.ttf +0 -0
  479. data/assets/lib/fonts/Cormorant_Garamond/OFL.txt +93 -0
  480. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-Bold.ttf +0 -0
  481. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-BoldItalic.ttf +0 -0
  482. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-Italic.ttf +0 -0
  483. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-Light.ttf +0 -0
  484. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-LightItalic.ttf +0 -0
  485. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-Medium.ttf +0 -0
  486. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-MediumItalic.ttf +0 -0
  487. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-Regular.ttf +0 -0
  488. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-SemiBold.ttf +0 -0
  489. data/assets/lib/fonts/Cormorant_Infant/CormorantInfant-SemiBoldItalic.ttf +0 -0
  490. data/assets/lib/fonts/Cormorant_Infant/OFL.txt +93 -0
  491. data/assets/lib/fonts/Cormorant_SC/CormorantSC-Bold.ttf +0 -0
  492. data/assets/lib/fonts/Cormorant_SC/CormorantSC-Light.ttf +0 -0
  493. data/assets/lib/fonts/Cormorant_SC/CormorantSC-Medium.ttf +0 -0
  494. data/assets/lib/fonts/Cormorant_SC/CormorantSC-Regular.ttf +0 -0
  495. data/assets/lib/fonts/Cormorant_SC/CormorantSC-SemiBold.ttf +0 -0
  496. data/assets/lib/fonts/Cormorant_SC/OFL.txt +93 -0
  497. data/assets/lib/fonts/Cormorant_Unicase/CormorantUnicase-Bold.ttf +0 -0
  498. data/assets/lib/fonts/Cormorant_Unicase/CormorantUnicase-Light.ttf +0 -0
  499. data/assets/lib/fonts/Cormorant_Unicase/CormorantUnicase-Medium.ttf +0 -0
  500. data/assets/lib/fonts/Cormorant_Unicase/CormorantUnicase-Regular.ttf +0 -0
  501. data/assets/lib/fonts/Cormorant_Unicase/CormorantUnicase-SemiBold.ttf +0 -0
  502. data/assets/lib/fonts/Cormorant_Unicase/OFL.txt +93 -0
  503. data/assets/lib/fonts/Cormorant_Upright/CormorantUpright-Bold.ttf +0 -0
  504. data/assets/lib/fonts/Cormorant_Upright/CormorantUpright-Light.ttf +0 -0
  505. data/assets/lib/fonts/Cormorant_Upright/CormorantUpright-Medium.ttf +0 -0
  506. data/assets/lib/fonts/Cormorant_Upright/CormorantUpright-Regular.ttf +0 -0
  507. data/assets/lib/fonts/Cormorant_Upright/CormorantUpright-SemiBold.ttf +0 -0
  508. data/assets/lib/fonts/Cormorant_Upright/OFL.txt +93 -0
  509. data/assets/lib/fonts/Xanh_Mono/OFL.txt +93 -0
  510. data/assets/lib/fonts/Xanh_Mono/XanhMono-Italic.ttf +0 -0
  511. data/assets/lib/fonts/Xanh_Mono/XanhMono-Regular.ttf +0 -0
  512. data/assets/lib/fonts/fonts.css +97 -0
  513. data/assets/lib/jquery-3.6.0/jquery.min.js +2 -0
  514. data/assets/lib/lozad-1.16.0/lozad.min.js +10 -0
  515. data/assets/lib/magnific-popup-1.1.0/jquery.magnific-popup.min.js +4 -0
  516. data/assets/lib/magnific-popup-1.1.0/magnific-popup.css +2 -0
  517. data/assets/lib/mathjax-3.2.0/a11y/assistive-mml.js +1 -0
  518. data/assets/lib/mathjax-3.2.0/a11y/complexity.js +1 -0
  519. data/assets/lib/mathjax-3.2.0/a11y/explorer.js +1 -0
  520. data/assets/lib/mathjax-3.2.0/a11y/semantic-enrich.js +1 -0
  521. data/assets/lib/mathjax-3.2.0/adaptors/liteDOM.js +1 -0
  522. data/assets/lib/mathjax-3.2.0/core.js +1 -0
  523. data/assets/lib/mathjax-3.2.0/input/asciimath.js +1 -0
  524. data/assets/lib/mathjax-3.2.0/input/mml/entities.js +1 -0
  525. data/assets/lib/mathjax-3.2.0/input/mml/extensions/mml3.js +1 -0
  526. data/assets/lib/mathjax-3.2.0/input/mml/extensions/mml3.sef.json +1 -0
  527. data/assets/lib/mathjax-3.2.0/input/mml.js +1 -0
  528. data/assets/lib/mathjax-3.2.0/input/tex/extensions/action.js +1 -0
  529. data/assets/lib/mathjax-3.2.0/input/tex/extensions/all-packages.js +34 -0
  530. data/assets/lib/mathjax-3.2.0/input/tex/extensions/ams.js +1 -0
  531. data/assets/lib/mathjax-3.2.0/input/tex/extensions/amscd.js +1 -0
  532. data/assets/lib/mathjax-3.2.0/input/tex/extensions/autoload.js +1 -0
  533. data/assets/lib/mathjax-3.2.0/input/tex/extensions/bbox.js +1 -0
  534. data/assets/lib/mathjax-3.2.0/input/tex/extensions/boldsymbol.js +1 -0
  535. data/assets/lib/mathjax-3.2.0/input/tex/extensions/braket.js +1 -0
  536. data/assets/lib/mathjax-3.2.0/input/tex/extensions/bussproofs.js +1 -0
  537. data/assets/lib/mathjax-3.2.0/input/tex/extensions/cancel.js +1 -0
  538. data/assets/lib/mathjax-3.2.0/input/tex/extensions/centernot.js +1 -0
  539. data/assets/lib/mathjax-3.2.0/input/tex/extensions/color.js +1 -0
  540. data/assets/lib/mathjax-3.2.0/input/tex/extensions/colortbl.js +1 -0
  541. data/assets/lib/mathjax-3.2.0/input/tex/extensions/colorv2.js +1 -0
  542. data/assets/lib/mathjax-3.2.0/input/tex/extensions/configmacros.js +1 -0
  543. data/assets/lib/mathjax-3.2.0/input/tex/extensions/enclose.js +1 -0
  544. data/assets/lib/mathjax-3.2.0/input/tex/extensions/extpfeil.js +1 -0
  545. data/assets/lib/mathjax-3.2.0/input/tex/extensions/gensymb.js +1 -0
  546. data/assets/lib/mathjax-3.2.0/input/tex/extensions/html.js +1 -0
  547. data/assets/lib/mathjax-3.2.0/input/tex/extensions/mathtools.js +1 -0
  548. data/assets/lib/mathjax-3.2.0/input/tex/extensions/mhchem.js +34 -0
  549. data/assets/lib/mathjax-3.2.0/input/tex/extensions/newcommand.js +1 -0
  550. data/assets/lib/mathjax-3.2.0/input/tex/extensions/noerrors.js +1 -0
  551. data/assets/lib/mathjax-3.2.0/input/tex/extensions/noundefined.js +1 -0
  552. data/assets/lib/mathjax-3.2.0/input/tex/extensions/physics.js +1 -0
  553. data/assets/lib/mathjax-3.2.0/input/tex/extensions/require.js +1 -0
  554. data/assets/lib/mathjax-3.2.0/input/tex/extensions/setoptions.js +1 -0
  555. data/assets/lib/mathjax-3.2.0/input/tex/extensions/tagformat.js +1 -0
  556. data/assets/lib/mathjax-3.2.0/input/tex/extensions/textcomp.js +1 -0
  557. data/assets/lib/mathjax-3.2.0/input/tex/extensions/textmacros.js +1 -0
  558. data/assets/lib/mathjax-3.2.0/input/tex/extensions/unicode.js +1 -0
  559. data/assets/lib/mathjax-3.2.0/input/tex/extensions/upgreek.js +1 -0
  560. data/assets/lib/mathjax-3.2.0/input/tex/extensions/verb.js +1 -0
  561. data/assets/lib/mathjax-3.2.0/input/tex-base.js +1 -0
  562. data/assets/lib/mathjax-3.2.0/input/tex-full.js +34 -0
  563. data/assets/lib/mathjax-3.2.0/input/tex.js +1 -0
  564. data/assets/lib/mathjax-3.2.0/latest.js +1 -0
  565. data/assets/lib/mathjax-3.2.0/loader.js +1 -0
  566. data/assets/lib/mathjax-3.2.0/mml-chtml.js +1 -0
  567. data/assets/lib/mathjax-3.2.0/mml-svg.js +1 -0
  568. data/assets/lib/mathjax-3.2.0/node-main.js +1 -0
  569. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/tex.js +1 -0
  570. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  571. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  572. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  573. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  574. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  575. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  576. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  577. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  578. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  579. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  580. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  581. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  582. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  583. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  584. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  585. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  586. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  587. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  588. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  589. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  590. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  591. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  592. data/assets/lib/mathjax-3.2.0/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  593. data/assets/lib/mathjax-3.2.0/output/chtml.js +1 -0
  594. data/assets/lib/mathjax-3.2.0/output/svg/fonts/tex.js +1 -0
  595. data/assets/lib/mathjax-3.2.0/output/svg.js +1 -0
  596. data/assets/lib/mathjax-3.2.0/sre/mathmaps/de.js +125 -0
  597. data/assets/lib/mathjax-3.2.0/sre/mathmaps/en.js +131 -0
  598. data/assets/lib/mathjax-3.2.0/sre/mathmaps/es.js +122 -0
  599. data/assets/lib/mathjax-3.2.0/sre/mathmaps/fr.js +125 -0
  600. data/assets/lib/mathjax-3.2.0/sre/mathmaps/hi.js +125 -0
  601. data/assets/lib/mathjax-3.2.0/sre/mathmaps/it.js +125 -0
  602. data/assets/lib/mathjax-3.2.0/sre/mathmaps/nemeth.js +113 -0
  603. data/assets/lib/mathjax-3.2.0/sre/sre-node.js +11 -0
  604. data/assets/lib/mathjax-3.2.0/sre/sre_browser.js +999 -0
  605. data/assets/lib/mathjax-3.2.0/startup.js +1 -0
  606. data/assets/lib/mathjax-3.2.0/tex-chtml-full.js +34 -0
  607. data/assets/lib/mathjax-3.2.0/tex-chtml.js +1 -0
  608. data/assets/lib/mathjax-3.2.0/tex-mml-chtml.js +1 -0
  609. data/assets/lib/mathjax-3.2.0/tex-mml-svg.js +1 -0
  610. data/assets/lib/mathjax-3.2.0/tex-svg-full.js +34 -0
  611. data/assets/lib/mathjax-3.2.0/tex-svg.js +1 -0
  612. data/assets/lib/mathjax-3.2.0/ui/lazy.js +1 -0
  613. data/assets/lib/mathjax-3.2.0/ui/menu.js +1 -0
  614. data/assets/lib/mathjax-3.2.0/ui/safe.js +1 -0
  615. data/assets/lib/mermaid-8.13.10/mermaid.min.js +3 -0
  616. data/assets/lib/mermaid-8.13.10/mermaid.min.js.map +1 -0
  617. data/assets/lib/polyfill-v3-es6/polyfill.min.js +100 -0
  618. data/assets/lib/simple-jekyll-search-1.10.0/simple-jekyll-search.min.js +6 -0
  619. data/src/404.html +3 -10
  620. data/src/favicon.ico +0 -0
  621. data/src/feed.xml +0 -0
  622. data/src/index.md +0 -0
  623. data/src/robots.txt +0 -0
  624. data/src/style/html.md +0 -0
  625. data/src/style/index.md +0 -0
  626. data/src/style/markdown.md +0 -0
  627. metadata +720 -123
  628. data/_includes/ga-site-tag.html +0 -8
  629. data/_includes/header-banner.html +0 -1
  630. data/_includes/header-wide.html +0 -1
  631. data/_includes/header.html +0 -1
  632. data/_includes/lang.html +0 -6
  633. data/_includes/mermaid.html +0 -1
  634. data/_javascript/common/back-to-top.js +0 -20
  635. data/_javascript/common/mode-toggle.js +0 -13
  636. data/_javascript/common/scroll-helper.js +0 -36
  637. data/_javascript/common/search-display.js +0 -129
  638. data/_javascript/common/sidebar.js +0 -30
  639. data/_javascript/common/tooltip-loader.js +0 -6
  640. data/_javascript/common/topbar-switcher.js +0 -90
  641. data/_javascript/common/topbar-title.js +0 -67
  642. data/_javascript/utils/category-collapse.js +0 -30
  643. data/_javascript/utils/checkbox.js +0 -12
  644. data/_javascript/utils/clipboard.js +0 -133
  645. data/_javascript/utils/img-extra.js +0 -47
  646. data/_javascript/utils/locale-datetime.js +0 -45
  647. data/_javascript/utils/pageviews.js +0 -250
  648. data/_javascript/utils/smooth-scroll.js +0 -96
  649. data/_sass/addon/common.scss +0 -1630
  650. data/_sass/addon/mixins.scss +0 -144
  651. data/_sass/addon/variables.scss +0 -31
  652. data/_sass/colors/brew-scheme.scss +0 -7
  653. data/_sass/colors/dark-scheme.scss +0 -21
  654. data/_sass/colors/dark-syntax.scss +0 -88
  655. data/_sass/colors/light-scheme.scss +0 -7
  656. data/_sass/layout/panel-none.scss +0 -146
@@ -0,0 +1 @@
1
+ !function(){"use strict";var t,e,o,i,r,n,l={589:function(t,e,o){var i,r=this&&this.__extends||(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),n=this&&this.__assign||function(){return(n=Object.assign||function(t){for(var e,o=1,i=arguments.length;o<i;o++)for(var r in e=arguments[o])Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t}).apply(this,arguments)},l=this&&this.__read||function(t,e){var o="function"==typeof Symbol&&t[Symbol.iterator];if(!o)return t;var i,r,n=o.call(t),l=[];try{for(;(void 0===e||e-- >0)&&!(i=n.next()).done;)l.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(o=n.return)&&o.call(n)}finally{if(r)throw r.error}}return l},s=this&&this.__spreadArray||function(t,e){for(var o=0,i=e.length,r=t.length;o<i;o++,r++)t[r]=e[o];return t},a=this&&this.__values||function(t){var e="function"==typeof Symbol&&Symbol.iterator,o=e&&t[e],i=0;if(o)return o.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&i>=t.length&&(t=void 0),{value:t&&t[i++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(e,"__esModule",{value:!0}),e.ComplexityHandler=e.ComplexityMathDocumentMixin=e.ComplexityMathItemMixin=void 0;var p=o(769),c=o(511),u=o(175),h=o(77);function y(t,e){return function(t){function o(){return null!==t&&t.apply(this,arguments)||this}return r(o,t),o.prototype.complexity=function(t,o){void 0===o&&(o=!1),this.state()>=p.STATE.COMPLEXITY||(this.isEscaped||!t.options.enableComplexity&&!o||(this.enrich(t,!0),e(this.root)),this.state(p.STATE.COMPLEXITY))},o}(t)}function d(t){var e;return(e=function(t){function e(){for(var e=[],o=0;o<arguments.length;o++)e[o]=arguments[o];var i=t.apply(this,s([],l(e)))||this,r=i.constructor.ProcessBits;r.has("complexity")||r.allocate("complexity");var n=h.selectOptionsFromKeys(i.options,i.options.ComplexityVisitor.OPTIONS);i.complexityVisitor=new i.options.ComplexityVisitor(i.mmlFactory,n);var a=function(t){return i.complexityVisitor.visitTree(t)};return i.options.MathItem=y(i.options.MathItem,a),i}return r(e,t),e.prototype.complexity=function(){var t,e;if(!this.processed.isSet("complexity")){if(this.options.enableComplexity)try{for(var o=a(this.math),i=o.next();!i.done;i=o.next()){i.value.complexity(this)}}catch(e){t={error:e}}finally{try{i&&!i.done&&(e=o.return)&&e.call(o)}finally{if(t)throw t.error}}this.processed.set("complexity")}return this},e.prototype.state=function(e,o){return void 0===o&&(o=!1),t.prototype.state.call(this,e,o),e<p.STATE.COMPLEXITY&&this.processed.clear("complexity"),this},e}(t)).OPTIONS=n(n(n({},t.OPTIONS),u.ComplexityVisitor.OPTIONS),{enableComplexity:!0,ComplexityVisitor:u.ComplexityVisitor,renderActions:h.expandable(n(n({},t.OPTIONS.renderActions),{complexity:[p.STATE.COMPLEXITY]}))}),e}p.newState("COMPLEXITY",40),e.ComplexityMathItemMixin=y,e.ComplexityMathDocumentMixin=d,e.ComplexityHandler=function(t,e){return void 0===e&&(e=null),!t.documentClass.prototype.enrich&&e&&(t=c.EnrichHandler(t,e)),t.documentClass=d(t.documentClass),t}},850:function(t,e){var o=this&&this.__values||function(t){var e="function"==typeof Symbol&&Symbol.iterator,o=e&&t[e],i=0;if(o)return o.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&i>=t.length&&(t=void 0),{value:t&&t[i++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(e,"__esModule",{value:!0}),e.Collapse=void 0;var i=function(){function t(e){var o=this;this.cutoff={identifier:3,number:3,text:10,infixop:15,relseq:15,multirel:15,fenced:18,bigop:20,integral:20,fraction:12,sqrt:9,root:12,vector:15,matrix:15,cases:15,superscript:9,subscript:9,subsup:9,punctuated:{endpunct:t.NOCOLLAPSE,startpunct:t.NOCOLLAPSE,value:12}},this.marker={identifier:"x",number:"#",text:"...",appl:{"limit function":"lim",value:"f()"},fraction:"/",sqrt:"\u221a",root:"\u221a",superscript:"\u25fd\u02d9",subscript:"\u25fd.",subsup:"\u25fd:",vector:{binomial:"(:)",determinant:"|:|",value:"\u27e8:\u27e9"},matrix:{squarematrix:"[::]",rowvector:"\u27e8\u22ef\u27e9",columnvector:"\u27e8\u22ee\u27e9",determinant:"|::|",value:"(::)"},cases:"{:",infixop:{addition:"+",subtraction:"\u2212",multiplication:"\u22c5",implicit:"\u22c5",value:"+"},punctuated:{text:"...",value:","}},this.collapse=new Map([["fenced",function(t,e){return(e=o.uncollapseChild(e,t,1))>o.cutoff.fenced&&"leftright"===t.attributes.get("data-semantic-role")&&(e=o.recordCollapse(t,e,o.getText(t.childNodes[0])+o.getText(t.childNodes[t.childNodes.length-1]))),e}],["appl",function(t,e){if(o.canUncollapse(t,2,2)){e=o.complexity.visitNode(t,!1);var i=o.marker.appl,r=i[t.attributes.get("data-semantic-role")]||i.value;e=o.recordCollapse(t,e,r)}return e}],["sqrt",function(t,e){return(e=o.uncollapseChild(e,t,0))>o.cutoff.sqrt&&(e=o.recordCollapse(t,e,o.marker.sqrt)),e}],["root",function(t,e){return(e=o.uncollapseChild(e,t,0,2))>o.cutoff.sqrt&&(e=o.recordCollapse(t,e,o.marker.sqrt)),e}],["enclose",function(t,e){if(1===o.splitAttribute(t,"children").length){var i=o.canUncollapse(t,1);if(i){var r=i.getProperty("collapse-marker");o.unrecordCollapse(i),e=o.recordCollapse(t,o.complexity.visitNode(t,!1),r)}}return e}],["bigop",function(t,e){if(e>o.cutoff.bigop||!t.isKind("mo")){var i=o.splitAttribute(t,"content").pop(),r=o.findChildText(t,i);e=o.recordCollapse(t,e,r)}return e}],["integral",function(t,e){if(e>o.cutoff.integral||!t.isKind("mo")){var i=o.splitAttribute(t,"content").pop(),r=o.findChildText(t,i);e=o.recordCollapse(t,e,r)}return e}],["relseq",function(t,e){if(e>o.cutoff.relseq){var i=o.splitAttribute(t,"content")[0],r=o.findChildText(t,i);e=o.recordCollapse(t,e,r)}return e}],["multirel",function(t,e){if(e>o.cutoff.relseq){var i=o.splitAttribute(t,"content")[0],r=o.findChildText(t,i)+"\u22ef";e=o.recordCollapse(t,e,r)}return e}],["superscript",function(t,e){return(e=o.uncollapseChild(e,t,0,2))>o.cutoff.superscript&&(e=o.recordCollapse(t,e,o.marker.superscript)),e}],["subscript",function(t,e){return(e=o.uncollapseChild(e,t,0,2))>o.cutoff.subscript&&(e=o.recordCollapse(t,e,o.marker.subscript)),e}],["subsup",function(t,e){return(e=o.uncollapseChild(e,t,0,3))>o.cutoff.subsup&&(e=o.recordCollapse(t,e,o.marker.subsup)),e}]]),this.idCount=0,this.complexity=e}return t.prototype.check=function(t,e){var o=t.attributes.get("data-semantic-type");return this.collapse.has(o)?this.collapse.get(o).call(this,t,e):this.cutoff.hasOwnProperty(o)?this.defaultCheck(t,e,o):e},t.prototype.defaultCheck=function(t,e,o){var i=t.attributes.get("data-semantic-role"),r=this.cutoff[o];if(e>("number"==typeof r?r:r[i]||r.value)){var n=this.marker[o]||"??",l="string"==typeof n?n:n[i]||n.value;e=this.recordCollapse(t,e,l)}return e},t.prototype.recordCollapse=function(t,e,o){return o="\u25c2"+o+"\u25b8",t.setProperty("collapse-marker",o),t.setProperty("collapse-complexity",e),o.length*this.complexity.complexity.text},t.prototype.unrecordCollapse=function(t){var e=t.getProperty("collapse-complexity");null!=e&&(t.attributes.set("data-semantic-complexity",e),t.removeProperty("collapse-complexity"),t.removeProperty("collapse-marker"))},t.prototype.canUncollapse=function(t,e,o){if(void 0===o&&(o=1),this.splitAttribute(t,"children").length===o){var i=1===t.childNodes.length&&t.childNodes[0].isInferred?t.childNodes[0]:t;if(i&&i.childNodes[e]){var r=i.childNodes[e];if(r.getProperty("collapse-marker"))return r}}return null},t.prototype.uncollapseChild=function(t,e,o,i){void 0===i&&(i=1);var r=this.canUncollapse(e,o,i);return r&&(this.unrecordCollapse(r),r.parent!==e&&r.parent.attributes.set("data-semantic-complexity",void 0),t=this.complexity.visitNode(e,!1)),t},t.prototype.splitAttribute=function(t,e){return(t.attributes.get("data-semantic-"+e)||"").split(/,/)},t.prototype.getText=function(t){var e=this;return t.isToken?t.getText():t.childNodes.map((function(t){return e.getText(t)})).join("")},t.prototype.findChildText=function(t,e){var o=this.findChild(t,e);return this.getText(o.coreMO()||o)},t.prototype.findChild=function(t,e){var i,r;if(!t||t.attributes.get("data-semantic-id")===e)return t;if(!t.isToken)try{for(var n=o(t.childNodes),l=n.next();!l.done;l=n.next()){var s=l.value,a=this.findChild(s,e);if(a)return a}}catch(t){i={error:t}}finally{try{l&&!l.done&&(r=n.return)&&r.call(n)}finally{if(i)throw i.error}}return null},t.prototype.makeCollapse=function(t){var e=[];t.walkTree((function(t){t.getProperty("collapse-marker")&&e.push(t)})),this.makeActions(e)},t.prototype.makeActions=function(t){var e,i;try{for(var r=o(t),n=r.next();!n.done;n=r.next()){var l=n.value;this.makeAction(l)}}catch(t){e={error:t}}finally{try{n&&!n.done&&(i=r.return)&&i.call(r)}finally{if(e)throw e.error}}},t.prototype.makeId=function(){return"mjx-collapse-"+this.idCount++},t.prototype.makeAction=function(t){t.isKind("math")&&(t=this.addMrow(t));var e=this.complexity.factory,o=t.getProperty("collapse-marker"),i=t.parent,r=e.create("maction",{actiontype:"toggle",selection:2,"data-collapsible":!0,id:this.makeId(),"data-semantic-complexity":t.attributes.get("data-semantic-complexity")},[e.create("mtext",{mathcolor:"blue"},[e.create("text").setText(o)])]);r.inheritAttributesFrom(t),t.attributes.set("data-semantic-complexity",t.getProperty("collapse-complexity")),t.removeProperty("collapse-marker"),t.removeProperty("collapse-complexity"),i.replaceChild(r,t),r.appendChild(t)},t.prototype.addMrow=function(t){var e,i,r=this.complexity.factory.create("mrow",null,t.childNodes[0].childNodes);t.childNodes[0].setChildren([r]);var n=t.attributes.getAllAttributes();try{for(var l=o(Object.keys(n)),s=l.next();!s.done;s=l.next()){var a=s.value;"data-semantic-"===a.substr(0,14)&&(r.attributes.set(a,n[a]),delete n[a])}}catch(t){e={error:t}}finally{try{s&&!s.done&&(i=l.return)&&i.call(l)}finally{if(e)throw e.error}}return r.setProperty("collapse-marker",t.getProperty("collapse-marker")),r.setProperty("collapse-complexity",t.getProperty("collapse-complexity")),t.removeProperty("collapse-marker"),t.removeProperty("collapse-complexity"),r},t.NOCOLLAPSE=1e7,t}();e.Collapse=i},175:function(t,e,o){var i,r=this&&this.__extends||(i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),n=this&&this.__values||function(t){var e="function"==typeof Symbol&&Symbol.iterator,o=e&&t[e],i=0;if(o)return o.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&i>=t.length&&(t=void 0),{value:t&&t[i++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(e,"__esModule",{value:!0}),e.ComplexityVisitor=void 0;var l=o(176),s=o(850),a=o(77),p=function(t){function e(e,o){var i=t.call(this,e)||this;i.complexity={text:.5,token:.5,child:1,script:.8,sqrt:2,subsup:2,underover:2,fraction:2,enclose:2,action:2,phantom:0,xml:2,glyph:2};var r=i.constructor;return i.options=a.userOptions(a.defaultOptions({},r.OPTIONS),o),i.collapse=new i.options.Collapse(i),i.factory=e,i}return r(e,t),e.prototype.visitTree=function(e){t.prototype.visitTree.call(this,e,!0),this.options.makeCollapsible&&this.collapse.makeCollapse(e)},e.prototype.visitNode=function(e,o){if(!e.attributes.get("data-semantic-complexity"))return t.prototype.visitNode.call(this,e,o)},e.prototype.visitDefault=function(t,e){var o;if(t.isToken){var i=t.getText();o=this.complexity.text*i.length+this.complexity.token}else o=this.childrenComplexity(t);return this.setComplexity(t,o,e)},e.prototype.visitMfracNode=function(t,e){var o=this.childrenComplexity(t)*this.complexity.script+this.complexity.fraction;return this.setComplexity(t,o,e)},e.prototype.visitMsqrtNode=function(t,e){var o=this.childrenComplexity(t)+this.complexity.sqrt;return this.setComplexity(t,o,e)},e.prototype.visitMrootNode=function(t,e){var o=this.childrenComplexity(t)+this.complexity.sqrt-(1-this.complexity.script)*this.getComplexity(t.childNodes[1]);return this.setComplexity(t,o,e)},e.prototype.visitMphantomNode=function(t,e){return this.setComplexity(t,this.complexity.phantom,e)},e.prototype.visitMsNode=function(t,e){var o=(t.attributes.get("lquote")+t.getText()+t.attributes.get("rquote")).length*this.complexity.text;return this.setComplexity(t,o,e)},e.prototype.visitMsubsupNode=function(e,o){t.prototype.visitDefault.call(this,e,!0);var i=e.childNodes[e.sub],r=e.childNodes[e.sup],n=e.childNodes[e.base],l=Math.max(i?this.getComplexity(i):0,r?this.getComplexity(r):0)*this.complexity.script;return l+=this.complexity.child*((i?1:0)+(r?1:0)),l+=n?this.getComplexity(n)+this.complexity.child:0,l+=this.complexity.subsup,this.setComplexity(e,l,o)},e.prototype.visitMsubNode=function(t,e){return this.visitMsubsupNode(t,e)},e.prototype.visitMsupNode=function(t,e){return this.visitMsubsupNode(t,e)},e.prototype.visitMunderoverNode=function(e,o){t.prototype.visitDefault.call(this,e,!0);var i=e.childNodes[e.under],r=e.childNodes[e.over],n=e.childNodes[e.base],l=Math.max(i?this.getComplexity(i):0,r?this.getComplexity(r):0)*this.complexity.script;return n&&(l=Math.max(this.getComplexity(n),l)),l+=this.complexity.child*((i?1:0)+(r?1:0)+(n?1:0)),l+=this.complexity.underover,this.setComplexity(e,l,o)},e.prototype.visitMunderNode=function(t,e){return this.visitMunderoverNode(t,e)},e.prototype.visitMoverNode=function(t,e){return this.visitMunderoverNode(t,e)},e.prototype.visitMencloseNode=function(t,e){var o=this.childrenComplexity(t)+this.complexity.enclose;return this.setComplexity(t,o,e)},e.prototype.visitMactionNode=function(t,e){this.childrenComplexity(t);var o=this.getComplexity(t.selected);return this.setComplexity(t,o,e)},e.prototype.visitMsemanticsNode=function(t,e){var o=t.childNodes[0],i=0;return o&&(this.visitNode(o,!0),i=this.getComplexity(o)),this.setComplexity(t,i,e)},e.prototype.visitAnnotationNode=function(t,e){return this.setComplexity(t,this.complexity.xml,e)},e.prototype.visitAnnotation_xmlNode=function(t,e){return this.setComplexity(t,this.complexity.xml,e)},e.prototype.visitMglyphNode=function(t,e){return this.setComplexity(t,this.complexity.glyph,e)},e.prototype.getComplexity=function(t){var e=t.getProperty("collapsedComplexity");return null!=e?e:t.attributes.get("data-semantic-complexity")},e.prototype.setComplexity=function(t,e,o){return o&&(this.options.identifyCollapsible&&(e=this.collapse.check(t,e)),t.attributes.set("data-semantic-complexity",e)),e},e.prototype.childrenComplexity=function(e){var o,i;t.prototype.visitDefault.call(this,e,!0);var r=0;try{for(var l=n(e.childNodes),s=l.next();!s.done;s=l.next()){var a=s.value;r+=this.getComplexity(a)}}catch(t){o={error:t}}finally{try{s&&!s.done&&(i=l.return)&&i.call(l)}finally{if(o)throw o.error}}return e.childNodes.length>1&&(r+=e.childNodes.length*this.complexity.child),r},e.OPTIONS={identifyCollapsible:!0,makeCollapsible:!0,Collapse:s.Collapse},e}(l.MmlVisitor);e.ComplexityVisitor=p},511:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.EnrichedMathItemMixin=MathJax._.a11y["semantic-enrich"].EnrichedMathItemMixin,e.EnrichedMathDocumentMixin=MathJax._.a11y["semantic-enrich"].EnrichedMathDocumentMixin,e.EnrichHandler=MathJax._.a11y["semantic-enrich"].EnrichHandler},961:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.sreReady=MathJax._.a11y.sre.sreReady},723:function(t,e){MathJax._.components.global.isObject,MathJax._.components.global.combineConfig,e.PV=MathJax._.components.global.combineDefaults,e.r8=MathJax._.components.global.combineWithMathJax,MathJax._.components.global.MathJax},769:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.protoItem=MathJax._.core.MathItem.protoItem,e.AbstractMathItem=MathJax._.core.MathItem.AbstractMathItem,e.STATE=MathJax._.core.MathItem.STATE,e.newState=MathJax._.core.MathItem.newState},176:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.MmlVisitor=MathJax._.core.MmlTree.MmlVisitor.MmlVisitor},77:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.isObject=MathJax._.util.Options.isObject,e.APPEND=MathJax._.util.Options.APPEND,e.REMOVE=MathJax._.util.Options.REMOVE,e.OPTIONS=MathJax._.util.Options.OPTIONS,e.Expandable=MathJax._.util.Options.Expandable,e.expandable=MathJax._.util.Options.expandable,e.makeArray=MathJax._.util.Options.makeArray,e.keys=MathJax._.util.Options.keys,e.copy=MathJax._.util.Options.copy,e.insert=MathJax._.util.Options.insert,e.defaultOptions=MathJax._.util.Options.defaultOptions,e.userOptions=MathJax._.util.Options.userOptions,e.selectOptions=MathJax._.util.Options.selectOptions,e.selectOptionsFromKeys=MathJax._.util.Options.selectOptionsFromKeys,e.separateOptions=MathJax._.util.Options.separateOptions,e.lookup=MathJax._.util.Options.lookup}},s={};function a(t){var e=s[t];if(void 0!==e)return e.exports;var o=s[t]={exports:{}};return l[t].call(o.exports,o,o.exports,a),o.exports}t=a(723),e=a(589),o=a(850),i=a(175),r=a(511),n=a(961),(0,t.r8)({_:{a11y:{complexity_ts:e,complexity:{collapse:o,visitor:i},"semantic-enrich":r,sre:n}}}),MathJax.startup&&(MathJax.startup.extendHandler((function(t){return(0,e.ComplexityHandler)(t)})),(0,t.PV)(MathJax.config,"options",MathJax.config["a11y/complexity"]||{}))}();
@@ -0,0 +1 @@
1
+ !function(){"use strict";var t={18:function(t,e,o){var r,n=this&&this.__extends||(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__assign||function(){return(i=Object.assign||function(t){for(var e,o=1,r=arguments.length;o<r;o++)for(var n in e=arguments[o])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t}).apply(this,arguments)},a=this&&this.__values||function(t){var e="function"==typeof Symbol&&Symbol.iterator,o=e&&t[e],r=0;if(o)return o.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")},s=this&&this.__read||function(t,e){var o="function"==typeof Symbol&&t[Symbol.iterator];if(!o)return t;var r,n,i=o.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(t){n={error:t}}finally{try{r&&!r.done&&(o=i.return)&&o.call(i)}finally{if(n)throw n.error}}return a},l=this&&this.__spreadArray||function(t,e){for(var o=0,r=e.length,n=t.length;o<r;o++,n++)t[n]=e[o];return t};Object.defineProperty(e,"__esModule",{value:!0}),e.setA11yOption=e.setA11yOptions=e.ExplorerHandler=e.ExplorerMathDocumentMixin=e.ExplorerMathItemMixin=void 0;var h=o(769),c=o(511),p=o(77),u=o(433),d=o(850),f=o(269),y=o(85),v=o(854),g=o(367);function m(t,e){return function(t){function o(){var e=null!==t&&t.apply(this,arguments)||this;return e.explorers={},e.attached=[],e.restart=[],e.refocus=!1,e.savedId=null,e}return n(o,t),o.prototype.explorable=function(t,o){if(void 0===o&&(o=!1),!(this.state()>=h.STATE.EXPLORER)){if(!this.isEscaped&&(t.options.enableExplorer||o)){var r=this.typesetRoot,n=e(this.root);this.savedId&&(this.typesetRoot.setAttribute("sre-explorer-id",this.savedId),this.savedId=null),this.explorers=function(t,e,o){var r,n,i={};try{for(var s=a(Object.keys(_)),l=s.next();!l.done;l=s.next()){var h=l.value;i[h]=_[h](t,e,o)}}catch(t){r={error:t}}finally{try{l&&!l.done&&(n=s.return)&&n.call(s)}finally{if(r)throw r.error}}return i}(t,r,n),this.attachExplorers(t)}this.state(h.STATE.EXPLORER)}},o.prototype.attachExplorers=function(t){var e,o,r,n;this.attached=[];var i=[];try{for(var s=a(Object.keys(this.explorers)),l=s.next();!l.done;l=s.next()){var h=l.value;(u=this.explorers[h])instanceof f.AbstractKeyExplorer&&(u.AddEvents(),u.stoppable=!1,i.unshift(u)),t.options.a11y[h]?(u.Attach(),this.attached.push(h)):u.Detach()}}catch(t){e={error:t}}finally{try{l&&!l.done&&(o=s.return)&&o.call(s)}finally{if(e)throw e.error}}try{for(var c=a(i),p=c.next();!p.done;p=c.next()){var u;if((u=p.value).attached){u.stoppable=!0;break}}}catch(t){r={error:t}}finally{try{p&&!p.done&&(n=c.return)&&n.call(c)}finally{if(r)throw r.error}}},o.prototype.rerender=function(e,o){var r,n;void 0===o&&(o=h.STATE.RERENDER),this.savedId=this.typesetRoot.getAttribute("sre-explorer-id"),this.refocus=window.document.activeElement===this.typesetRoot;try{for(var i=a(this.attached),s=i.next();!s.done;s=i.next()){var l=s.value,c=this.explorers[l];c.active&&(this.restart.push(l),c.Stop())}}catch(t){r={error:t}}finally{try{s&&!s.done&&(n=i.return)&&n.call(i)}finally{if(r)throw r.error}}t.prototype.rerender.call(this,e,o)},o.prototype.updateDocument=function(e){var o=this;t.prototype.updateDocument.call(this,e),this.refocus&&this.typesetRoot.focus(),this.restart.forEach((function(t){return o.explorers[t].Start()})),this.restart=[],this.refocus=!1},o}(t)}function x(t){var e;return(e=function(t){function e(){for(var e=[],o=0;o<arguments.length;o++)e[o]=arguments[o];var r=t.apply(this,l([],s(e)))||this,n=r.constructor.ProcessBits;n.has("explorer")||n.allocate("explorer");var i=new u.SerializedMmlVisitor(r.mmlFactory),a=function(t){return i.visitTree(t)};return r.options.MathItem=m(r.options.MathItem,a),r.explorerRegions=b(r),r}return n(e,t),e.prototype.explorable=function(){var t,e;if(!this.processed.isSet("explorer")){if(this.options.enableExplorer)try{for(var o=a(this.math),r=o.next();!r.done;r=o.next()){r.value.explorable(this)}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=o.return)&&e.call(o)}finally{if(t)throw t.error}}this.processed.set("explorer")}return this},e.prototype.state=function(e,o){return void 0===o&&(o=!1),t.prototype.state.call(this,e,o),e<h.STATE.EXPLORER&&this.processed.clear("explorer"),this},e}(t)).OPTIONS=i(i({},t.OPTIONS),{enableExplorer:!0,renderActions:p.expandable(i(i({},t.OPTIONS.renderActions),{explorable:[h.STATE.EXPLORER]})),sre:p.expandable(i(i({},t.OPTIONS.sre),{speech:"shallow"})),a11y:{align:"top",backgroundColor:"Blue",backgroundOpacity:20,braille:!1,flame:!1,foregroundColor:"Black",foregroundOpacity:100,highlight:"None",hover:!1,infoPrefix:!1,infoRole:!1,infoType:!1,keyMagnifier:!1,magnification:"None",magnify:"400%",mouseMagnifier:!1,speech:!0,subtitles:!0,treeColoring:!1,viewBraille:!1}}),e}function b(t){return{speechRegion:new g.LiveRegion(t),brailleRegion:new g.LiveRegion(t),magnifier:new g.HoverRegion(t),tooltip1:new g.ToolTip(t),tooltip2:new g.ToolTip(t),tooltip3:new g.ToolTip(t)}}h.newState("EXPLORER",160),e.ExplorerMathItemMixin=m,e.ExplorerMathDocumentMixin=x,e.ExplorerHandler=function(t,e){return void 0===e&&(e=null),!t.documentClass.prototype.enrich&&e&&(t=c.EnrichHandler(t,e)),t.documentClass=x(t.documentClass),t};var _={speech:function(t,e){for(var o,r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var i=(o=f.SpeechExplorer).create.apply(o,l([t,t.explorerRegions.speechRegion,e],s(r)));return i.speechGenerator.setOptions({locale:t.options.sre.locale,domain:t.options.sre.domain,style:t.options.sre.style,modality:"speech",cache:!1}),i.showRegion="subtitles",i},braille:function(t,e){for(var o,r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];var i=(o=f.SpeechExplorer).create.apply(o,l([t,t.explorerRegions.brailleRegion,e],s(r)));return i.speechGenerator.setOptions({locale:"nemeth",domain:"default",style:"default",modality:"braille"}),i.showRegion="viewBraille",i},keyMagnifier:function(t,e){for(var o,r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];return(o=f.Magnifier).create.apply(o,l([t,t.explorerRegions.magnifier,e],s(r)))},mouseMagnifier:function(t,e){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];return y.ContentHoverer.create(t,t.explorerRegions.magnifier,e,(function(t){return t.hasAttribute("data-semantic-type")}),(function(t){return t}))},hover:function(t,e){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];return y.FlameHoverer.create(t,null,e)},infoType:function(t,e){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];return y.ValueHoverer.create(t,t.explorerRegions.tooltip1,e,(function(t){return t.hasAttribute("data-semantic-type")}),(function(t){return t.getAttribute("data-semantic-type")}))},infoRole:function(t,e){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];return y.ValueHoverer.create(t,t.explorerRegions.tooltip2,e,(function(t){return t.hasAttribute("data-semantic-role")}),(function(t){return t.getAttribute("data-semantic-role")}))},infoPrefix:function(t,e){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];return y.ValueHoverer.create(t,t.explorerRegions.tooltip3,e,(function(t){return t.hasAttribute("data-semantic-prefix")}),(function(t){return t.getAttribute("data-semantic-prefix")}))},flame:function(t,e){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];return v.FlameColorer.create(t,null,e)},treeColoring:function(t,e){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];return v.TreeColorer.create.apply(v.TreeColorer,l([t,null,e],s(o)))}};function M(t,e,o){switch(e){case"magnification":switch(o){case"None":t.options.a11y.magnification=o,t.options.a11y.keyMagnifier=!1,t.options.a11y.mouseMagnifier=!1;break;case"Keyboard":t.options.a11y.magnification=o,t.options.a11y.keyMagnifier=!0,t.options.a11y.mouseMagnifier=!1;break;case"Mouse":t.options.a11y.magnification=o,t.options.a11y.keyMagnifier=!1,t.options.a11y.mouseMagnifier=!0}break;case"highlight":switch(o){case"None":t.options.a11y.highlight=o,t.options.a11y.hover=!1,t.options.a11y.flame=!1;break;case"Hover":t.options.a11y.highlight=o,t.options.a11y.hover=!0,t.options.a11y.flame=!1;break;case"Flame":t.options.a11y.highlight=o,t.options.a11y.hover=!1,t.options.a11y.flame=!0}break;default:t.options.a11y[e]=o}}e.setA11yOptions=function(t,e){var o,r,n=SRE.engineSetup();for(var i in e)void 0===t.options.a11y[i]?void 0!==n[i]&&(t.options.sre[i]=e[i]):(M(t,i,e[i]),"locale"===i&&(t.options.sre[i]=e[i]));try{for(var s=a(t.math),l=s.next();!l.done;l=s.next()){l.value.attachExplorers(t)}}catch(t){o={error:t}}finally{try{l&&!l.done&&(r=s.return)&&r.call(s)}finally{if(o)throw o.error}}},e.setA11yOption=M;var w={},S=function(t,e){var o,r,n=sre.ClearspeakPreferences.getLocalePreferences()[e];if(!n){var i=t.findID("Accessibility","Speech","Clearspeak");return i&&i.disable(),null}!function(t,e){var o,r,n=t.pool.lookup("speechRules"),i=function(e){if(w[e])return"continue";t.factory.get("variable")(t.factory,{name:"csprf_"+e,setter:function(t){w[e]=t,n.setValue("clearspeak-"+sre.ClearspeakPreferences.addPreference(sre.Engine.DOMAIN_TO_STYLES.clearspeak,e,t))},getter:function(){return w[e]||"Auto"}},t.pool)};try{for(var s=a(e),l=s.next();!l.done;l=s.next())i(l.value)}catch(t){o={error:t}}finally{try{l&&!l.done&&(r=s.return)&&r.call(s)}finally{if(o)throw o.error}}}(t,Object.keys(n));var s=[],l=function(t){s.push({title:t,values:n[t].map((function(e){return e.replace(RegExp("^"+t+"_"),"")})),variable:"csprf_"+t})};try{for(var h=a(Object.getOwnPropertyNames(n)),c=h.next();!c.done;c=h.next()){l(c.value)}}catch(t){o={error:t}}finally{try{c&&!c.done&&(r=h.return)&&r.call(h)}finally{if(o)throw o.error}}var p=t.factory.get("selectionBox")(t.factory,{title:"Clearspeak Preferences",signature:"",order:"alphabetic",grid:"square",selections:s},t);return{type:"command",id:"ClearspeakPreferences",content:"Select Preferences",action:function(){return p.post(0,0)}}};d.MJContextMenu.DynamicSubmenus.set("Clearspeak",(function(t,e){var o=t.pool.lookup("locale").getValue(),r=S(t,o),n=[];try{n=sre.ClearspeakPreferences.smartPreferences(t.mathItem,o)}catch(t){}return r&&n.splice(2,0,r),t.factory.get("subMenu")(t.factory,{items:n,id:"Clearspeak"},e)}));var O={de:"German",en:"English",es:"Spanish",fr:"French",hi:"Hindi",it:"Italian"};d.MJContextMenu.DynamicSubmenus.set("A11yLanguage",(function(t,e){var o,r,n=[];try{for(var i=a(sre.Variables.LOCALES),s=i.next();!s.done;s=i.next()){var l=s.value;"nemeth"!==l&&n.push({type:"radio",id:l,content:O[l]||l,variable:"locale"})}}catch(t){o={error:t}}finally{try{s&&!s.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return n.sort((function(t,e){return t.content.localeCompare(e.content,"en")})),t.factory.get("subMenu")(t.factory,{items:n,id:"Language"},e)}))},724:function(t,e,o){var r=this&&this.__read||function(t,e){var o="function"==typeof Symbol&&t[Symbol.iterator];if(!o)return t;var r,n,i=o.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(t){n={error:t}}finally{try{r&&!r.done&&(o=i.return)&&o.call(i)}finally{if(n)throw n.error}}return a},n=this&&this.__spreadArray||function(t,e){for(var o=0,r=e.length,n=t.length;o<r;o++,n++)t[n]=e[o];return t},i=this&&this.__values||function(t){var e="function"==typeof Symbol&&Symbol.iterator,o=e&&t[e],r=0;if(o)return o.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractExplorer=void 0,o(961);var a=function(){function t(t,e,o){for(var r=[],n=3;n<arguments.length;n++)r[n-3]=arguments[n];this.document=t,this.region=e,this.node=o,this.stoppable=!0,this.events=[],this.highlighter=this.getHighlighter(),this._active=!1}return t.stopEvent=function(t){t.preventDefault?t.preventDefault():t.returnValue=!1,t.stopImmediatePropagation?t.stopImmediatePropagation():t.stopPropagation&&t.stopPropagation(),t.cancelBubble=!0},t.create=function(t,e,o){for(var i=[],a=3;a<arguments.length;a++)i[a-3]=arguments[a];var s=new(this.bind.apply(this,n([void 0,t,e,o],r(i))));return s},t.prototype.Events=function(){return this.events},Object.defineProperty(t.prototype,"active",{get:function(){return this._active},set:function(t){this._active=t},enumerable:!1,configurable:!0}),t.prototype.Attach=function(){this.AddEvents()},t.prototype.Detach=function(){this.RemoveEvents()},t.prototype.Start=function(){this.highlighter=this.getHighlighter(),this.active=!0},t.prototype.Stop=function(){this.active&&(this.region.Clear(),this.region.Hide(),this.active=!1)},t.prototype.AddEvents=function(){var t,e;try{for(var o=i(this.events),n=o.next();!n.done;n=o.next()){var a=r(n.value,2),s=a[0],l=a[1];this.node.addEventListener(s,l)}}catch(e){t={error:e}}finally{try{n&&!n.done&&(e=o.return)&&e.call(o)}finally{if(t)throw t.error}}},t.prototype.RemoveEvents=function(){var t,e;try{for(var o=i(this.events),n=o.next();!n.done;n=o.next()){var a=r(n.value,2),s=a[0],l=a[1];this.node.removeEventListener(s,l)}}catch(e){t={error:e}}finally{try{n&&!n.done&&(e=o.return)&&e.call(o)}finally{if(t)throw t.error}}},t.prototype.Update=function(t){void 0===t&&(t=!1)},t.prototype.getHighlighter=function(){var t=this.document.options.a11y,e={color:t.foregroundColor.toLowerCase(),alpha:t.foregroundOpacity/100},o={color:t.backgroundColor.toLowerCase(),alpha:t.backgroundOpacity/100};return sre.HighlighterFactory.highlighter(o,e,{renderer:this.document.outputJax.name,browser:"v3"})},t.prototype.stopEvent=function(e){this.stoppable&&t.stopEvent(e)},t}();e.AbstractExplorer=a},269:function(t,e,o){var r,n=this&&this.__extends||(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.Magnifier=e.SpeechExplorer=e.AbstractKeyExplorer=void 0;var i=o(724),a=o(961),s=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.attached=!1,e.eventsAttached=!1,e.events=t.prototype.Events.call(e).concat([["keydown",e.KeyDown.bind(e)],["focusin",e.FocusIn.bind(e)],["focusout",e.FocusOut.bind(e)]]),e.oldIndex=null,e}return n(e,t),e.prototype.FocusIn=function(t){},e.prototype.FocusOut=function(t){this.Stop()},e.prototype.Update=function(t){if(void 0===t&&(t=!1),this.active||t){this.highlighter.unhighlight();var e=this.walker.getFocus(!0).getNodes();e.length||(this.walker.refocus(),e=this.walker.getFocus().getNodes()),this.highlighter.highlight(e)}},e.prototype.Attach=function(){t.prototype.Attach.call(this),this.attached=!0,this.oldIndex=this.node.tabIndex,this.node.tabIndex=1,this.node.setAttribute("role","application")},e.prototype.AddEvents=function(){this.eventsAttached||(t.prototype.AddEvents.call(this),this.eventsAttached=!0)},e.prototype.Detach=function(){this.active&&(this.node.tabIndex=this.oldIndex,this.oldIndex=null,this.node.removeAttribute("role")),this.attached=!1},e.prototype.Stop=function(){this.active&&(this.highlighter.unhighlight(),this.walker.deactivate()),t.prototype.Stop.call(this)},e}(i.AbstractExplorer);e.AbstractKeyExplorer=s;var l=function(t){function e(e,o,r,n){var i=t.call(this,e,o,r)||this;return i.document=e,i.region=o,i.node=r,i.mml=n,i.showRegion="subtitles",i.init=!1,i.restarted=!1,i.initWalker(),i}return n(e,t),e.prototype.Start=function(){var e=this;if(this.attached){var o=this.getOptions();if(!this.init)return this.init=!0,void a.sreReady().then((function(){SRE.engineSetup().locale!==o.locale&&SRE.setupEngine({locale:o.locale}),a.sreReady().then((function(){e.Speech(e.walker),e.Start()}))})).catch((function(t){return console.log(t.message)}));t.prototype.Start.call(this),this.speechGenerator=sre.SpeechGeneratorFactory.generator("Direct"),this.speechGenerator.setOptions(o),this.walker=sre.WalkerFactory.walker("table",this.node,this.speechGenerator,this.highlighter,this.mml),this.walker.activate(),this.Update(),this.document.options.a11y[this.showRegion]&&this.region.Show(this.node,this.highlighter),this.restarted=!0}},e.prototype.Update=function(e){void 0===e&&(e=!1),t.prototype.Update.call(this,e);var o=this.speechGenerator.getOptions();SRE.setupEngine({modality:o.modality,locale:o.locale}),this.region.Update(this.walker.speech()),"speech"===o.modality&&(this.document.options.sre.domain=o.domain,this.document.options.sre.style=o.style,this.document.options.a11y.speechRules=o.domain+"-"+o.style)},e.prototype.Speech=function(t){t.speech(),this.node.setAttribute("hasspeech","true"),this.Update(),this.restarted&&this.document.options.a11y[this.showRegion]&&this.region.Show(this.node,this.highlighter)},e.prototype.KeyDown=function(t){var e=t.keyCode;if(this.walker.modifier=t.shiftKey,27===e)return this.Stop(),void this.stopEvent(t);if(this.active){if(this.Move(e),this.triggerLink(e))return;this.stopEvent(t)}else(32===e&&t.shiftKey||13===e)&&(this.Start(),this.stopEvent(t))},e.prototype.triggerLink=function(t){var e,o;if(13!==t)return!1;var r=null===(e=this.walker.getFocus().getNodes())||void 0===e?void 0:e[0];return!!(null===(o=null==r?void 0:r.getAttribute("data-semantic-postfix"))||void 0===o?void 0:o.match(/(^| )link($| )/))&&(r.parentNode.dispatchEvent(new MouseEvent("click")),!0)},e.prototype.Move=function(t){this.walker.move(t),this.Update()},e.prototype.initWalker=function(){this.speechGenerator=sre.SpeechGeneratorFactory.generator("Tree");var t=sre.WalkerFactory.walker("dummy",this.node,this.speechGenerator,this.highlighter,this.mml);this.walker=t},e.prototype.getOptions=function(){var t=this.speechGenerator.getOptions(),e=this.document.options.sre;return"speech"!==t.modality||t.locale===e.locale&&t.domain===e.domain&&t.style===e.style||(t.domain=e.domain,t.style=e.style,t.locale=e.locale,this.walker.update(t)),t},e}(s);e.SpeechExplorer=l;var h=function(t){function e(e,o,r,n){var i=t.call(this,e,o,r)||this;return i.document=e,i.region=o,i.node=r,i.mml=n,i.walker=sre.WalkerFactory.walker("table",i.node,sre.SpeechGeneratorFactory.generator("Dummy"),i.highlighter,i.mml),i}return n(e,t),e.prototype.Update=function(e){void 0===e&&(e=!1),t.prototype.Update.call(this,e),this.showFocus()},e.prototype.Start=function(){t.prototype.Start.call(this),this.attached&&(this.region.Show(this.node,this.highlighter),this.walker.activate(),this.Update())},e.prototype.showFocus=function(){var t=this.walker.getFocus().getNodes()[0];this.region.Show(t,this.highlighter)},e.prototype.Move=function(t){this.walker.move(t)&&this.Update()},e.prototype.KeyDown=function(t){var e=t.keyCode;return this.walker.modifier=t.shiftKey,27===e?(this.Stop(),void this.stopEvent(t)):this.active&&13!==e?(this.Move(e),void this.stopEvent(t)):void((32===e&&t.shiftKey||13===e)&&(this.Start(),this.stopEvent(t)))},e}(s);e.Magnifier=h},85:function(t,e,o){var r,n=this&&this.__extends||(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),i=this&&this.__read||function(t,e){var o="function"==typeof Symbol&&t[Symbol.iterator];if(!o)return t;var r,n,i=o.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(t){n={error:t}}finally{try{r&&!r.done&&(o=i.return)&&o.call(i)}finally{if(n)throw n.error}}return a};Object.defineProperty(e,"__esModule",{value:!0}),e.FlameHoverer=e.ContentHoverer=e.ValueHoverer=e.Hoverer=e.AbstractMouseExplorer=void 0;var a=o(367),s=o(724);o(961);var l=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.events=t.prototype.Events.call(e).concat([["mouseover",e.MouseOver.bind(e)],["mouseout",e.MouseOut.bind(e)]]),e}return n(e,t),e.prototype.MouseOver=function(t){this.Start()},e.prototype.MouseOut=function(t){this.Stop()},e}(s.AbstractExplorer);e.AbstractMouseExplorer=l;var h=function(t){function e(e,o,r,n,i){var a=t.call(this,e,o,r)||this;return a.document=e,a.region=o,a.node=r,a.nodeQuery=n,a.nodeAccess=i,a}return n(e,t),e.prototype.MouseOut=function(e){e.clientX===this.coord[0]&&e.clientY===this.coord[1]||(this.highlighter.unhighlight(),this.region.Hide(),t.prototype.MouseOut.call(this,e))},e.prototype.MouseOver=function(e){t.prototype.MouseOver.call(this,e);var o=e.target;this.coord=[e.clientX,e.clientY];var r=i(this.getNode(o),2),n=r[0],a=r[1];n&&(this.highlighter.unhighlight(),this.highlighter.highlight([n]),this.region.Update(a),this.region.Show(n,this.highlighter))},e.prototype.getNode=function(t){for(var e=t;t&&t!==this.node;){if(this.nodeQuery(t))return[t,this.nodeAccess(t)];t=t.parentNode}for(t=e;t;){if(this.nodeQuery(t))return[t,this.nodeAccess(t)];var o=t.childNodes[0];t=o&&"defs"===o.tagName?t.childNodes[1]:o}return[null,null]},e}(l);e.Hoverer=h;var c=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e}(h);e.ValueHoverer=c;var p=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e}(h);e.ContentHoverer=p;var u=function(t){function e(e,o,r){var n=t.call(this,e,new a.DummyRegion(e),r,(function(t){return n.highlighter.isMactionNode(t)}),(function(){}))||this;return n.document=e,n.node=r,n}return n(e,t),e}(h);e.FlameHoverer=u},367:function(t,e,o){var r,n,i,a,s=this&&this.__extends||(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.HoverRegion=e.LiveRegion=e.ToolTip=e.StringRegion=e.DummyRegion=e.AbstractRegion=void 0;var l=o(888);o(961);var h=function(){function t(t){this.document=t,this.CLASS=this.constructor,this.AddStyles(),this.AddElement()}return t.prototype.AddStyles=function(){if(!this.CLASS.styleAdded){var t=this.document.adaptor.node("style");t.innerHTML=this.CLASS.style.cssText,this.document.adaptor.head(this.document.adaptor.document).appendChild(t),this.CLASS.styleAdded=!0}},t.prototype.AddElement=function(){var t=this.document.adaptor.node("div");t.classList.add(this.CLASS.className),t.style.backgroundColor="white",this.div=t,this.inner=this.document.adaptor.node("div"),this.div.appendChild(this.inner),this.document.adaptor.body(this.document.adaptor.document).appendChild(this.div)},t.prototype.Show=function(t,e){this.position(t),this.highlight(e),this.div.classList.add(this.CLASS.className+"_Show")},t.prototype.Hide=function(){this.div.classList.remove(this.CLASS.className+"_Show")},t.prototype.stackRegions=function(t){for(var e=t.getBoundingClientRect(),o=0,r=Number.POSITIVE_INFINITY,n=this.document.adaptor.document.getElementsByClassName(this.CLASS.className+"_Show"),i=0,a=void 0;a=n[i];i++)a!==this.div&&(o=Math.max(a.getBoundingClientRect().bottom,o),r=Math.min(a.getBoundingClientRect().left,r));var s=(o||e.bottom+10)+window.pageYOffset,l=(r<Number.POSITIVE_INFINITY?r:e.left)+window.pageXOffset;this.div.style.top=s+"px",this.div.style.left=l+"px"},t.styleAdded=!1,t}();e.AbstractRegion=h;var c=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return s(e,t),e.prototype.Clear=function(){},e.prototype.Update=function(){},e.prototype.Hide=function(){},e.prototype.Show=function(){},e.prototype.AddElement=function(){},e.prototype.AddStyles=function(){},e.prototype.position=function(){},e.prototype.highlight=function(t){},e}(h);e.DummyRegion=c;var p=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return s(e,t),e.prototype.Clear=function(){this.Update(""),this.inner.style.top="",this.inner.style.backgroundColor=""},e.prototype.Update=function(t){this.inner.textContent="",this.inner.textContent=t},e.prototype.position=function(t){this.stackRegions(t)},e.prototype.highlight=function(t){var e=t.colorString();this.inner.style.backgroundColor=e.background,this.inner.style.color=e.foreground},e}(h);e.StringRegion=p;var u=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return s(e,t),e.className="MJX_ToolTip",e.style=new l.CssStyles(((n={})["."+e.className]={position:"absolute",display:"inline-block",height:"1px",width:"1px"},n["."+e.className+"_Show"]={width:"auto",height:"auto",opacity:1,"text-align":"center","border-radius":"6px",padding:"0px 0px","border-bottom":"1px dotted black",position:"absolute","z-index":202},n)),e}(p);e.ToolTip=u;var d=function(t){function e(e){var o=t.call(this,e)||this;return o.document=e,o.div.setAttribute("aria-live","assertive"),o}return s(e,t),e.className="MJX_LiveRegion",e.style=new l.CssStyles(((i={})["."+e.className]={position:"absolute",top:"0",height:"1px",width:"1px",padding:"1px",overflow:"hidden"},i["."+e.className+"_Show"]={top:"0",position:"absolute",width:"auto",height:"auto",padding:"0px 0px",opacity:1,"z-index":"202",left:0,right:0,margin:"0 auto","background-color":"rgba(0, 0, 255, 0.2)","box-shadow":"0px 10px 20px #888",border:"2px solid #CCCCCC"},i)),e}(p);e.LiveRegion=d;var f=function(t){function e(e){var o=t.call(this,e)||this;return o.document=e,o.inner.style.lineHeight="0",o}return s(e,t),e.prototype.position=function(t){var e,o=t.getBoundingClientRect(),r=this.div.getBoundingClientRect(),n=o.left+o.width/2-r.width/2;switch(n=n<0?0:n,n+=window.pageXOffset,this.document.options.a11y.align){case"top":e=o.top-r.height-10;break;case"bottom":e=o.bottom+10;break;case"center":default:e=o.top+o.height/2-r.height/2}e=(e+=window.pageYOffset)<0?0:e,this.div.style.top=e+"px",this.div.style.left=n+"px"},e.prototype.highlight=function(t){if(!this.inner.firstChild||this.inner.firstChild.hasAttribute("sre-highlight")){var e=t.colorString();this.inner.style.backgroundColor=e.background,this.inner.style.color=e.foreground}},e.prototype.Show=function(e,o){this.div.style.fontSize=this.document.options.a11y.magnify,this.Update(e),t.prototype.Show.call(this,e,o)},e.prototype.Clear=function(){this.inner.textContent="",this.inner.style.top="",this.inner.style.backgroundColor=""},e.prototype.Update=function(t){this.Clear();var e=this.cloneNode(t);this.inner.appendChild(e)},e.prototype.cloneNode=function(t){var e=t.cloneNode(!0);if("MJX-CONTAINER"!==e.nodeName){"g"!==e.nodeName&&(e.style.marginLeft=e.style.marginRight="0");for(var o=t;o&&"MJX-CONTAINER"!==o.nodeName;)o=o.parentNode;if("MJX-MATH"!==e.nodeName&&"svg"!==e.nodeName)if("svg"===(e=o.firstChild.cloneNode(!1).appendChild(e).parentNode).nodeName){e.firstChild.setAttribute("transform","matrix(1 0 0 -1 0 0)");var r=parseFloat(e.getAttribute("viewBox").split(/ /)[2]),n=parseFloat(e.getAttribute("width")),i=t.getBBox(),a=i.x,s=i.y,l=i.width,h=i.height;e.setAttribute("viewBox",[a,-(s+h),l,h].join(" ")),e.removeAttribute("style"),e.setAttribute("width",n/r*l+"ex"),e.setAttribute("height",n/r*h+"ex"),o.setAttribute("sre-highlight","false")}(e=o.cloneNode(!1).appendChild(e).parentNode).style.margin="0"}return e},e.className="MJX_HoverRegion",e.style=new l.CssStyles(((a={})["."+e.className]={position:"absolute",height:"1px",width:"1px",padding:"1px",overflow:"hidden"},a["."+e.className+"_Show"]={position:"absolute",width:"max-content",height:"auto",padding:"0px 0px",opacity:1,"z-index":"202",margin:"0 auto","background-color":"rgba(0, 0, 255, 0.2)","box-shadow":"0px 10px 20px #888",border:"2px solid #CCCCCC"},a)),e}(h);e.HoverRegion=f},854:function(t,e,o){var r,n=this&&this.__extends||(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)});Object.defineProperty(e,"__esModule",{value:!0}),e.TreeColorer=e.FlameColorer=e.AbstractTreeExplorer=void 0;var i=o(724);o(961);var a=function(t){function e(e,o,r,n){var i=t.call(this,e,null,r)||this;return i.document=e,i.region=o,i.node=r,i.mml=n,i.stoppable=!1,i}return n(e,t),e.prototype.Attach=function(){t.prototype.Attach.call(this),this.Start()},e.prototype.Detach=function(){this.Stop(),t.prototype.Detach.call(this)},e}(i.AbstractExplorer);e.AbstractTreeExplorer=a;var s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.Start=function(){this.active||(this.active=!0,this.highlighter.highlightAll(this.node))},e.prototype.Stop=function(){this.active&&this.highlighter.unhighlightAll(this.node),this.active=!1},e}(a);e.FlameColorer=s;var l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.Start=function(){if(!this.active){this.active=!0;var t=sre.SpeechGeneratorFactory.generator("Color");this.node.hasAttribute("hasforegroundcolor")||(t.generateSpeech(this.node,this.mml),this.node.setAttribute("hasforegroundcolor","true")),this.highlighter.colorizeAll(this.node)}},e.prototype.Stop=function(){this.active&&this.highlighter.uncolorizeAll(this.node),this.active=!1},e}(a);e.TreeColorer=l},511:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.EnrichedMathItemMixin=MathJax._.a11y["semantic-enrich"].EnrichedMathItemMixin,e.EnrichedMathDocumentMixin=MathJax._.a11y["semantic-enrich"].EnrichedMathDocumentMixin,e.EnrichHandler=MathJax._.a11y["semantic-enrich"].EnrichHandler},961:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.sreReady=MathJax._.a11y.sre.sreReady},723:function(t,e){MathJax._.components.global.isObject,MathJax._.components.global.combineConfig,MathJax._.components.global.combineDefaults,e.r8=MathJax._.components.global.combineWithMathJax,MathJax._.components.global.MathJax},769:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.protoItem=MathJax._.core.MathItem.protoItem,e.AbstractMathItem=MathJax._.core.MathItem.AbstractMathItem,e.STATE=MathJax._.core.MathItem.STATE,e.newState=MathJax._.core.MathItem.newState},433:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.DATAMJX=MathJax._.core.MmlTree.SerializedMmlVisitor.DATAMJX,e.toEntity=MathJax._.core.MmlTree.SerializedMmlVisitor.toEntity,e.SerializedMmlVisitor=MathJax._.core.MmlTree.SerializedMmlVisitor.SerializedMmlVisitor},77:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.isObject=MathJax._.util.Options.isObject,e.APPEND=MathJax._.util.Options.APPEND,e.REMOVE=MathJax._.util.Options.REMOVE,e.OPTIONS=MathJax._.util.Options.OPTIONS,e.Expandable=MathJax._.util.Options.Expandable,e.expandable=MathJax._.util.Options.expandable,e.makeArray=MathJax._.util.Options.makeArray,e.keys=MathJax._.util.Options.keys,e.copy=MathJax._.util.Options.copy,e.insert=MathJax._.util.Options.insert,e.defaultOptions=MathJax._.util.Options.defaultOptions,e.userOptions=MathJax._.util.Options.userOptions,e.selectOptions=MathJax._.util.Options.selectOptions,e.selectOptionsFromKeys=MathJax._.util.Options.selectOptionsFromKeys,e.separateOptions=MathJax._.util.Options.separateOptions,e.lookup=MathJax._.util.Options.lookup},888:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.CssStyles=MathJax._.util.StyleList.CssStyles},850:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.MJContextMenu=MathJax._.ui.menu.MJContextMenu.MJContextMenu}},e={};function o(r){var n=e[r];if(void 0!==n)return n.exports;var i=e[r]={exports:{}};return t[r].call(i.exports,i,i.exports,o),i.exports}!function(){var t=o(723),e=o(18),r=o(724),n=o(269),i=o(85),a=o(367),s=o(854),l=o(961);(0,t.r8)({_:{a11y:{explorer_ts:e,explorer:{Explorer:r,KeyExplorer:n,MouseExplorer:i,Region:a,TreeExplorer:s},sre:l}}}),MathJax.startup&&MathJax.startup.extendHandler((function(t){return(0,e.ExplorerHandler)(t)}))}()}();
@@ -0,0 +1 @@
1
+ !function(){"use strict";var t={433:function(t,e,r){var n,i=this&&this.__extends||(n=function(t,e){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function r(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)}),a=this&&this.__assign||function(){return(a=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var i in e=arguments[r])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t}).apply(this,arguments)},o=this&&this.__values||function(t){var e="function"==typeof Symbol&&Symbol.iterator,r=e&&t[e],n=0;if(r)return r.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")},s=this&&this.__read||function(t,e){var r="function"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var n,i,a=r.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(n=a.next()).done;)o.push(n.value)}catch(t){i={error:t}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(i)throw i.error}}return o},c=this&&this.__spreadArray||function(t,e){for(var r=0,n=e.length,i=t.length;r<n;r++,i++)t[i]=e[r];return t};Object.defineProperty(e,"__esModule",{value:!0}),e.EnrichHandler=e.EnrichedMathDocumentMixin=e.EnrichedMathItemMixin=void 0;var l=r(184),h=r(769),u=r(758),p=r(77),d=r(905),f="none";function y(t,e,r){return function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return i(n,t),n.prototype.serializeMml=function(t){if("outerHTML"in t)return t.outerHTML;if("undefined"!=typeof Element&&"undefined"!=typeof window&&t instanceof Element){var e=window.document.createElement("div");return e.appendChild(t),e.innerHTML}return t.toString()},n.prototype.enrich=function(t,n){if(void 0===n&&(n=!1),!(this.state()>=h.STATE.ENRICHED)){if(!this.isEscaped&&(t.options.enableEnrichment||n)){"undefined"!=typeof sre&&sre.Engine.isReady()||l.mathjax.retryAfter(d.sreReady()),t.options.sre.speech!==f&&(SRE.setupEngine(t.options.sre),f=t.options.sre.speech);var i=new t.options.MathItem("",e);try{var a=this.inputData.originalMml=r(this.root);i.math=this.serializeMml(SRE.toEnriched(a)),i.display=this.display,i.compile(t),this.root=i.root,this.inputData.enrichedMml=i.math}catch(e){t.options.enrichError(t,this,e)}}this.state(h.STATE.ENRICHED)}},n.prototype.attachSpeech=function(t){var e,r;if(!(this.state()>=h.STATE.ATTACHSPEECH)){var n=this.root.attributes.get("aria-label")||this.getSpeech(this.root);if(n){var i=t.adaptor,a=this.typesetRoot;i.setAttribute(a,"aria-label",n);try{for(var s=o(i.childNodes(a)),c=s.next();!c.done;c=s.next()){var l=c.value;i.setAttribute(l,"aria-hidden","true")}}catch(t){e={error:t}}finally{try{c&&!c.done&&(r=s.return)&&r.call(s)}finally{if(e)throw e.error}}}this.state(h.STATE.ATTACHSPEECH)}},n.prototype.getSpeech=function(t){var e,r,n=t.attributes;if(!n)return"";var i=n.getExplicit("data-semantic-speech");if(!n.getExplicit("data-semantic-parent")&&i)return i;try{for(var a=o(t.childNodes),s=a.next();!s.done;s=a.next()){var c=s.value,l=this.getSpeech(c);if(null!=l)return l}}catch(t){e={error:t}}finally{try{s&&!s.done&&(r=a.return)&&r.call(a)}finally{if(e)throw e.error}}return""},n}(t)}function m(t,e){var r;return(r=function(t){function r(){for(var r=[],n=0;n<arguments.length;n++)r[n]=arguments[n];var i=t.apply(this,c([],s(r)))||this;e.setMmlFactory(i.mmlFactory);var a=i.constructor.ProcessBits;a.has("enriched")||(a.allocate("enriched"),a.allocate("attach-speech"));var o=new u.SerializedMmlVisitor(i.mmlFactory),l=function(t){return o.visitTree(t)};return i.options.MathItem=y(i.options.MathItem,e,l),i}return i(r,t),r.prototype.attachSpeech=function(){var t,e;if(!this.processed.isSet("attach-speech")){try{for(var r=o(this.math),n=r.next();!n.done;n=r.next()){n.value.attachSpeech(this)}}catch(e){t={error:e}}finally{try{n&&!n.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}this.processed.set("attach-speech")}return this},r.prototype.enrich=function(){var t,e;if(!this.processed.isSet("enriched")){if(this.options.enableEnrichment)try{for(var r=o(this.math),n=r.next();!n.done;n=r.next()){n.value.enrich(this)}}catch(e){t={error:e}}finally{try{n&&!n.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}this.processed.set("enriched")}return this},r.prototype.enrichError=function(t,e,r){console.warn("Enrichment error:",r)},r.prototype.state=function(e,r){return void 0===r&&(r=!1),t.prototype.state.call(this,e,r),e<h.STATE.ENRICHED&&this.processed.clear("enriched"),this},r}(t)).OPTIONS=a(a({},t.OPTIONS),{enableEnrichment:!0,enrichError:function(t,e,r){return t.enrichError(t,e,r)},renderActions:p.expandable(a(a({},t.OPTIONS.renderActions),{enrich:[h.STATE.ENRICHED],attachSpeech:[h.STATE.ATTACHSPEECH]})),sre:p.expandable({speech:"none",domain:"mathspeak",style:"default",locale:"en"})}),r}h.newState("ENRICHED",30),h.newState("ATTACHSPEECH",155),e.EnrichedMathItemMixin=y,e.EnrichedMathDocumentMixin=m,e.EnrichHandler=function(t,e){return e.setAdaptor(t.adaptor),t.documentClass=m(t.documentClass,e),t}},905:function(t,e,r){Object.defineProperty(e,"__esModule",{value:!0}),e.sreReady=void 0;var n=r(534),i="undefined"==typeof window?"./a11y/sre-node.js":"../../../speech-rule-engine/lib/sre_browser.js",a="undefined"==typeof sre?n.asyncLoad(i):Promise.resolve();e.sreReady=function(){return new Promise((function(t,e){a.then((function(){var r=(new Date).getTime(),n=function(){sre.Engine.isReady()?t():(new Date).getTime()-r<2e4?setTimeout(n,100):e("Timed out waiting for Speech-Rule-Engine")};n()})).catch((function(t){return e(t.message||t)}))}))}},723:function(t,e){MathJax._.components.global.isObject,MathJax._.components.global.combineConfig,e.PV=MathJax._.components.global.combineDefaults,e.r8=MathJax._.components.global.combineWithMathJax,MathJax._.components.global.MathJax},769:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.protoItem=MathJax._.core.MathItem.protoItem,e.AbstractMathItem=MathJax._.core.MathItem.AbstractMathItem,e.STATE=MathJax._.core.MathItem.STATE,e.newState=MathJax._.core.MathItem.newState},758:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.DATAMJX=MathJax._.core.MmlTree.SerializedMmlVisitor.DATAMJX,e.toEntity=MathJax._.core.MmlTree.SerializedMmlVisitor.toEntity,e.SerializedMmlVisitor=MathJax._.core.MmlTree.SerializedMmlVisitor.SerializedMmlVisitor},184:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.mathjax=MathJax._.mathjax.mathjax},534:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.asyncLoad=MathJax._.util.AsyncLoad.asyncLoad},77:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.isObject=MathJax._.util.Options.isObject,e.APPEND=MathJax._.util.Options.APPEND,e.REMOVE=MathJax._.util.Options.REMOVE,e.OPTIONS=MathJax._.util.Options.OPTIONS,e.Expandable=MathJax._.util.Options.Expandable,e.expandable=MathJax._.util.Options.expandable,e.makeArray=MathJax._.util.Options.makeArray,e.keys=MathJax._.util.Options.keys,e.copy=MathJax._.util.Options.copy,e.insert=MathJax._.util.Options.insert,e.defaultOptions=MathJax._.util.Options.defaultOptions,e.userOptions=MathJax._.util.Options.userOptions,e.selectOptions=MathJax._.util.Options.selectOptions,e.selectOptionsFromKeys=MathJax._.util.Options.selectOptionsFromKeys,e.separateOptions=MathJax._.util.Options.separateOptions,e.lookup=MathJax._.util.Options.lookup},475:function(t,e){e.K=MathJax._.input.mathml_ts.MathML}},e={};function r(n){var i=e[n];if(void 0!==i)return i.exports;var a=e[n]={exports:{}};return t[n].call(a.exports,a,a.exports,r),a.exports}!function(){var t=r(723),e=r(433),n=r(905);(0,t.r8)({_:{a11y:{"semantic-enrich":e,sre:n}}});var i=r(475);MathJax.loader&&(0,t.PV)(MathJax.config.loader,"a11y/semantic-enrich",{checkReady:function(){return(0,n.sreReady)()}}),MathJax.startup&&MathJax.startup.extendHandler((function(t){return(0,e.EnrichHandler)(t,new i.K)}))}()}();
@@ -0,0 +1 @@
1
+ !function(){"use strict";var t,e,n,r,o,i,a,l,u={877:function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.LiteDocument=void 0;var r=n(946),o=function(){function t(){this.root=new r.LiteElement("html",{},[this.head=new r.LiteElement("head"),this.body=new r.LiteElement("body")]),this.type=""}return Object.defineProperty(t.prototype,"kind",{get:function(){return"#document"},enumerable:!1,configurable:!0}),t}();e.LiteDocument=o},946:function(t,e){var n=this&&this.__assign||function(){return(n=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)},r=this&&this.__read||function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,i=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return a},o=this&&this.__spreadArray||function(t,e){for(var n=0,r=e.length,o=t.length;n<r;n++,o++)t[o]=e[n];return t},i=this&&this.__values||function(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(e,"__esModule",{value:!0}),e.LiteElement=void 0;var a=function(t,e,a){var l,u;void 0===e&&(e={}),void 0===a&&(a=[]),this.kind=t,this.attributes=n({},e),this.children=o([],r(a));try{for(var s=i(this.children),c=s.next();!c.done;c=s.next())c.value.parent=this}catch(t){l={error:t}}finally{try{c&&!c.done&&(u=s.return)&&u.call(s)}finally{if(l)throw l.error}}this.styles=null};e.LiteElement=a},6:function(t,e){var n=this&&this.__read||function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,i=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return a},r=this&&this.__spreadArray||function(t,e){for(var n=0,r=e.length,o=t.length;n<r;n++,o++)t[o]=e[n];return t};Object.defineProperty(e,"__esModule",{value:!0}),e.LiteList=void 0;var o=function(){function t(t){this.nodes=[],this.nodes=r([],n(t))}return t.prototype.append=function(t){this.nodes.push(t)},t.prototype[Symbol.iterator]=function(){var t=0;return{next:function(){return t===this.nodes.length?{value:null,done:!0}:{value:this.nodes[t++],done:!1}}}},t}();e.LiteList=o},246:function(t,e,n){var r=this&&this.__read||function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,i=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return a},o=this&&this.__values||function(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(e,"__esModule",{value:!0}),e.LiteParser=e.PATTERNS=void 0;var i,a=n(29),l=n(946),u=n(735);!function(t){t.TAGNAME="[a-z][^\\s\\n>]*",t.ATTNAME="[a-z][^\\s\\n>=]*",t.VALUE="(?:'[^']*'|\"[^\"]*\"|[^\\s\\n]+)",t.VALUESPLIT="(?:'([^']*)'|\"([^\"]*)\"|([^\\s\\n]+))",t.SPACE="(?:\\s|\\n)+",t.OPTIONALSPACE="(?:\\s|\\n)*",t.ATTRIBUTE=t.ATTNAME+"(?:"+t.OPTIONALSPACE+"="+t.OPTIONALSPACE+t.VALUE+")?",t.ATTRIBUTESPLIT="("+t.ATTNAME+")(?:"+t.OPTIONALSPACE+"="+t.OPTIONALSPACE+t.VALUESPLIT+")?",t.TAG="(<(?:"+t.TAGNAME+"(?:"+t.SPACE+t.ATTRIBUTE+")*"+t.OPTIONALSPACE+"/?|/"+t.TAGNAME+"|!--[^]*?--|![^]*?)(?:>|$))",t.tag=new RegExp(t.TAG,"i"),t.attr=new RegExp(t.ATTRIBUTE,"i"),t.attrsplit=new RegExp(t.ATTRIBUTESPLIT,"i")}(i=e.PATTERNS||(e.PATTERNS={}));var s=function(){function t(){}return t.prototype.parseFromString=function(t,e,n){void 0===e&&(e="text/html"),void 0===n&&(n=null);for(var r=n.createDocument(),o=n.body(r),a=t.replace(/<\?.*?\?>/g,"").split(i.tag);a.length;){var l=a.shift(),u=a.shift();l&&this.addText(n,o,l),u&&">"===u.charAt(u.length-1)&&("!"===u.charAt(1)?this.addComment(n,o,u):o="/"===u.charAt(1)?this.closeTag(n,o,u):this.openTag(n,o,u,a))}return this.checkDocument(n,r),r},t.prototype.addText=function(t,e,n){return n=a.translate(n),t.append(e,t.text(n))},t.prototype.addComment=function(t,e,n){return t.append(e,new u.LiteComment(n))},t.prototype.closeTag=function(t,e,n){for(var r=n.slice(2,n.length-1).toLowerCase();t.parent(e)&&t.kind(e)!==r;)e=t.parent(e);return t.parent(e)},t.prototype.openTag=function(t,e,n,r){var o=this.constructor.PCDATA,a=this.constructor.SELF_CLOSING,l=n.match(/<(.*?)[\s\n>\/]/)[1].toLowerCase(),u=t.node(l),s=n.replace(/^<.*?[\s\n>]/,"").split(i.attrsplit);return(s.pop().match(/>$/)||s.length<5)&&(this.addAttributes(t,u,s),t.append(e,u),a[l]||n.match(/\/>$/)||(o[l]?this.handlePCDATA(t,u,l,r):e=u)),e},t.prototype.addAttributes=function(t,e,n){for(var o=this.constructor.CDATA_ATTR;n.length;){var i=r(n.splice(0,5),5),l=i[1],u=i[2],s=i[3],c=i[4],p=u||s||c||"";o[l]||(p=a.translate(p)),t.setAttribute(e,l,p)}},t.prototype.handlePCDATA=function(t,e,n,r){for(var o=[],i="</"+n+">",a="";r.length&&a!==i;)o.push(a),o.push(r.shift()),a=r.shift();t.append(e,t.text(o.join("")))},t.prototype.checkDocument=function(t,e){var n,r,i,a,l=this.getOnlyChild(t,t.body(e));if(l){try{for(var s=o(t.childNodes(t.body(e))),c=s.next();!c.done;c=s.next()){if((f=c.value)===l)break;f instanceof u.LiteComment&&f.value.match(/^<!DOCTYPE/)&&(e.type=f.value)}}catch(t){n={error:t}}finally{try{c&&!c.done&&(r=s.return)&&r.call(s)}finally{if(n)throw n.error}}switch(t.kind(l)){case"html":try{for(var p=o(l.children),h=p.next();!h.done;h=p.next()){var f=h.value;switch(t.kind(f)){case"head":e.head=f;break;case"body":e.body=f}}}catch(t){i={error:t}}finally{try{h&&!h.done&&(a=p.return)&&a.call(p)}finally{if(i)throw i.error}}e.root=l,t.remove(l),t.parent(e.body)!==l&&t.append(l,e.body),t.parent(e.head)!==l&&t.insert(e.head,e.body);break;case"head":e.head=t.replace(l,e.head);break;case"body":e.body=t.replace(l,e.body)}}},t.prototype.getOnlyChild=function(t,e){var n,r,i=null;try{for(var a=o(t.childNodes(e)),u=a.next();!u.done;u=a.next()){var s=u.value;if(s instanceof l.LiteElement){if(i)return null;i=s}}}catch(t){n={error:t}}finally{try{u&&!u.done&&(r=a.return)&&r.call(a)}finally{if(n)throw n.error}}return i},t.prototype.serialize=function(t,e,n){var r=this;void 0===n&&(n=!1);var o=this.constructor.SELF_CLOSING,i=this.constructor.CDATA_ATTR,a=t.kind(e),l=t.allAttributes(e).map((function(t){return t.name+'="'+(i[t.name]?t.value:r.protectAttribute(t.value))+'"'})).join(" "),u=this.serializeInner(t,e,n);return"<"+a+(l?" "+l:"")+(n&&!u||o[a]?n?"/>":">":">"+u+"</"+a+">")},t.prototype.serializeInner=function(t,e,n){var r=this;return void 0===n&&(n=!1),this.constructor.PCDATA.hasOwnProperty(e.kind)?t.childNodes(e).map((function(e){return t.value(e)})).join(""):t.childNodes(e).map((function(e){var o=t.kind(e);return"#text"===o?r.protectHTML(t.value(e)):"#comment"===o?e.value:r.serialize(t,e,n)})).join("")},t.prototype.protectAttribute=function(t){return"string"!=typeof t&&(t=String(t)),t.replace(/"/g,"&quot;")},t.prototype.protectHTML=function(t){return t.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")},t.SELF_CLOSING={area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},t.PCDATA={option:!0,textarea:!0,fieldset:!0,title:!0,style:!0,script:!0},t.CDATA_ATTR={style:!0,datafld:!0,datasrc:!0,href:!0,src:!0,longdesc:!0,usemap:!0,cite:!0,datetime:!0,action:!0,axis:!0,profile:!0,content:!0,scheme:!0},t}();e.LiteParser=s},735:function(t,e){var n,r=this&&this.__extends||(n=function(t,e){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function r(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)});Object.defineProperty(e,"__esModule",{value:!0}),e.LiteComment=e.LiteText=void 0;var o=function(){function t(t){void 0===t&&(t=""),this.value=t}return Object.defineProperty(t.prototype,"kind",{get:function(){return"#text"},enumerable:!1,configurable:!0}),t}();e.LiteText=o;var i=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),Object.defineProperty(e.prototype,"kind",{get:function(){return"#comment"},enumerable:!1,configurable:!0}),e}(o);e.LiteComment=i},492:function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.LiteWindow=void 0;var r=n(946),o=n(877),i=n(6),a=n(246),l=function(){this.DOMParser=a.LiteParser,this.NodeList=i.LiteList,this.HTMLCollection=i.LiteList,this.HTMLElement=r.LiteElement,this.DocumentFragment=i.LiteList,this.Document=o.LiteDocument,this.document=new o.LiteDocument};e.LiteWindow=l},250:function(t,e,n){var r,o=this&&this.__extends||(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),i=this&&this.__assign||function(){return(i=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)},a=this&&this.__values||function(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")},l=this&&this.__read||function(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,o,i=n.call(t),a=[];try{for(;(void 0===e||e-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(t){o={error:t}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return a},u=this&&this.__spreadArray||function(t,e){for(var n=0,r=e.length,o=t.length;n<r;n++,o++)t[o]=e[n];return t};Object.defineProperty(e,"__esModule",{value:!0}),e.liteAdaptor=e.LiteAdaptor=void 0;var s=n(857),c=n(877),p=n(946),h=n(735),f=n(492),d=n(246),y=n(878),v=n(77),m=function(t){function e(e){void 0===e&&(e=null);var n=t.call(this)||this,r=n.constructor;return n.options=v.userOptions(v.defaultOptions({},r.OPTIONS),e),n.parser=new d.LiteParser,n.window=new f.LiteWindow,n}return o(e,t),e.prototype.parse=function(t,e){return this.parser.parseFromString(t,e,this)},e.prototype.create=function(t,e){return void 0===e&&(e=null),new p.LiteElement(t)},e.prototype.text=function(t){return new h.LiteText(t)},e.prototype.comment=function(t){return new h.LiteComment(t)},e.prototype.createDocument=function(){return new c.LiteDocument},e.prototype.head=function(t){return t.head},e.prototype.body=function(t){return t.body},e.prototype.root=function(t){return t.root},e.prototype.doctype=function(t){return t.type},e.prototype.tags=function(t,e,n){void 0===n&&(n=null);var r=[],o=[];if(n)return o;for(var i=t;i;){var a=i.kind;"#text"!==a&&"#comment"!==a&&(i=i,a===e&&o.push(i),i.children.length&&(r=i.children.concat(r))),i=r.shift()}return o},e.prototype.elementById=function(t,e){for(var n=[],r=t;r;){if("#text"!==r.kind&&"#comment"!==r.kind){if((r=r).attributes.id===e)return r;r.children.length&&(n=r.children.concat(n))}r=n.shift()}return null},e.prototype.elementsByClass=function(t,e){for(var n=[],r=[],o=t;o;){if("#text"!==o.kind&&"#comment"!==o.kind)((o=o).attributes.class||"").trim().split(/ +/).includes(e)&&r.push(o),o.children.length&&(n=o.children.concat(n));o=n.shift()}return r},e.prototype.getElements=function(t,e){var n,r,o=[],i=this.body(e);try{for(var l=a(t),u=l.next();!u.done;u=l.next()){var s=u.value;if("string"==typeof s)if("#"===s.charAt(0)){var c=this.elementById(i,s.slice(1));c&&o.push(c)}else"."===s.charAt(0)?o=o.concat(this.elementsByClass(i,s.slice(1))):s.match(/^[-a-z][-a-z0-9]*$/i)&&(o=o.concat(this.tags(i,s)));else Array.isArray(s)?o=o.concat(s):s instanceof this.window.NodeList||s instanceof this.window.HTMLCollection?o=o.concat(s.nodes):o.push(s)}}catch(t){n={error:t}}finally{try{u&&!u.done&&(r=l.return)&&r.call(l)}finally{if(n)throw n.error}}return o},e.prototype.contains=function(t,e){for(;e&&e!==t;)e=this.parent(e);return!!e},e.prototype.parent=function(t){return t.parent},e.prototype.childIndex=function(t){return t.parent?t.parent.children.findIndex((function(e){return e===t})):-1},e.prototype.append=function(t,e){return e.parent&&this.remove(e),t.children.push(e),e.parent=t,e},e.prototype.insert=function(t,e){if(t.parent&&this.remove(t),e&&e.parent){var n=this.childIndex(e);e.parent.children.splice(n,0,t),t.parent=e.parent}},e.prototype.remove=function(t){var e=this.childIndex(t);return e>=0&&t.parent.children.splice(e,1),t.parent=null,t},e.prototype.replace=function(t,e){var n=this.childIndex(e);return n>=0&&(e.parent.children[n]=t,t.parent=e.parent,e.parent=null),e},e.prototype.clone=function(t){var e=this,n=new p.LiteElement(t.kind);return n.attributes=i({},t.attributes),n.children=t.children.map((function(t){if("#text"===t.kind)return new h.LiteText(t.value);if("#comment"===t.kind)return new h.LiteComment(t.value);var r=e.clone(t);return r.parent=n,r})),n},e.prototype.split=function(t,e){var n=new h.LiteText(t.value.slice(e));return t.value=t.value.slice(0,e),t.parent.children.splice(this.childIndex(t)+1,0,n),n.parent=t.parent,n},e.prototype.next=function(t){var e=t.parent;if(!e)return null;var n=this.childIndex(t)+1;return n>=0&&n<e.children.length?e.children[n]:null},e.prototype.previous=function(t){var e=t.parent;if(!e)return null;var n=this.childIndex(t)-1;return n>=0?e.children[n]:null},e.prototype.firstChild=function(t){return t.children[0]},e.prototype.lastChild=function(t){return t.children[t.children.length-1]},e.prototype.childNodes=function(t){return u([],l(t.children))},e.prototype.childNode=function(t,e){return t.children[e]},e.prototype.kind=function(t){return t.kind},e.prototype.value=function(t){return"#text"===t.kind?t.value:"#comment"===t.kind?t.value.replace(/^<!(--)?((?:.|\n)*)\1>$/,"$2"):""},e.prototype.textContent=function(t){var e=this;return t.children.reduce((function(t,n){return t+("#text"===n.kind?n.value:"#comment"===n.kind?"":e.textContent(n))}),"")},e.prototype.innerHTML=function(t){return this.parser.serializeInner(this,t)},e.prototype.outerHTML=function(t){return this.parser.serialize(this,t)},e.prototype.serializeXML=function(t){return this.parser.serialize(this,t,!0)},e.prototype.setAttribute=function(t,e,n,r){void 0===r&&(r=null),"string"!=typeof n&&(n=String(n)),r&&(e=r.replace(/.*\//,"")+":"+e.replace(/^.*:/,"")),t.attributes[e]=n,"style"===e&&(t.styles=null)},e.prototype.getAttribute=function(t,e){return t.attributes[e]},e.prototype.removeAttribute=function(t,e){delete t.attributes[e]},e.prototype.hasAttribute=function(t,e){return t.attributes.hasOwnProperty(e)},e.prototype.allAttributes=function(t){var e,n,r=t.attributes,o=[];try{for(var i=a(Object.keys(r)),l=i.next();!l.done;l=i.next()){var u=l.value;o.push({name:u,value:r[u]})}}catch(t){e={error:t}}finally{try{l&&!l.done&&(n=i.return)&&n.call(i)}finally{if(e)throw e.error}}return o},e.prototype.addClass=function(t,e){var n=(t.attributes.class||"").split(/ /);n.find((function(t){return t===e}))||(n.push(e),t.attributes.class=n.join(" "))},e.prototype.removeClass=function(t,e){var n=(t.attributes.class||"").split(/ /),r=n.findIndex((function(t){return t===e}));r>=0&&(n.splice(r,1),t.attributes.class=n.join(" "))},e.prototype.hasClass=function(t,e){return!!(t.attributes.class||"").split(/ /).find((function(t){return t===e}))},e.prototype.setStyle=function(t,e,n){t.styles||(t.styles=new y.Styles(this.getAttribute(t,"style"))),t.styles.set(e,n),t.attributes.style=t.styles.cssText},e.prototype.getStyle=function(t,e){if(!t.styles){var n=this.getAttribute(t,"style");if(!n)return"";t.styles=new y.Styles(n)}return t.styles.get(e)},e.prototype.allStyles=function(t){return this.getAttribute(t,"style")},e.prototype.insertRules=function(t,e){t.children=[this.text(e.join("\n\n")+"\n\n"+this.textContent(t))]},e.prototype.fontSize=function(t){return this.options.fontSize},e.prototype.fontFamily=function(t){return this.options.fontFamily},e.prototype.nodeSize=function(t,n,r){void 0===n&&(n=1),void 0===r&&(r=null);var o=this.textContent(t),i=Array.from(o.replace(e.cjkPattern,"")).length;return[(Array.from(o).length-i)*this.options.cjkCharWidth+i*this.options.unknownCharWidth,this.options.unknownCharHeight]},e.prototype.nodeBBox=function(t){return{left:0,right:0,top:0,bottom:0}},e.OPTIONS={fontSize:16,fontFamily:"Times",cjkCharWidth:1,unknownCharWidth:.6,unknownCharHeight:.8},e.cjkPattern=new RegExp(["[","\u1100-\u115f","\u2329\u232a","\u2e80-\u303e","\u3040-\u3247","\u3250-\u4dbf","\u4e00-\ua4c6","\ua960-\ua97c","\uac00-\ud7a3","\uf900-\ufaff","\ufe10-\ufe19","\ufe30-\ufe6b","\uff01-\uff60\uffe0-\uffe6","\ud82c\udc00-\ud82c\udc01","\ud83c\ude00-\ud83c\ude51","\ud840\udc00-\ud8bf\udffd","]"].join(""),"gu"),e}(s.AbstractDOMAdaptor);e.LiteAdaptor=m,e.liteAdaptor=function(t){return void 0===t&&(t=null),new m(t)}},723:function(t,e){MathJax._.components.global.isObject,MathJax._.components.global.combineConfig,MathJax._.components.global.combineDefaults,e.r8=MathJax._.components.global.combineWithMathJax,MathJax._.components.global.MathJax},857:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.AbstractDOMAdaptor=MathJax._.core.DOMAdaptor.AbstractDOMAdaptor},29:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.options=MathJax._.util.Entities.options,e.entities=MathJax._.util.Entities.entities,e.add=MathJax._.util.Entities.add,e.remove=MathJax._.util.Entities.remove,e.translate=MathJax._.util.Entities.translate,e.numeric=MathJax._.util.Entities.numeric},77:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.isObject=MathJax._.util.Options.isObject,e.APPEND=MathJax._.util.Options.APPEND,e.REMOVE=MathJax._.util.Options.REMOVE,e.OPTIONS=MathJax._.util.Options.OPTIONS,e.Expandable=MathJax._.util.Options.Expandable,e.expandable=MathJax._.util.Options.expandable,e.makeArray=MathJax._.util.Options.makeArray,e.keys=MathJax._.util.Options.keys,e.copy=MathJax._.util.Options.copy,e.insert=MathJax._.util.Options.insert,e.defaultOptions=MathJax._.util.Options.defaultOptions,e.userOptions=MathJax._.util.Options.userOptions,e.selectOptions=MathJax._.util.Options.selectOptions,e.selectOptionsFromKeys=MathJax._.util.Options.selectOptionsFromKeys,e.separateOptions=MathJax._.util.Options.separateOptions,e.lookup=MathJax._.util.Options.lookup},878:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e.Styles=MathJax._.util.Styles.Styles}},s={};function c(t){var e=s[t];if(void 0!==e)return e.exports;var n=s[t]={exports:{}};return u[t].call(n.exports,n,n.exports,c),n.exports}t=c(723),e=c(250),n=c(877),r=c(946),o=c(6),i=c(246),a=c(735),l=c(492),(0,t.r8)({_:{adaptors:{liteAdaptor:e,lite:{Document:n,Element:r,List:o,Parser:i,Text:a,Window:l}}}}),MathJax.startup&&(MathJax.startup.registerConstructor("liteAdaptor",e.liteAdaptor),MathJax.startup.useAdaptor("liteAdaptor",!0))}();