vue-element-ui-x 0.2.2 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/lib/components/Attachments/index.js +18 -18
  2. package/lib/components/Bubble/index.js +145 -155
  3. package/lib/components/BubbleList/index.js +180 -207
  4. package/lib/components/Conversations/index.js +14370 -14370
  5. package/lib/components/FilesCard/index.js +5 -5
  6. package/lib/components/Prompts/index.js +25 -25
  7. package/lib/components/Sender/index.js +1606 -1459
  8. package/lib/components/Thinking/index.js +157 -23
  9. package/lib/components/ThoughtChain/index.js +143 -144
  10. package/lib/components/Typewriter/index.js +124 -125
  11. package/lib/components/Welcome/index.js +5 -5
  12. package/lib/index.common.js +1 -1
  13. package/lib/index.esm.js +1 -1
  14. package/lib/index.js +817 -389
  15. package/lib/index.umd.js +1 -1
  16. package/lib/locale/index.js +97 -0
  17. package/lib/locale/lang/ar-SA.js +18 -0
  18. package/lib/locale/lang/ar-SA.umd.js +26 -0
  19. package/lib/locale/lang/ar.js +18 -0
  20. package/lib/locale/lang/ar.umd.js +26 -0
  21. package/lib/locale/lang/de-DE.js +18 -0
  22. package/lib/locale/lang/de-DE.umd.js +26 -0
  23. package/lib/locale/lang/de.js +18 -0
  24. package/lib/locale/lang/de.umd.js +26 -0
  25. package/lib/locale/lang/en.js +18 -0
  26. package/lib/locale/lang/en.umd.js +26 -0
  27. package/lib/locale/lang/es-ES.js +18 -0
  28. package/lib/locale/lang/es-ES.umd.js +26 -0
  29. package/lib/locale/lang/es.js +18 -0
  30. package/lib/locale/lang/es.umd.js +26 -0
  31. package/lib/locale/lang/fr-FR.js +18 -0
  32. package/lib/locale/lang/fr-FR.umd.js +26 -0
  33. package/lib/locale/lang/fr.js +18 -0
  34. package/lib/locale/lang/fr.umd.js +26 -0
  35. package/lib/locale/lang/index.js +50 -0
  36. package/lib/locale/lang/it-IT.js +18 -0
  37. package/lib/locale/lang/it-IT.umd.js +26 -0
  38. package/lib/locale/lang/it.js +18 -0
  39. package/lib/locale/lang/it.umd.js +26 -0
  40. package/lib/locale/lang/ja-JP.js +18 -0
  41. package/lib/locale/lang/ja-JP.umd.js +26 -0
  42. package/lib/locale/lang/ja.js +18 -0
  43. package/lib/locale/lang/ja.umd.js +26 -0
  44. package/lib/locale/lang/ko-KR.js +18 -0
  45. package/lib/locale/lang/ko-KR.umd.js +26 -0
  46. package/lib/locale/lang/ko.js +18 -0
  47. package/lib/locale/lang/ko.umd.js +26 -0
  48. package/lib/locale/lang/pt-BR.js +18 -0
  49. package/lib/locale/lang/pt-BR.umd.js +26 -0
  50. package/lib/locale/lang/ru-RU.js +18 -0
  51. package/lib/locale/lang/ru-RU.umd.js +26 -0
  52. package/lib/locale/lang/zh-CN.js +18 -0
  53. package/lib/locale/lang/zh-CN.umd.js +26 -0
  54. package/lib/locale/lang/zh-TW.js +18 -0
  55. package/lib/locale/lang/zh-TW.umd.js +26 -0
  56. package/lib/locale/mixin.js +9 -0
  57. package/package.json +15 -10
  58. package/src/components/Attachments/src/main.vue +2 -10
  59. package/src/components/Bubble/src/main.vue +288 -299
  60. package/src/components/BubbleList/src/main.vue +2 -19
  61. package/src/components/Conversations/src/main.vue +0 -41
  62. package/src/components/Prompts/src/main.vue +248 -248
  63. package/src/components/Sender/src/components/LoadingButton.vue +37 -39
  64. package/src/components/Sender/src/components/SpeechLoadingButton.vue +41 -43
  65. package/src/components/Sender/src/main.vue +13 -3
  66. package/src/components/Thinking/src/main.vue +13 -9
  67. package/src/components/ThoughtChain/src/main.vue +1 -3
  68. package/src/components/Typewriter/src/main.vue +3 -7
  69. package/src/components/Welcome/src/main.vue +151 -151
  70. package/src/index.js +23 -6
  71. package/src/locale/index.js +97 -0
  72. package/src/locale/lang/ar.js +18 -0
  73. package/src/locale/lang/de.js +18 -0
  74. package/src/locale/lang/en.js +18 -0
  75. package/src/locale/lang/es.js +18 -0
  76. package/src/locale/lang/fr.js +18 -0
  77. package/src/locale/lang/index.js +62 -0
  78. package/src/locale/lang/it.js +18 -0
  79. package/src/locale/lang/ja.js +18 -0
  80. package/src/locale/lang/ko.js +18 -0
  81. package/src/locale/lang/pt-br.js +18 -0
  82. package/src/locale/lang/ru-RU.js +18 -0
  83. package/src/locale/lang/zh-CN.js +18 -0
  84. package/src/locale/lang/zh-TW.js +18 -0
  85. package/src/locale/mixin.js +9 -0
  86. package/src/styles/Attachments.scss +236 -236
  87. package/src/styles/Bubble.scss +5 -4
  88. package/src/styles/BubbleList.scss +148 -148
  89. package/src/styles/Conversations.scss +260 -260
  90. package/src/styles/FilesCard.scss +222 -221
  91. package/src/styles/Prompts.scss +197 -195
  92. package/src/styles/Sender.scss +207 -199
  93. package/src/styles/Thinking.scss +36 -6
  94. package/src/styles/ThoughtChain.scss +113 -113
  95. package/src/styles/Typewriter.scss +66 -66
  96. package/src/styles/var.scss +4 -5
  97. package/src/theme/var.scss +183 -72
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 99);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 102);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -493,7 +493,7 @@ function normalizeReference(str) {
493
493
  //
494
494
  exports.lib = {};
495
495
  exports.lib.mdurl = __webpack_require__(14);
496
- exports.lib.ucmicro = __webpack_require__(35);
496
+ exports.lib.ucmicro = __webpack_require__(38);
497
497
 
498
498
  exports.assign = assign;
499
499
  exports.isString = isString;
@@ -3402,7 +3402,7 @@ module.exports = Token;
3402
3402
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
3403
3403
  ___CSS_LOADER_EXPORT___.i(_node_modules_css_loader_dist_cjs_js_node_modules_prismjs_themes_prism_css__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"]);
3404
3404
  // Module
3405
- ___CSS_LOADER_EXPORT___.push([module.i, ".typer-container[data-v-5217aa42]{overflow-x:auto}.markdown-content[data-v-5217aa42] ul{list-style-type:disc}.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h1,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h2,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h3,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h4,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h5,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h6,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] p,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] ol:last-child li,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] ul:last-child li,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h1,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h2,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h3,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h4,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h5,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h6,.typing-cursor-foggy.markdown-content[data-v-5217aa42] p,.typing-cursor-foggy.markdown-content[data-v-5217aa42] ol:last-child li,.typing-cursor-foggy.markdown-content[data-v-5217aa42] ul:last-child li{position:relative;overflow:hidden}.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h1:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h2:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h3:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h4:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h5:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] h6:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] p:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] ol:last-child li:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-5217aa42] ul:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h1:last-child:after,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h2:last-child:after,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h3:last-child:after,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h4:last-child:after,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h5:last-child:after,.typing-cursor-foggy.markdown-content[data-v-5217aa42] h6:last-child:after,.typing-cursor-foggy.markdown-content[data-v-5217aa42] p:last-child:after,.typing-cursor-foggy.markdown-content[data-v-5217aa42] ol:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-5217aa42] ul:last-child li:last-child:after{content:\"\";width:var(--cursor-fog-width);height:1.5em;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1*var(--cursor-fog-width))}.typer-content.typing-cursor[data-v-5217aa42]::after{content:var(--cursor-char);margin-left:2px;display:inline-block}.typer-content.typing-cursor-foggy[data-v-5217aa42]{position:relative;overflow:hidden}.typer-content.typing-cursor-foggy[data-v-5217aa42]:last-child:after{content:\"\";width:var(--cursor-fog-width);height:100%;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1*var(--cursor-fog-width))}", ""]);
3405
+ ___CSS_LOADER_EXPORT___.push([module.i, ".typer-container[data-v-59bebd7c]{overflow-x:auto}.markdown-content[data-v-59bebd7c] ul{list-style-type:disc}.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h1,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h2,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h3,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h4,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h5,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h6,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] p,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] ol:last-child li,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] ul:last-child li,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h1,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h2,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h3,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h4,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h5,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h6,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] p,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] ol:last-child li,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] ul:last-child li{position:relative;overflow:hidden}.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h1:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h2:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h3:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h4:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h5:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] h6:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] p:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] ol:last-child li:last-child:after,.typing-markdown-cursor-foggy.markdown-content[data-v-59bebd7c] ul:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h1:last-child:after,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h2:last-child:after,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h3:last-child:after,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h4:last-child:after,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h5:last-child:after,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] h6:last-child:after,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] p:last-child:after,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] ol:last-child li:last-child:after,.typing-cursor-foggy.markdown-content[data-v-59bebd7c] ul:last-child li:last-child:after{content:\"\";width:var(--cursor-fog-width);height:1.5em;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1 * var(--cursor-fog-width))}.typer-content.typing-cursor[data-v-59bebd7c]::after{content:var(--cursor-char);margin-left:2px;display:inline-block}.typer-content.typing-cursor-foggy[data-v-59bebd7c]{position:relative;overflow:hidden}.typer-content.typing-cursor-foggy[data-v-59bebd7c]:last-child:after{content:\"\";width:var(--cursor-fog-width);height:100%;background:linear-gradient(90deg, transparent, var(--cursor-fog-bg-color));position:absolute;margin-left:calc(-1 * var(--cursor-fog-width))}", ""]);
3406
3406
  // Exports
3407
3407
  /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
3408
3408
 
@@ -3441,7 +3441,7 @@ module.exports = g;
3441
3441
  // ESM COMPAT FLAG
3442
3442
  __webpack_require__.r(__webpack_exports__);
3443
3443
 
3444
- // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=template&id=5217aa42&scoped=true
3444
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=template&id=59bebd7c&scoped=true
3445
3445
  var render = function render() {
3446
3446
  var _vm = this,
3447
3447
  _c = _vm._self._c;
@@ -3470,7 +3470,7 @@ var render = function render() {
3470
3470
  var staticRenderFns = [];
3471
3471
  render._withStripped = true;
3472
3472
 
3473
- // CONCATENATED MODULE: ./src/components/Typewriter/src/main.vue?vue&type=template&id=5217aa42&scoped=true
3473
+ // CONCATENATED MODULE: ./src/components/Typewriter/src/main.vue?vue&type=template&id=59bebd7c&scoped=true
3474
3474
 
3475
3475
  // EXTERNAL MODULE: ./node_modules/dompurify/dist/purify.js
3476
3476
  var purify = __webpack_require__(21);
@@ -3526,11 +3526,11 @@ var prism_default = /*#__PURE__*/__webpack_require__.n(prism);
3526
3526
  const grammar = prism_default.a.languages[lang];
3527
3527
  if (grammar) {
3528
3528
  const highlighted = prism_default.a.highlight(code, grammar, lang);
3529
- return `<pre class="language-${lang}"><code class="language-${lang}">${highlighted}</code></pre>`;
3529
+ return highlighted;
3530
3530
  }
3531
- return `<pre class="language-${lang}"><code class="language-${lang}">${code}</code></pre>`;
3531
+ return code;
3532
3532
  } catch {
3533
- return `<pre><code>${code}</code></pre>`;
3533
+ return code;
3534
3534
  }
3535
3535
  }
3536
3536
  })
@@ -3590,7 +3590,6 @@ var prism_default = /*#__PURE__*/__webpack_require__.n(prism);
3590
3590
  },
3591
3591
  mounted() {
3592
3592
  this.initMarkdownPlugins();
3593
- this.updateFogColor();
3594
3593
  this.$nextTick(() => {
3595
3594
  prism_default.a.highlightAll();
3596
3595
  });
@@ -3665,9 +3664,6 @@ var prism_default = /*#__PURE__*/__webpack_require__.n(prism);
3665
3664
  isTyping: this.isTyping,
3666
3665
  progress: this.typingProgress
3667
3666
  };
3668
- },
3669
- updateFogColor() {
3670
- // 实现雾化颜色更新逻辑
3671
3667
  }
3672
3668
  }
3673
3669
  });
@@ -3677,10 +3673,10 @@ var prism_default = /*#__PURE__*/__webpack_require__.n(prism);
3677
3673
  var injectStylesIntoStyleTag = __webpack_require__(3);
3678
3674
  var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
3679
3675
 
3680
- // EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=5217aa42&prod&lang=scss&scoped=true
3681
- var mainvue_type_style_index_0_id_5217aa42_prod_lang_scss_scoped_true = __webpack_require__(10);
3676
+ // EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=59bebd7c&prod&lang=scss&scoped=true
3677
+ var mainvue_type_style_index_0_id_59bebd7c_prod_lang_scss_scoped_true = __webpack_require__(10);
3682
3678
 
3683
- // CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=5217aa42&prod&lang=scss&scoped=true
3679
+ // CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=59bebd7c&prod&lang=scss&scoped=true
3684
3680
 
3685
3681
 
3686
3682
 
@@ -3689,12 +3685,12 @@ var options = {};
3689
3685
  options.insert = "head";
3690
3686
  options.singleton = false;
3691
3687
 
3692
- var update = injectStylesIntoStyleTag_default()(mainvue_type_style_index_0_id_5217aa42_prod_lang_scss_scoped_true["a" /* default */], options);
3688
+ var update = injectStylesIntoStyleTag_default()(mainvue_type_style_index_0_id_59bebd7c_prod_lang_scss_scoped_true["a" /* default */], options);
3693
3689
 
3694
3690
 
3695
3691
 
3696
- /* harmony default export */ var src_mainvue_type_style_index_0_id_5217aa42_prod_lang_scss_scoped_true = (mainvue_type_style_index_0_id_5217aa42_prod_lang_scss_scoped_true["a" /* default */].locals || {});
3697
- // CONCATENATED MODULE: ./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=5217aa42&prod&lang=scss&scoped=true
3692
+ /* harmony default export */ var src_mainvue_type_style_index_0_id_59bebd7c_prod_lang_scss_scoped_true = (mainvue_type_style_index_0_id_59bebd7c_prod_lang_scss_scoped_true["a" /* default */].locals || {});
3693
+ // CONCATENATED MODULE: ./src/components/Typewriter/src/main.vue?vue&type=style&index=0&id=59bebd7c&prod&lang=scss&scoped=true
3698
3694
 
3699
3695
  // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
3700
3696
  var componentNormalizer = __webpack_require__(0);
@@ -3714,7 +3710,7 @@ var component = Object(componentNormalizer["a" /* default */])(
3714
3710
  staticRenderFns,
3715
3711
  false,
3716
3712
  null,
3717
- "5217aa42",
3713
+ "59bebd7c",
3718
3714
  null
3719
3715
 
3720
3716
  )
@@ -3739,7 +3735,7 @@ main.install = function (Vue) {
3739
3735
 
3740
3736
 
3741
3737
  /*eslint quotes:0*/
3742
- module.exports = __webpack_require__(30);
3738
+ module.exports = __webpack_require__(33);
3743
3739
 
3744
3740
 
3745
3741
  /***/ }),
@@ -3750,10 +3746,10 @@ module.exports = __webpack_require__(30);
3750
3746
 
3751
3747
 
3752
3748
 
3753
- module.exports.encode = __webpack_require__(31);
3754
- module.exports.decode = __webpack_require__(32);
3755
- module.exports.format = __webpack_require__(33);
3756
- module.exports.parse = __webpack_require__(34);
3749
+ module.exports.encode = __webpack_require__(34);
3750
+ module.exports.decode = __webpack_require__(35);
3751
+ module.exports.format = __webpack_require__(36);
3752
+ module.exports.parse = __webpack_require__(37);
3757
3753
 
3758
3754
 
3759
3755
  /***/ }),
@@ -5445,7 +5441,7 @@ module.exports.postProcess = function emphasis(state) {
5445
5441
 
5446
5442
 
5447
5443
 
5448
- module.exports = __webpack_require__(29);
5444
+ module.exports = __webpack_require__(32);
5449
5445
 
5450
5446
 
5451
5447
  /***/ }),
@@ -5494,7 +5490,9 @@ module.exports = function(module) {
5494
5490
 
5495
5491
  /***/ }),
5496
5492
  /* 25 */,
5497
- /* 26 */
5493
+ /* 26 */,
5494
+ /* 27 */,
5495
+ /* 28 */
5498
5496
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
5499
5497
 
5500
5498
  "use strict";
@@ -5504,21 +5502,21 @@ module.exports = function(module) {
5504
5502
 
5505
5503
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
5506
5504
  // Module
5507
- ___CSS_LOADER_EXPORT___.push([module.i, "[data-v-716e941e]:root{--color-primary: #409EFF;--color-success: #67C23A;--color-warning: #E6A23C;--color-danger: #F56C6C;--color-info: #909399}.el-x-bubble[data-v-716e941e]{display:flex;gap:var(--el-x-bubble-avatar-placeholder-gap)}.el-x-bubble-avatar-size[data-v-716e941e] .el-avatar{width:var(--el-x-bubble-avatar-placeholder-width);height:var(--el-x-bubble-avatar-placeholder-height)}.el-x-bubble-avatar-placeholder[data-v-716e941e]{width:var(--el-x-bubble-avatar-placeholder-width);height:var(--el-x-bubble-avatar-placeholder-height)}.el-x-bubble-start .el-x-bubble-content-wrapper .el-x-bubble-content-corner[data-v-716e941e]{border-start-start-radius:2px}.el-x-bubble-end[data-v-716e941e]{justify-content:end;flex-direction:row-reverse}.el-x-bubble-end .el-x-bubble-content-wrapper[data-v-716e941e]{align-items:flex-end}.el-x-bubble-end .el-x-bubble-content-wrapper .el-x-bubble-content-corner[data-v-716e941e]{border-start-end-radius:2px}.el-x-bubble-no-style .el-x-bubble-content-wrapper .el-x-bubble-content[data-v-716e941e]{background-color:rgba(0,0,0,0);padding:0}.el-x-bubble-content-wrapper[data-v-716e941e]{flex:auto;display:flex;flex-direction:column;align-items:flex-start;min-width:0;max-width:100%}.el-x-bubble-content-wrapper .el-x-bubble-header[data-v-716e941e],.el-x-bubble-content-wrapper .el-x-bubble-content[data-v-716e941e],.el-x-bubble-content-wrapper .el-x-bubble-footer[data-v-716e941e]{font-size:14px;color:#303133;line-height:24px}.el-x-bubble-content-wrapper .el-x-bubble-content[data-v-716e941e]{background-color:#edf2fc;padding:12px 18px;border-radius:8px;position:relative;box-sizing:border-box;min-width:0;max-width:var(--bubble-content-max-width);color:#303133;font-size:14px;line-height:24px;word-break:break-word}.el-x-bubble-content-wrapper .el-x-bubble-content .no-content[data-v-716e941e]{height:0}.el-x-bubble-content-wrapper .el-x-bubble-content-round[data-v-716e941e]{border-radius:20px}.el-x-bubble-content-wrapper .el-x-bubble-content-filled[data-v-716e941e]{background-color:#edf2fc}.el-x-bubble-content-wrapper .el-x-bubble-content-borderless[data-v-716e941e]{background-color:#edf2fc;border:1px solid #dcdfe6}.el-x-bubble-content-wrapper .el-x-bubble-content-outlined[data-v-716e941e]{background:none;border:1px solid #dcdfe6}.el-x-bubble-content-wrapper .el-x-bubble-content-shadow[data-v-716e941e]{background:none;box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.04)}.el-x-bubble-content-wrapper .el-x-bubble-content-loading[data-v-716e941e]{width:fit-content}.el-x-bubble-content-wrapper .el-x-bubble-content-loading .el-x-bubble-loading-wrap[data-v-716e941e]{display:flex;justify-content:center;align-items:center;gap:5px}.el-x-bubble-content-wrapper .el-x-bubble-content-loading .dot[data-v-716e941e]{width:5px;height:5px;background-color:#409eff;border-radius:50%;animation:wave-716e941e 1s infinite ease-in-out}@keyframes wave-716e941e{0%,100%{transform:translateY(-2px)}50%{transform:translateY(2px)}}.el-x-bubble-content-wrapper .el-x-bubble-footer[data-v-716e941e]{margin-top:8px}", ""]);
5505
+ ___CSS_LOADER_EXPORT___.push([module.i, "[data-v-27f47877]:root{--color-primary: #409eff;--color-success: #67c23a;--color-warning: #e6a23c;--color-danger: #f56c6c;--color-info: #909399}.el-x-bubble[data-v-27f47877]{display:flex;gap:var(--el-x-bubble-avatar-placeholder-gap)}.el-x-bubble-avatar-size[data-v-27f47877] .el-avatar{width:var(--el-x-bubble-avatar-placeholder-width) !important;height:var(--el-x-bubble-avatar-placeholder-height) !important}.el-x-bubble-avatar-placeholder[data-v-27f47877]{width:var(--el-x-bubble-avatar-placeholder-width) !important;height:var(--el-x-bubble-avatar-placeholder-height) !important}.el-x-bubble-start .el-x-bubble-content-wrapper .el-x-bubble-content-corner[data-v-27f47877]{border-start-start-radius:2px}.el-x-bubble-end[data-v-27f47877]{justify-content:end;flex-direction:row-reverse}.el-x-bubble-end .el-x-bubble-content-wrapper[data-v-27f47877]{align-items:flex-end}.el-x-bubble-end .el-x-bubble-content-wrapper .el-x-bubble-content-corner[data-v-27f47877]{border-start-end-radius:2px}.el-x-bubble-no-style .el-x-bubble-content-wrapper .el-x-bubble-content[data-v-27f47877]{background-color:transparent;padding:0}.el-x-bubble-content-wrapper[data-v-27f47877]{flex:auto;display:flex;flex-direction:column;align-items:flex-start;min-width:0;max-width:100%}.el-x-bubble-content-wrapper .el-x-bubble-header[data-v-27f47877],.el-x-bubble-content-wrapper .el-x-bubble-content[data-v-27f47877],.el-x-bubble-content-wrapper .el-x-bubble-footer[data-v-27f47877]{font-size:14px;color:#303133;line-height:24px}.el-x-bubble-content-wrapper .el-x-bubble-content[data-v-27f47877]{background-color:#edf2fc;padding:12px 18px;border-radius:8px;position:relative;box-sizing:border-box;min-width:0;max-width:var(--bubble-content-max-width);color:#303133;font-size:14px;line-height:24px;word-break:break-word}.el-x-bubble-content-wrapper .el-x-bubble-content .no-content[data-v-27f47877]{height:0}.el-x-bubble-content-wrapper .el-x-bubble-content-round[data-v-27f47877]{border-radius:20px}.el-x-bubble-content-wrapper .el-x-bubble-content-filled[data-v-27f47877]{background-color:#edf2fc}.el-x-bubble-content-wrapper .el-x-bubble-content-borderless[data-v-27f47877]{background-color:#edf2fc;border:1px solid #dcdfe6}.el-x-bubble-content-wrapper .el-x-bubble-content-outlined[data-v-27f47877]{background:none;border:1px solid #dcdfe6}.el-x-bubble-content-wrapper .el-x-bubble-content-shadow[data-v-27f47877]{background:none;box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.04)}.el-x-bubble-content-wrapper .el-x-bubble-content-loading[data-v-27f47877]{width:fit-content}.el-x-bubble-content-wrapper .el-x-bubble-content-loading .el-x-bubble-loading-wrap[data-v-27f47877]{display:flex;justify-content:center;align-items:center;gap:5px}.el-x-bubble-content-wrapper .el-x-bubble-content-loading .dot[data-v-27f47877]{width:5px;height:5px;background-color:#409eff;border-radius:50%;animation:wave-27f47877 1s infinite ease-in-out}@keyframes wave-27f47877{0%,100%{transform:translateY(-2px)}50%{transform:translateY(2px)}}.el-x-bubble-content-wrapper .el-x-bubble-footer[data-v-27f47877]{margin-top:8px}", ""]);
5508
5506
  // Exports
5509
5507
  /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
5510
5508
 
5511
5509
 
5512
5510
  /***/ }),
5513
- /* 27 */,
5514
- /* 28 */
5511
+ /* 29 */,
5512
+ /* 30 */
5515
5513
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
5516
5514
 
5517
5515
  "use strict";
5518
5516
  // ESM COMPAT FLAG
5519
5517
  __webpack_require__.r(__webpack_exports__);
5520
5518
 
5521
- // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Bubble/src/main.vue?vue&type=template&id=716e941e&scoped=true
5519
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Bubble/src/main.vue?vue&type=template&id=27f47877&scoped=true
5522
5520
  var render = function render() {
5523
5521
  var _vm = this,
5524
5522
  _c = _vm._self._c;
@@ -5543,10 +5541,9 @@ var render = function render() {
5543
5541
  staticClass: "el-x-bubble-avatar el-x-bubble-avatar-size"
5544
5542
  }, [_c("el-avatar", {
5545
5543
  attrs: {
5546
- size: _vm.avatarSize,
5544
+ size: 0,
5547
5545
  src: _vm.avatar,
5548
5546
  shape: _vm.avatarShape,
5549
- icon: _vm.avatarIcon,
5550
5547
  "src-set": _vm.avatarSrcSet,
5551
5548
  alt: _vm.avatarAlt
5552
5549
  },
@@ -5565,12 +5562,12 @@ var render = function render() {
5565
5562
  staticClass: "el-x-bubble-content",
5566
5563
  class: {
5567
5564
  "el-x-bubble-content-loading": _vm.loading,
5568
- "el-x-bubble-content-round": _vm.shape === "round",
5569
- "el-x-bubble-content-corner": _vm.shape === "corner",
5570
- "el-x-bubble-content-filled": _vm.variant === "filled",
5571
- "el-x-bubble-content-borderless": _vm.variant === "borderless",
5572
- "el-x-bubble-content-outlined": _vm.variant === "outlined",
5573
- "el-x-bubble-content-shadow": _vm.variant === "shadow"
5565
+ "el-x-bubble-content-round": _vm.shape === "round" && !_vm.noStyle,
5566
+ "el-x-bubble-content-corner": _vm.shape === "corner" && !_vm.noStyle,
5567
+ "el-x-bubble-content-filled": _vm.variant === "filled" && !_vm.noStyle,
5568
+ "el-x-bubble-content-borderless": _vm.variant === "borderless" && !_vm.noStyle,
5569
+ "el-x-bubble-content-outlined": _vm.variant === "outlined" && !_vm.noStyle,
5570
+ "el-x-bubble-content-shadow": _vm.variant === "shadow" && !_vm.noStyle
5574
5571
  }
5575
5572
  }, [!_vm.loading ? _c("div", {
5576
5573
  staticClass: "el-typewriter",
@@ -5609,7 +5606,7 @@ var render = function render() {
5609
5606
  var staticRenderFns = [];
5610
5607
  render._withStripped = true;
5611
5608
 
5612
- // CONCATENATED MODULE: ./src/components/Bubble/src/main.vue?vue&type=template&id=716e941e&scoped=true
5609
+ // CONCATENATED MODULE: ./src/components/Bubble/src/main.vue?vue&type=template&id=27f47877&scoped=true
5613
5610
 
5614
5611
  // EXTERNAL MODULE: ./src/components/Typewriter/index.js + 7 modules
5615
5612
  var Typewriter = __webpack_require__(12);
@@ -5626,10 +5623,6 @@ var Typewriter = __webpack_require__(12);
5626
5623
  type: String,
5627
5624
  default: ''
5628
5625
  },
5629
- reasoning_content: {
5630
- type: String,
5631
- default: ''
5632
- },
5633
5626
  avatar: {
5634
5627
  type: String,
5635
5628
  default: ''
@@ -5658,10 +5651,6 @@ var Typewriter = __webpack_require__(12);
5658
5651
  type: String,
5659
5652
  default: 'circle'
5660
5653
  },
5661
- avatarIcon: {
5662
- type: String,
5663
- default: ''
5664
- },
5665
5654
  avatarSrcSet: {
5666
5655
  type: String,
5667
5656
  default: ''
@@ -5782,10 +5771,10 @@ var Typewriter = __webpack_require__(12);
5782
5771
  var injectStylesIntoStyleTag = __webpack_require__(3);
5783
5772
  var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
5784
5773
 
5785
- // EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Bubble/src/main.vue?vue&type=style&index=0&id=716e941e&prod&lang=scss&scoped=true
5786
- var mainvue_type_style_index_0_id_716e941e_prod_lang_scss_scoped_true = __webpack_require__(26);
5774
+ // EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Bubble/src/main.vue?vue&type=style&index=0&id=27f47877&prod&lang=scss&scoped=true
5775
+ var mainvue_type_style_index_0_id_27f47877_prod_lang_scss_scoped_true = __webpack_require__(28);
5787
5776
 
5788
- // CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Bubble/src/main.vue?vue&type=style&index=0&id=716e941e&prod&lang=scss&scoped=true
5777
+ // CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Bubble/src/main.vue?vue&type=style&index=0&id=27f47877&prod&lang=scss&scoped=true
5789
5778
 
5790
5779
 
5791
5780
 
@@ -5794,12 +5783,12 @@ var options = {};
5794
5783
  options.insert = "head";
5795
5784
  options.singleton = false;
5796
5785
 
5797
- var update = injectStylesIntoStyleTag_default()(mainvue_type_style_index_0_id_716e941e_prod_lang_scss_scoped_true["a" /* default */], options);
5786
+ var update = injectStylesIntoStyleTag_default()(mainvue_type_style_index_0_id_27f47877_prod_lang_scss_scoped_true["a" /* default */], options);
5798
5787
 
5799
5788
 
5800
5789
 
5801
- /* harmony default export */ var src_mainvue_type_style_index_0_id_716e941e_prod_lang_scss_scoped_true = (mainvue_type_style_index_0_id_716e941e_prod_lang_scss_scoped_true["a" /* default */].locals || {});
5802
- // CONCATENATED MODULE: ./src/components/Bubble/src/main.vue?vue&type=style&index=0&id=716e941e&prod&lang=scss&scoped=true
5790
+ /* harmony default export */ var src_mainvue_type_style_index_0_id_27f47877_prod_lang_scss_scoped_true = (mainvue_type_style_index_0_id_27f47877_prod_lang_scss_scoped_true["a" /* default */].locals || {});
5791
+ // CONCATENATED MODULE: ./src/components/Bubble/src/main.vue?vue&type=style&index=0&id=27f47877&prod&lang=scss&scoped=true
5803
5792
 
5804
5793
  // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
5805
5794
  var componentNormalizer = __webpack_require__(0);
@@ -5819,7 +5808,7 @@ var component = Object(componentNormalizer["a" /* default */])(
5819
5808
  staticRenderFns,
5820
5809
  false,
5821
5810
  null,
5822
- "716e941e",
5811
+ "27f47877",
5823
5812
  null
5824
5813
 
5825
5814
  )
@@ -5834,7 +5823,8 @@ main.install = function (Vue) {
5834
5823
  /* harmony default export */ var Bubble = __webpack_exports__["default"] = (main);
5835
5824
 
5836
5825
  /***/ }),
5837
- /* 29 */
5826
+ /* 31 */,
5827
+ /* 32 */
5838
5828
  /***/ (function(module, exports, __webpack_require__) {
5839
5829
 
5840
5830
  "use strict";
@@ -5844,20 +5834,20 @@ main.install = function (Vue) {
5844
5834
 
5845
5835
 
5846
5836
  var utils = __webpack_require__(1);
5847
- var helpers = __webpack_require__(37);
5848
- var Renderer = __webpack_require__(41);
5849
- var ParserCore = __webpack_require__(42);
5850
- var ParserBlock = __webpack_require__(50);
5851
- var ParserInline = __webpack_require__(64);
5852
- var LinkifyIt = __webpack_require__(77);
5837
+ var helpers = __webpack_require__(40);
5838
+ var Renderer = __webpack_require__(44);
5839
+ var ParserCore = __webpack_require__(45);
5840
+ var ParserBlock = __webpack_require__(53);
5841
+ var ParserInline = __webpack_require__(67);
5842
+ var LinkifyIt = __webpack_require__(80);
5853
5843
  var mdurl = __webpack_require__(14);
5854
- var punycode = __webpack_require__(79);
5844
+ var punycode = __webpack_require__(82);
5855
5845
 
5856
5846
 
5857
5847
  var config = {
5858
- default: __webpack_require__(80),
5859
- zero: __webpack_require__(81),
5860
- commonmark: __webpack_require__(82)
5848
+ default: __webpack_require__(83),
5849
+ zero: __webpack_require__(84),
5850
+ commonmark: __webpack_require__(85)
5861
5851
  };
5862
5852
 
5863
5853
  ////////////////////////////////////////////////////////////////////////////////
@@ -6423,13 +6413,13 @@ module.exports = MarkdownIt;
6423
6413
 
6424
6414
 
6425
6415
  /***/ }),
6426
- /* 30 */
6416
+ /* 33 */
6427
6417
  /***/ (function(module) {
6428
6418
 
6429
6419
  module.exports = JSON.parse("{\"Aacute\":\"Á\",\"aacute\":\"á\",\"Abreve\":\"Ă\",\"abreve\":\"ă\",\"ac\":\"∾\",\"acd\":\"∿\",\"acE\":\"∾̳\",\"Acirc\":\"Â\",\"acirc\":\"â\",\"acute\":\"´\",\"Acy\":\"А\",\"acy\":\"а\",\"AElig\":\"Æ\",\"aelig\":\"æ\",\"af\":\"⁡\",\"Afr\":\"𝔄\",\"afr\":\"𝔞\",\"Agrave\":\"À\",\"agrave\":\"à\",\"alefsym\":\"ℵ\",\"aleph\":\"ℵ\",\"Alpha\":\"Α\",\"alpha\":\"α\",\"Amacr\":\"Ā\",\"amacr\":\"ā\",\"amalg\":\"⨿\",\"amp\":\"&\",\"AMP\":\"&\",\"andand\":\"⩕\",\"And\":\"⩓\",\"and\":\"∧\",\"andd\":\"⩜\",\"andslope\":\"⩘\",\"andv\":\"⩚\",\"ang\":\"∠\",\"ange\":\"⦤\",\"angle\":\"∠\",\"angmsdaa\":\"⦨\",\"angmsdab\":\"⦩\",\"angmsdac\":\"⦪\",\"angmsdad\":\"⦫\",\"angmsdae\":\"⦬\",\"angmsdaf\":\"⦭\",\"angmsdag\":\"⦮\",\"angmsdah\":\"⦯\",\"angmsd\":\"∡\",\"angrt\":\"∟\",\"angrtvb\":\"⊾\",\"angrtvbd\":\"⦝\",\"angsph\":\"∢\",\"angst\":\"Å\",\"angzarr\":\"⍼\",\"Aogon\":\"Ą\",\"aogon\":\"ą\",\"Aopf\":\"𝔸\",\"aopf\":\"𝕒\",\"apacir\":\"⩯\",\"ap\":\"≈\",\"apE\":\"⩰\",\"ape\":\"≊\",\"apid\":\"≋\",\"apos\":\"'\",\"ApplyFunction\":\"⁡\",\"approx\":\"≈\",\"approxeq\":\"≊\",\"Aring\":\"Å\",\"aring\":\"å\",\"Ascr\":\"𝒜\",\"ascr\":\"𝒶\",\"Assign\":\"≔\",\"ast\":\"*\",\"asymp\":\"≈\",\"asympeq\":\"≍\",\"Atilde\":\"Ã\",\"atilde\":\"ã\",\"Auml\":\"Ä\",\"auml\":\"ä\",\"awconint\":\"∳\",\"awint\":\"⨑\",\"backcong\":\"≌\",\"backepsilon\":\"϶\",\"backprime\":\"‵\",\"backsim\":\"∽\",\"backsimeq\":\"⋍\",\"Backslash\":\"∖\",\"Barv\":\"⫧\",\"barvee\":\"⊽\",\"barwed\":\"⌅\",\"Barwed\":\"⌆\",\"barwedge\":\"⌅\",\"bbrk\":\"⎵\",\"bbrktbrk\":\"⎶\",\"bcong\":\"≌\",\"Bcy\":\"Б\",\"bcy\":\"б\",\"bdquo\":\"„\",\"becaus\":\"∵\",\"because\":\"∵\",\"Because\":\"∵\",\"bemptyv\":\"⦰\",\"bepsi\":\"϶\",\"bernou\":\"ℬ\",\"Bernoullis\":\"ℬ\",\"Beta\":\"Β\",\"beta\":\"β\",\"beth\":\"ℶ\",\"between\":\"≬\",\"Bfr\":\"𝔅\",\"bfr\":\"𝔟\",\"bigcap\":\"⋂\",\"bigcirc\":\"◯\",\"bigcup\":\"⋃\",\"bigodot\":\"⨀\",\"bigoplus\":\"⨁\",\"bigotimes\":\"⨂\",\"bigsqcup\":\"⨆\",\"bigstar\":\"★\",\"bigtriangledown\":\"▽\",\"bigtriangleup\":\"△\",\"biguplus\":\"⨄\",\"bigvee\":\"⋁\",\"bigwedge\":\"⋀\",\"bkarow\":\"⤍\",\"blacklozenge\":\"⧫\",\"blacksquare\":\"▪\",\"blacktriangle\":\"▴\",\"blacktriangledown\":\"▾\",\"blacktriangleleft\":\"◂\",\"blacktriangleright\":\"▸\",\"blank\":\"␣\",\"blk12\":\"▒\",\"blk14\":\"░\",\"blk34\":\"▓\",\"block\":\"█\",\"bne\":\"=⃥\",\"bnequiv\":\"≡⃥\",\"bNot\":\"⫭\",\"bnot\":\"⌐\",\"Bopf\":\"𝔹\",\"bopf\":\"𝕓\",\"bot\":\"⊥\",\"bottom\":\"⊥\",\"bowtie\":\"⋈\",\"boxbox\":\"⧉\",\"boxdl\":\"┐\",\"boxdL\":\"╕\",\"boxDl\":\"╖\",\"boxDL\":\"╗\",\"boxdr\":\"┌\",\"boxdR\":\"╒\",\"boxDr\":\"╓\",\"boxDR\":\"╔\",\"boxh\":\"─\",\"boxH\":\"═\",\"boxhd\":\"┬\",\"boxHd\":\"╤\",\"boxhD\":\"╥\",\"boxHD\":\"╦\",\"boxhu\":\"┴\",\"boxHu\":\"╧\",\"boxhU\":\"╨\",\"boxHU\":\"╩\",\"boxminus\":\"⊟\",\"boxplus\":\"⊞\",\"boxtimes\":\"⊠\",\"boxul\":\"┘\",\"boxuL\":\"╛\",\"boxUl\":\"╜\",\"boxUL\":\"╝\",\"boxur\":\"└\",\"boxuR\":\"╘\",\"boxUr\":\"╙\",\"boxUR\":\"╚\",\"boxv\":\"│\",\"boxV\":\"║\",\"boxvh\":\"┼\",\"boxvH\":\"╪\",\"boxVh\":\"╫\",\"boxVH\":\"╬\",\"boxvl\":\"┤\",\"boxvL\":\"╡\",\"boxVl\":\"╢\",\"boxVL\":\"╣\",\"boxvr\":\"├\",\"boxvR\":\"╞\",\"boxVr\":\"╟\",\"boxVR\":\"╠\",\"bprime\":\"‵\",\"breve\":\"˘\",\"Breve\":\"˘\",\"brvbar\":\"¦\",\"bscr\":\"𝒷\",\"Bscr\":\"ℬ\",\"bsemi\":\"⁏\",\"bsim\":\"∽\",\"bsime\":\"⋍\",\"bsolb\":\"⧅\",\"bsol\":\"\\\\\",\"bsolhsub\":\"⟈\",\"bull\":\"•\",\"bullet\":\"•\",\"bump\":\"≎\",\"bumpE\":\"⪮\",\"bumpe\":\"≏\",\"Bumpeq\":\"≎\",\"bumpeq\":\"≏\",\"Cacute\":\"Ć\",\"cacute\":\"ć\",\"capand\":\"⩄\",\"capbrcup\":\"⩉\",\"capcap\":\"⩋\",\"cap\":\"∩\",\"Cap\":\"⋒\",\"capcup\":\"⩇\",\"capdot\":\"⩀\",\"CapitalDifferentialD\":\"ⅅ\",\"caps\":\"∩︀\",\"caret\":\"⁁\",\"caron\":\"ˇ\",\"Cayleys\":\"ℭ\",\"ccaps\":\"⩍\",\"Ccaron\":\"Č\",\"ccaron\":\"č\",\"Ccedil\":\"Ç\",\"ccedil\":\"ç\",\"Ccirc\":\"Ĉ\",\"ccirc\":\"ĉ\",\"Cconint\":\"∰\",\"ccups\":\"⩌\",\"ccupssm\":\"⩐\",\"Cdot\":\"Ċ\",\"cdot\":\"ċ\",\"cedil\":\"¸\",\"Cedilla\":\"¸\",\"cemptyv\":\"⦲\",\"cent\":\"¢\",\"centerdot\":\"·\",\"CenterDot\":\"·\",\"cfr\":\"𝔠\",\"Cfr\":\"ℭ\",\"CHcy\":\"Ч\",\"chcy\":\"ч\",\"check\":\"✓\",\"checkmark\":\"✓\",\"Chi\":\"Χ\",\"chi\":\"χ\",\"circ\":\"ˆ\",\"circeq\":\"≗\",\"circlearrowleft\":\"↺\",\"circlearrowright\":\"↻\",\"circledast\":\"⊛\",\"circledcirc\":\"⊚\",\"circleddash\":\"⊝\",\"CircleDot\":\"⊙\",\"circledR\":\"®\",\"circledS\":\"Ⓢ\",\"CircleMinus\":\"⊖\",\"CirclePlus\":\"⊕\",\"CircleTimes\":\"⊗\",\"cir\":\"○\",\"cirE\":\"⧃\",\"cire\":\"≗\",\"cirfnint\":\"⨐\",\"cirmid\":\"⫯\",\"cirscir\":\"⧂\",\"ClockwiseContourIntegral\":\"∲\",\"CloseCurlyDoubleQuote\":\"”\",\"CloseCurlyQuote\":\"’\",\"clubs\":\"♣\",\"clubsuit\":\"♣\",\"colon\":\":\",\"Colon\":\"∷\",\"Colone\":\"⩴\",\"colone\":\"≔\",\"coloneq\":\"≔\",\"comma\":\",\",\"commat\":\"@\",\"comp\":\"∁\",\"compfn\":\"∘\",\"complement\":\"∁\",\"complexes\":\"ℂ\",\"cong\":\"≅\",\"congdot\":\"⩭\",\"Congruent\":\"≡\",\"conint\":\"∮\",\"Conint\":\"∯\",\"ContourIntegral\":\"∮\",\"copf\":\"𝕔\",\"Copf\":\"ℂ\",\"coprod\":\"∐\",\"Coproduct\":\"∐\",\"copy\":\"©\",\"COPY\":\"©\",\"copysr\":\"℗\",\"CounterClockwiseContourIntegral\":\"∳\",\"crarr\":\"↵\",\"cross\":\"✗\",\"Cross\":\"⨯\",\"Cscr\":\"𝒞\",\"cscr\":\"𝒸\",\"csub\":\"⫏\",\"csube\":\"⫑\",\"csup\":\"⫐\",\"csupe\":\"⫒\",\"ctdot\":\"⋯\",\"cudarrl\":\"⤸\",\"cudarrr\":\"⤵\",\"cuepr\":\"⋞\",\"cuesc\":\"⋟\",\"cularr\":\"↶\",\"cularrp\":\"⤽\",\"cupbrcap\":\"⩈\",\"cupcap\":\"⩆\",\"CupCap\":\"≍\",\"cup\":\"∪\",\"Cup\":\"⋓\",\"cupcup\":\"⩊\",\"cupdot\":\"⊍\",\"cupor\":\"⩅\",\"cups\":\"∪︀\",\"curarr\":\"↷\",\"curarrm\":\"⤼\",\"curlyeqprec\":\"⋞\",\"curlyeqsucc\":\"⋟\",\"curlyvee\":\"⋎\",\"curlywedge\":\"⋏\",\"curren\":\"¤\",\"curvearrowleft\":\"↶\",\"curvearrowright\":\"↷\",\"cuvee\":\"⋎\",\"cuwed\":\"⋏\",\"cwconint\":\"∲\",\"cwint\":\"∱\",\"cylcty\":\"⌭\",\"dagger\":\"†\",\"Dagger\":\"‡\",\"daleth\":\"ℸ\",\"darr\":\"↓\",\"Darr\":\"↡\",\"dArr\":\"⇓\",\"dash\":\"‐\",\"Dashv\":\"⫤\",\"dashv\":\"⊣\",\"dbkarow\":\"⤏\",\"dblac\":\"˝\",\"Dcaron\":\"Ď\",\"dcaron\":\"ď\",\"Dcy\":\"Д\",\"dcy\":\"д\",\"ddagger\":\"‡\",\"ddarr\":\"⇊\",\"DD\":\"ⅅ\",\"dd\":\"ⅆ\",\"DDotrahd\":\"⤑\",\"ddotseq\":\"⩷\",\"deg\":\"°\",\"Del\":\"∇\",\"Delta\":\"Δ\",\"delta\":\"δ\",\"demptyv\":\"⦱\",\"dfisht\":\"⥿\",\"Dfr\":\"𝔇\",\"dfr\":\"𝔡\",\"dHar\":\"⥥\",\"dharl\":\"⇃\",\"dharr\":\"⇂\",\"DiacriticalAcute\":\"´\",\"DiacriticalDot\":\"˙\",\"DiacriticalDoubleAcute\":\"˝\",\"DiacriticalGrave\":\"`\",\"DiacriticalTilde\":\"˜\",\"diam\":\"⋄\",\"diamond\":\"⋄\",\"Diamond\":\"⋄\",\"diamondsuit\":\"♦\",\"diams\":\"♦\",\"die\":\"¨\",\"DifferentialD\":\"ⅆ\",\"digamma\":\"ϝ\",\"disin\":\"⋲\",\"div\":\"÷\",\"divide\":\"÷\",\"divideontimes\":\"⋇\",\"divonx\":\"⋇\",\"DJcy\":\"Ђ\",\"djcy\":\"ђ\",\"dlcorn\":\"⌞\",\"dlcrop\":\"⌍\",\"dollar\":\"$\",\"Dopf\":\"𝔻\",\"dopf\":\"𝕕\",\"Dot\":\"¨\",\"dot\":\"˙\",\"DotDot\":\"⃜\",\"doteq\":\"≐\",\"doteqdot\":\"≑\",\"DotEqual\":\"≐\",\"dotminus\":\"∸\",\"dotplus\":\"∔\",\"dotsquare\":\"⊡\",\"doublebarwedge\":\"⌆\",\"DoubleContourIntegral\":\"∯\",\"DoubleDot\":\"¨\",\"DoubleDownArrow\":\"⇓\",\"DoubleLeftArrow\":\"⇐\",\"DoubleLeftRightArrow\":\"⇔\",\"DoubleLeftTee\":\"⫤\",\"DoubleLongLeftArrow\":\"⟸\",\"DoubleLongLeftRightArrow\":\"⟺\",\"DoubleLongRightArrow\":\"⟹\",\"DoubleRightArrow\":\"⇒\",\"DoubleRightTee\":\"⊨\",\"DoubleUpArrow\":\"⇑\",\"DoubleUpDownArrow\":\"⇕\",\"DoubleVerticalBar\":\"∥\",\"DownArrowBar\":\"⤓\",\"downarrow\":\"↓\",\"DownArrow\":\"↓\",\"Downarrow\":\"⇓\",\"DownArrowUpArrow\":\"⇵\",\"DownBreve\":\"̑\",\"downdownarrows\":\"⇊\",\"downharpoonleft\":\"⇃\",\"downharpoonright\":\"⇂\",\"DownLeftRightVector\":\"⥐\",\"DownLeftTeeVector\":\"⥞\",\"DownLeftVectorBar\":\"⥖\",\"DownLeftVector\":\"↽\",\"DownRightTeeVector\":\"⥟\",\"DownRightVectorBar\":\"⥗\",\"DownRightVector\":\"⇁\",\"DownTeeArrow\":\"↧\",\"DownTee\":\"⊤\",\"drbkarow\":\"⤐\",\"drcorn\":\"⌟\",\"drcrop\":\"⌌\",\"Dscr\":\"𝒟\",\"dscr\":\"𝒹\",\"DScy\":\"Ѕ\",\"dscy\":\"ѕ\",\"dsol\":\"⧶\",\"Dstrok\":\"Đ\",\"dstrok\":\"đ\",\"dtdot\":\"⋱\",\"dtri\":\"▿\",\"dtrif\":\"▾\",\"duarr\":\"⇵\",\"duhar\":\"⥯\",\"dwangle\":\"⦦\",\"DZcy\":\"Џ\",\"dzcy\":\"џ\",\"dzigrarr\":\"⟿\",\"Eacute\":\"É\",\"eacute\":\"é\",\"easter\":\"⩮\",\"Ecaron\":\"Ě\",\"ecaron\":\"ě\",\"Ecirc\":\"Ê\",\"ecirc\":\"ê\",\"ecir\":\"≖\",\"ecolon\":\"≕\",\"Ecy\":\"Э\",\"ecy\":\"э\",\"eDDot\":\"⩷\",\"Edot\":\"Ė\",\"edot\":\"ė\",\"eDot\":\"≑\",\"ee\":\"ⅇ\",\"efDot\":\"≒\",\"Efr\":\"𝔈\",\"efr\":\"𝔢\",\"eg\":\"⪚\",\"Egrave\":\"È\",\"egrave\":\"è\",\"egs\":\"⪖\",\"egsdot\":\"⪘\",\"el\":\"⪙\",\"Element\":\"∈\",\"elinters\":\"⏧\",\"ell\":\"ℓ\",\"els\":\"⪕\",\"elsdot\":\"⪗\",\"Emacr\":\"Ē\",\"emacr\":\"ē\",\"empty\":\"∅\",\"emptyset\":\"∅\",\"EmptySmallSquare\":\"◻\",\"emptyv\":\"∅\",\"EmptyVerySmallSquare\":\"▫\",\"emsp13\":\" \",\"emsp14\":\" \",\"emsp\":\" \",\"ENG\":\"Ŋ\",\"eng\":\"ŋ\",\"ensp\":\" \",\"Eogon\":\"Ę\",\"eogon\":\"ę\",\"Eopf\":\"𝔼\",\"eopf\":\"𝕖\",\"epar\":\"⋕\",\"eparsl\":\"⧣\",\"eplus\":\"⩱\",\"epsi\":\"ε\",\"Epsilon\":\"Ε\",\"epsilon\":\"ε\",\"epsiv\":\"ϵ\",\"eqcirc\":\"≖\",\"eqcolon\":\"≕\",\"eqsim\":\"≂\",\"eqslantgtr\":\"⪖\",\"eqslantless\":\"⪕\",\"Equal\":\"⩵\",\"equals\":\"=\",\"EqualTilde\":\"≂\",\"equest\":\"≟\",\"Equilibrium\":\"⇌\",\"equiv\":\"≡\",\"equivDD\":\"⩸\",\"eqvparsl\":\"⧥\",\"erarr\":\"⥱\",\"erDot\":\"≓\",\"escr\":\"ℯ\",\"Escr\":\"ℰ\",\"esdot\":\"≐\",\"Esim\":\"⩳\",\"esim\":\"≂\",\"Eta\":\"Η\",\"eta\":\"η\",\"ETH\":\"Ð\",\"eth\":\"ð\",\"Euml\":\"Ë\",\"euml\":\"ë\",\"euro\":\"€\",\"excl\":\"!\",\"exist\":\"∃\",\"Exists\":\"∃\",\"expectation\":\"ℰ\",\"exponentiale\":\"ⅇ\",\"ExponentialE\":\"ⅇ\",\"fallingdotseq\":\"≒\",\"Fcy\":\"Ф\",\"fcy\":\"ф\",\"female\":\"♀\",\"ffilig\":\"ffi\",\"fflig\":\"ff\",\"ffllig\":\"ffl\",\"Ffr\":\"𝔉\",\"ffr\":\"𝔣\",\"filig\":\"fi\",\"FilledSmallSquare\":\"◼\",\"FilledVerySmallSquare\":\"▪\",\"fjlig\":\"fj\",\"flat\":\"♭\",\"fllig\":\"fl\",\"fltns\":\"▱\",\"fnof\":\"ƒ\",\"Fopf\":\"𝔽\",\"fopf\":\"𝕗\",\"forall\":\"∀\",\"ForAll\":\"∀\",\"fork\":\"⋔\",\"forkv\":\"⫙\",\"Fouriertrf\":\"ℱ\",\"fpartint\":\"⨍\",\"frac12\":\"½\",\"frac13\":\"⅓\",\"frac14\":\"¼\",\"frac15\":\"⅕\",\"frac16\":\"⅙\",\"frac18\":\"⅛\",\"frac23\":\"⅔\",\"frac25\":\"⅖\",\"frac34\":\"¾\",\"frac35\":\"⅗\",\"frac38\":\"⅜\",\"frac45\":\"⅘\",\"frac56\":\"⅚\",\"frac58\":\"⅝\",\"frac78\":\"⅞\",\"frasl\":\"⁄\",\"frown\":\"⌢\",\"fscr\":\"𝒻\",\"Fscr\":\"ℱ\",\"gacute\":\"ǵ\",\"Gamma\":\"Γ\",\"gamma\":\"γ\",\"Gammad\":\"Ϝ\",\"gammad\":\"ϝ\",\"gap\":\"⪆\",\"Gbreve\":\"Ğ\",\"gbreve\":\"ğ\",\"Gcedil\":\"Ģ\",\"Gcirc\":\"Ĝ\",\"gcirc\":\"ĝ\",\"Gcy\":\"Г\",\"gcy\":\"г\",\"Gdot\":\"Ġ\",\"gdot\":\"ġ\",\"ge\":\"≥\",\"gE\":\"≧\",\"gEl\":\"⪌\",\"gel\":\"⋛\",\"geq\":\"≥\",\"geqq\":\"≧\",\"geqslant\":\"⩾\",\"gescc\":\"⪩\",\"ges\":\"⩾\",\"gesdot\":\"⪀\",\"gesdoto\":\"⪂\",\"gesdotol\":\"⪄\",\"gesl\":\"⋛︀\",\"gesles\":\"⪔\",\"Gfr\":\"𝔊\",\"gfr\":\"𝔤\",\"gg\":\"≫\",\"Gg\":\"⋙\",\"ggg\":\"⋙\",\"gimel\":\"ℷ\",\"GJcy\":\"Ѓ\",\"gjcy\":\"ѓ\",\"gla\":\"⪥\",\"gl\":\"≷\",\"glE\":\"⪒\",\"glj\":\"⪤\",\"gnap\":\"⪊\",\"gnapprox\":\"⪊\",\"gne\":\"⪈\",\"gnE\":\"≩\",\"gneq\":\"⪈\",\"gneqq\":\"≩\",\"gnsim\":\"⋧\",\"Gopf\":\"𝔾\",\"gopf\":\"𝕘\",\"grave\":\"`\",\"GreaterEqual\":\"≥\",\"GreaterEqualLess\":\"⋛\",\"GreaterFullEqual\":\"≧\",\"GreaterGreater\":\"⪢\",\"GreaterLess\":\"≷\",\"GreaterSlantEqual\":\"⩾\",\"GreaterTilde\":\"≳\",\"Gscr\":\"𝒢\",\"gscr\":\"ℊ\",\"gsim\":\"≳\",\"gsime\":\"⪎\",\"gsiml\":\"⪐\",\"gtcc\":\"⪧\",\"gtcir\":\"⩺\",\"gt\":\">\",\"GT\":\">\",\"Gt\":\"≫\",\"gtdot\":\"⋗\",\"gtlPar\":\"⦕\",\"gtquest\":\"⩼\",\"gtrapprox\":\"⪆\",\"gtrarr\":\"⥸\",\"gtrdot\":\"⋗\",\"gtreqless\":\"⋛\",\"gtreqqless\":\"⪌\",\"gtrless\":\"≷\",\"gtrsim\":\"≳\",\"gvertneqq\":\"≩︀\",\"gvnE\":\"≩︀\",\"Hacek\":\"ˇ\",\"hairsp\":\" \",\"half\":\"½\",\"hamilt\":\"ℋ\",\"HARDcy\":\"Ъ\",\"hardcy\":\"ъ\",\"harrcir\":\"⥈\",\"harr\":\"↔\",\"hArr\":\"⇔\",\"harrw\":\"↭\",\"Hat\":\"^\",\"hbar\":\"ℏ\",\"Hcirc\":\"Ĥ\",\"hcirc\":\"ĥ\",\"hearts\":\"♥\",\"heartsuit\":\"♥\",\"hellip\":\"…\",\"hercon\":\"⊹\",\"hfr\":\"𝔥\",\"Hfr\":\"ℌ\",\"HilbertSpace\":\"ℋ\",\"hksearow\":\"⤥\",\"hkswarow\":\"⤦\",\"hoarr\":\"⇿\",\"homtht\":\"∻\",\"hookleftarrow\":\"↩\",\"hookrightarrow\":\"↪\",\"hopf\":\"𝕙\",\"Hopf\":\"ℍ\",\"horbar\":\"―\",\"HorizontalLine\":\"─\",\"hscr\":\"𝒽\",\"Hscr\":\"ℋ\",\"hslash\":\"ℏ\",\"Hstrok\":\"Ħ\",\"hstrok\":\"ħ\",\"HumpDownHump\":\"≎\",\"HumpEqual\":\"≏\",\"hybull\":\"⁃\",\"hyphen\":\"‐\",\"Iacute\":\"Í\",\"iacute\":\"í\",\"ic\":\"⁣\",\"Icirc\":\"Î\",\"icirc\":\"î\",\"Icy\":\"И\",\"icy\":\"и\",\"Idot\":\"İ\",\"IEcy\":\"Е\",\"iecy\":\"е\",\"iexcl\":\"¡\",\"iff\":\"⇔\",\"ifr\":\"𝔦\",\"Ifr\":\"ℑ\",\"Igrave\":\"Ì\",\"igrave\":\"ì\",\"ii\":\"ⅈ\",\"iiiint\":\"⨌\",\"iiint\":\"∭\",\"iinfin\":\"⧜\",\"iiota\":\"℩\",\"IJlig\":\"IJ\",\"ijlig\":\"ij\",\"Imacr\":\"Ī\",\"imacr\":\"ī\",\"image\":\"ℑ\",\"ImaginaryI\":\"ⅈ\",\"imagline\":\"ℐ\",\"imagpart\":\"ℑ\",\"imath\":\"ı\",\"Im\":\"ℑ\",\"imof\":\"⊷\",\"imped\":\"Ƶ\",\"Implies\":\"⇒\",\"incare\":\"℅\",\"in\":\"∈\",\"infin\":\"∞\",\"infintie\":\"⧝\",\"inodot\":\"ı\",\"intcal\":\"⊺\",\"int\":\"∫\",\"Int\":\"∬\",\"integers\":\"ℤ\",\"Integral\":\"∫\",\"intercal\":\"⊺\",\"Intersection\":\"⋂\",\"intlarhk\":\"⨗\",\"intprod\":\"⨼\",\"InvisibleComma\":\"⁣\",\"InvisibleTimes\":\"⁢\",\"IOcy\":\"Ё\",\"iocy\":\"ё\",\"Iogon\":\"Į\",\"iogon\":\"į\",\"Iopf\":\"𝕀\",\"iopf\":\"𝕚\",\"Iota\":\"Ι\",\"iota\":\"ι\",\"iprod\":\"⨼\",\"iquest\":\"¿\",\"iscr\":\"𝒾\",\"Iscr\":\"ℐ\",\"isin\":\"∈\",\"isindot\":\"⋵\",\"isinE\":\"⋹\",\"isins\":\"⋴\",\"isinsv\":\"⋳\",\"isinv\":\"∈\",\"it\":\"⁢\",\"Itilde\":\"Ĩ\",\"itilde\":\"ĩ\",\"Iukcy\":\"І\",\"iukcy\":\"і\",\"Iuml\":\"Ï\",\"iuml\":\"ï\",\"Jcirc\":\"Ĵ\",\"jcirc\":\"ĵ\",\"Jcy\":\"Й\",\"jcy\":\"й\",\"Jfr\":\"𝔍\",\"jfr\":\"𝔧\",\"jmath\":\"ȷ\",\"Jopf\":\"𝕁\",\"jopf\":\"𝕛\",\"Jscr\":\"𝒥\",\"jscr\":\"𝒿\",\"Jsercy\":\"Ј\",\"jsercy\":\"ј\",\"Jukcy\":\"Є\",\"jukcy\":\"є\",\"Kappa\":\"Κ\",\"kappa\":\"κ\",\"kappav\":\"ϰ\",\"Kcedil\":\"Ķ\",\"kcedil\":\"ķ\",\"Kcy\":\"К\",\"kcy\":\"к\",\"Kfr\":\"𝔎\",\"kfr\":\"𝔨\",\"kgreen\":\"ĸ\",\"KHcy\":\"Х\",\"khcy\":\"х\",\"KJcy\":\"Ќ\",\"kjcy\":\"ќ\",\"Kopf\":\"𝕂\",\"kopf\":\"𝕜\",\"Kscr\":\"𝒦\",\"kscr\":\"𝓀\",\"lAarr\":\"⇚\",\"Lacute\":\"Ĺ\",\"lacute\":\"ĺ\",\"laemptyv\":\"⦴\",\"lagran\":\"ℒ\",\"Lambda\":\"Λ\",\"lambda\":\"λ\",\"lang\":\"⟨\",\"Lang\":\"⟪\",\"langd\":\"⦑\",\"langle\":\"⟨\",\"lap\":\"⪅\",\"Laplacetrf\":\"ℒ\",\"laquo\":\"«\",\"larrb\":\"⇤\",\"larrbfs\":\"⤟\",\"larr\":\"←\",\"Larr\":\"↞\",\"lArr\":\"⇐\",\"larrfs\":\"⤝\",\"larrhk\":\"↩\",\"larrlp\":\"↫\",\"larrpl\":\"⤹\",\"larrsim\":\"⥳\",\"larrtl\":\"↢\",\"latail\":\"⤙\",\"lAtail\":\"⤛\",\"lat\":\"⪫\",\"late\":\"⪭\",\"lates\":\"⪭︀\",\"lbarr\":\"⤌\",\"lBarr\":\"⤎\",\"lbbrk\":\"❲\",\"lbrace\":\"{\",\"lbrack\":\"[\",\"lbrke\":\"⦋\",\"lbrksld\":\"⦏\",\"lbrkslu\":\"⦍\",\"Lcaron\":\"Ľ\",\"lcaron\":\"ľ\",\"Lcedil\":\"Ļ\",\"lcedil\":\"ļ\",\"lceil\":\"⌈\",\"lcub\":\"{\",\"Lcy\":\"Л\",\"lcy\":\"л\",\"ldca\":\"⤶\",\"ldquo\":\"“\",\"ldquor\":\"„\",\"ldrdhar\":\"⥧\",\"ldrushar\":\"⥋\",\"ldsh\":\"↲\",\"le\":\"≤\",\"lE\":\"≦\",\"LeftAngleBracket\":\"⟨\",\"LeftArrowBar\":\"⇤\",\"leftarrow\":\"←\",\"LeftArrow\":\"←\",\"Leftarrow\":\"⇐\",\"LeftArrowRightArrow\":\"⇆\",\"leftarrowtail\":\"↢\",\"LeftCeiling\":\"⌈\",\"LeftDoubleBracket\":\"⟦\",\"LeftDownTeeVector\":\"⥡\",\"LeftDownVectorBar\":\"⥙\",\"LeftDownVector\":\"⇃\",\"LeftFloor\":\"⌊\",\"leftharpoondown\":\"↽\",\"leftharpoonup\":\"↼\",\"leftleftarrows\":\"⇇\",\"leftrightarrow\":\"↔\",\"LeftRightArrow\":\"↔\",\"Leftrightarrow\":\"⇔\",\"leftrightarrows\":\"⇆\",\"leftrightharpoons\":\"⇋\",\"leftrightsquigarrow\":\"↭\",\"LeftRightVector\":\"⥎\",\"LeftTeeArrow\":\"↤\",\"LeftTee\":\"⊣\",\"LeftTeeVector\":\"⥚\",\"leftthreetimes\":\"⋋\",\"LeftTriangleBar\":\"⧏\",\"LeftTriangle\":\"⊲\",\"LeftTriangleEqual\":\"⊴\",\"LeftUpDownVector\":\"⥑\",\"LeftUpTeeVector\":\"⥠\",\"LeftUpVectorBar\":\"⥘\",\"LeftUpVector\":\"↿\",\"LeftVectorBar\":\"⥒\",\"LeftVector\":\"↼\",\"lEg\":\"⪋\",\"leg\":\"⋚\",\"leq\":\"≤\",\"leqq\":\"≦\",\"leqslant\":\"⩽\",\"lescc\":\"⪨\",\"les\":\"⩽\",\"lesdot\":\"⩿\",\"lesdoto\":\"⪁\",\"lesdotor\":\"⪃\",\"lesg\":\"⋚︀\",\"lesges\":\"⪓\",\"lessapprox\":\"⪅\",\"lessdot\":\"⋖\",\"lesseqgtr\":\"⋚\",\"lesseqqgtr\":\"⪋\",\"LessEqualGreater\":\"⋚\",\"LessFullEqual\":\"≦\",\"LessGreater\":\"≶\",\"lessgtr\":\"≶\",\"LessLess\":\"⪡\",\"lesssim\":\"≲\",\"LessSlantEqual\":\"⩽\",\"LessTilde\":\"≲\",\"lfisht\":\"⥼\",\"lfloor\":\"⌊\",\"Lfr\":\"𝔏\",\"lfr\":\"𝔩\",\"lg\":\"≶\",\"lgE\":\"⪑\",\"lHar\":\"⥢\",\"lhard\":\"↽\",\"lharu\":\"↼\",\"lharul\":\"⥪\",\"lhblk\":\"▄\",\"LJcy\":\"Љ\",\"ljcy\":\"љ\",\"llarr\":\"⇇\",\"ll\":\"≪\",\"Ll\":\"⋘\",\"llcorner\":\"⌞\",\"Lleftarrow\":\"⇚\",\"llhard\":\"⥫\",\"lltri\":\"◺\",\"Lmidot\":\"Ŀ\",\"lmidot\":\"ŀ\",\"lmoustache\":\"⎰\",\"lmoust\":\"⎰\",\"lnap\":\"⪉\",\"lnapprox\":\"⪉\",\"lne\":\"⪇\",\"lnE\":\"≨\",\"lneq\":\"⪇\",\"lneqq\":\"≨\",\"lnsim\":\"⋦\",\"loang\":\"⟬\",\"loarr\":\"⇽\",\"lobrk\":\"⟦\",\"longleftarrow\":\"⟵\",\"LongLeftArrow\":\"⟵\",\"Longleftarrow\":\"⟸\",\"longleftrightarrow\":\"⟷\",\"LongLeftRightArrow\":\"⟷\",\"Longleftrightarrow\":\"⟺\",\"longmapsto\":\"⟼\",\"longrightarrow\":\"⟶\",\"LongRightArrow\":\"⟶\",\"Longrightarrow\":\"⟹\",\"looparrowleft\":\"↫\",\"looparrowright\":\"↬\",\"lopar\":\"⦅\",\"Lopf\":\"𝕃\",\"lopf\":\"𝕝\",\"loplus\":\"⨭\",\"lotimes\":\"⨴\",\"lowast\":\"∗\",\"lowbar\":\"_\",\"LowerLeftArrow\":\"↙\",\"LowerRightArrow\":\"↘\",\"loz\":\"◊\",\"lozenge\":\"◊\",\"lozf\":\"⧫\",\"lpar\":\"(\",\"lparlt\":\"⦓\",\"lrarr\":\"⇆\",\"lrcorner\":\"⌟\",\"lrhar\":\"⇋\",\"lrhard\":\"⥭\",\"lrm\":\"‎\",\"lrtri\":\"⊿\",\"lsaquo\":\"‹\",\"lscr\":\"𝓁\",\"Lscr\":\"ℒ\",\"lsh\":\"↰\",\"Lsh\":\"↰\",\"lsim\":\"≲\",\"lsime\":\"⪍\",\"lsimg\":\"⪏\",\"lsqb\":\"[\",\"lsquo\":\"‘\",\"lsquor\":\"‚\",\"Lstrok\":\"Ł\",\"lstrok\":\"ł\",\"ltcc\":\"⪦\",\"ltcir\":\"⩹\",\"lt\":\"<\",\"LT\":\"<\",\"Lt\":\"≪\",\"ltdot\":\"⋖\",\"lthree\":\"⋋\",\"ltimes\":\"⋉\",\"ltlarr\":\"⥶\",\"ltquest\":\"⩻\",\"ltri\":\"◃\",\"ltrie\":\"⊴\",\"ltrif\":\"◂\",\"ltrPar\":\"⦖\",\"lurdshar\":\"⥊\",\"luruhar\":\"⥦\",\"lvertneqq\":\"≨︀\",\"lvnE\":\"≨︀\",\"macr\":\"¯\",\"male\":\"♂\",\"malt\":\"✠\",\"maltese\":\"✠\",\"Map\":\"⤅\",\"map\":\"↦\",\"mapsto\":\"↦\",\"mapstodown\":\"↧\",\"mapstoleft\":\"↤\",\"mapstoup\":\"↥\",\"marker\":\"▮\",\"mcomma\":\"⨩\",\"Mcy\":\"М\",\"mcy\":\"м\",\"mdash\":\"—\",\"mDDot\":\"∺\",\"measuredangle\":\"∡\",\"MediumSpace\":\" \",\"Mellintrf\":\"ℳ\",\"Mfr\":\"𝔐\",\"mfr\":\"𝔪\",\"mho\":\"℧\",\"micro\":\"µ\",\"midast\":\"*\",\"midcir\":\"⫰\",\"mid\":\"∣\",\"middot\":\"·\",\"minusb\":\"⊟\",\"minus\":\"−\",\"minusd\":\"∸\",\"minusdu\":\"⨪\",\"MinusPlus\":\"∓\",\"mlcp\":\"⫛\",\"mldr\":\"…\",\"mnplus\":\"∓\",\"models\":\"⊧\",\"Mopf\":\"𝕄\",\"mopf\":\"𝕞\",\"mp\":\"∓\",\"mscr\":\"𝓂\",\"Mscr\":\"ℳ\",\"mstpos\":\"∾\",\"Mu\":\"Μ\",\"mu\":\"μ\",\"multimap\":\"⊸\",\"mumap\":\"⊸\",\"nabla\":\"∇\",\"Nacute\":\"Ń\",\"nacute\":\"ń\",\"nang\":\"∠⃒\",\"nap\":\"≉\",\"napE\":\"⩰̸\",\"napid\":\"≋̸\",\"napos\":\"ʼn\",\"napprox\":\"≉\",\"natural\":\"♮\",\"naturals\":\"ℕ\",\"natur\":\"♮\",\"nbsp\":\" \",\"nbump\":\"≎̸\",\"nbumpe\":\"≏̸\",\"ncap\":\"⩃\",\"Ncaron\":\"Ň\",\"ncaron\":\"ň\",\"Ncedil\":\"Ņ\",\"ncedil\":\"ņ\",\"ncong\":\"≇\",\"ncongdot\":\"⩭̸\",\"ncup\":\"⩂\",\"Ncy\":\"Н\",\"ncy\":\"н\",\"ndash\":\"–\",\"nearhk\":\"⤤\",\"nearr\":\"↗\",\"neArr\":\"⇗\",\"nearrow\":\"↗\",\"ne\":\"≠\",\"nedot\":\"≐̸\",\"NegativeMediumSpace\":\"​\",\"NegativeThickSpace\":\"​\",\"NegativeThinSpace\":\"​\",\"NegativeVeryThinSpace\":\"​\",\"nequiv\":\"≢\",\"nesear\":\"⤨\",\"nesim\":\"≂̸\",\"NestedGreaterGreater\":\"≫\",\"NestedLessLess\":\"≪\",\"NewLine\":\"\\n\",\"nexist\":\"∄\",\"nexists\":\"∄\",\"Nfr\":\"𝔑\",\"nfr\":\"𝔫\",\"ngE\":\"≧̸\",\"nge\":\"≱\",\"ngeq\":\"≱\",\"ngeqq\":\"≧̸\",\"ngeqslant\":\"⩾̸\",\"nges\":\"⩾̸\",\"nGg\":\"⋙̸\",\"ngsim\":\"≵\",\"nGt\":\"≫⃒\",\"ngt\":\"≯\",\"ngtr\":\"≯\",\"nGtv\":\"≫̸\",\"nharr\":\"↮\",\"nhArr\":\"⇎\",\"nhpar\":\"⫲\",\"ni\":\"∋\",\"nis\":\"⋼\",\"nisd\":\"⋺\",\"niv\":\"∋\",\"NJcy\":\"Њ\",\"njcy\":\"њ\",\"nlarr\":\"↚\",\"nlArr\":\"⇍\",\"nldr\":\"‥\",\"nlE\":\"≦̸\",\"nle\":\"≰\",\"nleftarrow\":\"↚\",\"nLeftarrow\":\"⇍\",\"nleftrightarrow\":\"↮\",\"nLeftrightarrow\":\"⇎\",\"nleq\":\"≰\",\"nleqq\":\"≦̸\",\"nleqslant\":\"⩽̸\",\"nles\":\"⩽̸\",\"nless\":\"≮\",\"nLl\":\"⋘̸\",\"nlsim\":\"≴\",\"nLt\":\"≪⃒\",\"nlt\":\"≮\",\"nltri\":\"⋪\",\"nltrie\":\"⋬\",\"nLtv\":\"≪̸\",\"nmid\":\"∤\",\"NoBreak\":\"⁠\",\"NonBreakingSpace\":\" \",\"nopf\":\"𝕟\",\"Nopf\":\"ℕ\",\"Not\":\"⫬\",\"not\":\"¬\",\"NotCongruent\":\"≢\",\"NotCupCap\":\"≭\",\"NotDoubleVerticalBar\":\"∦\",\"NotElement\":\"∉\",\"NotEqual\":\"≠\",\"NotEqualTilde\":\"≂̸\",\"NotExists\":\"∄\",\"NotGreater\":\"≯\",\"NotGreaterEqual\":\"≱\",\"NotGreaterFullEqual\":\"≧̸\",\"NotGreaterGreater\":\"≫̸\",\"NotGreaterLess\":\"≹\",\"NotGreaterSlantEqual\":\"⩾̸\",\"NotGreaterTilde\":\"≵\",\"NotHumpDownHump\":\"≎̸\",\"NotHumpEqual\":\"≏̸\",\"notin\":\"∉\",\"notindot\":\"⋵̸\",\"notinE\":\"⋹̸\",\"notinva\":\"∉\",\"notinvb\":\"⋷\",\"notinvc\":\"⋶\",\"NotLeftTriangleBar\":\"⧏̸\",\"NotLeftTriangle\":\"⋪\",\"NotLeftTriangleEqual\":\"⋬\",\"NotLess\":\"≮\",\"NotLessEqual\":\"≰\",\"NotLessGreater\":\"≸\",\"NotLessLess\":\"≪̸\",\"NotLessSlantEqual\":\"⩽̸\",\"NotLessTilde\":\"≴\",\"NotNestedGreaterGreater\":\"⪢̸\",\"NotNestedLessLess\":\"⪡̸\",\"notni\":\"∌\",\"notniva\":\"∌\",\"notnivb\":\"⋾\",\"notnivc\":\"⋽\",\"NotPrecedes\":\"⊀\",\"NotPrecedesEqual\":\"⪯̸\",\"NotPrecedesSlantEqual\":\"⋠\",\"NotReverseElement\":\"∌\",\"NotRightTriangleBar\":\"⧐̸\",\"NotRightTriangle\":\"⋫\",\"NotRightTriangleEqual\":\"⋭\",\"NotSquareSubset\":\"⊏̸\",\"NotSquareSubsetEqual\":\"⋢\",\"NotSquareSuperset\":\"⊐̸\",\"NotSquareSupersetEqual\":\"⋣\",\"NotSubset\":\"⊂⃒\",\"NotSubsetEqual\":\"⊈\",\"NotSucceeds\":\"⊁\",\"NotSucceedsEqual\":\"⪰̸\",\"NotSucceedsSlantEqual\":\"⋡\",\"NotSucceedsTilde\":\"≿̸\",\"NotSuperset\":\"⊃⃒\",\"NotSupersetEqual\":\"⊉\",\"NotTilde\":\"≁\",\"NotTildeEqual\":\"≄\",\"NotTildeFullEqual\":\"≇\",\"NotTildeTilde\":\"≉\",\"NotVerticalBar\":\"∤\",\"nparallel\":\"∦\",\"npar\":\"∦\",\"nparsl\":\"⫽⃥\",\"npart\":\"∂̸\",\"npolint\":\"⨔\",\"npr\":\"⊀\",\"nprcue\":\"⋠\",\"nprec\":\"⊀\",\"npreceq\":\"⪯̸\",\"npre\":\"⪯̸\",\"nrarrc\":\"⤳̸\",\"nrarr\":\"↛\",\"nrArr\":\"⇏\",\"nrarrw\":\"↝̸\",\"nrightarrow\":\"↛\",\"nRightarrow\":\"⇏\",\"nrtri\":\"⋫\",\"nrtrie\":\"⋭\",\"nsc\":\"⊁\",\"nsccue\":\"⋡\",\"nsce\":\"⪰̸\",\"Nscr\":\"𝒩\",\"nscr\":\"𝓃\",\"nshortmid\":\"∤\",\"nshortparallel\":\"∦\",\"nsim\":\"≁\",\"nsime\":\"≄\",\"nsimeq\":\"≄\",\"nsmid\":\"∤\",\"nspar\":\"∦\",\"nsqsube\":\"⋢\",\"nsqsupe\":\"⋣\",\"nsub\":\"⊄\",\"nsubE\":\"⫅̸\",\"nsube\":\"⊈\",\"nsubset\":\"⊂⃒\",\"nsubseteq\":\"⊈\",\"nsubseteqq\":\"⫅̸\",\"nsucc\":\"⊁\",\"nsucceq\":\"⪰̸\",\"nsup\":\"⊅\",\"nsupE\":\"⫆̸\",\"nsupe\":\"⊉\",\"nsupset\":\"⊃⃒\",\"nsupseteq\":\"⊉\",\"nsupseteqq\":\"⫆̸\",\"ntgl\":\"≹\",\"Ntilde\":\"Ñ\",\"ntilde\":\"ñ\",\"ntlg\":\"≸\",\"ntriangleleft\":\"⋪\",\"ntrianglelefteq\":\"⋬\",\"ntriangleright\":\"⋫\",\"ntrianglerighteq\":\"⋭\",\"Nu\":\"Ν\",\"nu\":\"ν\",\"num\":\"#\",\"numero\":\"№\",\"numsp\":\" \",\"nvap\":\"≍⃒\",\"nvdash\":\"⊬\",\"nvDash\":\"⊭\",\"nVdash\":\"⊮\",\"nVDash\":\"⊯\",\"nvge\":\"≥⃒\",\"nvgt\":\">⃒\",\"nvHarr\":\"⤄\",\"nvinfin\":\"⧞\",\"nvlArr\":\"⤂\",\"nvle\":\"≤⃒\",\"nvlt\":\"<⃒\",\"nvltrie\":\"⊴⃒\",\"nvrArr\":\"⤃\",\"nvrtrie\":\"⊵⃒\",\"nvsim\":\"∼⃒\",\"nwarhk\":\"⤣\",\"nwarr\":\"↖\",\"nwArr\":\"⇖\",\"nwarrow\":\"↖\",\"nwnear\":\"⤧\",\"Oacute\":\"Ó\",\"oacute\":\"ó\",\"oast\":\"⊛\",\"Ocirc\":\"Ô\",\"ocirc\":\"ô\",\"ocir\":\"⊚\",\"Ocy\":\"О\",\"ocy\":\"о\",\"odash\":\"⊝\",\"Odblac\":\"Ő\",\"odblac\":\"ő\",\"odiv\":\"⨸\",\"odot\":\"⊙\",\"odsold\":\"⦼\",\"OElig\":\"Œ\",\"oelig\":\"œ\",\"ofcir\":\"⦿\",\"Ofr\":\"𝔒\",\"ofr\":\"𝔬\",\"ogon\":\"˛\",\"Ograve\":\"Ò\",\"ograve\":\"ò\",\"ogt\":\"⧁\",\"ohbar\":\"⦵\",\"ohm\":\"Ω\",\"oint\":\"∮\",\"olarr\":\"↺\",\"olcir\":\"⦾\",\"olcross\":\"⦻\",\"oline\":\"‾\",\"olt\":\"⧀\",\"Omacr\":\"Ō\",\"omacr\":\"ō\",\"Omega\":\"Ω\",\"omega\":\"ω\",\"Omicron\":\"Ο\",\"omicron\":\"ο\",\"omid\":\"⦶\",\"ominus\":\"⊖\",\"Oopf\":\"𝕆\",\"oopf\":\"𝕠\",\"opar\":\"⦷\",\"OpenCurlyDoubleQuote\":\"“\",\"OpenCurlyQuote\":\"‘\",\"operp\":\"⦹\",\"oplus\":\"⊕\",\"orarr\":\"↻\",\"Or\":\"⩔\",\"or\":\"∨\",\"ord\":\"⩝\",\"order\":\"ℴ\",\"orderof\":\"ℴ\",\"ordf\":\"ª\",\"ordm\":\"º\",\"origof\":\"⊶\",\"oror\":\"⩖\",\"orslope\":\"⩗\",\"orv\":\"⩛\",\"oS\":\"Ⓢ\",\"Oscr\":\"𝒪\",\"oscr\":\"ℴ\",\"Oslash\":\"Ø\",\"oslash\":\"ø\",\"osol\":\"⊘\",\"Otilde\":\"Õ\",\"otilde\":\"õ\",\"otimesas\":\"⨶\",\"Otimes\":\"⨷\",\"otimes\":\"⊗\",\"Ouml\":\"Ö\",\"ouml\":\"ö\",\"ovbar\":\"⌽\",\"OverBar\":\"‾\",\"OverBrace\":\"⏞\",\"OverBracket\":\"⎴\",\"OverParenthesis\":\"⏜\",\"para\":\"¶\",\"parallel\":\"∥\",\"par\":\"∥\",\"parsim\":\"⫳\",\"parsl\":\"⫽\",\"part\":\"∂\",\"PartialD\":\"∂\",\"Pcy\":\"П\",\"pcy\":\"п\",\"percnt\":\"%\",\"period\":\".\",\"permil\":\"‰\",\"perp\":\"⊥\",\"pertenk\":\"‱\",\"Pfr\":\"𝔓\",\"pfr\":\"𝔭\",\"Phi\":\"Φ\",\"phi\":\"φ\",\"phiv\":\"ϕ\",\"phmmat\":\"ℳ\",\"phone\":\"☎\",\"Pi\":\"Π\",\"pi\":\"π\",\"pitchfork\":\"⋔\",\"piv\":\"ϖ\",\"planck\":\"ℏ\",\"planckh\":\"ℎ\",\"plankv\":\"ℏ\",\"plusacir\":\"⨣\",\"plusb\":\"⊞\",\"pluscir\":\"⨢\",\"plus\":\"+\",\"plusdo\":\"∔\",\"plusdu\":\"⨥\",\"pluse\":\"⩲\",\"PlusMinus\":\"±\",\"plusmn\":\"±\",\"plussim\":\"⨦\",\"plustwo\":\"⨧\",\"pm\":\"±\",\"Poincareplane\":\"ℌ\",\"pointint\":\"⨕\",\"popf\":\"𝕡\",\"Popf\":\"ℙ\",\"pound\":\"£\",\"prap\":\"⪷\",\"Pr\":\"⪻\",\"pr\":\"≺\",\"prcue\":\"≼\",\"precapprox\":\"⪷\",\"prec\":\"≺\",\"preccurlyeq\":\"≼\",\"Precedes\":\"≺\",\"PrecedesEqual\":\"⪯\",\"PrecedesSlantEqual\":\"≼\",\"PrecedesTilde\":\"≾\",\"preceq\":\"⪯\",\"precnapprox\":\"⪹\",\"precneqq\":\"⪵\",\"precnsim\":\"⋨\",\"pre\":\"⪯\",\"prE\":\"⪳\",\"precsim\":\"≾\",\"prime\":\"′\",\"Prime\":\"″\",\"primes\":\"ℙ\",\"prnap\":\"⪹\",\"prnE\":\"⪵\",\"prnsim\":\"⋨\",\"prod\":\"∏\",\"Product\":\"∏\",\"profalar\":\"⌮\",\"profline\":\"⌒\",\"profsurf\":\"⌓\",\"prop\":\"∝\",\"Proportional\":\"∝\",\"Proportion\":\"∷\",\"propto\":\"∝\",\"prsim\":\"≾\",\"prurel\":\"⊰\",\"Pscr\":\"𝒫\",\"pscr\":\"𝓅\",\"Psi\":\"Ψ\",\"psi\":\"ψ\",\"puncsp\":\" \",\"Qfr\":\"𝔔\",\"qfr\":\"𝔮\",\"qint\":\"⨌\",\"qopf\":\"𝕢\",\"Qopf\":\"ℚ\",\"qprime\":\"⁗\",\"Qscr\":\"𝒬\",\"qscr\":\"𝓆\",\"quaternions\":\"ℍ\",\"quatint\":\"⨖\",\"quest\":\"?\",\"questeq\":\"≟\",\"quot\":\"\\\"\",\"QUOT\":\"\\\"\",\"rAarr\":\"⇛\",\"race\":\"∽̱\",\"Racute\":\"Ŕ\",\"racute\":\"ŕ\",\"radic\":\"√\",\"raemptyv\":\"⦳\",\"rang\":\"⟩\",\"Rang\":\"⟫\",\"rangd\":\"⦒\",\"range\":\"⦥\",\"rangle\":\"⟩\",\"raquo\":\"»\",\"rarrap\":\"⥵\",\"rarrb\":\"⇥\",\"rarrbfs\":\"⤠\",\"rarrc\":\"⤳\",\"rarr\":\"→\",\"Rarr\":\"↠\",\"rArr\":\"⇒\",\"rarrfs\":\"⤞\",\"rarrhk\":\"↪\",\"rarrlp\":\"↬\",\"rarrpl\":\"⥅\",\"rarrsim\":\"⥴\",\"Rarrtl\":\"⤖\",\"rarrtl\":\"↣\",\"rarrw\":\"↝\",\"ratail\":\"⤚\",\"rAtail\":\"⤜\",\"ratio\":\"∶\",\"rationals\":\"ℚ\",\"rbarr\":\"⤍\",\"rBarr\":\"⤏\",\"RBarr\":\"⤐\",\"rbbrk\":\"❳\",\"rbrace\":\"}\",\"rbrack\":\"]\",\"rbrke\":\"⦌\",\"rbrksld\":\"⦎\",\"rbrkslu\":\"⦐\",\"Rcaron\":\"Ř\",\"rcaron\":\"ř\",\"Rcedil\":\"Ŗ\",\"rcedil\":\"ŗ\",\"rceil\":\"⌉\",\"rcub\":\"}\",\"Rcy\":\"Р\",\"rcy\":\"р\",\"rdca\":\"⤷\",\"rdldhar\":\"⥩\",\"rdquo\":\"”\",\"rdquor\":\"”\",\"rdsh\":\"↳\",\"real\":\"ℜ\",\"realine\":\"ℛ\",\"realpart\":\"ℜ\",\"reals\":\"ℝ\",\"Re\":\"ℜ\",\"rect\":\"▭\",\"reg\":\"®\",\"REG\":\"®\",\"ReverseElement\":\"∋\",\"ReverseEquilibrium\":\"⇋\",\"ReverseUpEquilibrium\":\"⥯\",\"rfisht\":\"⥽\",\"rfloor\":\"⌋\",\"rfr\":\"𝔯\",\"Rfr\":\"ℜ\",\"rHar\":\"⥤\",\"rhard\":\"⇁\",\"rharu\":\"⇀\",\"rharul\":\"⥬\",\"Rho\":\"Ρ\",\"rho\":\"ρ\",\"rhov\":\"ϱ\",\"RightAngleBracket\":\"⟩\",\"RightArrowBar\":\"⇥\",\"rightarrow\":\"→\",\"RightArrow\":\"→\",\"Rightarrow\":\"⇒\",\"RightArrowLeftArrow\":\"⇄\",\"rightarrowtail\":\"↣\",\"RightCeiling\":\"⌉\",\"RightDoubleBracket\":\"⟧\",\"RightDownTeeVector\":\"⥝\",\"RightDownVectorBar\":\"⥕\",\"RightDownVector\":\"⇂\",\"RightFloor\":\"⌋\",\"rightharpoondown\":\"⇁\",\"rightharpoonup\":\"⇀\",\"rightleftarrows\":\"⇄\",\"rightleftharpoons\":\"⇌\",\"rightrightarrows\":\"⇉\",\"rightsquigarrow\":\"↝\",\"RightTeeArrow\":\"↦\",\"RightTee\":\"⊢\",\"RightTeeVector\":\"⥛\",\"rightthreetimes\":\"⋌\",\"RightTriangleBar\":\"⧐\",\"RightTriangle\":\"⊳\",\"RightTriangleEqual\":\"⊵\",\"RightUpDownVector\":\"⥏\",\"RightUpTeeVector\":\"⥜\",\"RightUpVectorBar\":\"⥔\",\"RightUpVector\":\"↾\",\"RightVectorBar\":\"⥓\",\"RightVector\":\"⇀\",\"ring\":\"˚\",\"risingdotseq\":\"≓\",\"rlarr\":\"⇄\",\"rlhar\":\"⇌\",\"rlm\":\"‏\",\"rmoustache\":\"⎱\",\"rmoust\":\"⎱\",\"rnmid\":\"⫮\",\"roang\":\"⟭\",\"roarr\":\"⇾\",\"robrk\":\"⟧\",\"ropar\":\"⦆\",\"ropf\":\"𝕣\",\"Ropf\":\"ℝ\",\"roplus\":\"⨮\",\"rotimes\":\"⨵\",\"RoundImplies\":\"⥰\",\"rpar\":\")\",\"rpargt\":\"⦔\",\"rppolint\":\"⨒\",\"rrarr\":\"⇉\",\"Rrightarrow\":\"⇛\",\"rsaquo\":\"›\",\"rscr\":\"𝓇\",\"Rscr\":\"ℛ\",\"rsh\":\"↱\",\"Rsh\":\"↱\",\"rsqb\":\"]\",\"rsquo\":\"’\",\"rsquor\":\"’\",\"rthree\":\"⋌\",\"rtimes\":\"⋊\",\"rtri\":\"▹\",\"rtrie\":\"⊵\",\"rtrif\":\"▸\",\"rtriltri\":\"⧎\",\"RuleDelayed\":\"⧴\",\"ruluhar\":\"⥨\",\"rx\":\"℞\",\"Sacute\":\"Ś\",\"sacute\":\"ś\",\"sbquo\":\"‚\",\"scap\":\"⪸\",\"Scaron\":\"Š\",\"scaron\":\"š\",\"Sc\":\"⪼\",\"sc\":\"≻\",\"sccue\":\"≽\",\"sce\":\"⪰\",\"scE\":\"⪴\",\"Scedil\":\"Ş\",\"scedil\":\"ş\",\"Scirc\":\"Ŝ\",\"scirc\":\"ŝ\",\"scnap\":\"⪺\",\"scnE\":\"⪶\",\"scnsim\":\"⋩\",\"scpolint\":\"⨓\",\"scsim\":\"≿\",\"Scy\":\"С\",\"scy\":\"с\",\"sdotb\":\"⊡\",\"sdot\":\"⋅\",\"sdote\":\"⩦\",\"searhk\":\"⤥\",\"searr\":\"↘\",\"seArr\":\"⇘\",\"searrow\":\"↘\",\"sect\":\"§\",\"semi\":\";\",\"seswar\":\"⤩\",\"setminus\":\"∖\",\"setmn\":\"∖\",\"sext\":\"✶\",\"Sfr\":\"𝔖\",\"sfr\":\"𝔰\",\"sfrown\":\"⌢\",\"sharp\":\"♯\",\"SHCHcy\":\"Щ\",\"shchcy\":\"щ\",\"SHcy\":\"Ш\",\"shcy\":\"ш\",\"ShortDownArrow\":\"↓\",\"ShortLeftArrow\":\"←\",\"shortmid\":\"∣\",\"shortparallel\":\"∥\",\"ShortRightArrow\":\"→\",\"ShortUpArrow\":\"↑\",\"shy\":\"­\",\"Sigma\":\"Σ\",\"sigma\":\"σ\",\"sigmaf\":\"ς\",\"sigmav\":\"ς\",\"sim\":\"∼\",\"simdot\":\"⩪\",\"sime\":\"≃\",\"simeq\":\"≃\",\"simg\":\"⪞\",\"simgE\":\"⪠\",\"siml\":\"⪝\",\"simlE\":\"⪟\",\"simne\":\"≆\",\"simplus\":\"⨤\",\"simrarr\":\"⥲\",\"slarr\":\"←\",\"SmallCircle\":\"∘\",\"smallsetminus\":\"∖\",\"smashp\":\"⨳\",\"smeparsl\":\"⧤\",\"smid\":\"∣\",\"smile\":\"⌣\",\"smt\":\"⪪\",\"smte\":\"⪬\",\"smtes\":\"⪬︀\",\"SOFTcy\":\"Ь\",\"softcy\":\"ь\",\"solbar\":\"⌿\",\"solb\":\"⧄\",\"sol\":\"/\",\"Sopf\":\"𝕊\",\"sopf\":\"𝕤\",\"spades\":\"♠\",\"spadesuit\":\"♠\",\"spar\":\"∥\",\"sqcap\":\"⊓\",\"sqcaps\":\"⊓︀\",\"sqcup\":\"⊔\",\"sqcups\":\"⊔︀\",\"Sqrt\":\"√\",\"sqsub\":\"⊏\",\"sqsube\":\"⊑\",\"sqsubset\":\"⊏\",\"sqsubseteq\":\"⊑\",\"sqsup\":\"⊐\",\"sqsupe\":\"⊒\",\"sqsupset\":\"⊐\",\"sqsupseteq\":\"⊒\",\"square\":\"□\",\"Square\":\"□\",\"SquareIntersection\":\"⊓\",\"SquareSubset\":\"⊏\",\"SquareSubsetEqual\":\"⊑\",\"SquareSuperset\":\"⊐\",\"SquareSupersetEqual\":\"⊒\",\"SquareUnion\":\"⊔\",\"squarf\":\"▪\",\"squ\":\"□\",\"squf\":\"▪\",\"srarr\":\"→\",\"Sscr\":\"𝒮\",\"sscr\":\"𝓈\",\"ssetmn\":\"∖\",\"ssmile\":\"⌣\",\"sstarf\":\"⋆\",\"Star\":\"⋆\",\"star\":\"☆\",\"starf\":\"★\",\"straightepsilon\":\"ϵ\",\"straightphi\":\"ϕ\",\"strns\":\"¯\",\"sub\":\"⊂\",\"Sub\":\"⋐\",\"subdot\":\"⪽\",\"subE\":\"⫅\",\"sube\":\"⊆\",\"subedot\":\"⫃\",\"submult\":\"⫁\",\"subnE\":\"⫋\",\"subne\":\"⊊\",\"subplus\":\"⪿\",\"subrarr\":\"⥹\",\"subset\":\"⊂\",\"Subset\":\"⋐\",\"subseteq\":\"⊆\",\"subseteqq\":\"⫅\",\"SubsetEqual\":\"⊆\",\"subsetneq\":\"⊊\",\"subsetneqq\":\"⫋\",\"subsim\":\"⫇\",\"subsub\":\"⫕\",\"subsup\":\"⫓\",\"succapprox\":\"⪸\",\"succ\":\"≻\",\"succcurlyeq\":\"≽\",\"Succeeds\":\"≻\",\"SucceedsEqual\":\"⪰\",\"SucceedsSlantEqual\":\"≽\",\"SucceedsTilde\":\"≿\",\"succeq\":\"⪰\",\"succnapprox\":\"⪺\",\"succneqq\":\"⪶\",\"succnsim\":\"⋩\",\"succsim\":\"≿\",\"SuchThat\":\"∋\",\"sum\":\"∑\",\"Sum\":\"∑\",\"sung\":\"♪\",\"sup1\":\"¹\",\"sup2\":\"²\",\"sup3\":\"³\",\"sup\":\"⊃\",\"Sup\":\"⋑\",\"supdot\":\"⪾\",\"supdsub\":\"⫘\",\"supE\":\"⫆\",\"supe\":\"⊇\",\"supedot\":\"⫄\",\"Superset\":\"⊃\",\"SupersetEqual\":\"⊇\",\"suphsol\":\"⟉\",\"suphsub\":\"⫗\",\"suplarr\":\"⥻\",\"supmult\":\"⫂\",\"supnE\":\"⫌\",\"supne\":\"⊋\",\"supplus\":\"⫀\",\"supset\":\"⊃\",\"Supset\":\"⋑\",\"supseteq\":\"⊇\",\"supseteqq\":\"⫆\",\"supsetneq\":\"⊋\",\"supsetneqq\":\"⫌\",\"supsim\":\"⫈\",\"supsub\":\"⫔\",\"supsup\":\"⫖\",\"swarhk\":\"⤦\",\"swarr\":\"↙\",\"swArr\":\"⇙\",\"swarrow\":\"↙\",\"swnwar\":\"⤪\",\"szlig\":\"ß\",\"Tab\":\"\\t\",\"target\":\"⌖\",\"Tau\":\"Τ\",\"tau\":\"τ\",\"tbrk\":\"⎴\",\"Tcaron\":\"Ť\",\"tcaron\":\"ť\",\"Tcedil\":\"Ţ\",\"tcedil\":\"ţ\",\"Tcy\":\"Т\",\"tcy\":\"т\",\"tdot\":\"⃛\",\"telrec\":\"⌕\",\"Tfr\":\"𝔗\",\"tfr\":\"𝔱\",\"there4\":\"∴\",\"therefore\":\"∴\",\"Therefore\":\"∴\",\"Theta\":\"Θ\",\"theta\":\"θ\",\"thetasym\":\"ϑ\",\"thetav\":\"ϑ\",\"thickapprox\":\"≈\",\"thicksim\":\"∼\",\"ThickSpace\":\"  \",\"ThinSpace\":\" \",\"thinsp\":\" \",\"thkap\":\"≈\",\"thksim\":\"∼\",\"THORN\":\"Þ\",\"thorn\":\"þ\",\"tilde\":\"˜\",\"Tilde\":\"∼\",\"TildeEqual\":\"≃\",\"TildeFullEqual\":\"≅\",\"TildeTilde\":\"≈\",\"timesbar\":\"⨱\",\"timesb\":\"⊠\",\"times\":\"×\",\"timesd\":\"⨰\",\"tint\":\"∭\",\"toea\":\"⤨\",\"topbot\":\"⌶\",\"topcir\":\"⫱\",\"top\":\"⊤\",\"Topf\":\"𝕋\",\"topf\":\"𝕥\",\"topfork\":\"⫚\",\"tosa\":\"⤩\",\"tprime\":\"‴\",\"trade\":\"™\",\"TRADE\":\"™\",\"triangle\":\"▵\",\"triangledown\":\"▿\",\"triangleleft\":\"◃\",\"trianglelefteq\":\"⊴\",\"triangleq\":\"≜\",\"triangleright\":\"▹\",\"trianglerighteq\":\"⊵\",\"tridot\":\"◬\",\"trie\":\"≜\",\"triminus\":\"⨺\",\"TripleDot\":\"⃛\",\"triplus\":\"⨹\",\"trisb\":\"⧍\",\"tritime\":\"⨻\",\"trpezium\":\"⏢\",\"Tscr\":\"𝒯\",\"tscr\":\"𝓉\",\"TScy\":\"Ц\",\"tscy\":\"ц\",\"TSHcy\":\"Ћ\",\"tshcy\":\"ћ\",\"Tstrok\":\"Ŧ\",\"tstrok\":\"ŧ\",\"twixt\":\"≬\",\"twoheadleftarrow\":\"↞\",\"twoheadrightarrow\":\"↠\",\"Uacute\":\"Ú\",\"uacute\":\"ú\",\"uarr\":\"↑\",\"Uarr\":\"↟\",\"uArr\":\"⇑\",\"Uarrocir\":\"⥉\",\"Ubrcy\":\"Ў\",\"ubrcy\":\"ў\",\"Ubreve\":\"Ŭ\",\"ubreve\":\"ŭ\",\"Ucirc\":\"Û\",\"ucirc\":\"û\",\"Ucy\":\"У\",\"ucy\":\"у\",\"udarr\":\"⇅\",\"Udblac\":\"Ű\",\"udblac\":\"ű\",\"udhar\":\"⥮\",\"ufisht\":\"⥾\",\"Ufr\":\"𝔘\",\"ufr\":\"𝔲\",\"Ugrave\":\"Ù\",\"ugrave\":\"ù\",\"uHar\":\"⥣\",\"uharl\":\"↿\",\"uharr\":\"↾\",\"uhblk\":\"▀\",\"ulcorn\":\"⌜\",\"ulcorner\":\"⌜\",\"ulcrop\":\"⌏\",\"ultri\":\"◸\",\"Umacr\":\"Ū\",\"umacr\":\"ū\",\"uml\":\"¨\",\"UnderBar\":\"_\",\"UnderBrace\":\"⏟\",\"UnderBracket\":\"⎵\",\"UnderParenthesis\":\"⏝\",\"Union\":\"⋃\",\"UnionPlus\":\"⊎\",\"Uogon\":\"Ų\",\"uogon\":\"ų\",\"Uopf\":\"𝕌\",\"uopf\":\"𝕦\",\"UpArrowBar\":\"⤒\",\"uparrow\":\"↑\",\"UpArrow\":\"↑\",\"Uparrow\":\"⇑\",\"UpArrowDownArrow\":\"⇅\",\"updownarrow\":\"↕\",\"UpDownArrow\":\"↕\",\"Updownarrow\":\"⇕\",\"UpEquilibrium\":\"⥮\",\"upharpoonleft\":\"↿\",\"upharpoonright\":\"↾\",\"uplus\":\"⊎\",\"UpperLeftArrow\":\"↖\",\"UpperRightArrow\":\"↗\",\"upsi\":\"υ\",\"Upsi\":\"ϒ\",\"upsih\":\"ϒ\",\"Upsilon\":\"Υ\",\"upsilon\":\"υ\",\"UpTeeArrow\":\"↥\",\"UpTee\":\"⊥\",\"upuparrows\":\"⇈\",\"urcorn\":\"⌝\",\"urcorner\":\"⌝\",\"urcrop\":\"⌎\",\"Uring\":\"Ů\",\"uring\":\"ů\",\"urtri\":\"◹\",\"Uscr\":\"𝒰\",\"uscr\":\"𝓊\",\"utdot\":\"⋰\",\"Utilde\":\"Ũ\",\"utilde\":\"ũ\",\"utri\":\"▵\",\"utrif\":\"▴\",\"uuarr\":\"⇈\",\"Uuml\":\"Ü\",\"uuml\":\"ü\",\"uwangle\":\"⦧\",\"vangrt\":\"⦜\",\"varepsilon\":\"ϵ\",\"varkappa\":\"ϰ\",\"varnothing\":\"∅\",\"varphi\":\"ϕ\",\"varpi\":\"ϖ\",\"varpropto\":\"∝\",\"varr\":\"↕\",\"vArr\":\"⇕\",\"varrho\":\"ϱ\",\"varsigma\":\"ς\",\"varsubsetneq\":\"⊊︀\",\"varsubsetneqq\":\"⫋︀\",\"varsupsetneq\":\"⊋︀\",\"varsupsetneqq\":\"⫌︀\",\"vartheta\":\"ϑ\",\"vartriangleleft\":\"⊲\",\"vartriangleright\":\"⊳\",\"vBar\":\"⫨\",\"Vbar\":\"⫫\",\"vBarv\":\"⫩\",\"Vcy\":\"В\",\"vcy\":\"в\",\"vdash\":\"⊢\",\"vDash\":\"⊨\",\"Vdash\":\"⊩\",\"VDash\":\"⊫\",\"Vdashl\":\"⫦\",\"veebar\":\"⊻\",\"vee\":\"∨\",\"Vee\":\"⋁\",\"veeeq\":\"≚\",\"vellip\":\"⋮\",\"verbar\":\"|\",\"Verbar\":\"‖\",\"vert\":\"|\",\"Vert\":\"‖\",\"VerticalBar\":\"∣\",\"VerticalLine\":\"|\",\"VerticalSeparator\":\"❘\",\"VerticalTilde\":\"≀\",\"VeryThinSpace\":\" \",\"Vfr\":\"𝔙\",\"vfr\":\"𝔳\",\"vltri\":\"⊲\",\"vnsub\":\"⊂⃒\",\"vnsup\":\"⊃⃒\",\"Vopf\":\"𝕍\",\"vopf\":\"𝕧\",\"vprop\":\"∝\",\"vrtri\":\"⊳\",\"Vscr\":\"𝒱\",\"vscr\":\"𝓋\",\"vsubnE\":\"⫋︀\",\"vsubne\":\"⊊︀\",\"vsupnE\":\"⫌︀\",\"vsupne\":\"⊋︀\",\"Vvdash\":\"⊪\",\"vzigzag\":\"⦚\",\"Wcirc\":\"Ŵ\",\"wcirc\":\"ŵ\",\"wedbar\":\"⩟\",\"wedge\":\"∧\",\"Wedge\":\"⋀\",\"wedgeq\":\"≙\",\"weierp\":\"℘\",\"Wfr\":\"𝔚\",\"wfr\":\"𝔴\",\"Wopf\":\"𝕎\",\"wopf\":\"𝕨\",\"wp\":\"℘\",\"wr\":\"≀\",\"wreath\":\"≀\",\"Wscr\":\"𝒲\",\"wscr\":\"𝓌\",\"xcap\":\"⋂\",\"xcirc\":\"◯\",\"xcup\":\"⋃\",\"xdtri\":\"▽\",\"Xfr\":\"𝔛\",\"xfr\":\"𝔵\",\"xharr\":\"⟷\",\"xhArr\":\"⟺\",\"Xi\":\"Ξ\",\"xi\":\"ξ\",\"xlarr\":\"⟵\",\"xlArr\":\"⟸\",\"xmap\":\"⟼\",\"xnis\":\"⋻\",\"xodot\":\"⨀\",\"Xopf\":\"𝕏\",\"xopf\":\"𝕩\",\"xoplus\":\"⨁\",\"xotime\":\"⨂\",\"xrarr\":\"⟶\",\"xrArr\":\"⟹\",\"Xscr\":\"𝒳\",\"xscr\":\"𝓍\",\"xsqcup\":\"⨆\",\"xuplus\":\"⨄\",\"xutri\":\"△\",\"xvee\":\"⋁\",\"xwedge\":\"⋀\",\"Yacute\":\"Ý\",\"yacute\":\"ý\",\"YAcy\":\"Я\",\"yacy\":\"я\",\"Ycirc\":\"Ŷ\",\"ycirc\":\"ŷ\",\"Ycy\":\"Ы\",\"ycy\":\"ы\",\"yen\":\"¥\",\"Yfr\":\"𝔜\",\"yfr\":\"𝔶\",\"YIcy\":\"Ї\",\"yicy\":\"ї\",\"Yopf\":\"𝕐\",\"yopf\":\"𝕪\",\"Yscr\":\"𝒴\",\"yscr\":\"𝓎\",\"YUcy\":\"Ю\",\"yucy\":\"ю\",\"yuml\":\"ÿ\",\"Yuml\":\"Ÿ\",\"Zacute\":\"Ź\",\"zacute\":\"ź\",\"Zcaron\":\"Ž\",\"zcaron\":\"ž\",\"Zcy\":\"З\",\"zcy\":\"з\",\"Zdot\":\"Ż\",\"zdot\":\"ż\",\"zeetrf\":\"ℨ\",\"ZeroWidthSpace\":\"​\",\"Zeta\":\"Ζ\",\"zeta\":\"ζ\",\"zfr\":\"𝔷\",\"Zfr\":\"ℨ\",\"ZHcy\":\"Ж\",\"zhcy\":\"ж\",\"zigrarr\":\"⇝\",\"zopf\":\"𝕫\",\"Zopf\":\"ℤ\",\"Zscr\":\"𝒵\",\"zscr\":\"𝓏\",\"zwj\":\"‍\",\"zwnj\":\"‌\"}");
6430
6420
 
6431
6421
  /***/ }),
6432
- /* 31 */
6422
+ /* 34 */
6433
6423
  /***/ (function(module, exports, __webpack_require__) {
6434
6424
 
6435
6425
  "use strict";
@@ -6534,7 +6524,7 @@ module.exports = encode;
6534
6524
 
6535
6525
 
6536
6526
  /***/ }),
6537
- /* 32 */
6527
+ /* 35 */
6538
6528
  /***/ (function(module, exports, __webpack_require__) {
6539
6529
 
6540
6530
  "use strict";
@@ -6663,7 +6653,7 @@ module.exports = decode;
6663
6653
 
6664
6654
 
6665
6655
  /***/ }),
6666
- /* 33 */
6656
+ /* 36 */
6667
6657
  /***/ (function(module, exports, __webpack_require__) {
6668
6658
 
6669
6659
  "use strict";
@@ -6695,7 +6685,7 @@ module.exports = function format(url) {
6695
6685
 
6696
6686
 
6697
6687
  /***/ }),
6698
- /* 34 */
6688
+ /* 37 */
6699
6689
  /***/ (function(module, exports, __webpack_require__) {
6700
6690
 
6701
6691
  "use strict";
@@ -7014,7 +7004,7 @@ module.exports = urlParse;
7014
7004
 
7015
7005
 
7016
7006
  /***/ }),
7017
- /* 35 */
7007
+ /* 38 */
7018
7008
  /***/ (function(module, exports, __webpack_require__) {
7019
7009
 
7020
7010
  "use strict";
@@ -7022,19 +7012,19 @@ module.exports = urlParse;
7022
7012
 
7023
7013
  exports.Any = __webpack_require__(15);
7024
7014
  exports.Cc = __webpack_require__(16);
7025
- exports.Cf = __webpack_require__(36);
7015
+ exports.Cf = __webpack_require__(39);
7026
7016
  exports.P = __webpack_require__(7);
7027
7017
  exports.Z = __webpack_require__(17);
7028
7018
 
7029
7019
 
7030
7020
  /***/ }),
7031
- /* 36 */
7021
+ /* 39 */
7032
7022
  /***/ (function(module, exports) {
7033
7023
 
7034
7024
  module.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/
7035
7025
 
7036
7026
  /***/ }),
7037
- /* 37 */
7027
+ /* 40 */
7038
7028
  /***/ (function(module, exports, __webpack_require__) {
7039
7029
 
7040
7030
  "use strict";
@@ -7042,13 +7032,13 @@ module.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u2
7042
7032
 
7043
7033
 
7044
7034
 
7045
- exports.parseLinkLabel = __webpack_require__(38);
7046
- exports.parseLinkDestination = __webpack_require__(39);
7047
- exports.parseLinkTitle = __webpack_require__(40);
7035
+ exports.parseLinkLabel = __webpack_require__(41);
7036
+ exports.parseLinkDestination = __webpack_require__(42);
7037
+ exports.parseLinkTitle = __webpack_require__(43);
7048
7038
 
7049
7039
 
7050
7040
  /***/ }),
7051
- /* 38 */
7041
+ /* 41 */
7052
7042
  /***/ (function(module, exports, __webpack_require__) {
7053
7043
 
7054
7044
  "use strict";
@@ -7103,7 +7093,7 @@ module.exports = function parseLinkLabel(state, start, disableNested) {
7103
7093
 
7104
7094
 
7105
7095
  /***/ }),
7106
- /* 39 */
7096
+ /* 42 */
7107
7097
  /***/ (function(module, exports, __webpack_require__) {
7108
7098
 
7109
7099
  "use strict";
@@ -7192,7 +7182,7 @@ module.exports = function parseLinkDestination(str, pos, max) {
7192
7182
 
7193
7183
 
7194
7184
  /***/ }),
7195
- /* 40 */
7185
+ /* 43 */
7196
7186
  /***/ (function(module, exports, __webpack_require__) {
7197
7187
 
7198
7188
  "use strict";
@@ -7254,7 +7244,7 @@ module.exports = function parseLinkTitle(str, pos, max) {
7254
7244
 
7255
7245
 
7256
7246
  /***/ }),
7257
- /* 41 */
7247
+ /* 44 */
7258
7248
  /***/ (function(module, exports, __webpack_require__) {
7259
7249
 
7260
7250
  "use strict";
@@ -7602,7 +7592,7 @@ module.exports = Renderer;
7602
7592
 
7603
7593
 
7604
7594
  /***/ }),
7605
- /* 42 */
7595
+ /* 45 */
7606
7596
  /***/ (function(module, exports, __webpack_require__) {
7607
7597
 
7608
7598
  "use strict";
@@ -7619,12 +7609,12 @@ var Ruler = __webpack_require__(8);
7619
7609
 
7620
7610
 
7621
7611
  var _rules = [
7622
- [ 'normalize', __webpack_require__(43) ],
7623
- [ 'block', __webpack_require__(44) ],
7624
- [ 'inline', __webpack_require__(45) ],
7625
- [ 'linkify', __webpack_require__(46) ],
7626
- [ 'replacements', __webpack_require__(47) ],
7627
- [ 'smartquotes', __webpack_require__(48) ]
7612
+ [ 'normalize', __webpack_require__(46) ],
7613
+ [ 'block', __webpack_require__(47) ],
7614
+ [ 'inline', __webpack_require__(48) ],
7615
+ [ 'linkify', __webpack_require__(49) ],
7616
+ [ 'replacements', __webpack_require__(50) ],
7617
+ [ 'smartquotes', __webpack_require__(51) ]
7628
7618
  ];
7629
7619
 
7630
7620
 
@@ -7660,14 +7650,14 @@ Core.prototype.process = function (state) {
7660
7650
  }
7661
7651
  };
7662
7652
 
7663
- Core.prototype.State = __webpack_require__(49);
7653
+ Core.prototype.State = __webpack_require__(52);
7664
7654
 
7665
7655
 
7666
7656
  module.exports = Core;
7667
7657
 
7668
7658
 
7669
7659
  /***/ }),
7670
- /* 43 */
7660
+ /* 46 */
7671
7661
  /***/ (function(module, exports, __webpack_require__) {
7672
7662
 
7673
7663
  "use strict";
@@ -7695,7 +7685,7 @@ module.exports = function normalize(state) {
7695
7685
 
7696
7686
 
7697
7687
  /***/ }),
7698
- /* 44 */
7688
+ /* 47 */
7699
7689
  /***/ (function(module, exports, __webpack_require__) {
7700
7690
 
7701
7691
  "use strict";
@@ -7718,7 +7708,7 @@ module.exports = function block(state) {
7718
7708
 
7719
7709
 
7720
7710
  /***/ }),
7721
- /* 45 */
7711
+ /* 48 */
7722
7712
  /***/ (function(module, exports, __webpack_require__) {
7723
7713
 
7724
7714
  "use strict";
@@ -7738,7 +7728,7 @@ module.exports = function inline(state) {
7738
7728
 
7739
7729
 
7740
7730
  /***/ }),
7741
- /* 46 */
7731
+ /* 49 */
7742
7732
  /***/ (function(module, exports, __webpack_require__) {
7743
7733
 
7744
7734
  "use strict";
@@ -7878,7 +7868,7 @@ module.exports = function linkify(state) {
7878
7868
 
7879
7869
 
7880
7870
  /***/ }),
7881
- /* 47 */
7871
+ /* 50 */
7882
7872
  /***/ (function(module, exports, __webpack_require__) {
7883
7873
 
7884
7874
  "use strict";
@@ -7992,7 +7982,7 @@ module.exports = function replace(state) {
7992
7982
 
7993
7983
 
7994
7984
  /***/ }),
7995
- /* 48 */
7985
+ /* 51 */
7996
7986
  /***/ (function(module, exports, __webpack_require__) {
7997
7987
 
7998
7988
  "use strict";
@@ -8200,7 +8190,7 @@ module.exports = function smartquotes(state) {
8200
8190
 
8201
8191
 
8202
8192
  /***/ }),
8203
- /* 49 */
8193
+ /* 52 */
8204
8194
  /***/ (function(module, exports, __webpack_require__) {
8205
8195
 
8206
8196
  "use strict";
@@ -8227,7 +8217,7 @@ module.exports = StateCore;
8227
8217
 
8228
8218
 
8229
8219
  /***/ }),
8230
- /* 50 */
8220
+ /* 53 */
8231
8221
  /***/ (function(module, exports, __webpack_require__) {
8232
8222
 
8233
8223
  "use strict";
@@ -8245,17 +8235,17 @@ var Ruler = __webpack_require__(8);
8245
8235
  var _rules = [
8246
8236
  // First 2 params - rule name & source. Secondary array - list of rules,
8247
8237
  // which can be terminated by this one.
8248
- [ 'table', __webpack_require__(51), [ 'paragraph', 'reference' ] ],
8249
- [ 'code', __webpack_require__(52) ],
8250
- [ 'fence', __webpack_require__(53), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
8251
- [ 'blockquote', __webpack_require__(54), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
8252
- [ 'hr', __webpack_require__(55), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
8253
- [ 'list', __webpack_require__(56), [ 'paragraph', 'reference', 'blockquote' ] ],
8254
- [ 'reference', __webpack_require__(57) ],
8255
- [ 'html_block', __webpack_require__(58), [ 'paragraph', 'reference', 'blockquote' ] ],
8256
- [ 'heading', __webpack_require__(60), [ 'paragraph', 'reference', 'blockquote' ] ],
8257
- [ 'lheading', __webpack_require__(61) ],
8258
- [ 'paragraph', __webpack_require__(62) ]
8238
+ [ 'table', __webpack_require__(54), [ 'paragraph', 'reference' ] ],
8239
+ [ 'code', __webpack_require__(55) ],
8240
+ [ 'fence', __webpack_require__(56), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
8241
+ [ 'blockquote', __webpack_require__(57), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
8242
+ [ 'hr', __webpack_require__(58), [ 'paragraph', 'reference', 'blockquote', 'list' ] ],
8243
+ [ 'list', __webpack_require__(59), [ 'paragraph', 'reference', 'blockquote' ] ],
8244
+ [ 'reference', __webpack_require__(60) ],
8245
+ [ 'html_block', __webpack_require__(61), [ 'paragraph', 'reference', 'blockquote' ] ],
8246
+ [ 'heading', __webpack_require__(63), [ 'paragraph', 'reference', 'blockquote' ] ],
8247
+ [ 'lheading', __webpack_require__(64) ],
8248
+ [ 'paragraph', __webpack_require__(65) ]
8259
8249
  ];
8260
8250
 
8261
8251
 
@@ -8349,14 +8339,14 @@ ParserBlock.prototype.parse = function (src, md, env, outTokens) {
8349
8339
  };
8350
8340
 
8351
8341
 
8352
- ParserBlock.prototype.State = __webpack_require__(63);
8342
+ ParserBlock.prototype.State = __webpack_require__(66);
8353
8343
 
8354
8344
 
8355
8345
  module.exports = ParserBlock;
8356
8346
 
8357
8347
 
8358
8348
  /***/ }),
8359
- /* 51 */
8349
+ /* 54 */
8360
8350
  /***/ (function(module, exports, __webpack_require__) {
8361
8351
 
8362
8352
  "use strict";
@@ -8584,7 +8574,7 @@ module.exports = function table(state, startLine, endLine, silent) {
8584
8574
 
8585
8575
 
8586
8576
  /***/ }),
8587
- /* 52 */
8577
+ /* 55 */
8588
8578
  /***/ (function(module, exports, __webpack_require__) {
8589
8579
 
8590
8580
  "use strict";
@@ -8625,7 +8615,7 @@ module.exports = function code(state, startLine, endLine/*, silent*/) {
8625
8615
 
8626
8616
 
8627
8617
  /***/ }),
8628
- /* 53 */
8618
+ /* 56 */
8629
8619
  /***/ (function(module, exports, __webpack_require__) {
8630
8620
 
8631
8621
  "use strict";
@@ -8730,7 +8720,7 @@ module.exports = function fence(state, startLine, endLine, silent) {
8730
8720
 
8731
8721
 
8732
8722
  /***/ }),
8733
- /* 54 */
8723
+ /* 57 */
8734
8724
  /***/ (function(module, exports, __webpack_require__) {
8735
8725
 
8736
8726
  "use strict";
@@ -9021,7 +9011,7 @@ module.exports = function blockquote(state, startLine, endLine, silent) {
9021
9011
 
9022
9012
 
9023
9013
  /***/ }),
9024
- /* 55 */
9014
+ /* 58 */
9025
9015
  /***/ (function(module, exports, __webpack_require__) {
9026
9016
 
9027
9017
  "use strict";
@@ -9073,7 +9063,7 @@ module.exports = function hr(state, startLine, endLine, silent) {
9073
9063
 
9074
9064
 
9075
9065
  /***/ }),
9076
- /* 56 */
9066
+ /* 59 */
9077
9067
  /***/ (function(module, exports, __webpack_require__) {
9078
9068
 
9079
9069
  "use strict";
@@ -9444,7 +9434,7 @@ module.exports = function list(state, startLine, endLine, silent) {
9444
9434
 
9445
9435
 
9446
9436
  /***/ }),
9447
- /* 57 */
9437
+ /* 60 */
9448
9438
  /***/ (function(module, exports, __webpack_require__) {
9449
9439
 
9450
9440
  "use strict";
@@ -9649,7 +9639,7 @@ module.exports = function reference(state, startLine, _endLine, silent) {
9649
9639
 
9650
9640
 
9651
9641
  /***/ }),
9652
- /* 58 */
9642
+ /* 61 */
9653
9643
  /***/ (function(module, exports, __webpack_require__) {
9654
9644
 
9655
9645
  "use strict";
@@ -9658,7 +9648,7 @@ module.exports = function reference(state, startLine, _endLine, silent) {
9658
9648
 
9659
9649
 
9660
9650
 
9661
- var block_names = __webpack_require__(59);
9651
+ var block_names = __webpack_require__(62);
9662
9652
  var HTML_OPEN_CLOSE_TAG_RE = __webpack_require__(18).HTML_OPEN_CLOSE_TAG_RE;
9663
9653
 
9664
9654
  // An array of opening and corresponding closing sequences for html tags,
@@ -9730,7 +9720,7 @@ module.exports = function html_block(state, startLine, endLine, silent) {
9730
9720
 
9731
9721
 
9732
9722
  /***/ }),
9733
- /* 59 */
9723
+ /* 62 */
9734
9724
  /***/ (function(module, exports, __webpack_require__) {
9735
9725
 
9736
9726
  "use strict";
@@ -9807,7 +9797,7 @@ module.exports = [
9807
9797
 
9808
9798
 
9809
9799
  /***/ }),
9810
- /* 60 */
9800
+ /* 63 */
9811
9801
  /***/ (function(module, exports, __webpack_require__) {
9812
9802
 
9813
9803
  "use strict";
@@ -9869,7 +9859,7 @@ module.exports = function heading(state, startLine, endLine, silent) {
9869
9859
 
9870
9860
 
9871
9861
  /***/ }),
9872
- /* 61 */
9862
+ /* 64 */
9873
9863
  /***/ (function(module, exports, __webpack_require__) {
9874
9864
 
9875
9865
  "use strict";
@@ -9959,7 +9949,7 @@ module.exports = function lheading(state, startLine, endLine/*, silent*/) {
9959
9949
 
9960
9950
 
9961
9951
  /***/ }),
9962
- /* 62 */
9952
+ /* 65 */
9963
9953
  /***/ (function(module, exports, __webpack_require__) {
9964
9954
 
9965
9955
  "use strict";
@@ -10018,7 +10008,7 @@ module.exports = function paragraph(state, startLine/*, endLine*/) {
10018
10008
 
10019
10009
 
10020
10010
  /***/ }),
10021
- /* 63 */
10011
+ /* 66 */
10022
10012
  /***/ (function(module, exports, __webpack_require__) {
10023
10013
 
10024
10014
  "use strict";
@@ -10256,7 +10246,7 @@ module.exports = StateBlock;
10256
10246
 
10257
10247
 
10258
10248
  /***/ }),
10259
- /* 64 */
10249
+ /* 67 */
10260
10250
  /***/ (function(module, exports, __webpack_require__) {
10261
10251
 
10262
10252
  "use strict";
@@ -10275,24 +10265,24 @@ var Ruler = __webpack_require__(8);
10275
10265
  // Parser rules
10276
10266
 
10277
10267
  var _rules = [
10278
- [ 'text', __webpack_require__(65) ],
10279
- [ 'newline', __webpack_require__(66) ],
10280
- [ 'escape', __webpack_require__(67) ],
10281
- [ 'backticks', __webpack_require__(68) ],
10268
+ [ 'text', __webpack_require__(68) ],
10269
+ [ 'newline', __webpack_require__(69) ],
10270
+ [ 'escape', __webpack_require__(70) ],
10271
+ [ 'backticks', __webpack_require__(71) ],
10282
10272
  [ 'strikethrough', __webpack_require__(19).tokenize ],
10283
10273
  [ 'emphasis', __webpack_require__(20).tokenize ],
10284
- [ 'link', __webpack_require__(69) ],
10285
- [ 'image', __webpack_require__(70) ],
10286
- [ 'autolink', __webpack_require__(71) ],
10287
- [ 'html_inline', __webpack_require__(72) ],
10288
- [ 'entity', __webpack_require__(73) ]
10274
+ [ 'link', __webpack_require__(72) ],
10275
+ [ 'image', __webpack_require__(73) ],
10276
+ [ 'autolink', __webpack_require__(74) ],
10277
+ [ 'html_inline', __webpack_require__(75) ],
10278
+ [ 'entity', __webpack_require__(76) ]
10289
10279
  ];
10290
10280
 
10291
10281
  var _rules2 = [
10292
- [ 'balance_pairs', __webpack_require__(74) ],
10282
+ [ 'balance_pairs', __webpack_require__(77) ],
10293
10283
  [ 'strikethrough', __webpack_require__(19).postProcess ],
10294
10284
  [ 'emphasis', __webpack_require__(20).postProcess ],
10295
- [ 'text_collapse', __webpack_require__(75) ]
10285
+ [ 'text_collapse', __webpack_require__(78) ]
10296
10286
  ];
10297
10287
 
10298
10288
 
@@ -10433,14 +10423,14 @@ ParserInline.prototype.parse = function (str, md, env, outTokens) {
10433
10423
  };
10434
10424
 
10435
10425
 
10436
- ParserInline.prototype.State = __webpack_require__(76);
10426
+ ParserInline.prototype.State = __webpack_require__(79);
10437
10427
 
10438
10428
 
10439
10429
  module.exports = ParserInline;
10440
10430
 
10441
10431
 
10442
10432
  /***/ }),
10443
- /* 65 */
10433
+ /* 68 */
10444
10434
  /***/ (function(module, exports, __webpack_require__) {
10445
10435
 
10446
10436
  "use strict";
@@ -10536,7 +10526,7 @@ module.exports = function text(state, silent) {
10536
10526
 
10537
10527
 
10538
10528
  /***/ }),
10539
- /* 66 */
10529
+ /* 69 */
10540
10530
  /***/ (function(module, exports, __webpack_require__) {
10541
10531
 
10542
10532
  "use strict";
@@ -10589,7 +10579,7 @@ module.exports = function newline(state, silent) {
10589
10579
 
10590
10580
 
10591
10581
  /***/ }),
10592
- /* 67 */
10582
+ /* 70 */
10593
10583
  /***/ (function(module, exports, __webpack_require__) {
10594
10584
 
10595
10585
  "use strict";
@@ -10648,7 +10638,7 @@ module.exports = function escape(state, silent) {
10648
10638
 
10649
10639
 
10650
10640
  /***/ }),
10651
- /* 68 */
10641
+ /* 71 */
10652
10642
  /***/ (function(module, exports, __webpack_require__) {
10653
10643
 
10654
10644
  "use strict";
@@ -10718,7 +10708,7 @@ module.exports = function backtick(state, silent) {
10718
10708
 
10719
10709
 
10720
10710
  /***/ }),
10721
- /* 69 */
10711
+ /* 72 */
10722
10712
  /***/ (function(module, exports, __webpack_require__) {
10723
10713
 
10724
10714
  "use strict";
@@ -10873,7 +10863,7 @@ module.exports = function link(state, silent) {
10873
10863
 
10874
10864
 
10875
10865
  /***/ }),
10876
- /* 70 */
10866
+ /* 73 */
10877
10867
  /***/ (function(module, exports, __webpack_require__) {
10878
10868
 
10879
10869
  "use strict";
@@ -11032,7 +11022,7 @@ module.exports = function image(state, silent) {
11032
11022
 
11033
11023
 
11034
11024
  /***/ }),
11035
- /* 71 */
11025
+ /* 74 */
11036
11026
  /***/ (function(module, exports, __webpack_require__) {
11037
11027
 
11038
11028
  "use strict";
@@ -11115,7 +11105,7 @@ module.exports = function autolink(state, silent) {
11115
11105
 
11116
11106
 
11117
11107
  /***/ }),
11118
- /* 72 */
11108
+ /* 75 */
11119
11109
  /***/ (function(module, exports, __webpack_require__) {
11120
11110
 
11121
11111
  "use strict";
@@ -11169,7 +11159,7 @@ module.exports = function html_inline(state, silent) {
11169
11159
 
11170
11160
 
11171
11161
  /***/ }),
11172
- /* 73 */
11162
+ /* 76 */
11173
11163
  /***/ (function(module, exports, __webpack_require__) {
11174
11164
 
11175
11165
  "use strict";
@@ -11224,7 +11214,7 @@ module.exports = function entity(state, silent) {
11224
11214
 
11225
11215
 
11226
11216
  /***/ }),
11227
- /* 74 */
11217
+ /* 77 */
11228
11218
  /***/ (function(module, exports, __webpack_require__) {
11229
11219
 
11230
11220
  "use strict";
@@ -11361,7 +11351,7 @@ module.exports = function link_pairs(state) {
11361
11351
 
11362
11352
 
11363
11353
  /***/ }),
11364
- /* 75 */
11354
+ /* 78 */
11365
11355
  /***/ (function(module, exports, __webpack_require__) {
11366
11356
 
11367
11357
  "use strict";
@@ -11409,7 +11399,7 @@ module.exports = function text_collapse(state) {
11409
11399
 
11410
11400
 
11411
11401
  /***/ }),
11412
- /* 76 */
11402
+ /* 79 */
11413
11403
  /***/ (function(module, exports, __webpack_require__) {
11414
11404
 
11415
11405
  "use strict";
@@ -11570,7 +11560,7 @@ module.exports = StateInline;
11570
11560
 
11571
11561
 
11572
11562
  /***/ }),
11573
- /* 77 */
11563
+ /* 80 */
11574
11564
  /***/ (function(module, exports, __webpack_require__) {
11575
11565
 
11576
11566
  "use strict";
@@ -11726,7 +11716,7 @@ function createNormalizer() {
11726
11716
  function compile(self) {
11727
11717
 
11728
11718
  // Load & clone RE patterns.
11729
- var re = self.re = __webpack_require__(78)(self.__opts__);
11719
+ var re = self.re = __webpack_require__(81)(self.__opts__);
11730
11720
 
11731
11721
  // Define dynamic patterns
11732
11722
  var tlds = self.__tlds__.slice();
@@ -12213,7 +12203,7 @@ module.exports = LinkifyIt;
12213
12203
 
12214
12204
 
12215
12205
  /***/ }),
12216
- /* 78 */
12206
+ /* 81 */
12217
12207
  /***/ (function(module, exports, __webpack_require__) {
12218
12208
 
12219
12209
  "use strict";
@@ -12401,7 +12391,7 @@ module.exports = function (opts) {
12401
12391
 
12402
12392
 
12403
12393
  /***/ }),
12404
- /* 79 */
12394
+ /* 82 */
12405
12395
  /***/ (function(module, exports, __webpack_require__) {
12406
12396
 
12407
12397
  /* WEBPACK VAR INJECTION */(function(module, global) {var __WEBPACK_AMD_DEFINE_RESULT__;/*! https://mths.be/punycode v1.4.1 by @mathias */
@@ -12927,7 +12917,7 @@ module.exports = function (opts) {
12927
12917
  /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(24)(module), __webpack_require__(11)))
12928
12918
 
12929
12919
  /***/ }),
12930
- /* 80 */
12920
+ /* 83 */
12931
12921
  /***/ (function(module, exports, __webpack_require__) {
12932
12922
 
12933
12923
  "use strict";
@@ -12975,7 +12965,7 @@ module.exports = {
12975
12965
 
12976
12966
 
12977
12967
  /***/ }),
12978
- /* 81 */
12968
+ /* 84 */
12979
12969
  /***/ (function(module, exports, __webpack_require__) {
12980
12970
 
12981
12971
  "use strict";
@@ -13044,7 +13034,7 @@ module.exports = {
13044
13034
 
13045
13035
 
13046
13036
  /***/ }),
13047
- /* 82 */
13037
+ /* 85 */
13048
13038
  /***/ (function(module, exports, __webpack_require__) {
13049
13039
 
13050
13040
  "use strict";
@@ -13131,23 +13121,23 @@ module.exports = {
13131
13121
 
13132
13122
 
13133
13123
  /***/ }),
13134
- /* 83 */
13124
+ /* 86 */
13135
13125
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13136
13126
 
13137
13127
  "use strict";
13138
- /* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_loading_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(84);
13128
+ /* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_loading_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(87);
13139
13129
  /* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_loading_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_loading_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__);
13140
13130
  /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_loading_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0___default.a);
13141
13131
 
13142
13132
  /***/ }),
13143
- /* 84 */
13133
+ /* 87 */
13144
13134
  /***/ (function(module, exports) {
13145
13135
 
13146
13136
 
13147
13137
 
13148
13138
  /***/ }),
13149
- /* 85 */,
13150
- /* 86 */
13139
+ /* 88 */,
13140
+ /* 89 */
13151
13141
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13152
13142
 
13153
13143
  "use strict";
@@ -13157,22 +13147,22 @@ module.exports = {
13157
13147
 
13158
13148
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_0___default()(function(i){return i[1]});
13159
13149
  // Module
13160
- ___CSS_LOADER_EXPORT___.push([module.i, "[data-v-6f319e88]:root{--color-primary: #409EFF;--color-success: #67C23A;--color-warning: #E6A23C;--color-danger: #F56C6C;--color-info: #909399}.el-x-bubble-list[data-v-6f319e88]{display:flex;flex-direction:column;gap:16px;min-height:0;max-height:var(--el-x-bubble-list-max-height);overflow:auto;scroll-behavior:smooth;position:relative}.el-x-bubble-list[data-v-6f319e88]::-webkit-scrollbar{width:6px;height:8px}.el-x-bubble-list[data-v-6f319e88]::-webkit-scrollbar-thumb{background:rgba(0,0,0,0);background-color:rgba(0,0,0,.2);border-radius:10px;transition:background-color .2s ease-in-out}.el-x-bubble-list[data-v-6f319e88]::-webkit-scrollbar-track{border-radius:10px;background:rgba(0,0,0,0)}.el-x-bubble-list[data-v-6f319e88]:hover::-webkit-scrollbar-thumb{background:#c1c1c1}.el-x-bubble-list[data-v-6f319e88]:hover::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.el-x-bubble-list.always-scrollbar[data-v-6f319e88]::-webkit-scrollbar-thumb{background:#c1c1c1}.el-x-bubble-list.always-scrollbar[data-v-6f319e88]:hover::-webkit-scrollbar-thumb{background:#a8a8a8}@supports(scrollbar-color: auto){.el-x-bubble-list[data-v-6f319e88]{scrollbar-color:rgba(0,0,0,0) rgba(0,0,0,0);scrollbar-width:thin}.el-x-bubble-list[data-v-6f319e88]:hover{scrollbar-color:#c1c1c1 rgba(0,0,0,0)}.el-x-bubble-list.always-scrollbar[data-v-6f319e88]{scrollbar-color:#c1c1c1 rgba(0,0,0,0)}}.el-x-bubble-list-default-back-button[data-v-6f319e88]{position:sticky;user-select:none;cursor:pointer;width:40px;height:40px;padding:10px;box-sizing:border-box;display:flex;align-items:center;justify-content:center;background-color:#fff;border-radius:50%;box-shadow:0 0 4px 0 rgba(0,0,0,.02),0 6px 10px 0 rgba(47,53,64,.1);transition:all .3s ease;z-index:100}.el-x-bubble-list-default-back-button[data-v-6f319e88]:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,.15)}.el-x-bubble-list-default-back-button .el-x-bubble-list-back-to-bottom-icon[data-v-6f319e88]{font-size:var(--el-x-bubble-list-btn-size);position:relative}.el-x-bubble-list-default-back-button .el-x-bubble-list-back-to-bottom-icon .back-to-bottom-loading-svg-bg[data-v-6f319e88]{position:absolute;font-size:calc(var(--el-x-bubble-list-btn-size) + 26px);animation:is-loading-6f319e88 1s infinite linear;width:40px;height:40px}@keyframes is-loading-6f319e88{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.el-x-bubble-list-default-back-button .back-to-bottom-loading-svg-bg[data-v-6f319e88]{position:absolute;font-size:calc(var(--el-x-bubble-list-btn-size) + 26px);animation:is-loading-6f319e88 1s infinite linear;width:40px;height:40px}@keyframes is-loading-6f319e88{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.el-x-bubble-list-back-to-bottom-solt[data-v-6f319e88]{position:sticky;user-select:none;cursor:initial;width:fit-content;height:fit-content;padding:0;box-sizing:border-box;display:flex;align-items:center;justify-content:center;box-shadow:initial}.el-x-bubble-list-back-to-bottom-solt[data-v-6f319e88]:hover{transform:translateY(0px);box-shadow:initial}", ""]);
13150
+ ___CSS_LOADER_EXPORT___.push([module.i, "[data-v-62f6ce33]:root{--color-primary: #409eff;--color-success: #67c23a;--color-warning: #e6a23c;--color-danger: #f56c6c;--color-info: #909399}.el-x-bubble-list[data-v-62f6ce33]{display:flex;flex-direction:column;gap:16px;min-height:0;max-height:var(--el-x-bubble-list-max-height);overflow:auto;scroll-behavior:smooth;position:relative}.el-x-bubble-list[data-v-62f6ce33]::-webkit-scrollbar{width:6px;height:8px}.el-x-bubble-list[data-v-62f6ce33]::-webkit-scrollbar-thumb{background:transparent;background-color:#0003;border-radius:10px;transition:background-color .2s ease-in-out}.el-x-bubble-list[data-v-62f6ce33]::-webkit-scrollbar-track{border-radius:10px;background:transparent}.el-x-bubble-list[data-v-62f6ce33]:hover::-webkit-scrollbar-thumb{background:#c1c1c1}.el-x-bubble-list[data-v-62f6ce33]:hover::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.el-x-bubble-list.always-scrollbar[data-v-62f6ce33]::-webkit-scrollbar-thumb{background:#c1c1c1}.el-x-bubble-list.always-scrollbar[data-v-62f6ce33]:hover::-webkit-scrollbar-thumb{background:#a8a8a8}@supports(scrollbar-color: auto){.el-x-bubble-list[data-v-62f6ce33]{scrollbar-color:transparent transparent;scrollbar-width:thin}.el-x-bubble-list[data-v-62f6ce33]:hover{scrollbar-color:#c1c1c1 transparent}.el-x-bubble-list.always-scrollbar[data-v-62f6ce33]{scrollbar-color:#c1c1c1 transparent}}.el-x-bubble-list-default-back-button[data-v-62f6ce33]{position:sticky;user-select:none;cursor:pointer;width:40px;height:40px;padding:10px;box-sizing:border-box;display:flex;align-items:center;justify-content:center;background-color:#fff;border-radius:50%;box-shadow:0 0 4px 0 rgba(0,0,0,.02),0 6px 10px 0 rgba(47,53,64,.1);transition:all .3s ease;z-index:100}.el-x-bubble-list-default-back-button[data-v-62f6ce33]:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,.15)}.el-x-bubble-list-default-back-button .el-x-bubble-list-back-to-bottom-icon[data-v-62f6ce33]{font-size:var(--el-x-bubble-list-btn-size);position:relative}.el-x-bubble-list-default-back-button .el-x-bubble-list-back-to-bottom-icon .back-to-bottom-loading-svg-bg[data-v-62f6ce33]{position:absolute;font-size:calc(var(--el-x-bubble-list-btn-size) + 26px);animation:is-loading-62f6ce33 1s infinite linear;width:40px;height:40px}@keyframes is-loading-62f6ce33{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.el-x-bubble-list-default-back-button .back-to-bottom-loading-svg-bg[data-v-62f6ce33]{position:absolute;font-size:calc(var(--el-x-bubble-list-btn-size) + 26px);animation:is-loading-62f6ce33 1s infinite linear;width:40px;height:40px}@keyframes is-loading-62f6ce33{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.el-x-bubble-list-back-to-bottom-solt[data-v-62f6ce33]{position:sticky;user-select:none;cursor:initial;width:fit-content;height:fit-content;padding:0;box-sizing:border-box;display:flex;align-items:center;justify-content:center;box-shadow:initial}.el-x-bubble-list-back-to-bottom-solt[data-v-62f6ce33]:hover{transform:translateY(0px);box-shadow:initial}", ""]);
13161
13151
  // Exports
13162
13152
  /* harmony default export */ __webpack_exports__["a"] = (___CSS_LOADER_EXPORT___);
13163
13153
 
13164
13154
 
13165
13155
  /***/ }),
13166
- /* 87 */,
13167
- /* 88 */,
13168
- /* 89 */,
13169
13156
  /* 90 */,
13170
13157
  /* 91 */,
13171
13158
  /* 92 */,
13172
13159
  /* 93 */,
13173
13160
  /* 94 */,
13174
13161
  /* 95 */,
13175
- /* 96 */
13162
+ /* 96 */,
13163
+ /* 97 */,
13164
+ /* 98 */,
13165
+ /* 99 */
13176
13166
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13177
13167
 
13178
13168
  "use strict";
@@ -13269,16 +13259,16 @@ render._withStripped = true;
13269
13259
 
13270
13260
 
13271
13261
  /***/ }),
13272
- /* 97 */,
13273
- /* 98 */,
13274
- /* 99 */
13262
+ /* 100 */,
13263
+ /* 101 */,
13264
+ /* 102 */
13275
13265
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13276
13266
 
13277
13267
  "use strict";
13278
13268
  // ESM COMPAT FLAG
13279
13269
  __webpack_require__.r(__webpack_exports__);
13280
13270
 
13281
- // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/BubbleList/src/main.vue?vue&type=template&id=6f319e88&scoped=true
13271
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/vue-loader/lib??vue-loader-options!./src/components/BubbleList/src/main.vue?vue&type=template&id=62f6ce33&scoped=true
13282
13272
  var render = function render() {
13283
13273
  var _vm = this,
13284
13274
  _c = _vm._self._c;
@@ -13312,7 +13302,6 @@ var render = function render() {
13312
13302
  "avatar-size": _vm.defaultAvatarSize || item.avatarSize,
13313
13303
  "avatar-gap": _vm.defaultAvatarGap || item.avatarGap,
13314
13304
  "avatar-shape": _vm.defaultAvatarShape || item.avatarShape,
13315
- "avatar-icon": _vm.defaultAvatarIcon || item.avatarIcon,
13316
13305
  "avatar-src-set": _vm.defaultAvatarSrcSet || item.avatarSrcSet,
13317
13306
  "avatar-alt": _vm.defaultAvatarAlt || item.avatarAlt,
13318
13307
  "avatar-fit": _vm.defaultAvatarFit || item.avatarFit,
@@ -13323,19 +13312,7 @@ var render = function render() {
13323
13312
  }
13324
13313
  }, [_c("template", {
13325
13314
  slot: "avatar"
13326
- }, [_vm._t("avatar", function () {
13327
- return [_vm.defaultAvatar || item.avatar ? [_c("el-avatar", {
13328
- attrs: {
13329
- size: _vm.defaultAvatarSize || item.avatarSize || 40,
13330
- src: _vm.defaultAvatar || item.avatar,
13331
- shape: _vm.defaultAvatarShape || item.avatarShape || "circle",
13332
- icon: _vm.defaultAvatarIcon || item.avatarIcon,
13333
- "src-set": _vm.defaultAvatarSrcSet || item.avatarSrcSet,
13334
- alt: _vm.defaultAvatarAlt || item.avatarAlt,
13335
- fit: _vm.defaultAvatarFit || item.avatarFit || "cover"
13336
- }
13337
- })] : _vm._e()];
13338
- }, {
13315
+ }, [_vm._t("avatar", null, {
13339
13316
  item: item
13340
13317
  })], 2), _vm._v(" "), _vm.$scopedSlots.header || _vm.$slots.header ? _c("template", {
13341
13318
  slot: "header"
@@ -13383,13 +13360,7 @@ var render = function render() {
13383
13360
  var staticRenderFns = [];
13384
13361
  render._withStripped = true;
13385
13362
 
13386
- // CONCATENATED MODULE: ./src/components/BubbleList/src/main.vue?vue&type=template&id=6f319e88&scoped=true
13387
-
13388
- // EXTERNAL MODULE: ./src/components/Bubble/index.js + 7 modules
13389
- var Bubble = __webpack_require__(28);
13390
-
13391
- // EXTERNAL MODULE: ./src/components/BubbleList/src/loading.vue
13392
- var loading = __webpack_require__(105);
13363
+ // CONCATENATED MODULE: ./src/components/BubbleList/src/main.vue?vue&type=template&id=62f6ce33&scoped=true
13393
13364
 
13394
13365
  // CONCATENATED MODULE: ./src/utils/scrollDetector.js
13395
13366
  function createScrollDetector(elementRef) {
@@ -13424,6 +13395,12 @@ function createScrollDetector(elementRef) {
13424
13395
  destroy // 销毁监听
13425
13396
  };
13426
13397
  }
13398
+ // EXTERNAL MODULE: ./src/components/Bubble/index.js + 7 modules
13399
+ var Bubble = __webpack_require__(30);
13400
+
13401
+ // EXTERNAL MODULE: ./src/components/BubbleList/src/loading.vue
13402
+ var loading = __webpack_require__(108);
13403
+
13427
13404
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/components/BubbleList/src/main.vue?vue&type=script&lang=js
13428
13405
 
13429
13406
 
@@ -13527,10 +13504,6 @@ function createScrollDetector(elementRef) {
13527
13504
  type: String,
13528
13505
  default: ''
13529
13506
  },
13530
- defaultAvatarIcon: {
13531
- type: String,
13532
- default: ''
13533
- },
13534
13507
  defaultAvatarSrcSet: {
13535
13508
  type: String,
13536
13509
  default: ''
@@ -13752,10 +13725,10 @@ function createScrollDetector(elementRef) {
13752
13725
  var injectStylesIntoStyleTag = __webpack_require__(3);
13753
13726
  var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
13754
13727
 
13755
- // EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/BubbleList/src/main.vue?vue&type=style&index=0&id=6f319e88&prod&lang=scss&scoped=true
13756
- var mainvue_type_style_index_0_id_6f319e88_prod_lang_scss_scoped_true = __webpack_require__(86);
13728
+ // EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/BubbleList/src/main.vue?vue&type=style&index=0&id=62f6ce33&prod&lang=scss&scoped=true
13729
+ var mainvue_type_style_index_0_id_62f6ce33_prod_lang_scss_scoped_true = __webpack_require__(89);
13757
13730
 
13758
- // CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/BubbleList/src/main.vue?vue&type=style&index=0&id=6f319e88&prod&lang=scss&scoped=true
13731
+ // CONCATENATED MODULE: ./node_modules/style-loader/dist/cjs.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./src/components/BubbleList/src/main.vue?vue&type=style&index=0&id=62f6ce33&prod&lang=scss&scoped=true
13759
13732
 
13760
13733
 
13761
13734
 
@@ -13764,12 +13737,12 @@ var options = {};
13764
13737
  options.insert = "head";
13765
13738
  options.singleton = false;
13766
13739
 
13767
- var update = injectStylesIntoStyleTag_default()(mainvue_type_style_index_0_id_6f319e88_prod_lang_scss_scoped_true["a" /* default */], options);
13740
+ var update = injectStylesIntoStyleTag_default()(mainvue_type_style_index_0_id_62f6ce33_prod_lang_scss_scoped_true["a" /* default */], options);
13768
13741
 
13769
13742
 
13770
13743
 
13771
- /* harmony default export */ var src_mainvue_type_style_index_0_id_6f319e88_prod_lang_scss_scoped_true = (mainvue_type_style_index_0_id_6f319e88_prod_lang_scss_scoped_true["a" /* default */].locals || {});
13772
- // CONCATENATED MODULE: ./src/components/BubbleList/src/main.vue?vue&type=style&index=0&id=6f319e88&prod&lang=scss&scoped=true
13744
+ /* harmony default export */ var src_mainvue_type_style_index_0_id_62f6ce33_prod_lang_scss_scoped_true = (mainvue_type_style_index_0_id_62f6ce33_prod_lang_scss_scoped_true["a" /* default */].locals || {});
13745
+ // CONCATENATED MODULE: ./src/components/BubbleList/src/main.vue?vue&type=style&index=0&id=62f6ce33&prod&lang=scss&scoped=true
13773
13746
 
13774
13747
  // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
13775
13748
  var componentNormalizer = __webpack_require__(0);
@@ -13789,7 +13762,7 @@ var component = Object(componentNormalizer["a" /* default */])(
13789
13762
  staticRenderFns,
13790
13763
  false,
13791
13764
  null,
13792
- "6f319e88",
13765
+ "62f6ce33",
13793
13766
  null
13794
13767
 
13795
13768
  )
@@ -13805,17 +13778,17 @@ main.install = function (Vue) {
13805
13778
  /* harmony default export */ var BubbleList = __webpack_exports__["default"] = (main);
13806
13779
 
13807
13780
  /***/ }),
13808
- /* 100 */,
13809
- /* 101 */,
13810
- /* 102 */,
13811
13781
  /* 103 */,
13812
13782
  /* 104 */,
13813
- /* 105 */
13783
+ /* 105 */,
13784
+ /* 106 */,
13785
+ /* 107 */,
13786
+ /* 108 */
13814
13787
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
13815
13788
 
13816
13789
  "use strict";
13817
- /* harmony import */ var _loading_vue_vue_type_template_id_ed06f0be_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(96);
13818
- /* harmony import */ var _loading_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(83);
13790
+ /* harmony import */ var _loading_vue_vue_type_template_id_ed06f0be_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(99);
13791
+ /* harmony import */ var _loading_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(86);
13819
13792
  /* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(0);
13820
13793
 
13821
13794