which uses a dynamically fetched padding-top property
+ // based on the video's w/h dimensions
+ var wrap = document.createElement('div');
+ wrap.className = 'fluid-vids';
+ wrap.style.position = 'relative';
+ wrap.style.marginBottom = '20px';
+ wrap.style.width = '100%';
+ wrap.style.paddingTop = videoRatio + '%';
+ // Fix for appear inside tabs tag.
+ (wrap.style.paddingTop === '') && (wrap.style.paddingTop = '50%');
+
+ // Add the iframe inside our newly created
+ var iframeParent = iframe.parentNode;
+ iframeParent.insertBefore(wrap, iframe);
+ wrap.appendChild(iframe);
+
+ // Additional adjustments for 163 Music
+ if (this.src.search('music.163.com') > 0) {
+ newDimension = getDimension($iframe);
+ var shouldRecalculateAspect = newDimension.width > oldDimension.width ||
+ newDimension.height < oldDimension.height;
+
+ // 163 Music Player has a fixed height, so we need to reset the aspect radio
+ if (shouldRecalculateAspect) {
+ wrap.style.paddingTop = getAspectRadio(newDimension.width, oldDimension.height) + '%';
+ }
+ }
+ }
+ });
+
+ function getDimension($element) {
+ return {
+ width: $element.width(),
+ height: $element.height()
+ };
+ }
+
+ function getAspectRadio(width, height) {
+ return height / width * 100;
+ }
+ },
+
+ /**
+ * Add `menu-item-active` class name to menu item
+ * via comparing location.path with menu item's href.
+ */
+ addActiveClassToMenuItem: function () {
+ var path = window.location.pathname;
+ path = path === '/' ? path : path.substring(0, path.length - 1);
+ $('.menu-item a[href^="' + path + '"]:first').parent().addClass('menu-item-active');
+ },
+
+ hasMobileUA: function () {
+ var nav = window.navigator;
+ var ua = nav.userAgent;
+ var pa = /iPad|iPhone|Android|Opera Mini|BlackBerry|webOS|UCWEB|Blazer|PSP|IEMobile|Symbian/g;
+
+ return pa.test(ua);
+ },
+
+ isTablet: function () {
+ return window.screen.width < 992 && window.screen.width > 767 && this.hasMobileUA();
+ },
+
+ isMobile: function () {
+ return window.screen.width < 767 && this.hasMobileUA();
+ },
+
+ isDesktop: function () {
+ return !this.isTablet() && !this.isMobile();
+ },
+
+ /**
+ * Escape meta symbols in jQuery selectors.
+ *
+ * @param selector
+ * @returns {string|void|XML|*}
+ */
+ escapeSelector: function (selector) {
+ return selector.replace(/[!"$%&'()*+,.\/:;<=>?@[\\\]^`{|}~]/g, '\\$&');
+ },
+
+ displaySidebar: function () {
+ if (!this.isDesktop() || this.isPisces() || this.isGemini()) {
+ return;
+ }
+ $('.sidebar-toggle').trigger('click');
+ },
+
+ isMist: function () {
+ return CONFIG.scheme === 'Mist';
+ },
+
+ isPisces: function () {
+ return CONFIG.scheme === 'Pisces';
+ },
+
+ isGemini: function () {
+ return CONFIG.scheme === 'Gemini';
+ },
+
+ getScrollbarWidth: function () {
+ var $div = $('
').addClass('scrollbar-measure').prependTo('body');
+ var div = $div[0];
+ var scrollbarWidth = div.offsetWidth - div.clientWidth;
+
+ $div.remove();
+
+ return scrollbarWidth;
+ },
+
+ getContentVisibilityHeight: function () {
+ var docHeight = $('#content').height(),
+ winHeight = $(window).height(),
+ contentVisibilityHeight = (docHeight > winHeight) ? (docHeight - winHeight) : ($(document).height() - winHeight);
+ return contentVisibilityHeight;
+ },
+
+ getSidebarb2tHeight: function () {
+ //var sidebarb2tHeight = (CONFIG.sidebar.b2t) ? document.getElementsByClassName('back-to-top')[0].clientHeight : 0;
+ var sidebarb2tHeight = (CONFIG.sidebar.b2t) ? $('.back-to-top').height() : 0;
+ //var sidebarb2tHeight = (CONFIG.sidebar.b2t) ? 24 : 0;
+ return sidebarb2tHeight;
+ },
+
+ getSidebarSchemePadding: function () {
+ var sidebarNavHeight = ($('.sidebar-nav').css('display') == 'block') ? $('.sidebar-nav').outerHeight(true) : 0,
+ sidebarInner = $('.sidebar-inner'),
+ sidebarPadding = sidebarInner.innerWidth() - sidebarInner.width(),
+ sidebarSchemePadding = this.isPisces() || this.isGemini() ?
+ ((sidebarPadding * 2) + sidebarNavHeight + (CONFIG.sidebar.offset * 2) + this.getSidebarb2tHeight()) :
+ ((sidebarPadding * 2) + (sidebarNavHeight / 2));
+ return sidebarSchemePadding;
+ }
+
+ /**
+ * Affix behaviour for Sidebar.
+ *
+ * @returns {Boolean}
+ */
+// needAffix: function () {
+// return this.isPisces() || this.isGemini();
+// }
+};
+
+$(document).ready(function () {
+
+ initSidebarDimension();
+
+ /**
+ * Init Sidebar & TOC inner dimensions on all pages and for all schemes.
+ * Need for Sidebar/TOC inner scrolling if content taller then viewport.
+ */
+ function initSidebarDimension () {
+ var updateSidebarHeightTimer;
+
+ $(window).on('resize', function () {
+ updateSidebarHeightTimer && clearTimeout(updateSidebarHeightTimer);
+
+ updateSidebarHeightTimer = setTimeout(function () {
+ var sidebarWrapperHeight = document.body.clientHeight - NexT.utils.getSidebarSchemePadding();
+
+ updateSidebarHeight(sidebarWrapperHeight);
+ }, 0);
+ });
+
+ // Initialize Sidebar & TOC Width.
+ var scrollbarWidth = NexT.utils.getScrollbarWidth();
+ if ($('.site-overview-wrap').height() > (document.body.clientHeight - NexT.utils.getSidebarSchemePadding())) {
+ $('.site-overview').css('width', 'calc(100% + ' + scrollbarWidth + 'px)');
+ }
+ if ($('.post-toc-wrap').height() > (document.body.clientHeight - NexT.utils.getSidebarSchemePadding())) {
+ $('.post-toc').css('width', 'calc(100% + ' + scrollbarWidth + 'px)');
+ }
+
+ // Initialize Sidebar & TOC Height.
+ updateSidebarHeight(document.body.clientHeight - NexT.utils.getSidebarSchemePadding());
+ }
+
+ function updateSidebarHeight (height) {
+ height = height || 'auto';
+ $('.site-overview, .post-toc').css('max-height', height);
+ }
+
+});
diff --git a/lib/Han/dist/font/han-space.otf b/lib/Han/dist/font/han-space.otf
new file mode 100644
index 00000000..845b1bc2
Binary files /dev/null and b/lib/Han/dist/font/han-space.otf differ
diff --git a/lib/Han/dist/font/han-space.woff b/lib/Han/dist/font/han-space.woff
new file mode 100644
index 00000000..6ccc84f8
Binary files /dev/null and b/lib/Han/dist/font/han-space.woff differ
diff --git a/lib/Han/dist/font/han.otf b/lib/Han/dist/font/han.otf
new file mode 100644
index 00000000..2ce2f46c
Binary files /dev/null and b/lib/Han/dist/font/han.otf differ
diff --git a/lib/Han/dist/font/han.woff b/lib/Han/dist/font/han.woff
new file mode 100644
index 00000000..011e06c7
Binary files /dev/null and b/lib/Han/dist/font/han.woff differ
diff --git a/lib/Han/dist/font/han.woff2 b/lib/Han/dist/font/han.woff2
new file mode 100644
index 00000000..02c49afb
Binary files /dev/null and b/lib/Han/dist/font/han.woff2 differ
diff --git a/lib/Han/dist/han.css b/lib/Han/dist/han.css
new file mode 100644
index 00000000..9bafab6e
--- /dev/null
+++ b/lib/Han/dist/han.css
@@ -0,0 +1,1168 @@
+@charset "UTF-8";
+
+/*! 漢字標準格式 v3.3.0 | MIT License | css.hanzi.co */
+/*! Han.css: the CSS typography framework optimised for Hanzi */
+
+/* normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
+html {
+ font-family: sans-serif; /* 1 */
+ -ms-text-size-adjust: 100%; /* 2 */
+ -webkit-text-size-adjust: 100%; /* 2 */
+}
+body {
+ margin: 0;
+}
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+main,
+menu,
+nav,
+section,
+summary {
+ /* 1 */
+ display: block;
+}
+audio,
+canvas,
+progress,
+video {
+ display: inline-block;
+}
+audio:not([controls]) {
+ display: none;
+ height: 0;
+}
+progress {
+ vertical-align: baseline;
+}
+template,
+[hidden] {
+ display: none;
+}
+a {
+ background-color: transparent;
+}
+a:active,
+a:hover {
+ outline-width: 0;
+}
+abbr[title] {
+ border-bottom: none; /* 1 */
+ text-decoration: underline; /* 2 */
+ text-decoration: underline dotted; /* 2 */
+}
+b,
+strong {
+ font-weight: inherit;
+}
+b,
+strong {
+ font-weight: bolder;
+}
+dfn {
+ font-style: italic;
+}
+h1 {
+ font-size: 2em;
+ margin: .67em 0;
+}
+mark {
+ background-color: #ff0;
+ color: #000;
+}
+small {
+ font-size: 80%;
+}
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+sub {
+ bottom: -.25em;
+}
+sup {
+ top: -.5em;
+}
+img {
+ border-style: none;
+}
+svg:not(:root) {
+ overflow: hidden;
+}
+code,
+kbd,
+pre,
+samp {
+ font-family: monospace, monospace; /* 1 */
+ font-size: 1em; /* 2 */
+}
+figure {
+ margin: 1em 40px;
+}
+hr {
+ box-sizing: content-box; /* 1 */
+ height: 0; /* 1 */
+ overflow: visible; /* 2 */
+}
+button,
+input,
+select,
+textarea {
+ font: inherit;
+}
+optgroup {
+ font-weight: bold;
+}
+button,
+input,
+select {
+ /* 2 */
+ overflow: visible;
+}
+button,
+input,
+select,
+textarea {
+ /* 1 */
+ margin: 0;
+}
+button,
+select {
+ /* 1 */
+ text-transform: none;
+}
+button,
+[type="button"],
+[type="reset"],
+[type="submit"] {
+ cursor: pointer;
+}
+[disabled] {
+ cursor: default;
+}
+button,
+html [type="button"],
+[type="reset"],
+[type="submit"] {
+ -webkit-appearance: button; /* 2 */
+}
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+ border: 0;
+ padding: 0;
+}
+button:-moz-focusring,
+input:-moz-focusring {
+ outline: 1px dotted ButtonText;
+}
+fieldset {
+ border: 1px solid #c0c0c0;
+ margin: 0 2px;
+ padding: .35em .625em .75em;
+}
+legend {
+ box-sizing: border-box; /* 1 */
+ color: inherit; /* 2 */
+ display: table; /* 1 */
+ max-width: 100%; /* 1 */
+ padding: 0; /* 3 */
+ white-space: normal; /* 1 */
+}
+textarea {
+ overflow: auto;
+}
+[type="checkbox"],
+[type="radio"] {
+ box-sizing: border-box; /* 1 */
+ padding: 0; /* 2 */
+}
+[type="number"]::-webkit-inner-spin-button,
+[type="number"]::-webkit-outer-spin-button {
+ height: auto;
+}
+[type="search"] {
+ -webkit-appearance: textfield;
+}
+[type="search"]::-webkit-search-cancel-button,
+[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+@font-face {
+ font-family: "Han Heiti";
+ src: local("Hiragino Sans GB"), local("Lantinghei TC Extralight"), local("Lantinghei SC Extralight"), local(FZLTXHB--B51-0), local(FZLTZHK--GBK1-0), local("Pingfang SC Light"), local("Pingfang TC Light"), local("Pingfang-SC-Light"), local("Pingfang-TC-Light"), local("Pingfang SC"), local("Pingfang TC"), local("Heiti SC Light"), local(STHeitiSC-Light), local("Heiti SC"), local("Heiti TC Light"), local(STHeitiTC-Light), local("Heiti TC"), local("Microsoft Yahei"), local("Microsoft Jhenghei"), local("Noto Sans CJK KR"), local("Noto Sans CJK JP"), local("Noto Sans CJK SC"), local("Noto Sans CJK TC"), local("Source Han Sans K"), local("Source Han Sans KR"), local("Source Han Sans JP"), local("Source Han Sans CN"), local("Source Han Sans HK"), local("Source Han Sans TW"), local("Source Han Sans TWHK"), local("Droid Sans Fallback");
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Heiti";
+ src: local(YuGothic), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro");
+}
+@font-face {
+ font-family: "Han Heiti CNS";
+ src: local("Pingfang TC Light"), local("Pingfang-TC-Light"), local("Pingfang TC"), local("Heiti TC Light"), local(STHeitiTC-Light), local("Heiti TC"), local("Lantinghei TC Extralight"), local(FZLTXHB--B51-0), local("Lantinghei TC"), local("Microsoft Jhenghei"), local("Microsoft Yahei"), local("Noto Sans CJK TC"), local("Source Han Sans TC"), local("Source Han Sans TW"), local("Source Han Sans TWHK"), local("Source Han Sans HK"), local("Droid Sans Fallback");
+}
+@font-face {
+ font-family: "Han Heiti GB";
+ src: local("Hiragino Sans GB"), local("Pingfang SC Light"), local("Pingfang-SC-Light"), local("Pingfang SC"), local("Lantinghei SC Extralight"), local(FZLTXHK--GBK1-0), local("Lantinghei SC"), local("Heiti SC Light"), local(STHeitiSC-Light), local("Heiti SC"), local("Microsoft Yahei"), local("Noto Sans CJK SC"), local("Source Han Sans SC"), local("Source Han Sans CN"), local("Droid Sans Fallback");
+}
+@font-face {
+ font-family: "Han Heiti";
+ font-weight: 600;
+ src: local("Hiragino Sans GB W6"), local(HiraginoSansGB-W6), local("Lantinghei TC Demibold"), local("Lantinghei SC Demibold"), local(FZLTZHB--B51-0), local(FZLTZHK--GBK1-0), local("Pingfang-SC-Semibold"), local("Pingfang-TC-Semibold"), local("Heiti SC Medium"), local("STHeitiSC-Medium"), local("Heiti SC"), local("Heiti TC Medium"), local("STHeitiTC-Medium"), local("Heiti TC"), local("Microsoft Yahei Bold"), local("Microsoft Jhenghei Bold"), local(MicrosoftYahei-Bold), local(MicrosoftJhengHeiBold), local("Microsoft Yahei"), local("Microsoft Jhenghei"), local("Noto Sans CJK KR Bold"), local("Noto Sans CJK JP Bold"), local("Noto Sans CJK SC Bold"), local("Noto Sans CJK TC Bold"), local(NotoSansCJKkr-Bold), local(NotoSansCJKjp-Bold), local(NotoSansCJKsc-Bold), local(NotoSansCJKtc-Bold), local("Source Han Sans K Bold"), local(SourceHanSansK-Bold), local("Source Han Sans K"), local("Source Han Sans KR Bold"), local("Source Han Sans JP Bold"), local("Source Han Sans CN Bold"), local("Source Han Sans HK Bold"), local("Source Han Sans TW Bold"), local("Source Han Sans TWHK Bold"), local("SourceHanSansKR-Bold"), local("SourceHanSansJP-Bold"), local("SourceHanSansCN-Bold"), local("SourceHanSansHK-Bold"), local("SourceHanSansTW-Bold"), local("SourceHanSansTWHK-Bold"), local("Source Han Sans KR"), local("Source Han Sans CN"), local("Source Han Sans HK"), local("Source Han Sans TW"), local("Source Han Sans TWHK");
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Heiti";
+ font-weight: 600;
+ src: local("YuGothic Bold"), local("Hiragino Kaku Gothic ProN W6"), local("Hiragino Kaku Gothic Pro W6"), local(YuGo-Bold), local(HiraKakuProN-W6), local(HiraKakuPro-W6);
+}
+@font-face {
+ font-family: "Han Heiti CNS";
+ font-weight: 600;
+ src: local("Pingfang TC Semibold"), local("Pingfang-TC-Semibold"), local("Heiti TC Medium"), local("STHeitiTC-Medium"), local("Heiti TC"), local("Lantinghei TC Demibold"), local(FZLTXHB--B51-0), local("Microsoft Jhenghei Bold"), local(MicrosoftJhengHeiBold), local("Microsoft Jhenghei"), local("Microsoft Yahei Bold"), local(MicrosoftYahei-Bold), local("Noto Sans CJK TC Bold"), local(NotoSansCJKtc-Bold), local("Noto Sans CJK TC"), local("Source Han Sans TC Bold"), local("SourceHanSansTC-Bold"), local("Source Han Sans TC"), local("Source Han Sans TW Bold"), local("SourceHanSans-TW"), local("Source Han Sans TW"), local("Source Han Sans TWHK Bold"), local("SourceHanSans-TWHK"), local("Source Han Sans TWHK"), local("Source Han Sans HK"), local("SourceHanSans-HK"), local("Source Han Sans HK");
+}
+@font-face {
+ font-family: "Han Heiti GB";
+ font-weight: 600;
+ src: local("Hiragino Sans GB W6"), local(HiraginoSansGB-W6), local("Pingfang SC Semibold"), local("Pingfang-SC-Semibold"), local("Lantinghei SC Demibold"), local(FZLTZHK--GBK1-0), local("Heiti SC Medium"), local("STHeitiSC-Medium"), local("Heiti SC"), local("Microsoft Yahei Bold"), local(MicrosoftYahei-Bold), local("Microsoft Yahei"), local("Noto Sans CJK SC Bold"), local(NotoSansCJKsc-Bold), local("Noto Sans CJK SC"), local("Source Han Sans SC Bold"), local("SourceHanSansSC-Bold"), local("Source Han Sans CN Bold"), local("SourceHanSansCN-Bold"), local("Source Han Sans SC"), local("Source Han Sans CN");
+}
+@font-face {
+ font-family: "Han Songti";
+ src: local("Songti SC Regular"), local(STSongti-SC-Regular), local("Songti SC"), local("Songti TC Regular"), local(STSongti-TC-Regular), local("Songti TC"), local(STSong), local("Lisong Pro"), local(SimSun), local(PMingLiU);
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Songti";
+ src: local(YuMincho), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("MS Mincho");
+}
+@font-face {
+ font-family: "Han Songti CNS";
+ src: local("Songti TC Regular"), local(STSongti-TC-Regular), local("Songti TC"), local("Lisong Pro"), local("Songti SC Regular"), local(STSongti-SC-Regular), local("Songti SC"), local(STSong), local(PMingLiU), local(SimSun);
+}
+@font-face {
+ font-family: "Han Songti GB";
+ src: local("Songti SC Regular"), local(STSongti-SC-Regular), local("Songti SC"), local(STSong), local(SimSun), local(PMingLiU);
+}
+@font-face {
+ font-family: "Han Songti";
+ font-weight: 600;
+ src: local("STSongti SC Bold"), local("STSongti TC Bold"), local(STSongti-SC-Bold), local(STSongti-TC-Bold), local("STSongti SC"), local("STSongti TC");
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Songti";
+ font-weight: 600;
+ src: local("YuMincho Demibold"), local("Hiragino Mincho ProN W6"), local("Hiragino Mincho Pro W6"), local(YuMin-Demibold), local(HiraMinProN-W6), local(HiraMinPro-W6), local(YuMincho), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro");
+}
+@font-face {
+ font-family: "Han Songti CNS";
+ font-weight: 600;
+ src: local("STSongti TC Bold"), local("STSongti SC Bold"), local(STSongti-TC-Bold), local(STSongti-SC-Bold), local("STSongti TC"), local("STSongti SC");
+}
+@font-face {
+ font-family: "Han Songti GB";
+ font-weight: 600;
+ src: local("STSongti SC Bold"), local(STSongti-SC-Bold), local("STSongti SC");
+}
+@font-face {
+ font-family: cursive;
+ src: local("Kaiti TC Regular"), local(STKaiTi-TC-Regular), local("Kaiti TC"), local("Kaiti SC"), local(STKaiti), local(BiauKai), local("標楷體"), local(DFKaiShu-SB-Estd-BF), local(Kaiti), local(DFKai-SB);
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Kaiti";
+ src: local("Kaiti TC Regular"), local(STKaiTi-TC-Regular), local("Kaiti TC"), local("Kaiti SC"), local(STKaiti), local(BiauKai), local("標楷體"), local(DFKaiShu-SB-Estd-BF), local(Kaiti), local(DFKai-SB);
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Kaiti CNS";
+ src: local(BiauKai), local("標楷體"), local(DFKaiShu-SB-Estd-BF), local("Kaiti TC Regular"), local(STKaiTi-TC-Regular), local("Kaiti TC");
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Kaiti GB";
+ src: local("Kaiti SC Regular"), local(STKaiTi-SC-Regular), local("Kaiti SC"), local(STKaiti), local(Kai), local(Kaiti), local(DFKai-SB);
+}
+@font-face {
+ font-family: cursive;
+ font-weight: 600;
+ src: local("Kaiti TC Bold"), local(STKaiTi-TC-Bold), local("Kaiti SC Bold"), local(STKaiti-SC-Bold), local("Kaiti TC"), local("Kaiti SC");
+}
+@font-face {
+ font-family: "Han Kaiti";
+ font-weight: 600;
+ src: local("Kaiti TC Bold"), local(STKaiTi-TC-Bold), local("Kaiti SC Bold"), local(STKaiti-SC-Bold), local("Kaiti TC"), local("Kaiti SC");
+}
+@font-face {
+ font-family: "Han Kaiti CNS";
+ font-weight: 600;
+ src: local("Kaiti TC Bold"), local(STKaiTi-TC-Bold), local("Kaiti TC");
+}
+@font-face {
+ font-family: "Han Kaiti GB";
+ font-weight: 600;
+ src: local("Kaiti SC Bold"), local(STKaiti-SC-Bold);
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Fangsong";
+ src: local(STFangsong), local(FangSong);
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Fangsong CNS";
+ src: local(STFangsong), local(FangSong);
+}
+@font-face {
+ unicode-range: U+4E00-9FFF, U+3400-4DB5, U+20000-2A6D6, U+2A700-2B734, U+2B740-2B81D, U+FA0E-FA0F, U+FA11, U+FA13-FA14, U+FA1F, U+FA21, U+FA23, U+FA24, U+FA27-FA29, U+3040-309F, U+30A0-30FF, U+3099-309E, U+FF66-FF9F, U+3007, U+31C0-31E3, U+2F00-2FD5, U+2E80-2EF3;
+ font-family: "Han Fangsong GB";
+ src: local(STFangsong), local(FangSong);
+}
+@font-face {
+ font-family: "Biaodian Sans";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local("MS Gothic"), local(SimSun);
+ unicode-range: U+FF0E;
+}
+@font-face {
+ font-family: "Biaodian Serif";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSong), local(SimSun);
+ unicode-range: U+FF0E;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local("MS Gothic"), local(SimSun);
+ unicode-range: U+FF0E;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSong), local(SimSun);
+ unicode-range: U+FF0E;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local("MS Gothic"), local(SimSun);
+ unicode-range: U+FF0E;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif CNS";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSong), local(SimSun);
+ unicode-range: U+FF0E;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local("MS Gothic"), local(SimSun);
+ unicode-range: U+FF0E;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSong), local(SimSun);
+ unicode-range: U+FF0E;
+}
+@font-face {
+ font-family: "Biaodian Sans";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local(SimSun);
+ unicode-range: U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Serif";
+ src: local("Songti SC"), local(STSong), local("Heiti SC"), local(SimSun);
+ unicode-range: U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local(SimSun);
+ unicode-range: U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif";
+ src: local("Songti SC"), local(STSong), local("Heiti SC"), local(SimSun);
+ unicode-range: U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local(SimSun);
+ unicode-range: U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif CNS";
+ src: local("Songti SC"), local(STSong), local("Heiti SC"), local(SimSun);
+ unicode-range: U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local(SimSun);
+ unicode-range: U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ src: local("Songti SC"), local(STSong), local("Heiti SC"), local(SimSun);
+ unicode-range: U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Sans";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Sans GB"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("Microsoft Yahei"), local(SimSun);
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Biaodian Serif";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSong), local("Microsoft Yahei"), local(SimSun);
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Yakumono Sans";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("Arial Unicode MS"), local("MS Gothic");
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Yakumono Serif";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("MS Mincho"), local("Microsoft Yahei");
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Sans GB"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("Microsoft Yahei"), local(SimSun);
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSong), local("Microsoft Yahei"), local(SimSun);
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Sans GB"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("Microsoft Yahei"), local(SimSun);
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif CNS";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSong), local("Microsoft Yahei"), local(SimSun);
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Sans GB"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("Microsoft Yahei"), local(SimSun);
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSong), local("Microsoft Yahei"), local(SimSun);
+ unicode-range: U+2014;
+}
+@font-face {
+ font-family: "Biaodian Sans";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Sans GB"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local(Meiryo), local("MS Gothic"), local(SimSun), local(PMingLiU);
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Biaodian Serif";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local("MS Mincho"), local(SimSun), local(PMingLiU);
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Yakumono Sans";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local(Meiryo), local("MS Gothic");
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Yakumono Serif";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("MS Mincho");
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Sans GB"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local(SimSun), local(PMingLiU);
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(SimSun), local(PMingLiU);
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Sans GB"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local(SimSun), local(PMingLiU);
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif CNS";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSongti), local(SimSun), local(PMingLiU);
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Sans GB"), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local(SimSun), local(PMingLiU);
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype"), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Songti SC"), local(STSongti), local(SimSun), local(PMingLiU);
+ unicode-range: U+2026;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local(SimSun), local(PMingLiU);
+ unicode-range: U+201C-201D, U+2018-2019;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ font-weight: bold;
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local(SimSun), local(PMingLiU);
+ unicode-range: U+201C-201D, U+2018-2019;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ src: local("Lisong Pro"), local("Heiti SC"), local(STHeiti), local(SimSun), local(PMingLiU);
+ unicode-range: U+201C-201D, U+2018-2019;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ font-weight: bold;
+ src: local("Lisong Pro"), local("Heiti SC"), local(STHeiti), local(SimSun), local(PMingLiU);
+ unicode-range: U+201C-201D, U+2018-2019;
+}
+@font-face {
+ font-family: "Biaodian Sans";
+ src: local(Georgia), local("Times New Roman"), local(Arial), local("Droid Sans Fallback");
+ unicode-range: U+25CF;
+}
+@font-face {
+ font-family: "Biaodian Serif";
+ src: local(Georgia), local("Times New Roman"), local(Arial), local("Droid Sans Fallback");
+ unicode-range: U+25CF;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans";
+ src: local(Georgia), local("Times New Roman"), local(Arial), local("Droid Sans Fallback");
+ unicode-range: U+25CF;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif";
+ src: local(Georgia), local("Times New Roman"), local(Arial), local("Droid Sans Fallback");
+ unicode-range: U+25CF;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ src: local(Georgia), local("Times New Roman"), local(Arial), local("Droid Sans Fallback");
+ unicode-range: U+25CF;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif CNS";
+ src: local(Georgia), local("Times New Roman"), local(Arial), local("Droid Sans Fallback");
+ unicode-range: U+25CF;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ src: local(Georgia), local("Times New Roman"), local(Arial), local("Droid Sans Fallback");
+ unicode-range: U+25CF;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ src: local(Georgia), local("Times New Roman"), local(Arial), local("Droid Sans Fallback");
+ unicode-range: U+25CF;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans";
+ src: local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("MS Gothic");
+ unicode-range: U+3002, U+FF0C, U+3001, U+FF1B, U+FF1A, U+FF1F, U+FF01, U+FF0D, U+FF0F, U+FF3C;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("MS Mincho");
+ unicode-range: U+3002, U+FF0C, U+3001, U+FF1B, U+FF1A, U+FF1F, U+FF01, U+FF0D, U+FF0F, U+FF3C;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ src: local("Heiti TC"), local("Lihei Pro"), local("Microsoft Jhenghei"), local(PMingLiU);
+ unicode-range: U+3002, U+FF0C, U+3001;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ src: local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("Heiti TC"), local("Lihei Pro"), local("Microsoft Jhenghei"), local(PMingLiU), local("MS Gothic");
+ unicode-range: U+FF1B, U+FF1A, U+FF1F, U+FF01;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("MS Mincho");
+ unicode-range: U+FF0D, U+FF0F, U+FF3C;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif CNS";
+ src: local(STSongti-TC-Regular), local("Lisong Pro"), local("Heiti TC"), local(PMingLiU);
+ unicode-range: U+3002, U+FF0C, U+3001;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif CNS";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local(PMingLiU), local("MS Mincho");
+ unicode-range: U+FF1B, U+FF1A, U+FF1F, U+FF01, U+FF0D, U+FF0F, U+FF3C;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ src: local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local(SimSun), local("MS Gothic");
+ unicode-range: U+3002, U+FF0C, U+3001, U+FF1B, U+FF1A, U+FF1F, U+FF01, U+FF0D, U+FF0F, U+FF3C;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ src: local("Songti SC"), local(STSongti), local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Hiragino Sans GB"), local("Heiti SC"), local(STHeiti), local(SimSun), local("MS Mincho");
+ unicode-range: U+3002, U+FF0C, U+3001, U+FF1B, U+FF1A, U+FF1F, U+FF01;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local(PMingLiU), local("MS Mincho");
+ unicode-range: U+FF0D, U+FF0F, U+FF3C;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans";
+ src: local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("Yu Gothic"), local(YuGothic), local(SimSun), local(PMingLiU);
+ unicode-range: U+300C-300F, U+300A-300B, U+3008-3009, U+FF08-FF09, U+3014-3015;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Yu Mincho"), local(YuMincho), local(SimSun), local(PMingLiU);
+ unicode-range: U+300C-300F, U+300A-300B, U+3008-3009, U+FF08-FF09, U+3014-3015;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ src: local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("Yu Gothic"), local(YuGothic), local(SimSun), local(PMingLiU);
+ unicode-range: U+300C-300F, U+300A-300B, U+3008-3009, U+FF08-FF09, U+3014-3015;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif CNS";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Yu Mincho"), local(YuMincho), local(SimSun), local(PMingLiU);
+ unicode-range: U+300C-300F, U+300A-300B, U+3008-3009, U+FF08-FF09, U+3014-3015;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ src: local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("Yu Gothic"), local(YuGothic), local(SimSun), local(PMingLiU);
+ unicode-range: U+300C-300F, U+300A-300B, U+3008-3009, U+FF08-FF09, U+3014-3015;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ src: local("Hiragino Mincho ProN"), local("Hiragino Mincho Pro"), local("Yu Mincho"), local(YuMincho), local(SimSun), local(PMingLiU);
+ unicode-range: U+300C-300F, U+300A-300B, U+3008-3009, U+FF08-FF09, U+3014-3015;
+}
+@font-face {
+ font-family: "Biaodian Basic";
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Basic";
+ font-weight: bold;
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Sans";
+ font-weight: bold;
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans";
+ font-weight: bold;
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans";
+ font-weight: bold;
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans CNS";
+ font-weight: bold;
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Sans GB";
+ font-weight: bold;
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif";
+ font-weight: bold;
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif CNS";
+ font-weight: bold;
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Biaodian Pro Serif GB";
+ font-weight: bold;
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+2014, U+2026, U+00B7;
+}
+@font-face {
+ font-family: "Latin Italic Serif";
+ src: local("Georgia Italic"), local("Times New Roman Italic"), local(Georgia-Italic), local(TimesNewRomanPS-ItalicMT), local(Times-Italic);
+}
+@font-face {
+ font-family: "Latin Italic Serif";
+ font-weight: 700;
+ src: local("Georgia Bold Italic"), local("Times New Roman Bold Italic"), local(Georgia-BoldItalic), local(TimesNewRomanPS-BoldItalicMT), local(Times-Italic);
+}
+@font-face {
+ font-family: "Latin Italic Sans";
+ src: local("Helvetica Neue Italic"), local("Helvetica Oblique"), local("Arial Italic"), local(HelveticaNeue-Italic), local(Helvetica-LightOblique), local(Arial-ItalicMT);
+}
+@font-face {
+ font-family: "Latin Italic Sans";
+ font-weight: 700;
+ src: local("Helvetica Neue Bold Italic"), local("Helvetica Bold Oblique"), local("Arial Bold Italic"), local(HelveticaNeue-BoldItalic), local(Helvetica-BoldOblique), local(Arial-BoldItalicMT);
+}
+@font-face {
+ unicode-range: U+0030-0039;
+ font-family: "Numeral TF Sans";
+ src: local(Skia), local("Neutraface 2 Text"), local(Candara), local(Corbel);
+}
+@font-face {
+ unicode-range: U+0030-0039;
+ font-family: "Numeral TF Serif";
+ src: local(Georgia), local("Hoefler Text"), local("Big Caslon");
+}
+@font-face {
+ unicode-range: U+0030-0039;
+ font-family: "Numeral TF Italic Serif";
+ src: local("Georgia Italic"), local("Hoefler Text Italic"), local(Georgia-Italic), local(HoeflerText-Italic);
+}
+@font-face {
+ unicode-range: U+0030-0039;
+ font-family: "Numeral LF Sans";
+ src: local("Helvetica Neue"), local(Helvetica), local(Arial);
+}
+@font-face {
+ unicode-range: U+0030-0039;
+ font-family: "Numeral LF Italic Sans";
+ src: local("Helvetica Neue Italic"), local("Helvetica Oblique"), local("Arial Italic"), local(HelveticaNeue-Italic), local(Helvetica-LightOblique), local(Arial-ItalicMT);
+}
+@font-face {
+ unicode-range: U+0030-0039;
+ font-family: "Numeral LF Italic Sans";
+ font-weight: bold;
+ src: local("Helvetica Neue Bold Italic"), local("Helvetica Bold Oblique"), local("Arial Bold Italic"), local(HelveticaNeue-BoldItalic), local(Helvetica-BoldOblique), local(Arial-BoldItalicMT);
+}
+@font-face {
+ unicode-range: U+0030-0039;
+ font-family: "Numeral LF Serif";
+ src: local(Palatino), local("Palatino Linotype"), local("Times New Roman");
+}
+@font-face {
+ unicode-range: U+0030-0039;
+ font-family: "Numeral LF Italic Serif";
+ src: local("Palatino Italic"), local("Palatino Italic Linotype"), local("Times New Roman Italic"), local(Palatino-Italic), local(Palatino-Italic-Linotype), local(TimesNewRomanPS-ItalicMT);
+}
+@font-face {
+ unicode-range: U+0030-0039;
+ font-family: "Numeral LF Italic Serif";
+ font-weight: bold;
+ src: local("Palatino Bold Italic"), local("Palatino Bold Italic Linotype"), local("Times New Roman Bold Italic"), local(Palatino-BoldItalic), local(Palatino-BoldItalic-Linotype), local(TimesNewRomanPS-BoldItalicMT);
+}
+@font-face {
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+3105-312D, U+31A0-31BA, U+02D9, U+02CA, U+02C5, U+02C7, U+02CB, U+02EA-02EB, U+0307, U+030D, U+0358, U+F31B4-F31B7, U+F0061, U+F0065, U+F0069, U+F006F, U+F0075;
+ font-family: "Zhuyin Kaiti";
+}
+@font-face {
+ unicode-range: U+3105-312D, U+31A0-31BA, U+02D9, U+02CA, U+02C5, U+02C7, U+02CB, U+02EA-02EB, U+0307, U+030D, U+0358, U+F31B4-F31B7, U+F0061, U+F0065, U+F0069, U+F006F, U+F0075;
+ font-family: "Zhuyin Heiti";
+ src: local("Hiragino Sans GB"), local("Heiti TC"), local("Microsoft Jhenghei"), url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+}
+@font-face {
+ font-family: "Zhuyin Heiti";
+ src: local("Heiti TC"), local("Microsoft Jhenghei"), url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ unicode-range: U+3127;
+}
+@font-face {
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ font-family: "Zhuyin Heiti";
+ unicode-range: U+02D9, U+02CA, U+02C5, U+02C7, U+02CB, U+02EA-02EB, U+31B4, U+31B5, U+31B6, U+31B7, U+0307, U+030D, U+0358, U+F31B4-F31B7, U+F0061, U+F0065, U+F0069, U+F006F, U+F0075;
+}
+@font-face {
+ src: url("./font/han.woff2?v3.3.0") format("woff2"), url("./font/han.woff?v3.3.0") format("woff"), url("./font/han.otf?v3.3.0") format("opentype");
+ font-family: "Romanization Sans";
+ unicode-range: U+0307, U+030D, U+0358, U+F31B4-F31B7, U+F0061, U+F0065, U+F0069, U+F006F, U+F0075;
+}
+html:lang(zh-Latn),
+html:lang(ja-Latn),
+html:not(:lang(zh)):not(:lang(ja)),
+html *:lang(zh-Latn),
+html *:lang(ja-Latn),
+html *:not(:lang(zh)):not(:lang(ja)),
+article strong:lang(zh-Latn),
+article strong:lang(ja-Latn),
+article strong:not(:lang(zh)):not(:lang(ja)),
+article strong *:lang(zh-Latn),
+article strong *:lang(ja-Latn),
+article strong *:not(:lang(zh)):not(:lang(ja)) {
+ font-family: "Helvetica Neue", Helvetica, Arial, "Han Heiti", sans-serif;
+}
+html:lang(zh),
+html:lang(zh-Hant),
+[lang^="zh"],
+[lang*="Hant"],
+[lang="zh-TW"],
+[lang="zh-HK"],
+article strong:lang(zh),
+article strong:lang(zh-Hant) {
+ font-family: "Biaodian Pro Sans CNS", "Helvetica Neue", Helvetica, Arial, "Zhuyin Heiti", "Han Heiti", sans-serif;
+}
+html:lang(zh).no-unicoderange,
+html:lang(zh-Hant).no-unicoderange,
+.no-unicoderange [lang^="zh"],
+.no-unicoderange [lang*="Hant"],
+.no-unicoderange [lang="zh-TW"],
+.no-unicoderange [lang="zh-HK"],
+.no-unicoderange article strong:lang(zh),
+.no-unicoderange article strong:lang(zh-Hant) {
+ font-family: "Helvetica Neue", Helvetica, Arial, "Han Heiti", sans-serif;
+}
+html:lang(zh-Hans),
+html:lang(zh-CN),
+[lang*="Hans"],
+[lang="zh-CN"],
+article strong:lang(zh-Hans),
+article strong:lang(zh-CN) {
+ font-family: "Biaodian Pro Sans GB", "Helvetica Neue", Helvetica, Arial, "Han Heiti GB", sans-serif;
+}
+html:lang(zh-Hans).no-unicoderange,
+html:lang(zh-CN).no-unicoderange,
+.no-unicoderange [lang*="Hans"],
+.no-unicoderange [lang="zh-CN"],
+.no-unicoderange article strong:lang(zh-Hans),
+.no-unicoderange article strong:lang(zh-CN) {
+ font-family: "Helvetica Neue", Helvetica, Arial, "Han Heiti GB", sans-serif;
+}
+html:lang(ja),
+[lang^="ja"],
+article strong:lang(ja) {
+ font-family: "Yakumono Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+html:lang(ja).no-unicoderange,
+.no-unicoderange [lang^="ja"],
+.no-unicoderange article strong:lang(ja) {
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+article blockquote i:lang(zh-Latn),
+article blockquote var:lang(zh-Latn),
+article blockquote i:lang(ja-Latn),
+article blockquote var:lang(ja-Latn),
+article blockquote i:not(:lang(zh)):not(:lang(ja)),
+article blockquote var:not(:lang(zh)):not(:lang(ja)),
+article blockquote i *:lang(zh-Latn),
+article blockquote var *:lang(zh-Latn),
+article blockquote i *:lang(ja-Latn),
+article blockquote var *:lang(ja-Latn),
+article blockquote i *:not(:lang(zh)):not(:lang(ja)),
+article blockquote var *:not(:lang(zh)):not(:lang(ja)) {
+ font-family: "Latin Italic Sans", "Helvetica Neue", Helvetica, Arial, "Han Heiti", sans-serif;
+}
+article blockquote i:lang(zh),
+article blockquote var:lang(zh),
+article blockquote i:lang(zh-Hant),
+article blockquote var:lang(zh-Hant) {
+ font-family: "Biaodian Pro Sans CNS", "Latin Italic Sans", "Helvetica Neue", Helvetica, Arial, "Zhuyin Heiti", "Han Heiti", sans-serif;
+}
+.no-unicoderange article blockquote i:lang(zh),
+.no-unicoderange article blockquote var:lang(zh),
+.no-unicoderange article blockquote i:lang(zh-Hant),
+.no-unicoderange article blockquote var:lang(zh-Hant) {
+ font-family: "Latin Italic Sans", "Helvetica Neue", Helvetica, Arial, "Han Heiti", sans-serif;
+}
+.no-unicoderange article blockquote i:lang(zh),
+.no-unicoderange article blockquote var:lang(zh),
+.no-unicoderange article blockquote i:lang(zh-Hant),
+.no-unicoderange article blockquote var:lang(zh-Hant) {
+ font-family: "Latin Italic Sans", "Helvetica Neue", Helvetica, Arial, "Han Heiti", sans-serif;
+}
+article blockquote i:lang(zh-Hans),
+article blockquote var:lang(zh-Hans),
+article blockquote i:lang(zh-CN),
+article blockquote var:lang(zh-CN) {
+ font-family: "Biaodian Pro Sans GB", "Latin Italic Sans", "Helvetica Neue", Helvetica, Arial, "Han Heiti GB", sans-serif;
+}
+.no-unicoderange article blockquote i:lang(zh-Hans),
+.no-unicoderange article blockquote var:lang(zh-Hans),
+.no-unicoderange article blockquote i:lang(zh-CN),
+.no-unicoderange article blockquote var:lang(zh-CN) {
+ font-family: "Latin Italic Sans", "Helvetica Neue", Helvetica, Arial, "Han Heiti GB", sans-serif;
+}
+article blockquote i:lang(ja),
+article blockquote var:lang(ja) {
+ font-family: "Yakumono Sans", "Latin Italic Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+.no-unicoderange article blockquote i:lang(ja),
+.no-unicoderange article blockquote var:lang(ja) {
+ font-family: "Latin Italic Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+article figure blockquote:lang(zh-Latn),
+article figure blockquote:lang(ja-Latn),
+article figure blockquote:not(:lang(zh)):not(:lang(ja)),
+article figure blockquote *:lang(zh-Latn),
+article figure blockquote *:lang(ja-Latn),
+article figure blockquote *:not(:lang(zh)):not(:lang(ja)) {
+ font-family: Georgia, "Times New Roman", "Han Songti", cursive, serif;
+}
+article figure blockquote:lang(zh),
+article figure blockquote:lang(zh-Hant) {
+ font-family: "Biaodian Pro Serif CNS", "Numeral LF Serif", Georgia, "Times New Roman", "Zhuyin Kaiti", "Han Songti", serif;
+}
+.no-unicoderange article figure blockquote:lang(zh),
+.no-unicoderange article figure blockquote:lang(zh-Hant) {
+ font-family: "Numeral LF Serif", Georgia, "Times New Roman", "Han Songti", serif;
+}
+article figure blockquote:lang(zh-Hans),
+article figure blockquote:lang(zh-CN) {
+ font-family: "Biaodian Pro Serif GB", "Numeral LF Serif", Georgia, "Times New Roman", "Han Songti GB", serif;
+}
+.no-unicoderange article figure blockquote:lang(zh-Hans),
+.no-unicoderange article figure blockquote:lang(zh-CN) {
+ font-family: "Numeral LF Serif", Georgia, "Times New Roman", "Han Songti GB", serif;
+}
+article figure blockquote:lang(ja) {
+ font-family: "Yakumono Serif", "Numeral LF Serif", Georgia, "Times New Roman", serif;
+}
+.no-unicoderange article figure blockquote:lang(ja) {
+ font-family: "Numeral LF Serif", Georgia, "Times New Roman", serif;
+}
+article blockquote:lang(zh-Latn),
+article blockquote:lang(ja-Latn),
+article blockquote:not(:lang(zh)):not(:lang(ja)),
+article blockquote *:lang(zh-Latn),
+article blockquote *:lang(ja-Latn),
+article blockquote *:not(:lang(zh)):not(:lang(ja)) {
+ font-family: Georgia, "Times New Roman", "Han Kaiti", cursive, serif;
+}
+article blockquote:lang(zh),
+article blockquote:lang(zh-Hant) {
+ font-family: "Biaodian Pro Serif CNS", "Numeral LF Serif", Georgia, "Times New Roman", "Zhuyin Kaiti", "Han Kaiti", cursive, serif;
+}
+.no-unicoderange article blockquote:lang(zh),
+.no-unicoderange article blockquote:lang(zh-Hant) {
+ font-family: "Numeral LF Serif", Georgia, "Times New Roman", "Han Kaiti", cursive, serif;
+}
+article blockquote:lang(zh-Hans),
+article blockquote:lang(zh-CN) {
+ font-family: "Biaodian Pro Serif GB", "Numeral LF Serif", Georgia, "Times New Roman", "Han Kaiti GB", cursive, serif;
+}
+.no-unicoderange article blockquote:lang(zh-Hans),
+.no-unicoderange article blockquote:lang(zh-CN) {
+ font-family: "Numeral LF Serif", Georgia, "Times New Roman", "Han Kaiti GB", cursive, serif;
+}
+article blockquote:lang(ja) {
+ font-family: "Yakumono Serif", "Numeral LF Serif", Georgia, "Times New Roman", cursive, serif;
+}
+.no-unicoderange article blockquote:lang(ja) {
+ font-family: "Numeral LF Serif", Georgia, "Times New Roman", cursive, serif;
+}
+i:lang(zh-Latn),
+var:lang(zh-Latn),
+i:lang(ja-Latn),
+var:lang(ja-Latn),
+i:not(:lang(zh)):not(:lang(ja)),
+var:not(:lang(zh)):not(:lang(ja)),
+i *:lang(zh-Latn),
+var *:lang(zh-Latn),
+i *:lang(ja-Latn),
+var *:lang(ja-Latn),
+i *:not(:lang(zh)):not(:lang(ja)),
+var *:not(:lang(zh)):not(:lang(ja)) {
+ font-family: "Latin Italic Serif", Georgia, "Times New Roman", "Han Kaiti", cursive, serif;
+}
+i:lang(zh),
+var:lang(zh),
+i:lang(zh-Hant),
+var:lang(zh-Hant) {
+ font-family: "Biaodian Pro Serif CNS", "Numeral LF Italic Serif", "Latin Italic Serif", Georgia, "Times New Roman", "Zhuyin Kaiti", "Han Kaiti", cursive, serif;
+}
+.no-unicoderange i:lang(zh),
+.no-unicoderange var:lang(zh),
+.no-unicoderange i:lang(zh-Hant),
+.no-unicoderange var:lang(zh-Hant) {
+ font-family: "Numeral LF Italic Serif", "Latin Italic Serif", Georgia, "Times New Roman", "Han Kaiti", cursive, serif;
+}
+i:lang(zh-Hans),
+var:lang(zh-Hans),
+i:lang(zh-CN),
+var:lang(zh-CN) {
+ font-family: "Biaodian Pro Serif GB", "Numeral LF Italic Serif", "Latin Italic Serif", Georgia, "Times New Roman", "Han Kaiti GB", cursive, serif;
+}
+.no-unicoderange i:lang(zh-Hans),
+.no-unicoderange var:lang(zh-Hans),
+.no-unicoderange i:lang(zh-CN),
+.no-unicoderange var:lang(zh-CN) {
+ font-family: "Numeral LF Italic Serif", "Latin Italic Serif", Georgia, "Times New Roman", "Han Kaiti GB", cursive, serif;
+}
+i:lang(ja),
+var:lang(ja) {
+ font-family: "Yakumono Serif", "Numeral LF Italic Serif", "Latin Italic Serif", Georgia, "Times New Roman", cursive, serif;
+}
+.no-unicoderange i:lang(ja),
+.no-unicoderange var:lang(ja) {
+ font-family: "Numeral LF Italic Serif", "Latin Italic Serif", Georgia, "Times New Roman", cursive, serif;
+}
+code:lang(zh-Latn),
+kbd:lang(zh-Latn),
+samp:lang(zh-Latn),
+pre:lang(zh-Latn),
+code:lang(ja-Latn),
+kbd:lang(ja-Latn),
+samp:lang(ja-Latn),
+pre:lang(ja-Latn),
+code:not(:lang(zh)):not(:lang(ja)),
+kbd:not(:lang(zh)):not(:lang(ja)),
+samp:not(:lang(zh)):not(:lang(ja)),
+pre:not(:lang(zh)):not(:lang(ja)),
+code *:lang(zh-Latn),
+kbd *:lang(zh-Latn),
+samp *:lang(zh-Latn),
+pre *:lang(zh-Latn),
+code *:lang(ja-Latn),
+kbd *:lang(ja-Latn),
+samp *:lang(ja-Latn),
+pre *:lang(ja-Latn),
+code *:not(:lang(zh)):not(:lang(ja)),
+kbd *:not(:lang(zh)):not(:lang(ja)),
+samp *:not(:lang(zh)):not(:lang(ja)),
+pre *:not(:lang(zh)):not(:lang(ja)) {
+ font-family: Menlo, Consolas, Courier, "Han Heiti", monospace, monospace, sans-serif;
+}
+code:lang(zh),
+kbd:lang(zh),
+samp:lang(zh),
+pre:lang(zh),
+code:lang(zh-Hant),
+kbd:lang(zh-Hant),
+samp:lang(zh-Hant),
+pre:lang(zh-Hant) {
+ font-family: "Biaodian Pro Sans CNS", Menlo, Consolas, Courier, "Zhuyin Heiti", "Han Heiti", monospace, monospace, sans-serif;
+}
+.no-unicoderange code:lang(zh),
+.no-unicoderange kbd:lang(zh),
+.no-unicoderange samp:lang(zh),
+.no-unicoderange pre:lang(zh),
+.no-unicoderange code:lang(zh-Hant),
+.no-unicoderange kbd:lang(zh-Hant),
+.no-unicoderange samp:lang(zh-Hant),
+.no-unicoderange pre:lang(zh-Hant) {
+ font-family: Menlo, Consolas, Courier, "Han Heiti", monospace, monospace, sans-serif;
+}
+code:lang(zh-Hans),
+kbd:lang(zh-Hans),
+samp:lang(zh-Hans),
+pre:lang(zh-Hans),
+code:lang(zh-CN),
+kbd:lang(zh-CN),
+samp:lang(zh-CN),
+pre:lang(zh-CN) {
+ font-family: "Biaodian Pro Sans GB", Menlo, Consolas, Courier, "Han Heiti GB", monospace, monospace, sans-serif;
+}
+.no-unicoderange code:lang(zh-Hans),
+.no-unicoderange kbd:lang(zh-Hans),
+.no-unicoderange samp:lang(zh-Hans),
+.no-unicoderange pre:lang(zh-Hans),
+.no-unicoderange code:lang(zh-CN),
+.no-unicoderange kbd:lang(zh-CN),
+.no-unicoderange samp:lang(zh-CN),
+.no-unicoderange pre:lang(zh-CN) {
+ font-family: Menlo, Consolas, Courier, "Han Heiti GB", monospace, monospace, sans-serif;
+}
+code:lang(ja),
+kbd:lang(ja),
+samp:lang(ja),
+pre:lang(ja) {
+ font-family: "Yakumono Sans", Menlo, Consolas, Courier, monospace, monospace, sans-serif;
+}
+.no-unicoderange code:lang(ja),
+.no-unicoderange kbd:lang(ja),
+.no-unicoderange samp:lang(ja),
+.no-unicoderange pre:lang(ja) {
+ font-family: Menlo, Consolas, Courier, monospace, monospace, sans-serif;
+}
+html,
+.no-unicoderange h-char.bd-liga,
+.no-unicoderange h-char[unicode="b7"],
+ruby h-zhuyin,
+h-ruby h-zhuyin,
+ruby h-zhuyin h-diao,
+h-ruby h-zhuyin h-diao,
+ruby.romanization rt,
+h-ruby.romanization rt,
+ruby [annotation] rt,
+h-ruby [annotation] rt {
+ -moz-font-feature-settings: "liga";
+ -ms-font-feature-settings: "liga";
+ -webkit-font-feature-settings: "liga";
+ font-feature-settings: "liga";
+}
+html,
+[lang^="zh"],
+[lang*="Hant"],
+[lang="zh-TW"],
+[lang="zh-HK"],
+[lang*="Hans"],
+[lang="zh-CN"],
+article strong,
+code,
+kbd,
+samp,
+pre,
+article blockquote i,
+article blockquote var {
+ -moz-font-feature-settings: "liga=1, locl=0";
+ -ms-font-feature-settings: "liga", "locl" 0;
+ -webkit-font-feature-settings: "liga", "locl" 0;
+ font-feature-settings: "liga", "locl" 0;
+}
+.no-unicoderange h-char.bd-cop:lang(zh-Hant),
+.no-unicoderange h-char.bd-cop:lang(zh-TW),
+.no-unicoderange h-char.bd-cop:lang(zh-HK) {
+ font-family: -apple-system, "Han Heiti CNS";
+}
+.no-unicoderange h-char.bd-liga,
+.no-unicoderange h-char[unicode="b7"] {
+ font-family: "Biaodian Basic", "Han Heiti";
+}
+.no-unicoderange h-char[unicode="2018"]:lang(zh-Hans),
+.no-unicoderange h-char[unicode="2019"]:lang(zh-Hans),
+.no-unicoderange h-char[unicode="201c"]:lang(zh-Hans),
+.no-unicoderange h-char[unicode="201d"]:lang(zh-Hans),
+.no-unicoderange h-char[unicode="2018"]:lang(zh-CN),
+.no-unicoderange h-char[unicode="2019"]:lang(zh-CN),
+.no-unicoderange h-char[unicode="201c"]:lang(zh-CN),
+.no-unicoderange h-char[unicode="201d"]:lang(zh-CN) {
+ font-family: "Han Heiti GB";
+}
+i,
+var {
+ font-style: inherit;
+}
+.no-unicoderange ruby h-zhuyin,
+.no-unicoderange h-ruby h-zhuyin,
+.no-unicoderange ruby h-zhuyin h-diao,
+.no-unicoderange h-ruby h-zhuyin h-diao {
+ font-family: "Zhuyin Kaiti", cursive, serif;
+}
+ruby h-diao,
+h-ruby h-diao {
+ font-family: "Zhuyin Kaiti", cursive, serif;
+}
+ruby.romanization rt,
+h-ruby.romanization rt,
+ruby [annotation] rt,
+h-ruby [annotation] rt {
+ font-family: "Romanization Sans", "Helvetica Neue", Helvetica, Arial, "Han Heiti", sans-serif;
+}
diff --git a/lib/Han/dist/han.js b/lib/Han/dist/han.js
new file mode 100644
index 00000000..75976c6d
--- /dev/null
+++ b/lib/Han/dist/han.js
@@ -0,0 +1,3005 @@
+/*!
+ * 漢字標準格式 v3.3.0 | MIT License | css.hanzi.co
+ * Han.css: the CSS typography framework optimised for Hanzi
+ */
+
+void function( global, factory ) {
+
+ // CommonJS
+ if ( typeof module === 'object' && typeof module.exports === 'object' ) {
+ module.exports = factory( global, true )
+ // AMD
+ } else if ( typeof define === 'function' && define.amd ) {
+ define(function() { return factory( global, true ) })
+ // Global namespace
+ } else {
+ factory( global )
+ }
+
+}( typeof window !== 'undefined' ? window : this, function( window, noGlobalNS ) {
+
+'use strict'
+
+var document = window.document
+
+var root = document.documentElement
+
+var body = document.body
+
+var VERSION = '3.3.0'
+
+var ROUTINE = [
+ // Initialise the condition with feature-detecting
+ // classes (Modernizr-alike), binding onto the root
+ // element, possibly ``.
+ 'initCond',
+
+ // Address element normalisation
+ 'renderElem',
+
+ // Handle Biaodian
+ /* 'jinzify', */
+ 'renderJiya',
+ 'renderHanging',
+
+ // Address Biaodian correction
+ 'correctBiaodian',
+
+ // Address Hanzi and Western script mixed spacing
+ 'renderHWS',
+
+ // Address presentational correction to combining ligatures
+ 'substCombLigaWithPUA'
+
+ // Address semantic correction to inaccurate characters
+ // **Note:** inactivated by default
+ /* 'substInaccurateChar', */
+]
+
+// Define Han
+var Han = function( context, condition ) {
+ return new Han.fn.init( context, condition )
+}
+
+var init = function() {
+ if ( arguments[ 0 ] ) {
+ this.context = arguments[ 0 ]
+ }
+ if ( arguments[ 1 ] ) {
+ this.condition = arguments[ 1 ]
+ }
+ return this
+}
+
+Han.version = VERSION
+
+Han.fn = Han.prototype = {
+ version: VERSION,
+
+ constructor: Han,
+
+ // Body as the default target context
+ context: body,
+
+ // Root element as the default condition
+ condition: root,
+
+ // Default rendering routine
+ routine: ROUTINE,
+
+ init: init,
+
+ setRoutine: function( routine ) {
+ if ( Array.isArray( routine )) {
+ this.routine = routine
+ }
+ return this
+ },
+
+ // Note that the routine set up here will execute
+ // only once. The method won't alter the routine in
+ // the instance or in the prototype chain.
+ render: function( routine ) {
+ var it = this
+ var routine = Array.isArray( routine )
+ ? routine
+ : this.routine
+
+ routine
+ .forEach(function( method ) {
+ if (
+ typeof method === 'string' &&
+ typeof it[ method ] === 'function'
+ ) {
+ it[ method ]()
+ } else if (
+ Array.isArray( method ) &&
+ typeof it[ method[0] ] === 'function'
+ ) {
+ it[ method.shift() ].apply( it, method )
+ }
+ })
+ return this
+ }
+}
+
+Han.fn.init.prototype = Han.fn
+
+/**
+ * Shortcut for `render()` under the default
+ * situation.
+ *
+ * Once initialised, replace `Han.init` with the
+ * instance for future usage.
+ */
+Han.init = function() {
+ return Han.init = Han().render()
+}
+
+var UNICODE = {
+ /**
+ * Western punctuation (西文標點符號)
+ */
+ punct: {
+ base: '[\u2026,.;:!?\u203D_]',
+ sing: '[\u2010-\u2014\u2026]',
+ middle: '[\\\/~\\-&\u2010-\u2014_]',
+ open: '[\'"‘“\\(\\[\u00A1\u00BF\u2E18\u00AB\u2039\u201A\u201C\u201E]',
+ close: '[\'"”’\\)\\]\u00BB\u203A\u201B\u201D\u201F]',
+ end: '[\'"”’\\)\\]\u00BB\u203A\u201B\u201D\u201F\u203C\u203D\u2047-\u2049,.;:!?]',
+ },
+
+ /**
+ * CJK biaodian (CJK標點符號)
+ */
+ biaodian: {
+ base: '[︰.、,。:;?!ー]',
+ liga: '[—…⋯]',
+ middle: '[·\/-゠\uFF06\u30FB\uFF3F]',
+ open: '[「『《〈(〔[{【〖]',
+ close: '[」』》〉)〕]}】〗]',
+ end: '[」』》〉)〕]}】〗︰.、,。:;?!ー]'
+ },
+
+ /**
+ * CJK-related blocks (CJK相關字符區段)
+ *
+ * 1. 中日韓統一意音文字:[\u4E00-\u9FFF]
+ Basic CJK unified ideographs
+ * 2. 擴展-A區:[\u3400-\u4DB5]
+ Extended-A
+ * 3. 擴展-B區:[\u20000-\u2A6D6]([\uD840-\uD869][\uDC00-\uDED6])
+ Extended-B
+ * 4. 擴展-C區:[\u2A700-\u2B734](\uD86D[\uDC00-\uDF3F]|[\uD86A-\uD86C][\uDC00-\uDFFF]|\uD869[\uDF00-\uDFFF])
+ Extended-C
+ * 5. 擴展-D區:[\u2B740-\u2B81D](急用漢字,\uD86D[\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1F])
+ Extended-D
+ * 6. 擴展-E區:[\u2B820-\u2F7FF](暫未支援)
+ Extended-E (not supported yet)
+ * 7. 擴展-F區(暫未支援)
+ Extended-F (not supported yet)
+ * 8. 筆畫區:[\u31C0-\u31E3]
+ Strokes
+ * 9. 意音數字「〇」:[\u3007]
+ Ideographic number zero
+ * 10. 相容意音文字及補充:[\uF900-\uFAFF][\u2F800-\u2FA1D](不使用)
+ Compatibility ideograph and supplement (not supported)
+
+ 12 exceptions:
+ [\uFA0E\uFA0F\uFA11\uFA13\uFA14\uFA1F\uFA21\uFA23\uFA24\uFA27-\uFA29]
+
+ https://zh.wikipedia.org/wiki/中日韓統一表意文字#cite_note-1
+
+ * 11. 康熙字典及簡化字部首:[\u2F00-\u2FD5\u2E80-\u2EF3]
+ Kangxi and supplement radicals
+ * 12. 意音文字描述字元:[\u2FF0-\u2FFA]
+ Ideographic description characters
+ */
+ hanzi: {
+ base: '[\u4E00-\u9FFF\u3400-\u4DB5\u31C0-\u31E3\u3007\uFA0E\uFA0F\uFA11\uFA13\uFA14\uFA1F\uFA21\uFA23\uFA24\uFA27-\uFA29]|[\uD800-\uDBFF][\uDC00-\uDFFF]',
+ desc: '[\u2FF0-\u2FFA]',
+ radical: '[\u2F00-\u2FD5\u2E80-\u2EF3]'
+ },
+
+ /**
+ * Latin script blocks (拉丁字母區段)
+ *
+ * 1. 基本拉丁字母:A-Za-z
+ Basic Latin
+ * 2. 阿拉伯數字:0-9
+ Digits
+ * 3. 補充-1:[\u00C0-\u00FF]
+ Latin-1 supplement
+ * 4. 擴展-A區:[\u0100-\u017F]
+ Extended-A
+ * 5. 擴展-B區:[\u0180-\u024F]
+ Extended-B
+ * 5. 擴展-C區:[\u2C60-\u2C7F]
+ Extended-C
+ * 5. 擴展-D區:[\uA720-\uA7FF]
+ Extended-D
+ * 6. 附加區:[\u1E00-\u1EFF]
+ Extended additional
+ * 7. 變音組字符:[\u0300-\u0341\u1DC0-\u1DFF]
+ Combining diacritical marks
+ */
+ latin: {
+ base: '[A-Za-z0-9\u00C0-\u00FF\u0100-\u017F\u0180-\u024F\u2C60-\u2C7F\uA720-\uA7FF\u1E00-\u1EFF]',
+ combine: '[\u0300-\u0341\u1DC0-\u1DFF]'
+ },
+
+ /**
+ * Elli̱niká (Greek) script blocks (希臘字母區段)
+ *
+ * 1. 希臘字母及擴展:[\u0370–\u03FF\u1F00-\u1FFF]
+ Basic Greek & Greek Extended
+ * 2. 阿拉伯數字:0-9
+ Digits
+ * 3. 希臘字母變音組字符:[\u0300-\u0345\u1DC0-\u1DFF]
+ Combining diacritical marks
+ */
+ ellinika: {
+ base: '[0-9\u0370-\u03FF\u1F00-\u1FFF]',
+ combine: '[\u0300-\u0345\u1DC0-\u1DFF]'
+ },
+
+ /**
+ * Kirillica (Cyrillic) script blocks (西里爾字母區段)
+ *
+ * 1. 西里爾字母及補充:[\u0400-\u0482\u048A-\u04FF\u0500-\u052F]
+ Basic Cyrillic and supplement
+ * 2. 擴展B區:[\uA640-\uA66E\uA67E-\uA697]
+ Extended-B
+ * 3. 阿拉伯數字:0-9
+ Digits
+ * 4. 西里爾字母組字符:[\u0483-\u0489\u2DE0-\u2DFF\uA66F-\uA67D\uA69F](位擴展A、B區)
+ Cyrillic combining diacritical marks (in extended-A, B)
+ */
+ kirillica: {
+ base: '[0-9\u0400-\u0482\u048A-\u04FF\u0500-\u052F\uA640-\uA66E\uA67E-\uA697]',
+ combine: '[\u0483-\u0489\u2DE0-\u2DFF\uA66F-\uA67D\uA69F]'
+ },
+
+ /**
+ * Kana (假名)
+ *
+ * 1. 日文假名:[\u30A2\u30A4\u30A6\u30A8\u30AA-\u30FA\u3042\u3044\u3046\u3048\u304A-\u3094\u309F\u30FF]
+ Japanese Kana
+ * 2. 假名補充[\u1B000\u1B001](\uD82C[\uDC00-\uDC01])
+ Kana supplement
+ * 3. 日文假名小寫:[\u3041\u3043\u3045\u3047\u3049\u30A1\u30A3\u30A5\u30A7\u30A9\u3063\u3083\u3085\u3087\u308E\u3095\u3096\u30C3\u30E3\u30E5\u30E7\u30EE\u30F5\u30F6\u31F0-\u31FF]
+ Japanese small Kana
+ * 4. 假名組字符:[\u3099-\u309C]
+ Kana combining characters
+ * 5. 半形假名:[\uFF66-\uFF9F]
+ Halfwidth Kana
+ * 6. 符號:[\u309D\u309E\u30FB-\u30FE]
+ Marks
+ */
+ kana: {
+ base: '[\u30A2\u30A4\u30A6\u30A8\u30AA-\u30FA\u3042\u3044\u3046\u3048\u304A-\u3094\u309F\u30FF]|\uD82C[\uDC00-\uDC01]',
+ small: '[\u3041\u3043\u3045\u3047\u3049\u30A1\u30A3\u30A5\u30A7\u30A9\u3063\u3083\u3085\u3087\u308E\u3095\u3096\u30C3\u30E3\u30E5\u30E7\u30EE\u30F5\u30F6\u31F0-\u31FF]',
+ combine: '[\u3099-\u309C]',
+ half: '[\uFF66-\uFF9F]',
+ mark: '[\u30A0\u309D\u309E\u30FB-\u30FE]'
+ },
+
+ /**
+ * Eonmun (Hangul, 諺文)
+ *
+ * 1. 諺文音節:[\uAC00-\uD7A3]
+ Eonmun (Hangul) syllables
+ * 2. 諺文字母:[\u1100-\u11FF\u314F-\u3163\u3131-\u318E\uA960-\uA97C\uD7B0-\uD7FB]
+ Eonmun (Hangul) letters
+ * 3. 半形諺文字母:[\uFFA1-\uFFDC]
+ Halfwidth Eonmun (Hangul) letters
+ */
+ eonmun: {
+ base: '[\uAC00-\uD7A3]',
+ letter: '[\u1100-\u11FF\u314F-\u3163\u3131-\u318E\uA960-\uA97C\uD7B0-\uD7FB]',
+ half: '[\uFFA1-\uFFDC]'
+ },
+
+ /**
+ * Zhuyin (注音符號, Mandarin & Dialect Phonetic Symbols)
+ *
+ * 1. 國語注音、方言音符號:[\u3105-\u312D][\u31A0-\u31BA]
+ Bopomofo phonetic symbols
+ * 2. 平上去聲調號:[\u02D9\u02CA\u02C5\u02C7\u02EA\u02EB\u02CB] (**註:**國語三聲包含乙個不合規範的符號)
+ Level, rising, departing tones
+ * 3. 入聲調號:[\u31B4-\u31B7][\u0358\u030d]?
+ Checked (entering) tones
+ */
+ zhuyin: {
+ base: '[\u3105-\u312D\u31A0-\u31BA]',
+ initial: '[\u3105-\u3119\u312A-\u312C\u31A0-\u31A3]',
+ medial: '[\u3127-\u3129]',
+ final: '[\u311A-\u3129\u312D\u31A4-\u31B3\u31B8-\u31BA]',
+ tone: '[\u02D9\u02CA\u02C5\u02C7\u02CB\u02EA\u02EB]',
+ checked: '[\u31B4-\u31B7][\u0358\u030d]?'
+ }
+}
+
+var TYPESET = (function() {
+ var rWhite = '[\\x20\\t\\r\\n\\f]'
+ // Whitespace characters
+ // http://www.w3.org/TR/css3-selectors/#whitespace
+
+ var rPtOpen = UNICODE.punct.open
+ var rPtClose = UNICODE.punct.close
+ var rPtEnd = UNICODE.punct.end
+ var rPtMid = UNICODE.punct.middle
+ var rPtSing = UNICODE.punct.sing
+ var rPt = rPtOpen + '|' + rPtEnd + '|' + rPtMid
+
+ var rBDOpen = UNICODE.biaodian.open
+ var rBDClose = UNICODE.biaodian.close
+ var rBDEnd = UNICODE.biaodian.end
+ var rBDMid = UNICODE.biaodian.middle
+ var rBDLiga = UNICODE.biaodian.liga + '{2}'
+ var rBD = rBDOpen + '|' + rBDEnd + '|' + rBDMid
+
+ var rKana = UNICODE.kana.base + UNICODE.kana.combine + '?'
+ var rKanaS = UNICODE.kana.small + UNICODE.kana.combine + '?'
+ var rKanaH = UNICODE.kana.half
+ var rEon = UNICODE.eonmun.base + '|' + UNICODE.eonmun.letter
+ var rEonH = UNICODE.eonmun.half
+
+ var rHan = UNICODE.hanzi.base + '|' + UNICODE.hanzi.desc + '|' + UNICODE.hanzi.radical + '|' + rKana
+
+ var rCbn = UNICODE.ellinika.combine
+ var rLatn = UNICODE.latin.base + rCbn + '*'
+ var rGk = UNICODE.ellinika.base + rCbn + '*'
+
+ var rCyCbn = UNICODE.kirillica.combine
+ var rCy = UNICODE.kirillica.base + rCyCbn + '*'
+
+ var rAlph = rLatn + '|' + rGk + '|' + rCy
+
+ // For words like `it's`, `Jones’s` or `'99`
+ var rApo = '[\u0027\u2019]'
+ var rChar = rHan + '|(?:' + rAlph + '|' + rApo + ')+'
+
+ var rZyS = UNICODE.zhuyin.initial
+ var rZyJ = UNICODE.zhuyin.medial
+ var rZyY = UNICODE.zhuyin.final
+ var rZyD = UNICODE.zhuyin.tone + '|' + UNICODE.zhuyin.checked
+
+ return {
+ /* Character-level selector (字級選擇器)
+ */
+ char: {
+ punct: {
+ all: new RegExp( '(' + rPt + ')', 'g' ),
+ open: new RegExp( '(' + rPtOpen + ')', 'g' ),
+ end: new RegExp( '(' + rPtEnd + ')', 'g' ),
+ sing: new RegExp( '(' + rPtSing + ')', 'g' )
+ },
+
+ biaodian: {
+ all: new RegExp( '(' + rBD + ')', 'g' ),
+ open: new RegExp( '(' + rBDOpen + ')', 'g' ),
+ close: new RegExp( '(' + rBDClose + ')', 'g' ),
+ end: new RegExp( '(' + rBDEnd + ')', 'g' ),
+ liga: new RegExp( '(' + rBDLiga + ')', 'g' )
+ },
+
+ hanzi: new RegExp( '(' + rHan + ')', 'g' ),
+
+ latin: new RegExp( '(' + rLatn + ')', 'ig' ),
+ ellinika: new RegExp( '(' + rGk + ')', 'ig' ),
+ kirillica: new RegExp( '(' + rCy + ')', 'ig' ),
+
+ kana: new RegExp( '(' + rKana + '|' + rKanaS + '|' + rKanaH + ')', 'g' ),
+ eonmun: new RegExp( '(' + rEon + '|' + rEonH + ')', 'g' )
+ },
+
+ /* Word-level selectors (詞級選擇器)
+ */
+ group: {
+ biaodian: [
+ new RegExp( '((' + rBD + '){2,})', 'g' ),
+ new RegExp( '(' + rBDLiga + rBDOpen + ')', 'g' )
+ ],
+ punct: null,
+ hanzi: new RegExp( '(' + rHan + ')+', 'g' ),
+ western: new RegExp( '(' + rLatn + '|' + rGk + '|' + rCy + '|' + rPt + ')+', 'ig' ),
+ kana: new RegExp( '(' + rKana + '|' + rKanaS + '|' + rKanaH + ')+', 'g' ),
+ eonmun: new RegExp( '(' + rEon + '|' + rEonH + '|' + rPt + ')+', 'g' )
+ },
+
+ /* Punctuation Rules (禁則)
+ */
+ jinze: {
+ hanging: new RegExp( rWhite + '*([、,。.])(?!' + rBDEnd + ')', 'ig' ),
+ touwei: new RegExp( '(' + rBDOpen + '+)(' + rChar + ')(' + rBDEnd + '+)', 'ig' ),
+ tou: new RegExp( '(' + rBDOpen + '+)(' + rChar + ')', 'ig' ),
+ wei: new RegExp( '(' + rChar + ')(' + rBDEnd + '+)', 'ig' ),
+ middle: new RegExp( '(' + rChar + ')(' + rBDMid + ')(' + rChar + ')', 'ig' )
+ },
+
+ zhuyin: {
+ form: new RegExp( '^\u02D9?(' + rZyS + ')?(' + rZyJ + ')?(' + rZyY + ')?(' + rZyD + ')?$' ),
+ diao: new RegExp( '(' + rZyD + ')', 'g' )
+ },
+
+ /* Hanzi and Western mixed spacing (漢字西文混排間隙)
+ * - Basic mode
+ * - Strict mode
+ */
+ hws: {
+ base: [
+ new RegExp( '('+ rHan + ')(' + rAlph + '|' + rPtOpen + ')', 'ig' ),
+ new RegExp( '('+ rAlph + '|' + rPtEnd + ')(' + rHan + ')', 'ig' )
+ ],
+
+ strict: [
+ new RegExp( '('+ rHan + ')' + rWhite + '?(' + rAlph + '|' + rPtOpen + ')', 'ig' ),
+ new RegExp( '('+ rAlph + '|' + rPtEnd + ')' + rWhite + '?(' + rHan + ')', 'ig' )
+ ]
+ },
+
+ // The feature displays the following characters
+ // in its variant form for font consistency and
+ // presentational reason. Meanwhile, this won't
+ // alter the original character in the DOM.
+ 'display-as': {
+ 'ja-font-for-hant': [
+ // '夠 够',
+ '查 査',
+ '啟 啓',
+ '鄉 鄕',
+ '值 値',
+ '污 汚'
+ ],
+
+ 'comb-liga-pua': [
+ [ '\u0061[\u030d\u0358]', '\uDB80\uDC61' ],
+ [ '\u0065[\u030d\u0358]', '\uDB80\uDC65' ],
+ [ '\u0069[\u030d\u0358]', '\uDB80\uDC69' ],
+ [ '\u006F[\u030d\u0358]', '\uDB80\uDC6F' ],
+ [ '\u0075[\u030d\u0358]', '\uDB80\uDC75' ],
+
+ [ '\u31B4[\u030d\u0358]', '\uDB8C\uDDB4' ],
+ [ '\u31B5[\u030d\u0358]', '\uDB8C\uDDB5' ],
+ [ '\u31B6[\u030d\u0358]', '\uDB8C\uDDB6' ],
+ [ '\u31B7[\u030d\u0358]', '\uDB8C\uDDB7' ]
+ ],
+
+ 'comb-liga-vowel': [
+ [ '\u0061[\u030d\u0358]', '\uDB80\uDC61' ],
+ [ '\u0065[\u030d\u0358]', '\uDB80\uDC65' ],
+ [ '\u0069[\u030d\u0358]', '\uDB80\uDC69' ],
+ [ '\u006F[\u030d\u0358]', '\uDB80\uDC6F' ],
+ [ '\u0075[\u030d\u0358]', '\uDB80\uDC75' ]
+ ],
+
+ 'comb-liga-zhuyin': [
+ [ '\u31B4[\u030d\u0358]', '\uDB8C\uDDB4' ],
+ [ '\u31B5[\u030d\u0358]', '\uDB8C\uDDB5' ],
+ [ '\u31B6[\u030d\u0358]', '\uDB8C\uDDB6' ],
+ [ '\u31B7[\u030d\u0358]', '\uDB8C\uDDB7' ]
+ ]
+ },
+
+ // The feature actually *converts* the character
+ // in the DOM for semantic reason.
+ //
+ // Note that this could be aggressive.
+ 'inaccurate-char': [
+ [ '[\u2022\u2027]', '\u00B7' ],
+ [ '\u22EF\u22EF', '\u2026\u2026' ],
+ [ '\u2500\u2500', '\u2014\u2014' ],
+ [ '\u2035', '\u2018' ],
+ [ '\u2032', '\u2019' ],
+ [ '\u2036', '\u201C' ],
+ [ '\u2033', '\u201D' ]
+ ]
+ }
+})()
+
+Han.UNICODE = UNICODE
+Han.TYPESET = TYPESET
+
+// Aliases
+Han.UNICODE.cjk = Han.UNICODE.hanzi
+Han.UNICODE.greek = Han.UNICODE.ellinika
+Han.UNICODE.cyrillic = Han.UNICODE.kirillica
+Han.UNICODE.hangul = Han.UNICODE.eonmun
+Han.UNICODE.zhuyin.ruyun = Han.UNICODE.zhuyin.checked
+
+Han.TYPESET.char.cjk = Han.TYPESET.char.hanzi
+Han.TYPESET.char.greek = Han.TYPESET.char.ellinika
+Han.TYPESET.char.cyrillic = Han.TYPESET.char.kirillica
+Han.TYPESET.char.hangul = Han.TYPESET.char.eonmun
+
+Han.TYPESET.group.hangul = Han.TYPESET.group.eonmun
+Han.TYPESET.group.cjk = Han.TYPESET.group.hanzi
+
+var $ = {
+ /**
+ * Query selectors which return arrays of the resulted
+ * node lists.
+ */
+ id: function( selector, $context ) {
+ return ( $context || document ).getElementById( selector )
+ },
+
+ tag: function( selector, $context ) {
+ return this.makeArray(
+ ( $context || document ).getElementsByTagName( selector )
+ )
+ },
+
+ qs: function( selector, $context ) {
+ return ( $context || document ).querySelector( selector )
+ },
+
+ qsa: function( selector, $context ) {
+ return this.makeArray(
+ ( $context || document ).querySelectorAll( selector )
+ )
+ },
+
+ parent: function( $node, selector ) {
+ return selector
+ ? (function() {
+ if ( typeof $.matches !== 'function' ) return
+
+ while (!$.matches( $node, selector )) {
+ if (
+ !$node ||
+ $node === document.documentElement
+ ) {
+ $node = undefined
+ break
+ }
+ $node = $node.parentNode
+ }
+ return $node
+ })()
+ : $node
+ ? $node.parentNode : undefined
+ },
+
+ /**
+ * Create a document fragment, a text node with text
+ * or an element with/without classes.
+ */
+ create: function( name, clazz ) {
+ var $elmt = '!' === name
+ ? document.createDocumentFragment()
+ : '' === name
+ ? document.createTextNode( clazz || '' )
+ : document.createElement( name )
+
+ try {
+ if ( clazz ) {
+ $elmt.className = clazz
+ }
+ } catch (e) {}
+
+ return $elmt
+ },
+
+ /**
+ * Clone a DOM node (text, element or fragment) deeply
+ * or childlessly.
+ */
+ clone: function( $node, deep ) {
+ return $node.cloneNode(
+ typeof deep === 'boolean'
+ ? deep
+ : true
+ )
+ },
+
+ /**
+ * Remove a node (text, element or fragment).
+ */
+ remove: function( $node ) {
+ return $node.parentNode.removeChild( $node )
+ },
+
+ /**
+ * Set attributes all in once with an object.
+ */
+ setAttr: function( target, attr ) {
+ if ( typeof attr !== 'object' ) return
+ var len = attr.length
+
+ // Native `NamedNodeMap``:
+ if (
+ typeof attr[0] === 'object' &&
+ 'name' in attr[0]
+ ) {
+ for ( var i = 0; i < len; i++ ) {
+ if ( attr[ i ].value !== undefined ) {
+ target.setAttribute( attr[ i ].name, attr[ i ].value )
+ }
+ }
+
+ // Plain object:
+ } else {
+ for ( var name in attr ) {
+ if (
+ attr.hasOwnProperty( name ) &&
+ attr[ name ] !== undefined
+ ) {
+ target.setAttribute( name, attr[ name ] )
+ }
+ }
+ }
+ return target
+ },
+
+ /**
+ * Indicate whether or not the given node is an
+ * element.
+ */
+ isElmt: function( $node ) {
+ return $node && $node.nodeType === Node.ELEMENT_NODE
+ },
+
+ /**
+ * Indicate whether or not the given node should
+ * be ignored (`
` or comments).
+ */
+ isIgnorable: function( $node ) {
+ if ( !$node ) return false
+
+ return (
+ $node.nodeName === 'WBR' ||
+ $node.nodeType === Node.COMMENT_NODE
+ )
+ },
+
+ /**
+ * Convert array-like objects into real arrays.
+ */
+ makeArray: function( object ) {
+ return Array.prototype.slice.call( object )
+ },
+
+ /**
+ * Extend target with an object.
+ */
+ extend: function( target, object ) {
+ if ((
+ typeof target === 'object' ||
+ typeof target === 'function' ) &&
+ typeof object === 'object'
+ ) {
+ for ( var name in object ) {
+ if (object.hasOwnProperty( name )) {
+ target[ name ] = object[ name ]
+ }
+ }
+ }
+ return target
+ }
+}
+
+var Fibre =
+/*!
+ * Fibre.js v0.2.1 | MIT License | github.com/ethantw/fibre.js
+ * Based on findAndReplaceDOMText
+ */
+
+function( Finder ) {
+
+'use strict'
+
+var VERSION = '0.2.1'
+var NON_INLINE_PROSE = Finder.NON_INLINE_PROSE
+var AVOID_NON_PROSE = Finder.PRESETS.prose.filterElements
+
+var global = window || {}
+var document = global.document || undefined
+
+function matches( node, selector, bypassNodeType39 ) {
+ var Efn = Element.prototype
+ var matches = Efn.matches || Efn.mozMatchesSelector || Efn.msMatchesSelector || Efn.webkitMatchesSelector
+
+ if ( node instanceof Element ) {
+ return matches.call( node, selector )
+ } else if ( bypassNodeType39 ) {
+ if ( /^[39]$/.test( node.nodeType )) return true
+ }
+ return false
+}
+
+if ( typeof document === 'undefined' ) throw new Error( 'Fibre requires a DOM-supported environment.' )
+
+var Fibre = function( context, preset ) {
+ return new Fibre.fn.init( context, preset )
+}
+
+Fibre.version = VERSION
+Fibre.matches = matches
+
+Fibre.fn = Fibre.prototype = {
+ constructor: Fibre,
+
+ version: VERSION,
+
+ finder: [],
+
+ context: undefined,
+
+ portionMode: 'retain',
+
+ selector: {},
+
+ preset: 'prose',
+
+ init: function( context, noPreset ) {
+ if ( !!noPreset ) this.preset = null
+
+ this.selector = {
+ context: null,
+ filter: [],
+ avoid: [],
+ boundary: []
+ }
+
+ if ( !context ) {
+ throw new Error( 'A context is required for Fibre to initialise.' )
+ } else if ( context instanceof Node ) {
+ if ( context instanceof Document ) this.context = context.body || context
+ else this.context = context
+ } else if ( typeof context === 'string' ) {
+ this.context = document.querySelector( context )
+ this.selector.context = context
+ }
+ return this
+ },
+
+ filterFn: function( node ) {
+ var filter = this.selector.filter.join( ', ' ) || '*'
+ var avoid = this.selector.avoid.join( ', ' ) || null
+ var result = matches( node, filter, true ) && !matches( node, avoid )
+ return ( this.preset === 'prose' ) ? AVOID_NON_PROSE( node ) && result : result
+ },
+
+ boundaryFn: function( node ) {
+ var boundary = this.selector.boundary.join( ', ' ) || null
+ var result = matches( node, boundary )
+ return ( this.preset === 'prose' ) ? NON_INLINE_PROSE( node ) || result : result
+ },
+
+ filter: function( selector ) {
+ if ( typeof selector === 'string' ) {
+ this.selector.filter.push( selector )
+ }
+ return this
+ },
+
+ endFilter: function( all ) {
+ if ( all ) {
+ this.selector.filter = []
+ } else {
+ this.selector.filter.pop()
+ }
+ return this
+ },
+
+ avoid: function( selector ) {
+ if ( typeof selector === 'string' ) {
+ this.selector.avoid.push( selector )
+ }
+ return this
+ },
+
+ endAvoid: function( all ) {
+ if ( all ) {
+ this.selector.avoid = []
+ } else {
+ this.selector.avoid.pop()
+ }
+ return this
+ },
+
+ addBoundary: function( selector ) {
+ if ( typeof selector === 'string' ) {
+ this.selector.boundary.push( selector )
+ }
+ return this
+ },
+
+ removeBoundary: function() {
+ this.selector.boundary = []
+ return this
+ },
+
+ setMode: function( portionMode ) {
+ this.portionMode = portionMode === 'first' ? 'first' : 'retain'
+ return this
+ },
+
+ replace: function( regexp, newSubStr ) {
+ var it = this
+ it.finder.push(Finder( it.context, {
+ find: regexp,
+ replace: newSubStr,
+ filterElements: function( currentNode ) {
+ return it.filterFn( currentNode )
+ },
+ forceContext: function( currentNode ) {
+ return it.boundaryFn( currentNode )
+ },
+ portionMode: it.portionMode
+ }))
+ return it
+ },
+
+ wrap: function( regexp, strElemName ) {
+ var it = this
+ it.finder.push(Finder( it.context, {
+ find: regexp,
+ wrap: strElemName,
+ filterElements: function( currentNode ) {
+ return it.filterFn( currentNode )
+ },
+ forceContext: function( currentNode ) {
+ return it.boundaryFn( currentNode )
+ },
+ portionMode: it.portionMode
+ }))
+ return it
+ },
+
+ revert: function( level ) {
+ var max = this.finder.length
+ var level = Number( level ) || ( level === 0 ? Number(0) :
+ ( level === 'all' ? max : 1 ))
+
+ if ( typeof max === 'undefined' || max === 0 ) return this
+ else if ( level > max ) level = max
+
+ for ( var i = level; i > 0; i-- ) {
+ this.finder.pop().revert()
+ }
+ return this
+ }
+}
+
+// Deprecated API(s)
+Fibre.fn.filterOut = Fibre.fn.avoid
+
+// Make sure init() inherit from Fibre()
+Fibre.fn.init.prototype = Fibre.fn
+
+return Fibre
+
+}(
+
+/**
+ * findAndReplaceDOMText v 0.4.3
+ * @author James Padolsey http://james.padolsey.com
+ * @license http://unlicense.org/UNLICENSE
+ *
+ * Matches the text of a DOM node against a regular expression
+ * and replaces each match (or node-separated portions of the match)
+ * in the specified element.
+ */
+ (function() {
+
+ var PORTION_MODE_RETAIN = 'retain'
+ var PORTION_MODE_FIRST = 'first'
+ var doc = document
+ var toString = {}.toString
+ var hasOwn = {}.hasOwnProperty
+ function isArray(a) {
+ return toString.call(a) == '[object Array]'
+ }
+
+ function escapeRegExp(s) {
+ return String(s).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1')
+ }
+
+ function exposed() {
+ // Try deprecated arg signature first:
+ return deprecated.apply(null, arguments) || findAndReplaceDOMText.apply(null, arguments)
+ }
+
+ function deprecated(regex, node, replacement, captureGroup, elFilter) {
+ if ((node && !node.nodeType) && arguments.length <= 2) {
+ return false
+ }
+ var isReplacementFunction = typeof replacement == 'function'
+ if (isReplacementFunction) {
+ replacement = (function(original) {
+ return function(portion, match) {
+ return original(portion.text, match.startIndex)
+ }
+ }(replacement))
+ }
+
+ // Awkward support for deprecated argument signature (<0.4.0)
+ var instance = findAndReplaceDOMText(node, {
+
+ find: regex,
+
+ wrap: isReplacementFunction ? null : replacement,
+ replace: isReplacementFunction ? replacement : '$' + (captureGroup || '&'),
+
+ prepMatch: function(m, mi) {
+
+ // Support captureGroup (a deprecated feature)
+
+ if (!m[0]) throw 'findAndReplaceDOMText cannot handle zero-length matches'
+ if (captureGroup > 0) {
+ var cg = m[captureGroup]
+ m.index += m[0].indexOf(cg)
+ m[0] = cg
+ }
+
+ m.endIndex = m.index + m[0].length
+ m.startIndex = m.index
+ m.index = mi
+ return m
+ },
+ filterElements: elFilter
+ })
+ exposed.revert = function() {
+ return instance.revert()
+ }
+ return true
+ }
+
+ /**
+ * findAndReplaceDOMText
+ *
+ * Locates matches and replaces with replacementNode
+ *
+ * @param {Node} node Element or Text node to search within
+ * @param {RegExp} options.find The regular expression to match
+ * @param {String|Element} [options.wrap] A NodeName, or a Node to clone
+ * @param {String|Function} [options.replace='$&'] What to replace each match with
+ * @param {Function} [options.filterElements] A Function to be called to check whether to
+ * process an element. (returning true = process element,
+ * returning false = avoid element)
+ */
+ function findAndReplaceDOMText(node, options) {
+ return new Finder(node, options)
+ }
+
+ exposed.NON_PROSE_ELEMENTS = {
+ br:1, hr:1,
+ // Media / Source elements:
+ script:1, style:1, img:1, video:1, audio:1, canvas:1, svg:1, map:1, object:1,
+ // Input elements
+ input:1, textarea:1, select:1, option:1, optgroup: 1, button:1
+ }
+ exposed.NON_CONTIGUOUS_PROSE_ELEMENTS = {
+
+ // Elements that will not contain prose or block elements where we don't
+ // want prose to be matches across element borders:
+
+ // Block Elements
+ address:1, article:1, aside:1, blockquote:1, dd:1, div:1,
+ dl:1, fieldset:1, figcaption:1, figure:1, footer:1, form:1, h1:1, h2:1, h3:1,
+ h4:1, h5:1, h6:1, header:1, hgroup:1, hr:1, main:1, nav:1, noscript:1, ol:1,
+ output:1, p:1, pre:1, section:1, ul:1,
+ // Other misc. elements that are not part of continuous inline prose:
+ br:1, li: 1, summary: 1, dt:1, details:1, rp:1, rt:1, rtc:1,
+ // Media / Source elements:
+ script:1, style:1, img:1, video:1, audio:1, canvas:1, svg:1, map:1, object:1,
+ // Input elements
+ input:1, textarea:1, select:1, option:1, optgroup: 1, button:1,
+ // Table related elements:
+ table:1, tbody:1, thead:1, th:1, tr:1, td:1, caption:1, col:1, tfoot:1, colgroup:1
+
+ }
+ exposed.NON_INLINE_PROSE = function(el) {
+ return hasOwn.call(exposed.NON_CONTIGUOUS_PROSE_ELEMENTS, el.nodeName.toLowerCase())
+ }
+ // Presets accessed via `options.preset` when calling findAndReplaceDOMText():
+ exposed.PRESETS = {
+ prose: {
+ forceContext: exposed.NON_INLINE_PROSE,
+ filterElements: function(el) {
+ return !hasOwn.call(exposed.NON_PROSE_ELEMENTS, el.nodeName.toLowerCase())
+ }
+ }
+ }
+ exposed.Finder = Finder
+ /**
+ * Finder -- encapsulates logic to find and replace.
+ */
+ function Finder(node, options) {
+
+ var preset = options.preset && exposed.PRESETS[options.preset]
+ options.portionMode = options.portionMode || PORTION_MODE_RETAIN
+ if (preset) {
+ for (var i in preset) {
+ if (hasOwn.call(preset, i) && !hasOwn.call(options, i)) {
+ options[i] = preset[i]
+ }
+ }
+ }
+
+ this.node = node
+ this.options = options
+ // ENable match-preparation method to be passed as option:
+ this.prepMatch = options.prepMatch || this.prepMatch
+ this.reverts = []
+ this.matches = this.search()
+ if (this.matches.length) {
+ this.processMatches()
+ }
+
+ }
+
+ Finder.prototype = {
+
+ /**
+ * Searches for all matches that comply with the instance's 'match' option
+ */
+ search: function() {
+
+ var match
+ var matchIndex = 0
+ var offset = 0
+ var regex = this.options.find
+ var textAggregation = this.getAggregateText()
+ var matches = []
+ var self = this
+ regex = typeof regex === 'string' ? RegExp(escapeRegExp(regex), 'g') : regex
+ matchAggregation(textAggregation)
+ function matchAggregation(textAggregation) {
+ for (var i = 0, l = textAggregation.length; i < l; ++i) {
+
+ var text = textAggregation[i]
+ if (typeof text !== 'string') {
+ // Deal with nested contexts: (recursive)
+ matchAggregation(text)
+ continue
+ }
+
+ if (regex.global) {
+ while (match = regex.exec(text)) {
+ matches.push(self.prepMatch(match, matchIndex++, offset))
+ }
+ } else {
+ if (match = text.match(regex)) {
+ matches.push(self.prepMatch(match, 0, offset))
+ }
+ }
+
+ offset += text.length
+ }
+ }
+
+ return matches
+ },
+
+ /**
+ * Prepares a single match with useful meta info:
+ */
+ prepMatch: function(match, matchIndex, characterOffset) {
+
+ if (!match[0]) {
+ throw new Error('findAndReplaceDOMText cannot handle zero-length matches')
+ }
+
+ match.endIndex = characterOffset + match.index + match[0].length
+ match.startIndex = characterOffset + match.index
+ match.index = matchIndex
+ return match
+ },
+
+ /**
+ * Gets aggregate text within subject node
+ */
+ getAggregateText: function() {
+
+ var elementFilter = this.options.filterElements
+ var forceContext = this.options.forceContext
+ return getText(this.node)
+ /**
+ * Gets aggregate text of a node without resorting
+ * to broken innerText/textContent
+ */
+ function getText(node, txt) {
+
+ if (node.nodeType === 3) {
+ return [node.data]
+ }
+
+ if (elementFilter && !elementFilter(node)) {
+ return []
+ }
+
+ var txt = ['']
+ var i = 0
+ if (node = node.firstChild) do {
+
+ if (node.nodeType === 3) {
+ txt[i] += node.data
+ continue
+ }
+
+ var innerText = getText(node)
+ if (
+ forceContext &&
+ node.nodeType === 1 &&
+ (forceContext === true || forceContext(node))
+ ) {
+ txt[++i] = innerText
+ txt[++i] = ''
+ } else {
+ if (typeof innerText[0] === 'string') {
+ // Bridge nested text-node data so that they're
+ // not considered their own contexts:
+ // I.e. ['some', ['thing']] -> ['something']
+ txt[i] += innerText.shift()
+ }
+ if (innerText.length) {
+ txt[++i] = innerText
+ txt[++i] = ''
+ }
+ }
+ } while (node = node.nextSibling)
+ return txt
+ }
+
+ },
+
+ /**
+ * Steps through the target node, looking for matches, and
+ * calling replaceFn when a match is found.
+ */
+ processMatches: function() {
+
+ var matches = this.matches
+ var node = this.node
+ var elementFilter = this.options.filterElements
+ var startPortion,
+ endPortion,
+ innerPortions = [],
+ curNode = node,
+ match = matches.shift(),
+ atIndex = 0, // i.e. nodeAtIndex
+ matchIndex = 0,
+ portionIndex = 0,
+ doAvoidNode,
+ nodeStack = [node]
+ out: while (true) {
+
+ if (curNode.nodeType === 3) {
+
+ if (!endPortion && curNode.length + atIndex >= match.endIndex) {
+
+ // We've found the ending
+ endPortion = {
+ node: curNode,
+ index: portionIndex++,
+ text: curNode.data.substring(match.startIndex - atIndex, match.endIndex - atIndex),
+ indexInMatch: atIndex - match.startIndex,
+ indexInNode: match.startIndex - atIndex, // always zero for end-portions
+ endIndexInNode: match.endIndex - atIndex,
+ isEnd: true
+ }
+ } else if (startPortion) {
+ // Intersecting node
+ innerPortions.push({
+ node: curNode,
+ index: portionIndex++,
+ text: curNode.data,
+ indexInMatch: atIndex - match.startIndex,
+ indexInNode: 0 // always zero for inner-portions
+ })
+ }
+
+ if (!startPortion && curNode.length + atIndex > match.startIndex) {
+ // We've found the match start
+ startPortion = {
+ node: curNode,
+ index: portionIndex++,
+ indexInMatch: 0,
+ indexInNode: match.startIndex - atIndex,
+ endIndexInNode: match.endIndex - atIndex,
+ text: curNode.data.substring(match.startIndex - atIndex, match.endIndex - atIndex)
+ }
+ }
+
+ atIndex += curNode.data.length
+ }
+
+ doAvoidNode = curNode.nodeType === 1 && elementFilter && !elementFilter(curNode)
+ if (startPortion && endPortion) {
+
+ curNode = this.replaceMatch(match, startPortion, innerPortions, endPortion)
+ // processMatches has to return the node that replaced the endNode
+ // and then we step back so we can continue from the end of the
+ // match:
+
+ atIndex -= (endPortion.node.data.length - endPortion.endIndexInNode)
+ startPortion = null
+ endPortion = null
+ innerPortions = []
+ match = matches.shift()
+ portionIndex = 0
+ matchIndex++
+ if (!match) {
+ break; // no more matches
+ }
+
+ } else if (
+ !doAvoidNode &&
+ (curNode.firstChild || curNode.nextSibling)
+ ) {
+ // Move down or forward:
+ if (curNode.firstChild) {
+ nodeStack.push(curNode)
+ curNode = curNode.firstChild
+ } else {
+ curNode = curNode.nextSibling
+ }
+ continue
+ }
+
+ // Move forward or up:
+ while (true) {
+ if (curNode.nextSibling) {
+ curNode = curNode.nextSibling
+ break
+ }
+ curNode = nodeStack.pop()
+ if (curNode === node) {
+ break out
+ }
+ }
+
+ }
+
+ },
+
+ /**
+ * Reverts ... TODO
+ */
+ revert: function() {
+ // Reversion occurs backwards so as to avoid nodes subsequently
+ // replaced during the matching phase (a forward process):
+ for (var l = this.reverts.length; l--;) {
+ this.reverts[l]()
+ }
+ this.reverts = []
+ },
+
+ prepareReplacementString: function(string, portion, match, matchIndex) {
+ var portionMode = this.options.portionMode
+ if (
+ portionMode === PORTION_MODE_FIRST &&
+ portion.indexInMatch > 0
+ ) {
+ return ''
+ }
+ string = string.replace(/\$(\d+|&|`|')/g, function($0, t) {
+ var replacement
+ switch(t) {
+ case '&':
+ replacement = match[0]
+ break
+ case '`':
+ replacement = match.input.substring(0, match.startIndex)
+ break
+ case '\'':
+ replacement = match.input.substring(match.endIndex)
+ break
+ default:
+ replacement = match[+t]
+ }
+ return replacement
+ })
+ if (portionMode === PORTION_MODE_FIRST) {
+ return string
+ }
+
+ if (portion.isEnd) {
+ return string.substring(portion.indexInMatch)
+ }
+
+ return string.substring(portion.indexInMatch, portion.indexInMatch + portion.text.length)
+ },
+
+ getPortionReplacementNode: function(portion, match, matchIndex) {
+
+ var replacement = this.options.replace || '$&'
+ var wrapper = this.options.wrap
+ if (wrapper && wrapper.nodeType) {
+ // Wrapper has been provided as a stencil-node for us to clone:
+ var clone = doc.createElement('div')
+ clone.innerHTML = wrapper.outerHTML || new XMLSerializer().serializeToString(wrapper)
+ wrapper = clone.firstChild
+ }
+
+ if (typeof replacement == 'function') {
+ replacement = replacement(portion, match, matchIndex)
+ if (replacement && replacement.nodeType) {
+ return replacement
+ }
+ return doc.createTextNode(String(replacement))
+ }
+
+ var el = typeof wrapper == 'string' ? doc.createElement(wrapper) : wrapper
+ replacement = doc.createTextNode(
+ this.prepareReplacementString(
+ replacement, portion, match, matchIndex
+ )
+ )
+ if (!replacement.data) {
+ return replacement
+ }
+
+ if (!el) {
+ return replacement
+ }
+
+ el.appendChild(replacement)
+ return el
+ },
+
+ replaceMatch: function(match, startPortion, innerPortions, endPortion) {
+
+ var matchStartNode = startPortion.node
+ var matchEndNode = endPortion.node
+ var preceedingTextNode
+ var followingTextNode
+ if (matchStartNode === matchEndNode) {
+
+ var node = matchStartNode
+ if (startPortion.indexInNode > 0) {
+ // Add `before` text node (before the match)
+ preceedingTextNode = doc.createTextNode(node.data.substring(0, startPortion.indexInNode))
+ node.parentNode.insertBefore(preceedingTextNode, node)
+ }
+
+ // Create the replacement node:
+ var newNode = this.getPortionReplacementNode(
+ endPortion,
+ match
+ )
+ node.parentNode.insertBefore(newNode, node)
+ if (endPortion.endIndexInNode < node.length) { // ?????
+ // Add `after` text node (after the match)
+ followingTextNode = doc.createTextNode(node.data.substring(endPortion.endIndexInNode))
+ node.parentNode.insertBefore(followingTextNode, node)
+ }
+
+ node.parentNode.removeChild(node)
+ this.reverts.push(function() {
+ if (preceedingTextNode === newNode.previousSibling) {
+ preceedingTextNode.parentNode.removeChild(preceedingTextNode)
+ }
+ if (followingTextNode === newNode.nextSibling) {
+ followingTextNode.parentNode.removeChild(followingTextNode)
+ }
+ newNode.parentNode.replaceChild(node, newNode)
+ })
+ return newNode
+ } else {
+ // Replace matchStartNode -> [innerMatchNodes...] -> matchEndNode (in that order)
+
+ preceedingTextNode = doc.createTextNode(
+ matchStartNode.data.substring(0, startPortion.indexInNode)
+ )
+ followingTextNode = doc.createTextNode(
+ matchEndNode.data.substring(endPortion.endIndexInNode)
+ )
+ var firstNode = this.getPortionReplacementNode(
+ startPortion,
+ match
+ )
+ var innerNodes = []
+ for (var i = 0, l = innerPortions.length; i < l; ++i) {
+ var portion = innerPortions[i]
+ var innerNode = this.getPortionReplacementNode(
+ portion,
+ match
+ )
+ portion.node.parentNode.replaceChild(innerNode, portion.node)
+ this.reverts.push((function(portion, innerNode) {
+ return function() {
+ innerNode.parentNode.replaceChild(portion.node, innerNode)
+ }
+ }(portion, innerNode)))
+ innerNodes.push(innerNode)
+ }
+
+ var lastNode = this.getPortionReplacementNode(
+ endPortion,
+ match
+ )
+ matchStartNode.parentNode.insertBefore(preceedingTextNode, matchStartNode)
+ matchStartNode.parentNode.insertBefore(firstNode, matchStartNode)
+ matchStartNode.parentNode.removeChild(matchStartNode)
+ matchEndNode.parentNode.insertBefore(lastNode, matchEndNode)
+ matchEndNode.parentNode.insertBefore(followingTextNode, matchEndNode)
+ matchEndNode.parentNode.removeChild(matchEndNode)
+ this.reverts.push(function() {
+ preceedingTextNode.parentNode.removeChild(preceedingTextNode)
+ firstNode.parentNode.replaceChild(matchStartNode, firstNode)
+ followingTextNode.parentNode.removeChild(followingTextNode)
+ lastNode.parentNode.replaceChild(matchEndNode, lastNode)
+ })
+ return lastNode
+ }
+ }
+
+ }
+ return exposed
+}())
+
+);
+
+var isNodeNormalizeNormal = (function() {
+ //// Disabled `Node.normalize()` for temp due to
+ //// issue below in IE11.
+ //// See: http://stackoverflow.com/questions/22337498/why-does-ie11-handle-node-normalize-incorrectly-for-the-minus-symbol
+ var div = $.create( 'div' )
+
+ div.appendChild($.create( '', '0-' ))
+ div.appendChild($.create( '', '2' ))
+ div.normalize()
+
+ return div.firstChild.length !== 2
+})()
+
+function getFuncOrElmt( obj ) {
+ return (
+ typeof obj === 'function' ||
+ obj instanceof Element
+ )
+ ? obj
+ : undefined
+}
+
+function createBDGroup( portion ) {
+ var clazz = portion.index === 0 && portion.isEnd
+ ? 'biaodian cjk'
+ : 'biaodian cjk portion ' + (
+ portion.index === 0
+ ? 'is-first'
+ : portion.isEnd
+ ? 'is-end'
+ : 'is-inner'
+ )
+
+ var $elmt = $.create( 'h-char-group', clazz )
+ $elmt.innerHTML = portion.text
+ return $elmt
+}
+
+function createBDChar( char ) {
+ var div = $.create( 'div' )
+ var unicode = char.charCodeAt( 0 ).toString( 16 )
+
+ div.innerHTML = (
+ '' + char + ' '
+ )
+ return div.firstChild
+}
+
+function getBDType( char ) {
+ return char.match( TYPESET.char.biaodian.open )
+ ? 'bd-open'
+ : char.match( TYPESET.char.biaodian.close )
+ ? 'bd-close bd-end'
+ : char.match( TYPESET.char.biaodian.end )
+ ? (
+ /(?:\u3001|\u3002|\uff0c)/i.test( char )
+ ? 'bd-end bd-cop'
+ : 'bd-end'
+ )
+ : char.match(new RegExp( UNICODE.biaodian.liga ))
+ ? 'bd-liga'
+ : char.match(new RegExp( UNICODE.biaodian.middle ))
+ ? 'bd-middle'
+ : ''
+}
+
+$.extend( Fibre.fn, {
+ normalize: function() {
+ if ( isNodeNormalizeNormal ) {
+ this.context.normalize()
+ }
+ return this
+ },
+
+ // Force punctuation & biaodian typesetting rules to be applied.
+ jinzify: function( selector ) {
+ return (
+ this
+ .filter( selector || null )
+ .avoid( 'h-jinze' )
+ .replace(
+ TYPESET.jinze.touwei,
+ function( portion, match ) {
+ var elem = $.create( 'h-jinze', 'touwei' )
+ elem.innerHTML = match[0]
+ return (( portion.index === 0 && portion.isEnd ) || portion.index === 1 ) ? elem : ''
+ }
+ )
+ .replace(
+ TYPESET.jinze.wei,
+ function( portion, match ) {
+ var elem = $.create( 'h-jinze', 'wei' )
+ elem.innerHTML = match[0]
+ return portion.index === 0 ? elem : ''
+ }
+ )
+ .replace(
+ TYPESET.jinze.tou,
+ function( portion, match ) {
+ var elem = $.create( 'h-jinze', 'tou' )
+ elem.innerHTML = match[0]
+ return (( portion.index === 0 && portion.isEnd ) || portion.index === 1 )
+ ? elem : ''
+ }
+ )
+ .replace(
+ TYPESET.jinze.middle,
+ function( portion, match ) {
+ var elem = $.create( 'h-jinze', 'middle' )
+ elem.innerHTML = match[0]
+ return (( portion.index === 0 && portion.isEnd ) || portion.index === 1 )
+ ? elem : ''
+ }
+ )
+ .endAvoid()
+ .endFilter()
+ )
+ },
+
+ groupify: function( option ) {
+ var option = $.extend({
+ biaodian: false,
+ //punct: false,
+ hanzi: false, // Includes Kana
+ kana: false,
+ eonmun: false,
+ western: false // Includes Latin, Greek and Cyrillic
+ }, option || {})
+
+ this.avoid( 'h-word, h-char-group' )
+
+ if ( option.biaodian ) {
+ this.replace(
+ TYPESET.group.biaodian[0], createBDGroup
+ ).replace(
+ TYPESET.group.biaodian[1], createBDGroup
+ )
+ }
+
+ if ( option.hanzi || option.cjk ) {
+ this.wrap(
+ TYPESET.group.hanzi, $.clone($.create( 'h-char-group', 'hanzi cjk' ))
+ )
+ }
+ if ( option.western ) {
+ this.wrap(
+ TYPESET.group.western, $.clone($.create( 'h-word', 'western' ))
+ )
+ }
+ if ( option.kana ) {
+ this.wrap(
+ TYPESET.group.kana, $.clone($.create( 'h-char-group', 'kana' ))
+ )
+ }
+ if ( option.eonmun || option.hangul ) {
+ this.wrap(
+ TYPESET.group.eonmun, $.clone($.create( 'h-word', 'eonmun hangul' ))
+ )
+ }
+
+ this.endAvoid()
+ return this
+ },
+
+ charify: function( option ) {
+ var option = $.extend({
+ avoid: true,
+ biaodian: false,
+ punct: false,
+ hanzi: false, // Includes Kana
+ latin: false,
+ ellinika: false,
+ kirillica: false,
+ kana: false,
+ eonmun: false
+ }, option || {})
+
+ if ( option.avoid ) {
+ this.avoid( 'h-char' )
+ }
+
+ if ( option.biaodian ) {
+ this.replace(
+ TYPESET.char.biaodian.all,
+ getFuncOrElmt( option.biaodian )
+ ||
+ function( portion ) { return createBDChar( portion.text ) }
+ ).replace(
+ TYPESET.char.biaodian.liga,
+ getFuncOrElmt( option.biaodian )
+ ||
+ function( portion ) { return createBDChar( portion.text ) }
+ )
+ }
+ if ( option.hanzi || option.cjk ) {
+ this.wrap(
+ TYPESET.char.hanzi,
+ getFuncOrElmt( option.hanzi || option.cjk )
+ ||
+ $.clone($.create( 'h-char', 'hanzi cjk' ))
+ )
+ }
+ if ( option.punct ) {
+ this.wrap(
+ TYPESET.char.punct.all,
+ getFuncOrElmt( option.punct )
+ ||
+ $.clone($.create( 'h-char', 'punct' ))
+ )
+ }
+ if ( option.latin ) {
+ this.wrap(
+ TYPESET.char.latin,
+ getFuncOrElmt( option.latin )
+ ||
+ $.clone($.create( 'h-char', 'alphabet latin' ))
+ )
+ }
+ if ( option.ellinika || option.greek ) {
+ this.wrap(
+ TYPESET.char.ellinika,
+ getFuncOrElmt( option.ellinika || option.greek )
+ ||
+ $.clone($.create( 'h-char', 'alphabet ellinika greek' ))
+ )
+ }
+ if ( option.kirillica || option.cyrillic ) {
+ this.wrap(
+ TYPESET.char.kirillica,
+ getFuncOrElmt( option.kirillica || option.cyrillic )
+ ||
+ $.clone($.create( 'h-char', 'alphabet kirillica cyrillic' ))
+ )
+ }
+ if ( option.kana ) {
+ this.wrap(
+ TYPESET.char.kana,
+ getFuncOrElmt( option.kana )
+ ||
+ $.clone($.create( 'h-char', 'kana' ))
+ )
+ }
+ if ( option.eonmun || option.hangul ) {
+ this.wrap(
+ TYPESET.char.eonmun,
+ getFuncOrElmt( option.eonmun || option.hangul )
+ ||
+ $.clone($.create( 'h-char', 'eonmun hangul' ))
+ )
+ }
+
+ this.endAvoid()
+ return this
+ }
+})
+
+$.extend( Han, {
+ isNodeNormalizeNormal: isNodeNormalizeNormal,
+ find: Fibre,
+ createBDGroup: createBDGroup,
+ createBDChar: createBDChar
+})
+
+$.matches = Han.find.matches
+
+void [
+ 'setMode',
+ 'wrap', 'replace', 'revert',
+ 'addBoundary', 'removeBoundary',
+ 'avoid', 'endAvoid',
+ 'filter', 'endFilter',
+ 'jinzify', 'groupify', 'charify'
+].forEach(function( method ) {
+ Han.fn[ method ] = function() {
+ if ( !this.finder ) {
+ // Share the same selector
+ this.finder = Han.find( this.context )
+ }
+
+ this.finder[ method ]( arguments[ 0 ], arguments[ 1 ] )
+ return this
+ }
+})
+
+var Locale = {}
+
+function writeOnCanvas( text, font ) {
+ var canvas = $.create( 'canvas' )
+ var context
+
+ canvas.width = '50'
+ canvas.height = '20'
+ canvas.style.display = 'none'
+
+ body.appendChild( canvas )
+
+ context = canvas.getContext( '2d' )
+ context.textBaseline = 'top'
+ context.font = '15px ' + font + ', sans-serif'
+ context.fillStyle = 'black'
+ context.strokeStyle = 'black'
+ context.fillText( text, 0, 0 )
+
+ return {
+ node: canvas,
+ context: context,
+ remove: function() {
+ $.remove( canvas, body )
+ }
+ }
+}
+
+function compareCanvases( treat, control ) {
+ var ret
+ var a = treat.context
+ var b = control.context
+
+ try {
+ for ( var j = 1; j <= 20; j++ ) {
+ for ( var i = 1; i <= 50; i++ ) {
+ if (
+ typeof ret === 'undefined' &&
+ a.getImageData(i, j, 1, 1).data[3] !== b.getImageData(i, j, 1, 1).data[3]
+ ) {
+ ret = false
+ break
+ } else if ( typeof ret === 'boolean' ) {
+ break
+ }
+
+ if ( i === 50 && j === 20 && typeof ret === 'undefined' ) {
+ ret = true
+ }
+ }
+ }
+
+ // Remove and clean from memory
+ treat.remove()
+ control.remove()
+ treat = null
+ control = null
+
+ return ret
+ } catch (e) {}
+ return false
+}
+
+function detectFont( treat, control, text ) {
+ var treat = treat
+ var control = control || 'sans-serif'
+ var text = text || '辭Q'
+ var ret
+
+ control = writeOnCanvas( text, control )
+ treat = writeOnCanvas( text, treat )
+
+ return !compareCanvases( treat, control )
+}
+
+Locale.writeOnCanvas = writeOnCanvas
+Locale.compareCanvases = compareCanvases
+Locale.detectFont = detectFont
+
+Locale.support = (function() {
+
+ var PREFIX = 'Webkit Moz ms'.split(' ')
+
+ // Create an element for feature detecting
+ // (in `testCSSProp`)
+ var elem = $.create( 'h-test' )
+
+ function testCSSProp( prop ) {
+ var ucProp = prop.charAt(0).toUpperCase() + prop.slice(1)
+ var allProp = ( prop + ' ' + PREFIX.join( ucProp + ' ' ) + ucProp ).split(' ')
+ var ret
+
+ allProp.forEach(function( prop ) {
+ if ( typeof elem.style[ prop ] === 'string' ) {
+ ret = true
+ }
+ })
+ return ret || false
+ }
+
+ function injectElementWithStyle( rule, callback ) {
+ var fakeBody = body || $.create( 'body' )
+ var div = $.create( 'div' )
+ var container = body ? div : fakeBody
+ var callback = typeof callback === 'function' ? callback : function() {}
+ var style, ret, docOverflow
+
+ style = [ '' ].join('')
+
+ container.innerHTML += style
+ fakeBody.appendChild( div )
+
+ if ( !body ) {
+ fakeBody.style.background = ''
+ fakeBody.style.overflow = 'hidden'
+ docOverflow = root.style.overflow
+
+ root.style.overflow = 'hidden'
+ root.appendChild( fakeBody )
+ }
+
+ // Callback
+ ret = callback( container, rule )
+
+ // Remove the injected scope
+ $.remove( container )
+ if ( !body ) {
+ root.style.overflow = docOverflow
+ }
+ return !!ret
+ }
+
+ function getStyle( elem, prop ) {
+ var ret
+
+ if ( window.getComputedStyle ) {
+ ret = document.defaultView.getComputedStyle( elem, null ).getPropertyValue( prop )
+ } else if ( elem.currentStyle ) {
+ // for IE
+ ret = elem.currentStyle[ prop ]
+ }
+ return ret
+ }
+
+ return {
+ columnwidth: testCSSProp( 'columnWidth' ),
+
+ fontface: (function() {
+ var ret
+
+ injectElementWithStyle(
+ '@font-face { font-family: font; src: url("//"); }',
+ function( node, rule ) {
+ var style = $.qsa( 'style', node )[0]
+ var sheet = style.sheet || style.styleSheet
+ var cssText = sheet ?
+ ( sheet.cssRules && sheet.cssRules[0] ?
+ sheet.cssRules[0].cssText : sheet.cssText || ''
+ ) : ''
+
+ ret = /src/i.test( cssText ) &&
+ cssText.indexOf( rule.split(' ')[0] ) === 0
+ }
+ )
+
+ return ret
+ })(),
+
+ ruby: (function() {
+ var ruby = $.create( 'ruby' )
+ var rt = $.create( 'rt' )
+ var rp = $.create( 'rp' )
+ var ret
+
+ ruby.appendChild( rp )
+ ruby.appendChild( rt )
+ root.appendChild( ruby )
+
+ // Browsers that support ruby hide the `` via `display: none`
+ ret = (
+ getStyle( rp, 'display' ) === 'none' ||
+ // but in IE, `` has `display: inline`, so the test needs other conditions:
+ getStyle( ruby, 'display' ) === 'ruby' &&
+ getStyle( rt, 'display' ) === 'ruby-text'
+ ) ? true : false
+
+ // Remove and clean from memory
+ root.removeChild( ruby )
+ ruby = null
+ rt = null
+ rp = null
+
+ return ret
+ })(),
+
+ 'ruby-display': (function() {
+ var div = $.create( 'div' )
+
+ div.innerHTML = ' '
+ return div.querySelector( 'h-test-a' ).style.display === 'ruby' && div.querySelector( 'h-test-b' ).style.display === 'ruby-text-container'
+ })(),
+
+ 'ruby-interchar': (function() {
+ var IC = 'inter-character'
+ var div = $.create( 'div' )
+ var css
+
+ div.innerHTML = ' '
+ css = div.querySelector( 'h-test' ).style
+ return css.rubyPosition === IC || css.WebkitRubyPosition === IC || css.MozRubyPosition === IC || css.msRubyPosition === IC
+ })(),
+
+ textemphasis: testCSSProp( 'textEmphasis' ),
+
+ // Address feature support test for `unicode-range` via
+ // detecting whether it's Arial (supported) or
+ // Times New Roman (not supported).
+ unicoderange: (function() {
+ var ret
+
+ injectElementWithStyle(
+ '@font-face{font-family:test-for-unicode-range;src:local(Arial),local("Droid Sans")}@font-face{font-family:test-for-unicode-range;src:local("Times New Roman"),local(Times),local("Droid Serif");unicode-range:U+270C}',
+ function() {
+ ret = !Locale.detectFont(
+ 'test-for-unicode-range', // treatment group
+ 'Arial, "Droid Sans"', // control group
+ 'Q' // ASCII characters only
+ )
+ }
+ )
+ return ret
+ })(),
+
+ writingmode: testCSSProp( 'writingMode' )
+ }
+})()
+
+Locale.initCond = function( target ) {
+ var target = target || root
+ var ret = ''
+ var clazz
+
+ for ( var feature in Locale.support ) {
+ clazz = ( Locale.support[ feature ] ? '' : 'no-' ) + feature
+
+ target.classList.add( clazz )
+ ret += clazz + ' '
+ }
+ return ret
+}
+
+var SUPPORT_IC = Locale.support[ 'ruby-interchar' ]
+
+// 1. Simple ruby polyfill;
+// 2. Inter-character polyfill for Zhuyin
+function renderSimpleRuby( $ruby ) {
+ var frag = $.create( '!' )
+ var clazz = $ruby.classList
+ var $rb, $ru
+
+ frag.appendChild( $.clone( $ruby ))
+
+ $
+ .tag( 'rt', frag.firstChild )
+ .forEach(function( $rt ) {
+ var $rb = $.create( '!' )
+ var airb = []
+ var irb
+
+ // Consider the previous nodes the implied
+ // ruby base
+ do {
+ irb = ( irb || $rt ).previousSibling
+ if ( !irb || irb.nodeName.match( /((?:h\-)?r[ubt])/i )) break
+
+ $rb.insertBefore( $.clone( irb ), $rb.firstChild )
+ airb.push( irb )
+ } while ( !irb.nodeName.match( /((?:h\-)?r[ubt])/i ))
+
+ // Create a real `` to append.
+ $ru = clazz.contains( 'zhuyin' ) ? createZhuyinRu( $rb, $rt ) : createNormalRu( $rb, $rt )
+
+ // Replace the ruby text with the new ``,
+ // and remove the original implied ruby base(s)
+ try {
+ $rt.parentNode.replaceChild( $ru, $rt )
+ airb.map( $.remove )
+ } catch ( e ) {}
+ })
+ return createCustomRuby( frag )
+}
+
+function renderInterCharRuby( $ruby ) {
+ var frag = $.create( '!' )
+ frag.appendChild( $.clone( $ruby ))
+
+ $
+ .tag( 'rt', frag.firstChild )
+ .forEach(function( $rt ) {
+ var $rb = $.create( '!' )
+ var airb = []
+ var irb, $zhuyin
+
+ // Consider the previous nodes the implied
+ // ruby base
+ do {
+ irb = ( irb || $rt ).previousSibling
+ if ( !irb || irb.nodeName.match( /((?:h\-)?r[ubt])/i )) break
+
+ $rb.insertBefore( $.clone( irb ), $rb.firstChild )
+ airb.push( irb )
+ } while ( !irb.nodeName.match( /((?:h\-)?r[ubt])/i ))
+
+ $zhuyin = $.create( 'rt' )
+ $zhuyin.innerHTML = getZhuyinHTML( $rt )
+ $rt.parentNode.replaceChild( $zhuyin, $rt )
+ })
+ return frag.firstChild
+}
+
+// 3. Complex ruby polyfill
+// - Double-lined annotation;
+// - Right-angled annotation.
+function renderComplexRuby( $ruby ) {
+ var frag = $.create( '!' )
+ var clazz = $ruby.classList
+ var $cloned, $rb, $ru, maxspan
+
+ frag.appendChild( $.clone( $ruby ))
+ $cloned = frag.firstChild
+
+ $rb = $ru = $.tag( 'rb', $cloned )
+ maxspan = $rb.length
+
+ // First of all, deal with Zhuyin containers
+ // individually
+ //
+ // Note that we only support one single Zhuyin
+ // container in each complex ruby
+ void function( $rtc ) {
+ if ( !$rtc ) return
+
+ $ru = $
+ .tag( 'rt', $rtc )
+ .map(function( $rt, i ) {
+ if ( !$rb[ i ] ) return
+ var ret = createZhuyinRu( $rb[ i ], $rt )
+
+ try {
+ $rb[ i ].parentNode.replaceChild( ret, $rb[ i ] )
+ } catch ( e ) {}
+ return ret
+ })
+
+ // Remove the container once it's useless
+ $.remove( $rtc )
+ $cloned.setAttribute( 'rightangle', 'true' )
+ }( $cloned.querySelector( 'rtc.zhuyin' ))
+
+ // Then, normal annotations other than Zhuyin
+ $
+ .qsa( 'rtc:not(.zhuyin)', $cloned )
+ .forEach(function( $rtc, order ) {
+ var ret
+ ret = $
+ .tag( 'rt', $rtc )
+ .map(function( $rt, i ) {
+ var rbspan = Number( $rt.getAttribute( 'rbspan' ) || 1 )
+ var span = 0
+ var aRb = []
+ var $rb, ret
+
+ if ( rbspan > maxspan ) rbspan = maxspan
+
+ do {
+ try {
+ $rb = $ru.shift()
+ aRb.push( $rb )
+ } catch (e) {}
+
+ if ( typeof $rb === 'undefined' ) break
+ span += Number( $rb.getAttribute( 'span' ) || 1 )
+ } while ( rbspan > span )
+
+ if ( rbspan < span ) {
+ if ( aRb.length > 1 ) {
+ console.error( 'An impossible `rbspan` value detected.', ruby )
+ return
+ }
+ aRb = $.tag( 'rb', aRb[0] )
+ $ru = aRb.slice( rbspan ).concat( $ru )
+ aRb = aRb.slice( 0, rbspan )
+ span = rbspan
+ }
+
+ ret = createNormalRu( aRb, $rt, {
+ 'class': clazz,
+ span: span,
+ order: order
+ })
+
+ try {
+ aRb[0].parentNode.replaceChild( ret, aRb.shift() )
+ aRb.map( $.remove )
+ } catch (e) {}
+ return ret
+ })
+ $ru = ret
+ if ( order === 1 ) $cloned.setAttribute( 'doubleline', 'true' )
+
+ // Remove the container once it's useless
+ $.remove( $rtc )
+ })
+ return createCustomRuby( frag )
+}
+
+// Create a new fake `` element so the
+// style sheets will render it as a polyfill,
+// which also helps to avoid the UA style.
+function createCustomRuby( frag ) {
+ var $ruby = frag.firstChild
+ var hruby = $.create( 'h-ruby' )
+
+ hruby.innerHTML = $ruby.innerHTML
+ $.setAttr( hruby, $ruby.attributes )
+ hruby.normalize()
+ return hruby
+}
+
+function simplifyRubyClass( elem ) {
+ if ( !elem instanceof Element ) return elem
+ var clazz = elem.classList
+
+ if ( clazz.contains( 'pinyin' )) clazz.add( 'romanization' )
+ else if ( clazz.contains( 'romanization' )) clazz.add( 'annotation' )
+ else if ( clazz.contains( 'mps' )) clazz.add( 'zhuyin' )
+ else if ( clazz.contains( 'rightangle' )) clazz.add( 'complex' )
+ return elem
+}
+
+/**
+ * Create and return a new `` element
+ * according to the given contents
+ */
+function createNormalRu( $rb, $rt, attr ) {
+ var $ru = $.create( 'h-ru' )
+ var $rt = $.clone( $rt )
+ var attr = attr || {}
+ attr.annotation = 'true'
+
+ if ( Array.isArray( $rb )) {
+ $ru.innerHTML = $rb.map(function( rb ) {
+ if ( typeof rb === 'undefined' ) return ''
+ return rb.outerHTML
+ }).join('') + $rt.outerHTML
+ } else {
+ $ru.appendChild( $.clone( $rb ))
+ $ru.appendChild( $rt )
+ }
+
+ $.setAttr( $ru, attr )
+ return $ru
+}
+
+/**
+ * Create and return a new `` element
+ * in Zhuyin form
+ */
+function createZhuyinRu( $rb, $rt ) {
+ var $rb = $.clone( $rb )
+
+ // Create an element to return
+ var $ru = $.create( 'h-ru' )
+ $ru.setAttribute( 'zhuyin', true )
+
+ // -
+ // -
+ // -
+ // -
+ // -
+ // -
+ // -
+ $ru.appendChild( $rb )
+ $ru.innerHTML += getZhuyinHTML( $rt )
+ return $ru
+}
+
+/**
+ * Create a Zhuyin-form HTML string
+ */
+function getZhuyinHTML( rt ) {
+ // #### Explanation ####
+ // * `zhuyin`: the entire phonetic annotation
+ // * `yin`: the plain pronunciation (w/out tone)
+ // * `diao`: the tone
+ // * `len`: the length of the plain pronunciation (`yin`)
+ var zhuyin = typeof rt === 'string' ? rt : rt.textContent
+ var yin, diao, len
+
+ yin = zhuyin.replace( TYPESET.zhuyin.diao, '' )
+ len = yin ? yin.length : 0
+ diao = zhuyin
+ .replace( yin, '' )
+ .replace( /[\u02C5]/g, '\u02C7' )
+ .replace( /[\u030D]/g, '\u0358' )
+ return len === 0 ? '' : '' + yin + ' ' + diao + ' '
+}
+
+/**
+ * Normalize `ruby` elements
+ */
+$.extend( Locale, {
+
+ // Address normalisation for both simple and complex
+ // rubies (interlinear annotations)
+ renderRuby: function( context, target ) {
+ var target = target || 'ruby'
+ var $target = $.qsa( target, context )
+
+ $.qsa( 'rtc', context )
+ .concat( $target ).map( simplifyRubyClass )
+
+ $target
+ .forEach(function( $ruby ) {
+ var clazz = $ruby.classList
+ var $new
+
+ if ( clazz.contains( 'complex' )) $new = renderComplexRuby( $ruby )
+ else if ( clazz.contains( 'zhuyin' )) $new = SUPPORT_IC ? renderInterCharRuby( $ruby ) : renderSimpleRuby( $ruby )
+
+ // Finally, replace it
+ if ( $new ) $ruby.parentNode.replaceChild( $new, $ruby )
+ })
+ },
+
+ simplifyRubyClass: simplifyRubyClass,
+ getZhuyinHTML: getZhuyinHTML,
+ renderComplexRuby: renderComplexRuby,
+ renderSimpleRuby: renderSimpleRuby,
+ renderInterCharRuby: renderInterCharRuby
+
+ // ### TODO list ###
+ //
+ // * Debug mode
+ // * Better error-tolerance
+})
+
+/**
+ * Normalisation rendering mechanism
+ */
+$.extend( Locale, {
+
+ // Render and normalise the given context by routine:
+ //
+ // ruby -> u, ins -> s, del -> em
+ //
+ renderElem: function( context ) {
+ this.renderRuby( context )
+ this.renderDecoLine( context )
+ this.renderDecoLine( context, 's, del' )
+ this.renderEm( context )
+ },
+
+ // Traverse all target elements and address
+ // presentational corrections if any two of
+ // them are adjacent to each other.
+ renderDecoLine: function( context, target ) {
+ var $$target = $.qsa( target || 'u, ins', context )
+ var i = $$target.length
+
+ traverse: while ( i-- ) {
+ var $this = $$target[ i ]
+ var $prev = null
+
+ // Ignore all `` and comments in between,
+ // and add class `.adjacent` once two targets
+ // are next to each other.
+ ignore: do {
+ $prev = ( $prev || $this ).previousSibling
+
+ if ( !$prev ) {
+ continue traverse
+ } else if ( $$target[ i-1 ] === $prev ) {
+ $this.classList.add( 'adjacent' )
+ }
+ } while ( $.isIgnorable( $prev ))
+ }
+ },
+
+ // Traverse all target elements to render
+ // emphasis marks.
+ renderEm: function( context, target ) {
+ var method = target ? 'qsa' : 'tag'
+ var target = target || 'em'
+ var $target = $[ method ]( target, context )
+
+ $target
+ .forEach(function( elem ) {
+ var $elem = Han( elem )
+
+ if ( Locale.support.textemphasis ) {
+ $elem
+ .avoid( 'rt, h-char' )
+ .charify({ biaodian: true, punct: true })
+ } else {
+ $elem
+ .avoid( 'rt, h-char, h-char-group' )
+ .jinzify()
+ .groupify({ western: true })
+ .charify({
+ hanzi: true,
+ biaodian: true,
+ punct: true,
+ latin: true,
+ ellinika: true,
+ kirillica: true
+ })
+ }
+ })
+ }
+})
+
+Han.normalize = Locale
+Han.localize = Locale
+Han.support = Locale.support
+Han.detectFont = Locale.detectFont
+
+Han.fn.initCond = function() {
+ this.condition.classList.add( 'han-js-rendered' )
+ Han.normalize.initCond( this.condition )
+ return this
+}
+
+void [
+ 'Elem',
+ 'DecoLine',
+ 'Em',
+ 'Ruby'
+].forEach(function( elem ) {
+ var method = 'render' + elem
+
+ Han.fn[ method ] = function( target ) {
+ Han.normalize[ method ]( this.context, target )
+ return this
+ }
+})
+
+$.extend( Han.support, {
+ // Assume that all devices support Heiti for we
+ // use `sans-serif` to do the comparison.
+ heiti: true,
+ // 'heiti-gb': true,
+
+ songti: Han.detectFont( '"Han Songti"' ),
+ 'songti-gb': Han.detectFont( '"Han Songti GB"' ),
+
+ kaiti: Han.detectFont( '"Han Kaiti"' ),
+ // 'kaiti-gb': Han.detectFont( '"Han Kaiti GB"' ),
+
+ fangsong: Han.detectFont( '"Han Fangsong"' )
+ // 'fangsong-gb': Han.detectFont( '"Han Fangsong GB"' )
+})
+
+Han.correctBiaodian = function( context ) {
+ var context = context || document
+ var finder = Han.find( context )
+
+ finder
+ .avoid( 'h-char' )
+ .replace( /([‘“])/g, function( portion ) {
+ var $char = Han.createBDChar( portion.text )
+ $char.classList.add( 'bd-open', 'punct' )
+ return $char
+ })
+ .replace( /([’”])/g, function( portion ) {
+ var $char = Han.createBDChar( portion.text )
+ $char.classList.add( 'bd-close', 'bd-end', 'punct' )
+ return $char
+ })
+
+ return Han.support.unicoderange
+ ? finder
+ : finder.charify({ biaodian: true })
+}
+
+Han.correctBasicBD = Han.correctBiaodian
+Han.correctBD = Han.correctBiaodian
+
+$.extend( Han.fn, {
+ biaodian: null,
+
+ correctBiaodian: function() {
+ this.biaodian = Han.correctBiaodian( this.context )
+ return this
+ },
+
+ revertCorrectedBiaodian: function() {
+ try {
+ this.biaodian.revert( 'all' )
+ } catch (e) {}
+ return this
+ }
+})
+
+// Legacy support (deprecated):
+Han.fn.correctBasicBD = Han.fn.correctBiaodian
+Han.fn.revertBasicBD = Han.fn.revertCorrectedBiaodian
+
+var hws = '<>'
+
+var $hws = $.create( 'h-hws' )
+$hws.setAttribute( 'hidden', '' )
+$hws.innerHTML = ' '
+
+function sharingSameParent( $a, $b ) {
+ return $a && $b && $a.parentNode === $b.parentNode
+}
+
+function properlyPlaceHWSBehind( $node, text ) {
+ var $elmt = $node
+ var text = text || ''
+
+ if (
+ $.isElmt( $node.nextSibling ) ||
+ sharingSameParent( $node, $node.nextSibling )
+ ) {
+ return text + hws
+ } else {
+ // One of the parental elements of the current text
+ // node would definitely have a next sibling, since
+ // it is of the first portion and not `isEnd`.
+ while ( !$elmt.nextSibling ) {
+ $elmt = $elmt.parentNode
+ }
+ if ( $node !== $elmt ) {
+ $elmt.insertAdjacentHTML( 'afterEnd', ' ' )
+ }
+ }
+ return text
+}
+
+function firstStepLabel( portion, mat ) {
+ return portion.isEnd && portion.index === 0
+ ? mat[1] + hws + mat[2]
+ : portion.index === 0
+ ? properlyPlaceHWSBehind( portion.node, portion.text )
+ : portion.text
+}
+
+function real$hwsElmt( portion ) {
+ return portion.index === 0
+ ? $.clone( $hws )
+ : ''
+}
+
+var last$hwsIdx
+
+function apostrophe( portion ) {
+ var $elmt = portion.node.parentNode
+
+ if ( portion.index === 0 ) {
+ last$hwsIdx = portion.endIndexInNode-2
+ }
+
+ if (
+ $elmt.nodeName.toLowerCase() === 'h-hws' && (
+ portion.index === 1 || portion.indexInMatch === last$hwsIdx
+ )) {
+ $elmt.classList.add( 'quote-inner' )
+ }
+ return portion.text
+}
+
+function curveQuote( portion ) {
+ var $elmt = portion.node.parentNode
+
+ if ( $elmt.nodeName.toLowerCase() === 'h-hws' ) {
+ $elmt.classList.add( 'quote-outer' )
+ }
+ return portion.text
+}
+
+$.extend( Han, {
+ renderHWS: function( context, strict ) {
+ // Elements to be filtered according to the
+ // HWS rendering mode.
+ var AVOID = strict
+ ? 'textarea, code, kbd, samp, pre'
+ : 'textarea'
+
+ var mode = strict ? 'strict' : 'base'
+ var context = context || document
+ var finder = Han.find( context )
+
+ finder
+ .avoid( AVOID )
+
+ // Basic situations:
+ // - 字a => 字 a
+ // - A字 => A 字
+ .replace( Han.TYPESET.hws[ mode ][0], firstStepLabel )
+ .replace( Han.TYPESET.hws[ mode ][1], firstStepLabel )
+
+ // Convert text nodes ` ` into real element nodes:
+ .replace( new RegExp( '(' + hws + ')+', 'g' ), real$hwsElmt )
+
+ // Deal with:
+ // - ' 字 ' => '字'
+ // - " 字 " => "字"
+ .replace( /([\'"])\s(.+?)\s\1/g, apostrophe )
+
+ // Deal with:
+ // - “字”
+ // - ‘字’
+ .replace( /\s[‘“]/g, curveQuote )
+ .replace( /[’”]\s/g, curveQuote )
+ .normalize()
+
+ // Return the finder instance for future usage
+ return finder
+ }
+})
+
+$.extend( Han.fn, {
+ renderHWS: function( strict ) {
+ Han.renderHWS( this.context, strict )
+ return this
+ },
+
+ revertHWS: function() {
+ $.tag( 'h-hws', this.context )
+ .forEach(function( hws ) {
+ $.remove( hws )
+ })
+ this.HWS = []
+ return this
+ }
+})
+
+var HANGABLE_CLASS = 'bd-hangable'
+var HANGABLE_AVOID = 'h-char.bd-hangable'
+var HANGABLE_CS_HTML = ' '
+
+var matches = Han.find.matches
+
+function detectSpaceFont() {
+ var div = $.create( 'div' )
+ var ret
+
+ div.innerHTML = 'a b a b '
+ body.appendChild( div )
+ ret = div.firstChild.offsetWidth !== div.lastChild.offsetWidth
+ $.remove( div )
+ return ret
+}
+
+function insertHangableCS( $jinze ) {
+ var $cs = $jinze.nextSibling
+
+ if ( $cs && matches( $cs, 'h-cs.jinze-outer' )) {
+ $cs.classList.add( 'hangable-outer' )
+ } else {
+ $jinze.insertAdjacentHTML(
+ 'afterend',
+ HANGABLE_CS_HTML
+ )
+ }
+}
+
+Han.support['han-space'] = detectSpaceFont()
+
+$.extend( Han, {
+ detectSpaceFont: detectSpaceFont,
+ isSpaceFontLoaded: detectSpaceFont(),
+
+ renderHanging: function( context ) {
+ var context = context || document
+ var finder = Han.find( context )
+
+ finder
+ .avoid( 'textarea, code, kbd, samp, pre' )
+ .avoid( HANGABLE_AVOID )
+ .replace(
+ TYPESET.jinze.hanging,
+ function( portion ) {
+ if ( /^[\x20\t\r\n\f]+$/.test( portion.text )) {
+ return ''
+ }
+
+ var $elmt = portion.node.parentNode
+ var $jinze, $new, $bd, biaodian
+
+ if ( $jinze = $.parent( $elmt, 'h-jinze' )) {
+ insertHangableCS( $jinze )
+ }
+
+ biaodian = portion.text.trim()
+
+ $new = Han.createBDChar( biaodian )
+ $new.innerHTML = '' + biaodian + ' '
+ $new.classList.add( HANGABLE_CLASS )
+
+ $bd = $.parent( $elmt, 'h-char.biaodian' )
+
+ return !$bd
+ ? $new
+ : (function() {
+ $bd.classList.add( HANGABLE_CLASS )
+
+ return matches( $elmt, 'h-inner, h-inner *' )
+ ? biaodian
+ : $new.firstChild
+ })()
+ }
+ )
+ return finder
+ }
+})
+
+$.extend( Han.fn, {
+ renderHanging: function() {
+ var classList = this.condition.classList
+ Han.isSpaceFontLoaded = detectSpaceFont()
+
+ if (
+ Han.isSpaceFontLoaded &&
+ classList.contains( 'no-han-space' )
+ ) {
+ classList.remove( 'no-han-space' )
+ classList.add( 'han-space' )
+ }
+
+ Han.renderHanging( this.context )
+ return this
+ },
+
+ revertHanging: function() {
+ $.qsa(
+ 'h-char.bd-hangable, h-cs.hangable-outer',
+ this.context
+ ).forEach(function( $elmt ) {
+ var classList = $elmt.classList
+ classList.remove( 'bd-hangable' )
+ classList.remove( 'hangable-outer' )
+ })
+ return this
+ }
+})
+
+var JIYA_CLASS = 'bd-jiya'
+var JIYA_AVOID = 'h-char.bd-jiya'
+var CONSECUTIVE_CLASS = 'bd-consecutive'
+var JIYA_CS_HTML = ' '
+
+var matches = Han.find.matches
+
+function trimBDClass( clazz ) {
+ return clazz.replace(
+ /(biaodian|cjk|bd-jiya|bd-consecutive|bd-hangable)/gi, ''
+ ).trim()
+}
+
+function charifyBiaodian( portion ) {
+ var biaodian = portion.text
+ var $elmt = portion.node.parentNode
+ var $bd = $.parent( $elmt, 'h-char.biaodian' )
+ var $new = Han.createBDChar( biaodian )
+ var $jinze
+
+ $new.innerHTML = '' + biaodian + ' '
+ $new.classList.add( JIYA_CLASS )
+
+ if ( $jinze = $.parent( $elmt, 'h-jinze' )) {
+ insertJiyaCS( $jinze )
+ }
+
+ return !$bd
+ ? $new
+ : (function() {
+ $bd.classList.add( JIYA_CLASS )
+
+ return matches( $elmt, 'h-inner, h-inner *' )
+ ? biaodian
+ : $new.firstChild
+ })()
+}
+
+var prevBDType, $$prevCS
+
+function locateConsecutiveBD( portion ) {
+ var prev = prevBDType
+ var $elmt = portion.node.parentNode
+ var $bd = $.parent( $elmt, 'h-char.biaodian' )
+ var $jinze = $.parent( $bd, 'h-jinze' )
+ var classList
+
+ classList = $bd.classList
+
+ if ( prev ) {
+ $bd.setAttribute( 'prev', prev )
+ }
+
+ if ( $$prevCS && classList.contains( 'bd-open' )) {
+ $$prevCS.pop().setAttribute( 'next', 'bd-open' )
+ }
+
+ $$prevCS = undefined
+
+ if ( portion.isEnd ) {
+ prevBDType = undefined
+ classList.add( CONSECUTIVE_CLASS, 'end-portion' )
+ } else {
+ prevBDType = trimBDClass($bd.getAttribute( 'class' ))
+ classList.add( CONSECUTIVE_CLASS )
+ }
+
+ if ( $jinze ) {
+ $$prevCS = locateCS( $jinze, {
+ prev: prev,
+ 'class': trimBDClass($bd.getAttribute( 'class' ))
+ })
+ }
+ return portion.text
+}
+
+function insertJiyaCS( $jinze ) {
+ if (
+ matches( $jinze, '.tou, .touwei' ) &&
+ !matches( $jinze.previousSibling, 'h-cs.jiya-outer' )
+ ) {
+ $jinze.insertAdjacentHTML( 'beforebegin', JIYA_CS_HTML )
+ }
+ if (
+ matches( $jinze, '.wei, .touwei' ) &&
+ !matches( $jinze.nextSibling, 'h-cs.jiya-outer' )
+ ) {
+ $jinze.insertAdjacentHTML( 'afterend', JIYA_CS_HTML )
+ }
+}
+
+function locateCS( $jinze, attr ) {
+ var $prev, $next
+
+ if (matches( $jinze, '.tou, .touwei' )) {
+ $prev = $jinze.previousSibling
+
+ if (matches( $prev, 'h-cs' )) {
+ $prev.className = 'jinze-outer jiya-outer'
+ $prev.setAttribute( 'prev', attr.prev )
+ }
+ }
+ if (matches( $jinze, '.wei, .touwei' )) {
+ $next = $jinze.nextSibling
+
+ if (matches( $next, 'h-cs' )) {
+ $next.className = 'jinze-outer jiya-outer ' + attr[ 'class' ]
+ $next.removeAttribute( 'prev' )
+ }
+ }
+ return [ $prev, $next ]
+}
+
+Han.renderJiya = function( context ) {
+ var context = context || document
+ var finder = Han.find( context )
+
+ finder
+ .avoid( 'textarea, code, kbd, samp, pre, h-cs' )
+
+ .avoid( JIYA_AVOID )
+ .charify({
+ avoid: false,
+ biaodian: charifyBiaodian
+ })
+ // End avoiding `JIYA_AVOID`:
+ .endAvoid()
+
+ .avoid( 'textarea, code, kbd, samp, pre, h-cs' )
+ .replace( TYPESET.group.biaodian[0], locateConsecutiveBD )
+ .replace( TYPESET.group.biaodian[1], locateConsecutiveBD )
+
+ return finder
+}
+
+$.extend( Han.fn, {
+ renderJiya: function() {
+ Han.renderJiya( this.context )
+ return this
+ },
+
+ revertJiya: function() {
+ $.qsa(
+ 'h-char.bd-jiya, h-cs.jiya-outer',
+ this.context
+ ).forEach(function( $elmt ) {
+ var classList = $elmt.classList
+ classList.remove( 'bd-jiya' )
+ classList.remove( 'jiya-outer' )
+ })
+ return this
+ }
+})
+
+var QUERY_RU_W_ANNO = 'h-ru[annotation]'
+var SELECTOR_TO_IGNORE = 'textarea, code, kbd, samp, pre'
+
+function createCompareFactory( font, treat, control ) {
+ return function() {
+ var a = Han.localize.writeOnCanvas( treat, font )
+ var b = Han.localize.writeOnCanvas( control, font )
+ return Han.localize.compareCanvases( a, b )
+ }
+}
+
+function isVowelCombLigaNormal() {
+ return createCompareFactory( '"Romanization Sans"', '\u0061\u030D', '\uDB80\uDC61' )
+}
+
+function isVowelICombLigaNormal() {
+ return createCompareFactory( '"Romanization Sans"', '\u0069\u030D', '\uDB80\uDC69' )
+}
+
+function isZhuyinCombLigaNormal() {
+ return createCompareFactory( '"Zhuyin Kaiti"', '\u31B4\u0358', '\uDB8C\uDDB4' )
+}
+
+function createSubstFactory( regexToSubst ) {
+ return function( context ) {
+ var context = context || document
+ var finder = Han.find( context ).avoid( SELECTOR_TO_IGNORE )
+
+ regexToSubst
+ .forEach(function( pattern ) {
+ finder
+ .replace(
+ new RegExp( pattern[ 0 ], 'ig' ),
+ function( portion, match ) {
+ var ret = $.clone( charCombLiga )
+
+ // Put the original content in an inner container
+ // for better presentational effect of hidden text
+ ret.innerHTML = '' + match[0] + ' '
+ ret.setAttribute( 'display-as', pattern[ 1 ] )
+ return portion.index === 0 ? ret : ''
+ }
+ )
+ })
+ return finder
+ }
+}
+
+var charCombLiga = $.create( 'h-char', 'comb-liga' )
+
+$.extend( Han, {
+ isVowelCombLigaNormal: isVowelCombLigaNormal(),
+ isVowelICombLigaNormal: isVowelICombLigaNormal(),
+ isZhuyinCombLigaNormal: isZhuyinCombLigaNormal(),
+
+ isCombLigaNormal: isVowelICombLigaNormal()(), // ### Deprecated
+
+ substVowelCombLiga: createSubstFactory( Han.TYPESET[ 'display-as' ][ 'comb-liga-vowel' ] ),
+ substZhuyinCombLiga: createSubstFactory( Han.TYPESET[ 'display-as' ][ 'comb-liga-zhuyin' ] ),
+ substCombLigaWithPUA: createSubstFactory( Han.TYPESET[ 'display-as' ][ 'comb-liga-pua' ] ),
+
+ substInaccurateChar: function( context ) {
+ var context = context || document
+ var finder = Han.find( context )
+
+ finder.avoid( SELECTOR_TO_IGNORE )
+
+ Han.TYPESET[ 'inaccurate-char' ]
+ .forEach(function( pattern ) {
+ finder
+ .replace(
+ new RegExp( pattern[ 0 ], 'ig' ),
+ pattern[ 1 ]
+ )
+ })
+ }
+})
+
+$.extend( Han.fn, {
+ 'comb-liga-vowel': null,
+ 'comb-liga-vowel-i': null,
+ 'comb-liga-zhuyin': null,
+ 'inaccurate-char': null,
+
+ substVowelCombLiga: function() {
+ this['comb-liga-vowel'] = Han.substVowelCombLiga( this.context )
+ return this
+ },
+
+ substVowelICombLiga: function() {
+ this['comb-liga-vowel-i'] = Han.substVowelICombLiga( this.context )
+ return this
+ },
+
+ substZhuyinCombLiga: function() {
+ this['comb-liga-zhuyin'] = Han.substZhuyinCombLiga( this.context )
+ return this
+ },
+
+ substCombLigaWithPUA: function() {
+ if ( !Han.isVowelCombLigaNormal()) {
+ this['comb-liga-vowel'] = Han.substVowelCombLiga( this.context )
+ } else if ( !Han.isVowelICombLigaNormal()) {
+ this['comb-liga-vowel-i'] = Han.substVowelICombLiga( this.context )
+ }
+
+ if ( !Han.isZhuyinCombLigaNormal()) {
+ this['comb-liga-zhuyin'] = Han.substZhuyinCombLiga( this.context )
+ }
+ return this
+ },
+
+ revertVowelCombLiga: function() {
+ try {
+ this['comb-liga-vowel'].revert( 'all' )
+ } catch (e) {}
+ return this
+ },
+
+ revertVowelICombLiga: function() {
+ try {
+ this['comb-liga-vowel-i'].revert( 'all' )
+ } catch (e) {}
+ return this
+ },
+
+ revertZhuyinCombLiga: function() {
+ try {
+ this['comb-liga-zhuyin'].revert( 'all' )
+ } catch (e) {}
+ return this
+ },
+
+ revertCombLigaWithPUA: function() {
+ try {
+ this['comb-liga-vowel'].revert( 'all' )
+ this['comb-liga-vowel-i'].revert( 'all' )
+ this['comb-liga-zhuyin'].revert( 'all' )
+ } catch (e) {}
+ return this
+ },
+
+ substInaccurateChar: function() {
+ this['inaccurate-char'] = Han.substInaccurateChar( this.context )
+ return this
+ },
+
+ revertInaccurateChar: function() {
+ try {
+ this['inaccurate-char'].revert( 'all' )
+ } catch (e) {}
+ return this
+ }
+})
+
+window.addEventListener( 'DOMContentLoaded', function() {
+ var initContext
+
+ // Use the shortcut under the default situation
+ if ( root.classList.contains( 'han-init' )) {
+ Han.init()
+
+ // Consider ‘a configured context’ the special
+ // case of the default situation. Will have to
+ // replace the `Han.init` with the instance as
+ // well (for future usage).
+ } else if ( initContext = document.querySelector( '.han-init-context' )) {
+ Han.init = Han( initContext ).render()
+ }
+})
+
+// Expose to global namespace
+if ( typeof noGlobalNS === 'undefined' || noGlobalNS === false ) {
+ window.Han = Han
+}
+
+return Han
+});
+
diff --git a/lib/Han/dist/han.min.css b/lib/Han/dist/han.min.css
new file mode 100644
index 00000000..29c753ea
--- /dev/null
+++ b/lib/Han/dist/han.min.css
@@ -0,0 +1,6 @@
+@charset "UTF-8";
+
+/*! 漢字標準格式 v3.3.0 | MIT License | css.hanzi.co */
+/*! Han.css: the CSS typography framework optimised for Hanzi */
+
+progress,sub,sup{vertical-align:baseline}button,hr,input,select{overflow:visible}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{cursor:pointer}[disabled]{cursor:default}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button:-moz-focusring,input:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}@font-face{font-family:"Han Heiti";src:local("Hiragino Sans GB"),local("Lantinghei TC Extralight"),local("Lantinghei SC Extralight"),local(FZLTXHB--B51-0),local(FZLTZHK--GBK1-0),local("Pingfang SC Light"),local("Pingfang TC Light"),local("Pingfang-SC-Light"),local("Pingfang-TC-Light"),local("Pingfang SC"),local("Pingfang TC"),local("Heiti SC Light"),local(STHeitiSC-Light),local("Heiti SC"),local("Heiti TC Light"),local(STHeitiTC-Light),local("Heiti TC"),local("Microsoft Yahei"),local("Microsoft Jhenghei"),local("Noto Sans CJK KR"),local("Noto Sans CJK JP"),local("Noto Sans CJK SC"),local("Noto Sans CJK TC"),local("Source Han Sans K"),local("Source Han Sans KR"),local("Source Han Sans JP"),local("Source Han Sans CN"),local("Source Han Sans HK"),local("Source Han Sans TW"),local("Source Han Sans TWHK"),local("Droid Sans Fallback")}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Heiti";src:local(YuGothic),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro")}@font-face{font-family:"Han Heiti CNS";src:local("Pingfang TC Light"),local("Pingfang-TC-Light"),local("Pingfang TC"),local("Heiti TC Light"),local(STHeitiTC-Light),local("Heiti TC"),local("Lantinghei TC Extralight"),local(FZLTXHB--B51-0),local("Lantinghei TC"),local("Microsoft Jhenghei"),local("Microsoft Yahei"),local("Noto Sans CJK TC"),local("Source Han Sans TC"),local("Source Han Sans TW"),local("Source Han Sans TWHK"),local("Source Han Sans HK"),local("Droid Sans Fallback")}@font-face{font-family:"Han Heiti GB";src:local("Hiragino Sans GB"),local("Pingfang SC Light"),local("Pingfang-SC-Light"),local("Pingfang SC"),local("Lantinghei SC Extralight"),local(FZLTXHK--GBK1-0),local("Lantinghei SC"),local("Heiti SC Light"),local(STHeitiSC-Light),local("Heiti SC"),local("Microsoft Yahei"),local("Noto Sans CJK SC"),local("Source Han Sans SC"),local("Source Han Sans CN"),local("Droid Sans Fallback")}@font-face{font-family:"Han Heiti";font-weight:600;src:local("Hiragino Sans GB W6"),local(HiraginoSansGB-W6),local("Lantinghei TC Demibold"),local("Lantinghei SC Demibold"),local(FZLTZHB--B51-0),local(FZLTZHK--GBK1-0),local("Pingfang-SC-Semibold"),local("Pingfang-TC-Semibold"),local("Heiti SC Medium"),local("STHeitiSC-Medium"),local("Heiti SC"),local("Heiti TC Medium"),local("STHeitiTC-Medium"),local("Heiti TC"),local("Microsoft Yahei Bold"),local("Microsoft Jhenghei Bold"),local(MicrosoftYahei-Bold),local(MicrosoftJhengHeiBold),local("Microsoft Yahei"),local("Microsoft Jhenghei"),local("Noto Sans CJK KR Bold"),local("Noto Sans CJK JP Bold"),local("Noto Sans CJK SC Bold"),local("Noto Sans CJK TC Bold"),local(NotoSansCJKkr-Bold),local(NotoSansCJKjp-Bold),local(NotoSansCJKsc-Bold),local(NotoSansCJKtc-Bold),local("Source Han Sans K Bold"),local(SourceHanSansK-Bold),local("Source Han Sans K"),local("Source Han Sans KR Bold"),local("Source Han Sans JP Bold"),local("Source Han Sans CN Bold"),local("Source Han Sans HK Bold"),local("Source Han Sans TW Bold"),local("Source Han Sans TWHK Bold"),local("SourceHanSansKR-Bold"),local("SourceHanSansJP-Bold"),local("SourceHanSansCN-Bold"),local("SourceHanSansHK-Bold"),local("SourceHanSansTW-Bold"),local("SourceHanSansTWHK-Bold"),local("Source Han Sans KR"),local("Source Han Sans CN"),local("Source Han Sans HK"),local("Source Han Sans TW"),local("Source Han Sans TWHK")}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Heiti";font-weight:600;src:local("YuGothic Bold"),local("Hiragino Kaku Gothic ProN W6"),local("Hiragino Kaku Gothic Pro W6"),local(YuGo-Bold),local(HiraKakuProN-W6),local(HiraKakuPro-W6)}@font-face{font-family:"Han Heiti CNS";font-weight:600;src:local("Pingfang TC Semibold"),local("Pingfang-TC-Semibold"),local("Heiti TC Medium"),local("STHeitiTC-Medium"),local("Heiti TC"),local("Lantinghei TC Demibold"),local(FZLTXHB--B51-0),local("Microsoft Jhenghei Bold"),local(MicrosoftJhengHeiBold),local("Microsoft Jhenghei"),local("Microsoft Yahei Bold"),local(MicrosoftYahei-Bold),local("Noto Sans CJK TC Bold"),local(NotoSansCJKtc-Bold),local("Noto Sans CJK TC"),local("Source Han Sans TC Bold"),local("SourceHanSansTC-Bold"),local("Source Han Sans TC"),local("Source Han Sans TW Bold"),local("SourceHanSans-TW"),local("Source Han Sans TW"),local("Source Han Sans TWHK Bold"),local("SourceHanSans-TWHK"),local("Source Han Sans TWHK"),local("Source Han Sans HK"),local("SourceHanSans-HK"),local("Source Han Sans HK")}@font-face{font-family:"Han Heiti GB";font-weight:600;src:local("Hiragino Sans GB W6"),local(HiraginoSansGB-W6),local("Pingfang SC Semibold"),local("Pingfang-SC-Semibold"),local("Lantinghei SC Demibold"),local(FZLTZHK--GBK1-0),local("Heiti SC Medium"),local("STHeitiSC-Medium"),local("Heiti SC"),local("Microsoft Yahei Bold"),local(MicrosoftYahei-Bold),local("Microsoft Yahei"),local("Noto Sans CJK SC Bold"),local(NotoSansCJKsc-Bold),local("Noto Sans CJK SC"),local("Source Han Sans SC Bold"),local("SourceHanSansSC-Bold"),local("Source Han Sans CN Bold"),local("SourceHanSansCN-Bold"),local("Source Han Sans SC"),local("Source Han Sans CN")}@font-face{font-family:"Han Songti";src:local("Songti SC Regular"),local(STSongti-SC-Regular),local("Songti SC"),local("Songti TC Regular"),local(STSongti-TC-Regular),local("Songti TC"),local(STSong),local("Lisong Pro"),local(SimSun),local(PMingLiU)}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Songti";src:local(YuMincho),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("MS Mincho")}@font-face{font-family:"Han Songti CNS";src:local("Songti TC Regular"),local(STSongti-TC-Regular),local("Songti TC"),local("Lisong Pro"),local("Songti SC Regular"),local(STSongti-SC-Regular),local("Songti SC"),local(STSong),local(PMingLiU),local(SimSun)}@font-face{font-family:"Han Songti GB";src:local("Songti SC Regular"),local(STSongti-SC-Regular),local("Songti SC"),local(STSong),local(SimSun),local(PMingLiU)}@font-face{font-family:"Han Songti";font-weight:600;src:local("STSongti SC Bold"),local("STSongti TC Bold"),local(STSongti-SC-Bold),local(STSongti-TC-Bold),local("STSongti SC"),local("STSongti TC")}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Songti";font-weight:600;src:local("YuMincho Demibold"),local("Hiragino Mincho ProN W6"),local("Hiragino Mincho Pro W6"),local(YuMin-Demibold),local(HiraMinProN-W6),local(HiraMinPro-W6),local(YuMincho),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro")}@font-face{font-family:"Han Songti CNS";font-weight:600;src:local("STSongti TC Bold"),local("STSongti SC Bold"),local(STSongti-TC-Bold),local(STSongti-SC-Bold),local("STSongti TC"),local("STSongti SC")}@font-face{font-family:"Han Songti GB";font-weight:600;src:local("STSongti SC Bold"),local(STSongti-SC-Bold),local("STSongti SC")}@font-face{font-family:cursive;src:local("Kaiti TC Regular"),local(STKaiTi-TC-Regular),local("Kaiti TC"),local("Kaiti SC"),local(STKaiti),local(BiauKai),local("標楷體"),local(DFKaiShu-SB-Estd-BF),local(Kaiti),local(DFKai-SB)}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Kaiti";src:local("Kaiti TC Regular"),local(STKaiTi-TC-Regular),local("Kaiti TC"),local("Kaiti SC"),local(STKaiti),local(BiauKai),local("標楷體"),local(DFKaiShu-SB-Estd-BF),local(Kaiti),local(DFKai-SB)}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Kaiti CNS";src:local(BiauKai),local("標楷體"),local(DFKaiShu-SB-Estd-BF),local("Kaiti TC Regular"),local(STKaiTi-TC-Regular),local("Kaiti TC")}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Kaiti GB";src:local("Kaiti SC Regular"),local(STKaiTi-SC-Regular),local("Kaiti SC"),local(STKaiti),local(Kai),local(Kaiti),local(DFKai-SB)}@font-face{font-family:cursive;font-weight:600;src:local("Kaiti TC Bold"),local(STKaiTi-TC-Bold),local("Kaiti SC Bold"),local(STKaiti-SC-Bold),local("Kaiti TC"),local("Kaiti SC")}@font-face{font-family:"Han Kaiti";font-weight:600;src:local("Kaiti TC Bold"),local(STKaiTi-TC-Bold),local("Kaiti SC Bold"),local(STKaiti-SC-Bold),local("Kaiti TC"),local("Kaiti SC")}@font-face{font-family:"Han Kaiti CNS";font-weight:600;src:local("Kaiti TC Bold"),local(STKaiTi-TC-Bold),local("Kaiti TC")}@font-face{font-family:"Han Kaiti GB";font-weight:600;src:local("Kaiti SC Bold"),local(STKaiti-SC-Bold)}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Fangsong";src:local(STFangsong),local(FangSong)}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Fangsong CNS";src:local(STFangsong),local(FangSong)}@font-face{unicode-range:U+4E00-9FFF,U+3400-4DB5,U+20000-2A6D6,U+2A700-2B734,U+2B740-2B81D,U+FA0E-FA0F,U+FA11,U+FA13-FA14,U+FA1F,U+FA21,U+FA23,U+FA24,U+FA27-FA29,U+3040-309F,U+30A0-30FF,U+3099-309E,U+FF66-FF9F,U+3007,U+31C0-31E3,U+2F00-2FD5,U+2E80-2EF3;font-family:"Han Fangsong GB";src:local(STFangsong),local(FangSong)}@font-face{font-family:"Biaodian Sans";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local("MS Gothic"),local(SimSun);unicode-range:U+FF0E}@font-face{font-family:"Biaodian Serif";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSong),local(SimSun);unicode-range:U+FF0E}@font-face{font-family:"Biaodian Pro Sans";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local("MS Gothic"),local(SimSun);unicode-range:U+FF0E}@font-face{font-family:"Biaodian Pro Serif";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSong),local(SimSun);unicode-range:U+FF0E}@font-face{font-family:"Biaodian Pro Sans CNS";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local("MS Gothic"),local(SimSun);unicode-range:U+FF0E}@font-face{font-family:"Biaodian Pro Serif CNS";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSong),local(SimSun);unicode-range:U+FF0E}@font-face{font-family:"Biaodian Pro Sans GB";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local("MS Gothic"),local(SimSun);unicode-range:U+FF0E}@font-face{font-family:"Biaodian Pro Serif GB";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSong),local(SimSun);unicode-range:U+FF0E}@font-face{font-family:"Biaodian Sans";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local(SimSun);unicode-range:U+00B7}@font-face{font-family:"Biaodian Serif";src:local("Songti SC"),local(STSong),local("Heiti SC"),local(SimSun);unicode-range:U+00B7}@font-face{font-family:"Biaodian Pro Sans";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local(SimSun);unicode-range:U+00B7}@font-face{font-family:"Biaodian Pro Serif";src:local("Songti SC"),local(STSong),local("Heiti SC"),local(SimSun);unicode-range:U+00B7}@font-face{font-family:"Biaodian Pro Sans CNS";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local(SimSun);unicode-range:U+00B7}@font-face{font-family:"Biaodian Pro Serif CNS";src:local("Songti SC"),local(STSong),local("Heiti SC"),local(SimSun);unicode-range:U+00B7}@font-face{font-family:"Biaodian Pro Sans GB";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local(SimSun);unicode-range:U+00B7}@font-face{font-family:"Biaodian Pro Serif GB";src:local("Songti SC"),local(STSong),local("Heiti SC"),local(SimSun);unicode-range:U+00B7}@font-face{font-family:"Biaodian Sans";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Sans GB"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("Microsoft Yahei"),local(SimSun);unicode-range:U+2014}@font-face{font-family:"Biaodian Serif";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSong),local("Microsoft Yahei"),local(SimSun);unicode-range:U+2014}@font-face{font-family:"Yakumono Sans";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("Arial Unicode MS"),local("MS Gothic");unicode-range:U+2014}@font-face{font-family:"Yakumono Serif";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("MS Mincho"),local("Microsoft Yahei");unicode-range:U+2014}@font-face{font-family:"Biaodian Pro Sans";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Sans GB"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("Microsoft Yahei"),local(SimSun);unicode-range:U+2014}@font-face{font-family:"Biaodian Pro Serif";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSong),local("Microsoft Yahei"),local(SimSun);unicode-range:U+2014}@font-face{font-family:"Biaodian Pro Sans CNS";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Sans GB"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("Microsoft Yahei"),local(SimSun);unicode-range:U+2014}@font-face{font-family:"Biaodian Pro Serif CNS";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSong),local("Microsoft Yahei"),local(SimSun);unicode-range:U+2014}@font-face{font-family:"Biaodian Pro Sans GB";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Sans GB"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("Microsoft Yahei"),local(SimSun);unicode-range:U+2014}@font-face{font-family:"Biaodian Pro Serif GB";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSong),local("Microsoft Yahei"),local(SimSun);unicode-range:U+2014}@font-face{font-family:"Biaodian Sans";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Sans GB"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local(Meiryo),local("MS Gothic"),local(SimSun),local(PMingLiU);unicode-range:U+2026}@font-face{font-family:"Biaodian Serif";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local("MS Mincho"),local(SimSun),local(PMingLiU);unicode-range:U+2026}@font-face{font-family:"Yakumono Sans";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local(Meiryo),local("MS Gothic");unicode-range:U+2026}@font-face{font-family:"Yakumono Serif";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("MS Mincho");unicode-range:U+2026}@font-face{font-family:"Biaodian Pro Sans";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Sans GB"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local(SimSun),local(PMingLiU);unicode-range:U+2026}@font-face{font-family:"Biaodian Pro Serif";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(SimSun),local(PMingLiU);unicode-range:U+2026}@font-face{font-family:"Biaodian Pro Sans CNS";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Sans GB"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local(SimSun),local(PMingLiU);unicode-range:U+2026}@font-face{font-family:"Biaodian Pro Serif CNS";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSongti),local(SimSun),local(PMingLiU);unicode-range:U+2026}@font-face{font-family:"Biaodian Pro Sans GB";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Sans GB"),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local(SimSun),local(PMingLiU);unicode-range:U+2026}@font-face{font-family:"Biaodian Pro Serif GB";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype"),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Songti SC"),local(STSongti),local(SimSun),local(PMingLiU);unicode-range:U+2026}@font-face{font-family:"Biaodian Pro Sans GB";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local(SimSun),local(PMingLiU);unicode-range:U+201C-201D,U+2018-2019}@font-face{font-family:"Biaodian Pro Sans GB";font-weight:700;src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local(SimSun),local(PMingLiU);unicode-range:U+201C-201D,U+2018-2019}@font-face{font-family:"Biaodian Pro Serif GB";src:local("Lisong Pro"),local("Heiti SC"),local(STHeiti),local(SimSun),local(PMingLiU);unicode-range:U+201C-201D,U+2018-2019}@font-face{font-family:"Biaodian Pro Serif GB";font-weight:700;src:local("Lisong Pro"),local("Heiti SC"),local(STHeiti),local(SimSun),local(PMingLiU);unicode-range:U+201C-201D,U+2018-2019}@font-face{font-family:"Biaodian Sans";src:local(Georgia),local("Times New Roman"),local(Arial),local("Droid Sans Fallback");unicode-range:U+25CF}@font-face{font-family:"Biaodian Serif";src:local(Georgia),local("Times New Roman"),local(Arial),local("Droid Sans Fallback");unicode-range:U+25CF}@font-face{font-family:"Biaodian Pro Sans";src:local(Georgia),local("Times New Roman"),local(Arial),local("Droid Sans Fallback");unicode-range:U+25CF}@font-face{font-family:"Biaodian Pro Serif";src:local(Georgia),local("Times New Roman"),local(Arial),local("Droid Sans Fallback");unicode-range:U+25CF}@font-face{font-family:"Biaodian Pro Sans CNS";src:local(Georgia),local("Times New Roman"),local(Arial),local("Droid Sans Fallback");unicode-range:U+25CF}@font-face{font-family:"Biaodian Pro Serif CNS";src:local(Georgia),local("Times New Roman"),local(Arial),local("Droid Sans Fallback");unicode-range:U+25CF}@font-face{font-family:"Biaodian Pro Sans GB";src:local(Georgia),local("Times New Roman"),local(Arial),local("Droid Sans Fallback");unicode-range:U+25CF}@font-face{font-family:"Biaodian Pro Serif GB";src:local(Georgia),local("Times New Roman"),local(Arial),local("Droid Sans Fallback");unicode-range:U+25CF}@font-face{font-family:"Biaodian Pro Sans";src:local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("MS Gothic");unicode-range:U+3002,U+FF0C,U+3001,U+FF1B,U+FF1A,U+FF1F,U+FF01,U+FF0D,U+FF0F,U+FF3C}@font-face{font-family:"Biaodian Pro Serif";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("MS Mincho");unicode-range:U+3002,U+FF0C,U+3001,U+FF1B,U+FF1A,U+FF1F,U+FF01,U+FF0D,U+FF0F,U+FF3C}@font-face{font-family:"Biaodian Pro Sans CNS";src:local("Heiti TC"),local("Lihei Pro"),local("Microsoft Jhenghei"),local(PMingLiU);unicode-range:U+3002,U+FF0C,U+3001}@font-face{font-family:"Biaodian Pro Sans CNS";src:local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("Heiti TC"),local("Lihei Pro"),local("Microsoft Jhenghei"),local(PMingLiU),local("MS Gothic");unicode-range:U+FF1B,U+FF1A,U+FF1F,U+FF01}@font-face{font-family:"Biaodian Pro Sans CNS";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("MS Mincho");unicode-range:U+FF0D,U+FF0F,U+FF3C}@font-face{font-family:"Biaodian Pro Serif CNS";src:local(STSongti-TC-Regular),local("Lisong Pro"),local("Heiti TC"),local(PMingLiU);unicode-range:U+3002,U+FF0C,U+3001}@font-face{font-family:"Biaodian Pro Serif CNS";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local(PMingLiU),local("MS Mincho");unicode-range:U+FF1B,U+FF1A,U+FF1F,U+FF01,U+FF0D,U+FF0F,U+FF3C}@font-face{font-family:"Biaodian Pro Sans GB";src:local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local(SimSun),local("MS Gothic");unicode-range:U+3002,U+FF0C,U+3001,U+FF1B,U+FF1A,U+FF1F,U+FF01,U+FF0D,U+FF0F,U+FF3C}@font-face{font-family:"Biaodian Pro Serif GB";src:local("Songti SC"),local(STSongti),local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Hiragino Sans GB"),local("Heiti SC"),local(STHeiti),local(SimSun),local("MS Mincho");unicode-range:U+3002,U+FF0C,U+3001,U+FF1B,U+FF1A,U+FF1F,U+FF01}@font-face{font-family:"Biaodian Pro Serif GB";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local(PMingLiU),local("MS Mincho");unicode-range:U+FF0D,U+FF0F,U+FF3C}@font-face{font-family:"Biaodian Pro Sans";src:local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("Yu Gothic"),local(YuGothic),local(SimSun),local(PMingLiU);unicode-range:U+300C-300F,U+300A-300B,U+3008-3009,U+FF08-FF09,U+3014-3015}@font-face{font-family:"Biaodian Pro Serif";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Yu Mincho"),local(YuMincho),local(SimSun),local(PMingLiU);unicode-range:U+300C-300F,U+300A-300B,U+3008-3009,U+FF08-FF09,U+3014-3015}@font-face{font-family:"Biaodian Pro Sans CNS";src:local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("Yu Gothic"),local(YuGothic),local(SimSun),local(PMingLiU);unicode-range:U+300C-300F,U+300A-300B,U+3008-3009,U+FF08-FF09,U+3014-3015}@font-face{font-family:"Biaodian Pro Serif CNS";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Yu Mincho"),local(YuMincho),local(SimSun),local(PMingLiU);unicode-range:U+300C-300F,U+300A-300B,U+3008-3009,U+FF08-FF09,U+3014-3015}@font-face{font-family:"Biaodian Pro Sans GB";src:local("Hiragino Kaku Gothic ProN"),local("Hiragino Kaku Gothic Pro"),local("Yu Gothic"),local(YuGothic),local(SimSun),local(PMingLiU);unicode-range:U+300C-300F,U+300A-300B,U+3008-3009,U+FF08-FF09,U+3014-3015}@font-face{font-family:"Biaodian Pro Serif GB";src:local("Hiragino Mincho ProN"),local("Hiragino Mincho Pro"),local("Yu Mincho"),local(YuMincho),local(SimSun),local(PMingLiU);unicode-range:U+300C-300F,U+300A-300B,U+3008-3009,U+FF08-FF09,U+3014-3015}@font-face{font-family:"Biaodian Basic";src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Biaodian Basic";font-weight:700;src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Biaodian Sans";font-weight:700;src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Biaodian Pro Sans";font-weight:700;src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Biaodian Pro Sans";font-weight:700;src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Biaodian Pro Sans CNS";font-weight:700;src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Biaodian Pro Sans GB";font-weight:700;src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Biaodian Pro Serif";font-weight:700;src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Biaodian Pro Serif CNS";font-weight:700;src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Biaodian Pro Serif GB";font-weight:700;src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+2014,U+2026,U+00B7}@font-face{font-family:"Latin Italic Serif";src:local("Georgia Italic"),local("Times New Roman Italic"),local(Georgia-Italic),local(TimesNewRomanPS-ItalicMT),local(Times-Italic)}@font-face{font-family:"Latin Italic Serif";font-weight:700;src:local("Georgia Bold Italic"),local("Times New Roman Bold Italic"),local(Georgia-BoldItalic),local(TimesNewRomanPS-BoldItalicMT),local(Times-Italic)}@font-face{font-family:"Latin Italic Sans";src:local("Helvetica Neue Italic"),local("Helvetica Oblique"),local("Arial Italic"),local(HelveticaNeue-Italic),local(Helvetica-LightOblique),local(Arial-ItalicMT)}@font-face{font-family:"Latin Italic Sans";font-weight:700;src:local("Helvetica Neue Bold Italic"),local("Helvetica Bold Oblique"),local("Arial Bold Italic"),local(HelveticaNeue-BoldItalic),local(Helvetica-BoldOblique),local(Arial-BoldItalicMT)}@font-face{unicode-range:U+0030-0039;font-family:"Numeral TF Sans";src:local(Skia),local("Neutraface 2 Text"),local(Candara),local(Corbel)}@font-face{unicode-range:U+0030-0039;font-family:"Numeral TF Serif";src:local(Georgia),local("Hoefler Text"),local("Big Caslon")}@font-face{unicode-range:U+0030-0039;font-family:"Numeral TF Italic Serif";src:local("Georgia Italic"),local("Hoefler Text Italic"),local(Georgia-Italic),local(HoeflerText-Italic)}@font-face{unicode-range:U+0030-0039;font-family:"Numeral LF Sans";src:local("Helvetica Neue"),local(Helvetica),local(Arial)}@font-face{unicode-range:U+0030-0039;font-family:"Numeral LF Italic Sans";src:local("Helvetica Neue Italic"),local("Helvetica Oblique"),local("Arial Italic"),local(HelveticaNeue-Italic),local(Helvetica-LightOblique),local(Arial-ItalicMT)}@font-face{unicode-range:U+0030-0039;font-family:"Numeral LF Italic Sans";font-weight:700;src:local("Helvetica Neue Bold Italic"),local("Helvetica Bold Oblique"),local("Arial Bold Italic"),local(HelveticaNeue-BoldItalic),local(Helvetica-BoldOblique),local(Arial-BoldItalicMT)}@font-face{unicode-range:U+0030-0039;font-family:"Numeral LF Serif";src:local(Palatino),local("Palatino Linotype"),local("Times New Roman")}@font-face{unicode-range:U+0030-0039;font-family:"Numeral LF Italic Serif";src:local("Palatino Italic"),local("Palatino Italic Linotype"),local("Times New Roman Italic"),local(Palatino-Italic),local(Palatino-Italic-Linotype),local(TimesNewRomanPS-ItalicMT)}@font-face{unicode-range:U+0030-0039;font-family:"Numeral LF Italic Serif";font-weight:700;src:local("Palatino Bold Italic"),local("Palatino Bold Italic Linotype"),local("Times New Roman Bold Italic"),local(Palatino-BoldItalic),local(Palatino-BoldItalic-Linotype),local(TimesNewRomanPS-BoldItalicMT)}@font-face{src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+3105-312D,U+31A0-31BA,U+02D9,U+02CA,U+02C5,U+02C7,U+02CB,U+02EA-02EB,U+0307,U+030D,U+0358,U+F31B4-F31B7,U+F0061,U+F0065,U+F0069,U+F006F,U+F0075;font-family:"Zhuyin Kaiti"}@font-face{unicode-range:U+3105-312D,U+31A0-31BA,U+02D9,U+02CA,U+02C5,U+02C7,U+02CB,U+02EA-02EB,U+0307,U+030D,U+0358,U+F31B4-F31B7,U+F0061,U+F0065,U+F0069,U+F006F,U+F0075;font-family:"Zhuyin Heiti";src:local("Hiragino Sans GB"),local("Heiti TC"),local("Microsoft Jhenghei"),url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype")}@font-face{font-family:"Zhuyin Heiti";src:local("Heiti TC"),local("Microsoft Jhenghei"),url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");unicode-range:U+3127}@font-face{src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");font-family:"Zhuyin Heiti";unicode-range:U+02D9,U+02CA,U+02C5,U+02C7,U+02CB,U+02EA-02EB,U+31B4,U+31B5,U+31B6,U+31B7,U+0307,U+030D,U+0358,U+F31B4-F31B7,U+F0061,U+F0065,U+F0069,U+F006F,U+F0075}@font-face{src:url(./font/han.woff2?v3.3.0) format("woff2"),url(./font/han.woff?v3.3.0) format("woff"),url(./font/han.otf?v3.3.0) format("opentype");font-family:"Romanization Sans";unicode-range:U+0307,U+030D,U+0358,U+F31B4-F31B7,U+F0061,U+F0065,U+F0069,U+F006F,U+F0075}article strong :lang(ja-Latn),article strong :lang(zh-Latn),article strong :not(:lang(zh)):not(:lang(ja)),article strong:lang(ja-Latn),article strong:lang(zh-Latn),article strong:not(:lang(zh)):not(:lang(ja)),html :lang(ja-Latn),html :lang(zh-Latn),html :not(:lang(zh)):not(:lang(ja)),html:lang(ja-Latn),html:lang(zh-Latn),html:not(:lang(zh)):not(:lang(ja)){font-family:"Helvetica Neue",Helvetica,Arial,"Han Heiti",sans-serif}[lang*=Hant],[lang=zh-TW],[lang=zh-HK],[lang^=zh],article strong:lang(zh),article strong:lang(zh-Hant),html:lang(zh),html:lang(zh-Hant){font-family:"Biaodian Pro Sans CNS","Helvetica Neue",Helvetica,Arial,"Zhuyin Heiti","Han Heiti",sans-serif}.no-unicoderange [lang*=Hant],.no-unicoderange [lang=zh-TW],.no-unicoderange [lang=zh-HK],.no-unicoderange [lang^=zh],.no-unicoderange article strong:lang(zh),.no-unicoderange article strong:lang(zh-Hant),html:lang(zh).no-unicoderange,html:lang(zh-Hant).no-unicoderange{font-family:"Helvetica Neue",Helvetica,Arial,"Han Heiti",sans-serif}[lang*=Hans],[lang=zh-CN],article strong:lang(zh-CN),article strong:lang(zh-Hans),html:lang(zh-CN),html:lang(zh-Hans){font-family:"Biaodian Pro Sans GB","Helvetica Neue",Helvetica,Arial,"Han Heiti GB",sans-serif}.no-unicoderange [lang*=Hans],.no-unicoderange [lang=zh-CN],.no-unicoderange article strong:lang(zh-CN),.no-unicoderange article strong:lang(zh-Hans),html:lang(zh-CN).no-unicoderange,html:lang(zh-Hans).no-unicoderange{font-family:"Helvetica Neue",Helvetica,Arial,"Han Heiti GB",sans-serif}[lang^=ja],article strong:lang(ja),html:lang(ja){font-family:"Yakumono Sans","Helvetica Neue",Helvetica,Arial,sans-serif}.no-unicoderange [lang^=ja],.no-unicoderange article strong:lang(ja),html:lang(ja).no-unicoderange{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}article blockquote i :lang(ja-Latn),article blockquote i :lang(zh-Latn),article blockquote i :not(:lang(zh)):not(:lang(ja)),article blockquote i:lang(ja-Latn),article blockquote i:lang(zh-Latn),article blockquote i:not(:lang(zh)):not(:lang(ja)),article blockquote var :lang(ja-Latn),article blockquote var :lang(zh-Latn),article blockquote var :not(:lang(zh)):not(:lang(ja)),article blockquote var:lang(ja-Latn),article blockquote var:lang(zh-Latn),article blockquote var:not(:lang(zh)):not(:lang(ja)){font-family:"Latin Italic Sans","Helvetica Neue",Helvetica,Arial,"Han Heiti",sans-serif}article blockquote i:lang(zh),article blockquote i:lang(zh-Hant),article blockquote var:lang(zh),article blockquote var:lang(zh-Hant){font-family:"Biaodian Pro Sans CNS","Latin Italic Sans","Helvetica Neue",Helvetica,Arial,"Zhuyin Heiti","Han Heiti",sans-serif}.no-unicoderange article blockquote i:lang(zh),.no-unicoderange article blockquote i:lang(zh-Hant),.no-unicoderange article blockquote var:lang(zh),.no-unicoderange article blockquote var:lang(zh-Hant){font-family:"Latin Italic Sans","Helvetica Neue",Helvetica,Arial,"Han Heiti",sans-serif}article blockquote i:lang(zh-CN),article blockquote i:lang(zh-Hans),article blockquote var:lang(zh-CN),article blockquote var:lang(zh-Hans){font-family:"Biaodian Pro Sans GB","Latin Italic Sans","Helvetica Neue",Helvetica,Arial,"Han Heiti GB",sans-serif}.no-unicoderange article blockquote i:lang(zh-CN),.no-unicoderange article blockquote i:lang(zh-Hans),.no-unicoderange article blockquote var:lang(zh-CN),.no-unicoderange article blockquote var:lang(zh-Hans){font-family:"Latin Italic Sans","Helvetica Neue",Helvetica,Arial,"Han Heiti GB",sans-serif}article blockquote i:lang(ja),article blockquote var:lang(ja){font-family:"Yakumono Sans","Latin Italic Sans","Helvetica Neue",Helvetica,Arial,sans-serif}.no-unicoderange article blockquote i:lang(ja),.no-unicoderange article blockquote var:lang(ja){font-family:"Latin Italic Sans","Helvetica Neue",Helvetica,Arial,sans-serif}article figure blockquote :lang(ja-Latn),article figure blockquote :lang(zh-Latn),article figure blockquote :not(:lang(zh)):not(:lang(ja)),article figure blockquote:lang(ja-Latn),article figure blockquote:lang(zh-Latn),article figure blockquote:not(:lang(zh)):not(:lang(ja)){font-family:Georgia,"Times New Roman","Han Songti",cursive,serif}article figure blockquote:lang(zh),article figure blockquote:lang(zh-Hant){font-family:"Biaodian Pro Serif CNS","Numeral LF Serif",Georgia,"Times New Roman","Zhuyin Kaiti","Han Songti",serif}.no-unicoderange article figure blockquote:lang(zh),.no-unicoderange article figure blockquote:lang(zh-Hant){font-family:"Numeral LF Serif",Georgia,"Times New Roman","Han Songti",serif}article figure blockquote:lang(zh-CN),article figure blockquote:lang(zh-Hans){font-family:"Biaodian Pro Serif GB","Numeral LF Serif",Georgia,"Times New Roman","Han Songti GB",serif}.no-unicoderange article figure blockquote:lang(zh-CN),.no-unicoderange article figure blockquote:lang(zh-Hans){font-family:"Numeral LF Serif",Georgia,"Times New Roman","Han Songti GB",serif}article figure blockquote:lang(ja){font-family:"Yakumono Serif","Numeral LF Serif",Georgia,"Times New Roman",serif}.no-unicoderange article figure blockquote:lang(ja){font-family:"Numeral LF Serif",Georgia,"Times New Roman",serif}article blockquote :lang(ja-Latn),article blockquote :lang(zh-Latn),article blockquote :not(:lang(zh)):not(:lang(ja)),article blockquote:lang(ja-Latn),article blockquote:lang(zh-Latn),article blockquote:not(:lang(zh)):not(:lang(ja)){font-family:Georgia,"Times New Roman","Han Kaiti",cursive,serif}article blockquote:lang(zh),article blockquote:lang(zh-Hant){font-family:"Biaodian Pro Serif CNS","Numeral LF Serif",Georgia,"Times New Roman","Zhuyin Kaiti","Han Kaiti",cursive,serif}.no-unicoderange article blockquote:lang(zh),.no-unicoderange article blockquote:lang(zh-Hant){font-family:"Numeral LF Serif",Georgia,"Times New Roman","Han Kaiti",cursive,serif}article blockquote:lang(zh-CN),article blockquote:lang(zh-Hans){font-family:"Biaodian Pro Serif GB","Numeral LF Serif",Georgia,"Times New Roman","Han Kaiti GB",cursive,serif}.no-unicoderange article blockquote:lang(zh-CN),.no-unicoderange article blockquote:lang(zh-Hans){font-family:"Numeral LF Serif",Georgia,"Times New Roman","Han Kaiti GB",cursive,serif}article blockquote:lang(ja){font-family:"Yakumono Serif","Numeral LF Serif",Georgia,"Times New Roman",cursive,serif}.no-unicoderange article blockquote:lang(ja){font-family:"Numeral LF Serif",Georgia,"Times New Roman",cursive,serif}i :lang(ja-Latn),i :lang(zh-Latn),i :not(:lang(zh)):not(:lang(ja)),i:lang(ja-Latn),i:lang(zh-Latn),i:not(:lang(zh)):not(:lang(ja)),var :lang(ja-Latn),var :lang(zh-Latn),var :not(:lang(zh)):not(:lang(ja)),var:lang(ja-Latn),var:lang(zh-Latn),var:not(:lang(zh)):not(:lang(ja)){font-family:"Latin Italic Serif",Georgia,"Times New Roman","Han Kaiti",cursive,serif}i:lang(zh),i:lang(zh-Hant),var:lang(zh),var:lang(zh-Hant){font-family:"Biaodian Pro Serif CNS","Numeral LF Italic Serif","Latin Italic Serif",Georgia,"Times New Roman","Zhuyin Kaiti","Han Kaiti",cursive,serif}.no-unicoderange i:lang(zh),.no-unicoderange i:lang(zh-Hant),.no-unicoderange var:lang(zh),.no-unicoderange var:lang(zh-Hant){font-family:"Numeral LF Italic Serif","Latin Italic Serif",Georgia,"Times New Roman","Han Kaiti",cursive,serif}i:lang(zh-CN),i:lang(zh-Hans),var:lang(zh-CN),var:lang(zh-Hans){font-family:"Biaodian Pro Serif GB","Numeral LF Italic Serif","Latin Italic Serif",Georgia,"Times New Roman","Han Kaiti GB",cursive,serif}.no-unicoderange i:lang(zh-CN),.no-unicoderange i:lang(zh-Hans),.no-unicoderange var:lang(zh-CN),.no-unicoderange var:lang(zh-Hans){font-family:"Numeral LF Italic Serif","Latin Italic Serif",Georgia,"Times New Roman","Han Kaiti GB",cursive,serif}i:lang(ja),var:lang(ja){font-family:"Yakumono Serif","Numeral LF Italic Serif","Latin Italic Serif",Georgia,"Times New Roman",cursive,serif}.no-unicoderange i:lang(ja),.no-unicoderange var:lang(ja){font-family:"Numeral LF Italic Serif","Latin Italic Serif",Georgia,"Times New Roman",cursive,serif}code :lang(ja-Latn),code :lang(zh-Latn),code :not(:lang(zh)):not(:lang(ja)),code:lang(ja-Latn),code:lang(zh-Latn),code:not(:lang(zh)):not(:lang(ja)),kbd :lang(ja-Latn),kbd :lang(zh-Latn),kbd :not(:lang(zh)):not(:lang(ja)),kbd:lang(ja-Latn),kbd:lang(zh-Latn),kbd:not(:lang(zh)):not(:lang(ja)),pre :lang(ja-Latn),pre :lang(zh-Latn),pre :not(:lang(zh)):not(:lang(ja)),pre:lang(ja-Latn),pre:lang(zh-Latn),pre:not(:lang(zh)):not(:lang(ja)),samp :lang(ja-Latn),samp :lang(zh-Latn),samp :not(:lang(zh)):not(:lang(ja)),samp:lang(ja-Latn),samp:lang(zh-Latn),samp:not(:lang(zh)):not(:lang(ja)){font-family:Menlo,Consolas,Courier,"Han Heiti",monospace,monospace,sans-serif}code:lang(zh),code:lang(zh-Hant),kbd:lang(zh),kbd:lang(zh-Hant),pre:lang(zh),pre:lang(zh-Hant),samp:lang(zh),samp:lang(zh-Hant){font-family:"Biaodian Pro Sans CNS",Menlo,Consolas,Courier,"Zhuyin Heiti","Han Heiti",monospace,monospace,sans-serif}.no-unicoderange code:lang(zh),.no-unicoderange code:lang(zh-Hant),.no-unicoderange kbd:lang(zh),.no-unicoderange kbd:lang(zh-Hant),.no-unicoderange pre:lang(zh),.no-unicoderange pre:lang(zh-Hant),.no-unicoderange samp:lang(zh),.no-unicoderange samp:lang(zh-Hant){font-family:Menlo,Consolas,Courier,"Han Heiti",monospace,monospace,sans-serif}code:lang(zh-CN),code:lang(zh-Hans),kbd:lang(zh-CN),kbd:lang(zh-Hans),pre:lang(zh-CN),pre:lang(zh-Hans),samp:lang(zh-CN),samp:lang(zh-Hans){font-family:"Biaodian Pro Sans GB",Menlo,Consolas,Courier,"Han Heiti GB",monospace,monospace,sans-serif}.no-unicoderange code:lang(zh-CN),.no-unicoderange code:lang(zh-Hans),.no-unicoderange kbd:lang(zh-CN),.no-unicoderange kbd:lang(zh-Hans),.no-unicoderange pre:lang(zh-CN),.no-unicoderange pre:lang(zh-Hans),.no-unicoderange samp:lang(zh-CN),.no-unicoderange samp:lang(zh-Hans){font-family:Menlo,Consolas,Courier,"Han Heiti GB",monospace,monospace,sans-serif}code:lang(ja),kbd:lang(ja),pre:lang(ja),samp:lang(ja){font-family:"Yakumono Sans",Menlo,Consolas,Courier,monospace,monospace,sans-serif}.no-unicoderange code:lang(ja),.no-unicoderange kbd:lang(ja),.no-unicoderange pre:lang(ja),.no-unicoderange samp:lang(ja){font-family:Menlo,Consolas,Courier,monospace,monospace,sans-serif}.no-unicoderange h-char.bd-liga,.no-unicoderange h-char[unicode=b7],h-ruby [annotation] rt,h-ruby h-zhuyin,h-ruby h-zhuyin h-diao,h-ruby.romanization rt,html,ruby [annotation] rt,ruby h-zhuyin,ruby h-zhuyin h-diao,ruby.romanization rt{-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga";-webkit-font-feature-settings:"liga";font-feature-settings:"liga"}[lang*=Hant],[lang*=Hans],[lang=zh-TW],[lang=zh-HK],[lang=zh-CN],[lang^=zh],article blockquote i,article blockquote var,article strong,code,html,kbd,pre,samp{-moz-font-feature-settings:"liga=1, locl=0";-ms-font-feature-settings:"liga","locl" 0;-webkit-font-feature-settings:"liga","locl" 0;font-feature-settings:"liga","locl" 0}.no-unicoderange h-char.bd-cop:lang(zh-HK),.no-unicoderange h-char.bd-cop:lang(zh-Hant),.no-unicoderange h-char.bd-cop:lang(zh-TW){font-family:-apple-system,"Han Heiti CNS"}.no-unicoderange h-char.bd-liga,.no-unicoderange h-char[unicode=b7]{font-family:"Biaodian Basic","Han Heiti"}.no-unicoderange h-char[unicode="2018"]:lang(zh-CN),.no-unicoderange h-char[unicode="2018"]:lang(zh-Hans),.no-unicoderange h-char[unicode="2019"]:lang(zh-CN),.no-unicoderange h-char[unicode="2019"]:lang(zh-Hans),.no-unicoderange h-char[unicode="201c"]:lang(zh-CN),.no-unicoderange h-char[unicode="201c"]:lang(zh-Hans),.no-unicoderange h-char[unicode="201d"]:lang(zh-CN),.no-unicoderange h-char[unicode="201d"]:lang(zh-Hans){font-family:"Han Heiti GB"}i,var{font-style:inherit}.no-unicoderange h-ruby h-zhuyin,.no-unicoderange h-ruby h-zhuyin h-diao,.no-unicoderange ruby h-zhuyin,.no-unicoderange ruby h-zhuyin h-diao,h-ruby h-diao,ruby h-diao{font-family:"Zhuyin Kaiti",cursive,serif}h-ruby [annotation] rt,h-ruby.romanization rt,ruby [annotation] rt,ruby.romanization rt{font-family:"Romanization Sans","Helvetica Neue",Helvetica,Arial,"Han Heiti",sans-serif}
\ No newline at end of file
diff --git a/lib/Han/dist/han.min.js b/lib/Han/dist/han.min.js
new file mode 100644
index 00000000..a557ad3e
--- /dev/null
+++ b/lib/Han/dist/han.min.js
@@ -0,0 +1,5 @@
+/*! 漢字標準格式 v3.3.0 | MIT License | css.hanzi.co */
+/*! Han.css: the CSS typography framework optimised for Hanzi */
+
+void function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=b(a,!0):"function"==typeof define&&define.amd?define(function(){return b(a,!0)}):b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";function c(a){return"function"==typeof a||a instanceof Element?a:void 0}function d(a){var b=0===a.index&&a.isEnd?"biaodian cjk":"biaodian cjk portion "+(0===a.index?"is-first":a.isEnd?"is-end":"is-inner"),c=S.create("h-char-group",b);return c.innerHTML=a.text,c}function e(a){var b=S.create("div"),c=a.charCodeAt(0).toString(16);return b.innerHTML=''+a+" ",b.firstChild}function f(a){return a.match(R["char"].biaodian.open)?"bd-open":a.match(R["char"].biaodian.close)?"bd-close bd-end":a.match(R["char"].biaodian.end)?/(?:\u3001|\u3002|\uff0c)/i.test(a)?"bd-end bd-cop":"bd-end":a.match(new RegExp(Q.biaodian.liga))?"bd-liga":a.match(new RegExp(Q.biaodian.middle))?"bd-middle":""}function g(a,b){var c,d=S.create("canvas");return d.width="50",d.height="20",d.style.display="none",L.appendChild(d),c=d.getContext("2d"),c.textBaseline="top",c.font="15px "+b+", sans-serif",c.fillStyle="black",c.strokeStyle="black",c.fillText(a,0,0),{node:d,context:c,remove:function(){S.remove(d,L)}}}function h(a,b){var c,d=a.context,e=b.context;try{for(var f=1;20>=f;f++)for(var g=1;50>=g;g++){if("undefined"==typeof c&&d.getImageData(g,f,1,1).data[3]!==e.getImageData(g,f,1,1).data[3]){c=!1;break}if("boolean"==typeof c)break;50===g&&20===f&&"undefined"==typeof c&&(c=!0)}return a.remove(),b.remove(),a=null,b=null,c}catch(h){}return!1}function i(a,b,c){var a=a,b=b||"sans-serif",c=c||"\u8fadQ";return b=g(c,b),a=g(c,a),!h(a,b)}function j(a){var b,c=S.create("!"),d=a.classList;return c.appendChild(S.clone(a)),S.tag("rt",c.firstChild).forEach(function(a){var c,e=S.create("!"),f=[];do{if(c=(c||a).previousSibling,!c||c.nodeName.match(/((?:h\-)?r[ubt])/i))break;e.insertBefore(S.clone(c),e.firstChild),f.push(c)}while(!c.nodeName.match(/((?:h\-)?r[ubt])/i));b=d.contains("zhuyin")?p(e,a):o(e,a);try{a.parentNode.replaceChild(b,a),f.map(S.remove)}catch(g){}}),m(c)}function k(a){var b=S.create("!");return b.appendChild(S.clone(a)),S.tag("rt",b.firstChild).forEach(function(a){var b,c,d=S.create("!"),e=[];do{if(b=(b||a).previousSibling,!b||b.nodeName.match(/((?:h\-)?r[ubt])/i))break;d.insertBefore(S.clone(b),d.firstChild),e.push(b)}while(!b.nodeName.match(/((?:h\-)?r[ubt])/i));c=S.create("rt"),c.innerHTML=q(a),a.parentNode.replaceChild(c,a)}),b.firstChild}function l(a){var b,c,d,e,f=S.create("!"),g=a.classList;return f.appendChild(S.clone(a)),b=f.firstChild,c=d=S.tag("rb",b),e=c.length,void function(a){a&&(d=S.tag("rt",a).map(function(a,b){if(c[b]){var d=p(c[b],a);try{c[b].parentNode.replaceChild(d,c[b])}catch(e){}return d}}),S.remove(a),b.setAttribute("rightangle","true"))}(b.querySelector("rtc.zhuyin")),S.qsa("rtc:not(.zhuyin)",b).forEach(function(a,c){var f;f=S.tag("rt",a).map(function(a,b){var f,h,i=Number(a.getAttribute("rbspan")||1),j=0,k=[];i>e&&(i=e);do{try{f=d.shift(),k.push(f)}catch(l){}if("undefined"==typeof f)break;j+=Number(f.getAttribute("span")||1)}while(i>j);if(j>i){if(k.length>1)return void console.error("An impossible `rbspan` value detected.",ruby);k=S.tag("rb",k[0]),d=k.slice(i).concat(d),k=k.slice(0,i),j=i}h=o(k,a,{"class":g,span:j,order:c});try{k[0].parentNode.replaceChild(h,k.shift()),k.map(S.remove)}catch(l){}return h}),d=f,1===c&&b.setAttribute("doubleline","true"),S.remove(a)}),m(f)}function m(a){var b=a.firstChild,c=S.create("h-ruby");return c.innerHTML=b.innerHTML,S.setAttr(c,b.attributes),c.normalize(),c}function n(a){if(!a instanceof Element)return a;var b=a.classList;return b.contains("pinyin")?b.add("romanization"):b.contains("romanization")?b.add("annotation"):b.contains("mps")?b.add("zhuyin"):b.contains("rightangle")&&b.add("complex"),a}function o(a,b,c){var d=S.create("h-ru"),b=S.clone(b),c=c||{};return c.annotation="true",Array.isArray(a)?d.innerHTML=a.map(function(a){return"undefined"==typeof a?"":a.outerHTML}).join("")+b.outerHTML:(d.appendChild(S.clone(a)),d.appendChild(b)),S.setAttr(d,c),d}function p(a,b){var a=S.clone(a),c=S.create("h-ru");return c.setAttribute("zhuyin",!0),c.appendChild(a),c.innerHTML+=q(b),c}function q(a){var b,c,d,e="string"==typeof a?a:a.textContent;return b=e.replace(R.zhuyin.diao,""),d=b?b.length:0,c=e.replace(b,"").replace(/[\u02C5]/g,"\u02c7").replace(/[\u030D]/g,"\u0358"),0===d?"":''+b+" "+c+" "}function r(a,b){return a&&b&&a.parentNode===b.parentNode}function s(a,b){var c=a,b=b||"";if(S.isElmt(a.nextSibling)||r(a,a.nextSibling))return b+X;for(;!c.nextSibling;)c=c.parentNode;return a!==c&&c.insertAdjacentHTML("afterEnd"," "),b}function t(a,b){return a.isEnd&&0===a.index?b[1]+X+b[2]:0===a.index?s(a.node,a.text):a.text}function u(a){return 0===a.index?S.clone(Y):""}function v(a){var b=a.node.parentNode;return 0===a.index&&(Z=a.endIndexInNode-2),"h-hws"!==b.nodeName.toLowerCase()||1!==a.index&&a.indexInMatch!==Z||b.classList.add("quote-inner"),a.text}function w(a){var b=a.node.parentNode;return"h-hws"===b.nodeName.toLowerCase()&&b.classList.add("quote-outer"),a.text}function x(){var a,b=S.create("div");return b.innerHTML="a b a b ",L.appendChild(b),a=b.firstChild.offsetWidth!==b.lastChild.offsetWidth,S.remove(b),a}function y(a){var b=a.nextSibling;b&&ba(b,"h-cs.jinze-outer")?b.classList.add("hangable-outer"):a.insertAdjacentHTML("afterend",aa)}function z(a){return a.replace(/(biaodian|cjk|bd-jiya|bd-consecutive|bd-hangable)/gi,"").trim()}function A(a){var b,c=a.text,d=a.node.parentNode,e=S.parent(d,"h-char.biaodian"),f=O.createBDChar(c);return f.innerHTML=""+c+" ",f.classList.add(ea),(b=S.parent(d,"h-jinze"))&&C(b),e?function(){return e.classList.add(ea),ba(d,"h-inner, h-inner *")?c:f.firstChild}():f}function B(a){var b,c=ca,d=a.node.parentNode,e=S.parent(d,"h-char.biaodian"),f=S.parent(e,"h-jinze");return b=e.classList,c&&e.setAttribute("prev",c),da&&b.contains("bd-open")&&da.pop().setAttribute("next","bd-open"),da=void 0,a.isEnd?(ca=void 0,b.add(ga,"end-portion")):(ca=z(e.getAttribute("class")),b.add(ga)),f&&(da=D(f,{prev:c,"class":z(e.getAttribute("class"))})),a.text}function C(a){ba(a,".tou, .touwei")&&!ba(a.previousSibling,"h-cs.jiya-outer")&&a.insertAdjacentHTML("beforebegin",ha),ba(a,".wei, .touwei")&&!ba(a.nextSibling,"h-cs.jiya-outer")&&a.insertAdjacentHTML("afterend",ha)}function D(a,b){var c,d;return ba(a,".tou, .touwei")&&(c=a.previousSibling,ba(c,"h-cs")&&(c.className="jinze-outer jiya-outer",c.setAttribute("prev",b.prev))),ba(a,".wei, .touwei")&&(d=a.nextSibling,ba(d,"h-cs")&&(d.className="jinze-outer jiya-outer "+b["class"],d.removeAttribute("prev"))),[c,d]}function E(a,b,c){return function(){var d=O.localize.writeOnCanvas(b,a),e=O.localize.writeOnCanvas(c,a);return O.localize.compareCanvases(d,e)}}function F(){return E('"Romanization Sans"',"a\u030d","\udb80\udc61")}function G(){return E('"Romanization Sans"',"i\u030d","\udb80\udc69")}function H(){return E('"Zhuyin Kaiti"',"\u31b4\u0358","\udb8c\uddb4")}function I(a){return function(b){var b=b||J,c=O.find(b).avoid(ia);return a.forEach(function(a){c.replace(new RegExp(a[0],"ig"),function(b,c){var d=S.clone(ja);return d.innerHTML=""+c[0]+" ",d.setAttribute("display-as",a[1]),0===b.index?d:""})}),c}}var J=a.document,K=J.documentElement,L=J.body,M="3.3.0",N=["initCond","renderElem","renderJiya","renderHanging","correctBiaodian","renderHWS","substCombLigaWithPUA"],O=function(a,b){return new O.fn.init(a,b)},P=function(){return arguments[0]&&(this.context=arguments[0]),arguments[1]&&(this.condition=arguments[1]),this};O.version=M,O.fn=O.prototype={version:M,constructor:O,context:L,condition:K,routine:N,init:P,setRoutine:function(a){return Array.isArray(a)&&(this.routine=a),this},render:function(a){var b=this,a=Array.isArray(a)?a:this.routine;return a.forEach(function(a){"string"==typeof a&&"function"==typeof b[a]?b[a]():Array.isArray(a)&&"function"==typeof b[a[0]]&&b[a.shift()].apply(b,a)}),this}},O.fn.init.prototype=O.fn,O.init=function(){return O.init=O().render()};var Q={punct:{base:"[\u2026,.;:!?\u203d_]",sing:"[\u2010-\u2014\u2026]",middle:"[\\/~\\-&\u2010-\u2014_]",open:"['\"\u2018\u201c\\(\\[\xa1\xbf\u2e18\xab\u2039\u201a\u201c\u201e]",close:"['\"\u201d\u2019\\)\\]\xbb\u203a\u201b\u201d\u201f]",end:"['\"\u201d\u2019\\)\\]\xbb\u203a\u201b\u201d\u201f\u203c\u203d\u2047-\u2049,.;:!?]"},biaodian:{base:"[\ufe30\uff0e\u3001\uff0c\u3002\uff1a\uff1b\uff1f\uff01\u30fc]",liga:"[\u2014\u2026\u22ef]",middle:"[\xb7\uff3c\uff0f\uff0d\u30a0\uff06\u30fb\uff3f]",open:"[\u300c\u300e\u300a\u3008\uff08\u3014\uff3b\uff5b\u3010\u3016]",close:"[\u300d\u300f\u300b\u3009\uff09\u3015\uff3d\uff5d\u3011\u3017]",end:"[\u300d\u300f\u300b\u3009\uff09\u3015\uff3d\uff5d\u3011\u3017\ufe30\uff0e\u3001\uff0c\u3002\uff1a\uff1b\uff1f\uff01\u30fc]"},hanzi:{base:"[\u4e00-\u9fff\u3400-\u4db5\u31c0-\u31e3\u3007\ufa0e\ufa0f\ufa11\ufa13\ufa14\ufa1f\ufa21\ufa23\ufa24\ufa27-\ufa29]|[\ud800-\udbff][\udc00-\udfff]",desc:"[\u2ff0-\u2ffa]",radical:"[\u2f00-\u2fd5\u2e80-\u2ef3]"},latin:{base:"[A-Za-z0-9\xc0-\xff\u0100-\u017f\u0180-\u024f\u2c60-\u2c7f\ua720-\ua7ff\u1e00-\u1eff]",combine:"[\u0300-\u0341\u1dc0-\u1dff]"},ellinika:{base:"[0-9\u0370-\u03ff\u1f00-\u1fff]",combine:"[\u0300-\u0345\u1dc0-\u1dff]"},kirillica:{base:"[0-9\u0400-\u0482\u048a-\u04ff\u0500-\u052f\ua640-\ua66e\ua67e-\ua697]",combine:"[\u0483-\u0489\u2de0-\u2dff\ua66f-\ua67d\ua69f]"},kana:{base:"[\u30a2\u30a4\u30a6\u30a8\u30aa-\u30fa\u3042\u3044\u3046\u3048\u304a-\u3094\u309f\u30ff]|\ud82c[\udc00-\udc01]",small:"[\u3041\u3043\u3045\u3047\u3049\u30a1\u30a3\u30a5\u30a7\u30a9\u3063\u3083\u3085\u3087\u308e\u3095\u3096\u30c3\u30e3\u30e5\u30e7\u30ee\u30f5\u30f6\u31f0-\u31ff]",combine:"[\u3099-\u309c]",half:"[\uff66-\uff9f]",mark:"[\u30a0\u309d\u309e\u30fb-\u30fe]"},eonmun:{base:"[\uac00-\ud7a3]",letter:"[\u1100-\u11ff\u314f-\u3163\u3131-\u318e\ua960-\ua97c\ud7b0-\ud7fb]",half:"[\uffa1-\uffdc]"},zhuyin:{base:"[\u3105-\u312d\u31a0-\u31ba]",initial:"[\u3105-\u3119\u312a-\u312c\u31a0-\u31a3]",medial:"[\u3127-\u3129]","final":"[\u311a-\u3129\u312d\u31a4-\u31b3\u31b8-\u31ba]",tone:"[\u02d9\u02ca\u02c5\u02c7\u02cb\u02ea\u02eb]",checked:"[\u31b4-\u31b7][\u0358\u030d]?"}},R=function(){var a="[\\x20\\t\\r\\n\\f]",b=Q.punct.open,c=(Q.punct.close,Q.punct.end),d=Q.punct.middle,e=Q.punct.sing,f=b+"|"+c+"|"+d,g=Q.biaodian.open,h=Q.biaodian.close,i=Q.biaodian.end,j=Q.biaodian.middle,k=Q.biaodian.liga+"{2}",l=g+"|"+i+"|"+j,m=Q.kana.base+Q.kana.combine+"?",n=Q.kana.small+Q.kana.combine+"?",o=Q.kana.half,p=Q.eonmun.base+"|"+Q.eonmun.letter,q=Q.eonmun.half,r=Q.hanzi.base+"|"+Q.hanzi.desc+"|"+Q.hanzi.radical+"|"+m,s=Q.ellinika.combine,t=Q.latin.base+s+"*",u=Q.ellinika.base+s+"*",v=Q.kirillica.combine,w=Q.kirillica.base+v+"*",x=t+"|"+u+"|"+w,y="['\u2019]",z=r+"|(?:"+x+"|"+y+")+",A=Q.zhuyin.initial,B=Q.zhuyin.medial,C=Q.zhuyin["final"],D=Q.zhuyin.tone+"|"+Q.zhuyin.checked;return{"char":{punct:{all:new RegExp("("+f+")","g"),open:new RegExp("("+b+")","g"),end:new RegExp("("+c+")","g"),sing:new RegExp("("+e+")","g")},biaodian:{all:new RegExp("("+l+")","g"),open:new RegExp("("+g+")","g"),close:new RegExp("("+h+")","g"),end:new RegExp("("+i+")","g"),liga:new RegExp("("+k+")","g")},hanzi:new RegExp("("+r+")","g"),latin:new RegExp("("+t+")","ig"),ellinika:new RegExp("("+u+")","ig"),kirillica:new RegExp("("+w+")","ig"),kana:new RegExp("("+m+"|"+n+"|"+o+")","g"),eonmun:new RegExp("("+p+"|"+q+")","g")},group:{biaodian:[new RegExp("(("+l+"){2,})","g"),new RegExp("("+k+g+")","g")],punct:null,hanzi:new RegExp("("+r+")+","g"),western:new RegExp("("+t+"|"+u+"|"+w+"|"+f+")+","ig"),kana:new RegExp("("+m+"|"+n+"|"+o+")+","g"),eonmun:new RegExp("("+p+"|"+q+"|"+f+")+","g")},jinze:{hanging:new RegExp(a+"*([\u3001\uff0c\u3002\uff0e])(?!"+i+")","ig"),touwei:new RegExp("("+g+"+)("+z+")("+i+"+)","ig"),tou:new RegExp("("+g+"+)("+z+")","ig"),wei:new RegExp("("+z+")("+i+"+)","ig"),middle:new RegExp("("+z+")("+j+")("+z+")","ig")},zhuyin:{form:new RegExp("^\u02d9?("+A+")?("+B+")?("+C+")?("+D+")?$"),diao:new RegExp("("+D+")","g")},hws:{base:[new RegExp("("+r+")("+x+"|"+b+")","ig"),new RegExp("("+x+"|"+c+")("+r+")","ig")],strict:[new RegExp("("+r+")"+a+"?("+x+"|"+b+")","ig"),new RegExp("("+x+"|"+c+")"+a+"?("+r+")","ig")]},"display-as":{"ja-font-for-hant":["\u67e5 \u67fb","\u555f \u5553","\u9109 \u9115","\u503c \u5024","\u6c61 \u6c5a"],"comb-liga-pua":[["a[\u030d\u0358]","\udb80\udc61"],["e[\u030d\u0358]","\udb80\udc65"],["i[\u030d\u0358]","\udb80\udc69"],["o[\u030d\u0358]","\udb80\udc6f"],["u[\u030d\u0358]","\udb80\udc75"],["\u31b4[\u030d\u0358]","\udb8c\uddb4"],["\u31b5[\u030d\u0358]","\udb8c\uddb5"],["\u31b6[\u030d\u0358]","\udb8c\uddb6"],["\u31b7[\u030d\u0358]","\udb8c\uddb7"]],"comb-liga-vowel":[["a[\u030d\u0358]","\udb80\udc61"],["e[\u030d\u0358]","\udb80\udc65"],["i[\u030d\u0358]","\udb80\udc69"],["o[\u030d\u0358]","\udb80\udc6f"],["u[\u030d\u0358]","\udb80\udc75"]],"comb-liga-zhuyin":[["\u31b4[\u030d\u0358]","\udb8c\uddb4"],["\u31b5[\u030d\u0358]","\udb8c\uddb5"],["\u31b6[\u030d\u0358]","\udb8c\uddb6"],["\u31b7[\u030d\u0358]","\udb8c\uddb7"]]},"inaccurate-char":[["[\u2022\u2027]","\xb7"],["\u22ef\u22ef","\u2026\u2026"],["\u2500\u2500","\u2014\u2014"],["\u2035","\u2018"],["\u2032","\u2019"],["\u2036","\u201c"],["\u2033","\u201d"]]}}();O.UNICODE=Q,O.TYPESET=R,O.UNICODE.cjk=O.UNICODE.hanzi,O.UNICODE.greek=O.UNICODE.ellinika,O.UNICODE.cyrillic=O.UNICODE.kirillica,O.UNICODE.hangul=O.UNICODE.eonmun,O.UNICODE.zhuyin.ruyun=O.UNICODE.zhuyin.checked,O.TYPESET["char"].cjk=O.TYPESET["char"].hanzi,O.TYPESET["char"].greek=O.TYPESET["char"].ellinika,O.TYPESET["char"].cyrillic=O.TYPESET["char"].kirillica,O.TYPESET["char"].hangul=O.TYPESET["char"].eonmun,O.TYPESET.group.hangul=O.TYPESET.group.eonmun,O.TYPESET.group.cjk=O.TYPESET.group.hanzi;var S={id:function(a,b){return(b||J).getElementById(a)},tag:function(a,b){return this.makeArray((b||J).getElementsByTagName(a))},qs:function(a,b){return(b||J).querySelector(a)},qsa:function(a,b){return this.makeArray((b||J).querySelectorAll(a))},parent:function(a,b){return b?function(){if("function"==typeof S.matches){for(;!S.matches(a,b);){if(!a||a===J.documentElement){a=void 0;break}a=a.parentNode}return a}}():a?a.parentNode:void 0},create:function(a,b){var c="!"===a?J.createDocumentFragment():""===a?J.createTextNode(b||""):J.createElement(a);try{b&&(c.className=b)}catch(d){}return c},clone:function(a,b){return a.cloneNode("boolean"==typeof b?b:!0)},remove:function(a){return a.parentNode.removeChild(a)},setAttr:function(a,b){if("object"==typeof b){var c=b.length;if("object"==typeof b[0]&&"name"in b[0])for(var d=0;c>d;d++)void 0!==b[d].value&&a.setAttribute(b[d].name,b[d].value);else for(var e in b)b.hasOwnProperty(e)&&void 0!==b[e]&&a.setAttribute(e,b[e]);return a}},isElmt:function(a){return a&&a.nodeType===Node.ELEMENT_NODE},isIgnorable:function(a){return a?"WBR"===a.nodeName||a.nodeType===Node.COMMENT_NODE:!1},makeArray:function(a){return Array.prototype.slice.call(a)},extend:function(a,b){if(("object"==typeof a||"function"==typeof a)&&"object"==typeof b)for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c]);return a}},T=function(b){function c(a,b,c){var d=Element.prototype,e=d.matches||d.mozMatchesSelector||d.msMatchesSelector||d.webkitMatchesSelector;return a instanceof Element?e.call(a,b):c&&/^[39]$/.test(a.nodeType)?!0:!1}var d="0.2.1",e=b.NON_INLINE_PROSE,f=b.PRESETS.prose.filterElements,g=a||{},h=g.document||void 0;if("undefined"==typeof h)throw new Error("Fibre requires a DOM-supported environment.");var i=function(a,b){return new i.fn.init(a,b)};return i.version=d,i.matches=c,i.fn=i.prototype={constructor:i,version:d,finder:[],context:void 0,portionMode:"retain",selector:{},preset:"prose",init:function(a,b){if(b&&(this.preset=null),this.selector={context:null,filter:[],avoid:[],boundary:[]},!a)throw new Error("A context is required for Fibre to initialise.");return a instanceof Node?a instanceof Document?this.context=a.body||a:this.context=a:"string"==typeof a&&(this.context=h.querySelector(a),this.selector.context=a),this},filterFn:function(a){var b=this.selector.filter.join(", ")||"*",d=this.selector.avoid.join(", ")||null,e=c(a,b,!0)&&!c(a,d);return"prose"===this.preset?f(a)&&e:e},boundaryFn:function(a){var b=this.selector.boundary.join(", ")||null,d=c(a,b);return"prose"===this.preset?e(a)||d:d},filter:function(a){return"string"==typeof a&&this.selector.filter.push(a),this},endFilter:function(a){return a?this.selector.filter=[]:this.selector.filter.pop(),this},avoid:function(a){return"string"==typeof a&&this.selector.avoid.push(a),this},endAvoid:function(a){return a?this.selector.avoid=[]:this.selector.avoid.pop(),this},addBoundary:function(a){return"string"==typeof a&&this.selector.boundary.push(a),this},removeBoundary:function(){return this.selector.boundary=[],this},setMode:function(a){return this.portionMode="first"===a?"first":"retain",this},replace:function(a,c){var d=this;return d.finder.push(b(d.context,{find:a,replace:c,filterElements:function(a){return d.filterFn(a)},forceContext:function(a){return d.boundaryFn(a)},portionMode:d.portionMode})),d},wrap:function(a,c){var d=this;return d.finder.push(b(d.context,{find:a,wrap:c,filterElements:function(a){return d.filterFn(a)},forceContext:function(a){return d.boundaryFn(a)},portionMode:d.portionMode})),d},revert:function(a){var b=this.finder.length,a=Number(a)||(0===a?Number(0):"all"===a?b:1);if("undefined"==typeof b||0===b)return this;a>b&&(a=b);for(var c=a;c>0;c--)this.finder.pop().revert();return this}},i.fn.filterOut=i.fn.avoid,i.fn.init.prototype=i.fn,i}(function(){function a(a){return String(a).replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}function b(){return c.apply(null,arguments)||d.apply(null,arguments)}function c(a,c,e,f,g){if(c&&!c.nodeType&&arguments.length<=2)return!1;var h="function"==typeof e;h&&(e=function(a){return function(b,c){return a(b.text,c.startIndex)}}(e));var i=d(c,{find:a,wrap:h?null:e,replace:h?e:"$"+(f||"&"),prepMatch:function(a,b){if(!a[0])throw"findAndReplaceDOMText cannot handle zero-length matches";if(f>0){var c=a[f];a.index+=a[0].indexOf(c),a[0]=c}return a.endIndex=a.index+a[0].length,a.startIndex=a.index,a.index=b,a},filterElements:g});return b.revert=function(){return i.revert()},!0}function d(a,b){return new e(a,b)}function e(a,c){var d=c.preset&&b.PRESETS[c.preset];if(c.portionMode=c.portionMode||f,d)for(var e in d)i.call(d,e)&&!i.call(c,e)&&(c[e]=d[e]);this.node=a,this.options=c,this.prepMatch=c.prepMatch||this.prepMatch,this.reverts=[],this.matches=this.search(),this.matches.length&&this.processMatches()}var f="retain",g="first",h=J,i=({}.toString,{}.hasOwnProperty);return b.NON_PROSE_ELEMENTS={br:1,hr:1,script:1,style:1,img:1,video:1,audio:1,canvas:1,svg:1,map:1,object:1,input:1,textarea:1,select:1,option:1,optgroup:1,button:1},b.NON_CONTIGUOUS_PROSE_ELEMENTS={address:1,article:1,aside:1,blockquote:1,dd:1,div:1,dl:1,fieldset:1,figcaption:1,figure:1,footer:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,header:1,hgroup:1,hr:1,main:1,nav:1,noscript:1,ol:1,output:1,p:1,pre:1,section:1,ul:1,br:1,li:1,summary:1,dt:1,details:1,rp:1,rt:1,rtc:1,script:1,style:1,img:1,video:1,audio:1,canvas:1,svg:1,map:1,object:1,input:1,textarea:1,select:1,option:1,optgroup:1,button:1,table:1,tbody:1,thead:1,th:1,tr:1,td:1,caption:1,col:1,tfoot:1,colgroup:1},b.NON_INLINE_PROSE=function(a){return i.call(b.NON_CONTIGUOUS_PROSE_ELEMENTS,a.nodeName.toLowerCase())},b.PRESETS={prose:{forceContext:b.NON_INLINE_PROSE,filterElements:function(a){return!i.call(b.NON_PROSE_ELEMENTS,a.nodeName.toLowerCase())}}},b.Finder=e,e.prototype={search:function(){function b(a){for(var g=0,j=a.length;j>g;++g){var k=a[g];if("string"==typeof k){if(f.global)for(;c=f.exec(k);)h.push(i.prepMatch(c,d++,e));else(c=k.match(f))&&h.push(i.prepMatch(c,0,e));e+=k.length}else b(k)}}var c,d=0,e=0,f=this.options.find,g=this.getAggregateText(),h=[],i=this;return f="string"==typeof f?RegExp(a(f),"g"):f,b(g),h},prepMatch:function(a,b,c){if(!a[0])throw new Error("findAndReplaceDOMText cannot handle zero-length matches");return a.endIndex=c+a.index+a[0].length,a.startIndex=c+a.index,a.index=b,a},getAggregateText:function(){function a(d,e){if(3===d.nodeType)return[d.data];if(b&&!b(d))return[];var e=[""],f=0;if(d=d.firstChild)do if(3!==d.nodeType){var g=a(d);c&&1===d.nodeType&&(c===!0||c(d))?(e[++f]=g,e[++f]=""):("string"==typeof g[0]&&(e[f]+=g.shift()),g.length&&(e[++f]=g,e[++f]=""))}else e[f]+=d.data;while(d=d.nextSibling);return e}var b=this.options.filterElements,c=this.options.forceContext;return a(this.node)},processMatches:function(){var a,b,c,d=this.matches,e=this.node,f=this.options.filterElements,g=[],h=e,i=d.shift(),j=0,k=0,l=0,m=[e];a:for(;;){if(3===h.nodeType&&(!b&&h.length+j>=i.endIndex?b={node:h,index:l++,text:h.data.substring(i.startIndex-j,i.endIndex-j),indexInMatch:j-i.startIndex,indexInNode:i.startIndex-j,endIndexInNode:i.endIndex-j,isEnd:!0}:a&&g.push({node:h,index:l++,text:h.data,indexInMatch:j-i.startIndex,indexInNode:0}),!a&&h.length+j>i.startIndex&&(a={node:h,index:l++,indexInMatch:0,indexInNode:i.startIndex-j,endIndexInNode:i.endIndex-j,text:h.data.substring(i.startIndex-j,i.endIndex-j)}),j+=h.data.length),c=1===h.nodeType&&f&&!f(h),a&&b){if(h=this.replaceMatch(i,a,g,b),j-=b.node.data.length-b.endIndexInNode,a=null,b=null,g=[],i=d.shift(),l=0,k++,!i)break}else if(!c&&(h.firstChild||h.nextSibling)){h.firstChild?(m.push(h),h=h.firstChild):h=h.nextSibling;continue}for(;;){if(h.nextSibling){h=h.nextSibling;break}if(h=m.pop(),h===e)break a}}},revert:function(){for(var a=this.reverts.length;a--;)this.reverts[a]();this.reverts=[]},prepareReplacementString:function(a,b,c,d){var e=this.options.portionMode;return e===g&&b.indexInMatch>0?"":(a=a.replace(/\$(\d+|&|`|')/g,function(a,b){var d;switch(b){case"&":d=c[0];break;case"`":d=c.input.substring(0,c.startIndex);break;case"'":d=c.input.substring(c.endIndex);break;default:d=c[+b]}return d}),e===g?a:b.isEnd?a.substring(b.indexInMatch):a.substring(b.indexInMatch,b.indexInMatch+b.text.length))},getPortionReplacementNode:function(a,b,c){var d=this.options.replace||"$&",e=this.options.wrap;if(e&&e.nodeType){var f=h.createElement("div");f.innerHTML=e.outerHTML||(new XMLSerializer).serializeToString(e),e=f.firstChild}if("function"==typeof d)return d=d(a,b,c),d&&d.nodeType?d:h.createTextNode(String(d));var g="string"==typeof e?h.createElement(e):e;return d=h.createTextNode(this.prepareReplacementString(d,a,b,c)),d.data&&g?(g.appendChild(d),g):d},replaceMatch:function(a,b,c,d){var e,f,g=b.node,i=d.node;if(g===i){var j=g;b.indexInNode>0&&(e=h.createTextNode(j.data.substring(0,b.indexInNode)),j.parentNode.insertBefore(e,j));var k=this.getPortionReplacementNode(d,a);return j.parentNode.insertBefore(k,j),d.endIndexInNoden;++n){var p=c[n],q=this.getPortionReplacementNode(p,a);p.node.parentNode.replaceChild(q,p.node),this.reverts.push(function(a,b){return function(){b.parentNode.replaceChild(a.node,b)}}(p,q)),m.push(q)}var r=this.getPortionReplacementNode(d,a);return g.parentNode.insertBefore(e,g),g.parentNode.insertBefore(l,g),g.parentNode.removeChild(g),i.parentNode.insertBefore(r,i),i.parentNode.insertBefore(f,i),i.parentNode.removeChild(i),this.reverts.push(function(){e.parentNode.removeChild(e),l.parentNode.replaceChild(g,l),f.parentNode.removeChild(f),r.parentNode.replaceChild(i,r)}),r}},b}()),U=function(){var a=S.create("div");return a.appendChild(S.create("","0-")),a.appendChild(S.create("","2")),a.normalize(),2!==a.firstChild.length}();S.extend(T.fn,{normalize:function(){return U&&this.context.normalize(),this},jinzify:function(a){return this.filter(a||null).avoid("h-jinze").replace(R.jinze.touwei,function(a,b){var c=S.create("h-jinze","touwei");return c.innerHTML=b[0],0===a.index&&a.isEnd||1===a.index?c:""}).replace(R.jinze.wei,function(a,b){var c=S.create("h-jinze","wei");return c.innerHTML=b[0],0===a.index?c:""}).replace(R.jinze.tou,function(a,b){var c=S.create("h-jinze","tou");return c.innerHTML=b[0],0===a.index&&a.isEnd||1===a.index?c:""}).replace(R.jinze.middle,function(a,b){var c=S.create("h-jinze","middle");return c.innerHTML=b[0],0===a.index&&a.isEnd||1===a.index?c:""}).endAvoid().endFilter()},groupify:function(a){var a=S.extend({biaodian:!1,hanzi:!1,kana:!1,eonmun:!1,western:!1},a||{});return this.avoid("h-word, h-char-group"),a.biaodian&&this.replace(R.group.biaodian[0],d).replace(R.group.biaodian[1],d),(a.hanzi||a.cjk)&&this.wrap(R.group.hanzi,S.clone(S.create("h-char-group","hanzi cjk"))),a.western&&this.wrap(R.group.western,S.clone(S.create("h-word","western"))),a.kana&&this.wrap(R.group.kana,S.clone(S.create("h-char-group","kana"))),(a.eonmun||a.hangul)&&this.wrap(R.group.eonmun,S.clone(S.create("h-word","eonmun hangul"))),this.endAvoid(),this},charify:function(a){var a=S.extend({avoid:!0,biaodian:!1,punct:!1,hanzi:!1,latin:!1,ellinika:!1,kirillica:!1,kana:!1,eonmun:!1},a||{});return a.avoid&&this.avoid("h-char"),a.biaodian&&this.replace(R["char"].biaodian.all,c(a.biaodian)||function(a){return e(a.text)}).replace(R["char"].biaodian.liga,c(a.biaodian)||function(a){return e(a.text)}),(a.hanzi||a.cjk)&&this.wrap(R["char"].hanzi,c(a.hanzi||a.cjk)||S.clone(S.create("h-char","hanzi cjk"))),a.punct&&this.wrap(R["char"].punct.all,c(a.punct)||S.clone(S.create("h-char","punct"))),a.latin&&this.wrap(R["char"].latin,c(a.latin)||S.clone(S.create("h-char","alphabet latin"))),(a.ellinika||a.greek)&&this.wrap(R["char"].ellinika,c(a.ellinika||a.greek)||S.clone(S.create("h-char","alphabet ellinika greek"))),(a.kirillica||a.cyrillic)&&this.wrap(R["char"].kirillica,c(a.kirillica||a.cyrillic)||S.clone(S.create("h-char","alphabet kirillica cyrillic"))),a.kana&&this.wrap(R["char"].kana,c(a.kana)||S.clone(S.create("h-char","kana"))),(a.eonmun||a.hangul)&&this.wrap(R["char"].eonmun,c(a.eonmun||a.hangul)||S.clone(S.create("h-char","eonmun hangul"))),this.endAvoid(),this}}),S.extend(O,{isNodeNormalizeNormal:U,find:T,createBDGroup:d,createBDChar:e}),S.matches=O.find.matches,void["setMode","wrap","replace","revert","addBoundary","removeBoundary","avoid","endAvoid","filter","endFilter","jinzify","groupify","charify"].forEach(function(a){O.fn[a]=function(){return this.finder||(this.finder=O.find(this.context)),this.finder[a](arguments[0],arguments[1]),this}});var V={};V.writeOnCanvas=g,V.compareCanvases=h,V.detectFont=i,V.support=function(){function b(a){var b,c=a.charAt(0).toUpperCase()+a.slice(1),d=(a+" "+e.join(c+" ")+c).split(" ");return d.forEach(function(a){"string"==typeof f.style[a]&&(b=!0)}),b||!1}function c(a,b){var c,d,e,f=L||S.create("body"),g=S.create("div"),h=L?g:f,b="function"==typeof b?b:function(){};return c=[""].join(""),h.innerHTML+=c,f.appendChild(g),L||(f.style.background="",f.style.overflow="hidden",e=K.style.overflow,K.style.overflow="hidden",K.appendChild(f)),d=b(h,a),S.remove(h),L||(K.style.overflow=e),!!d}function d(b,c){var d;return a.getComputedStyle?d=J.defaultView.getComputedStyle(b,null).getPropertyValue(c):b.currentStyle&&(d=b.currentStyle[c]),d}var e="Webkit Moz ms".split(" "),f=S.create("h-test");return{columnwidth:b("columnWidth"),fontface:function(){var a;return c('@font-face { font-family: font; src: url("//"); }',function(b,c){var d=S.qsa("style",b)[0],e=d.sheet||d.styleSheet,f=e?e.cssRules&&e.cssRules[0]?e.cssRules[0].cssText:e.cssText||"":"";a=/src/i.test(f)&&0===f.indexOf(c.split(" ")[0])}),a}(),ruby:function(){var a,b=S.create("ruby"),c=S.create("rt"),e=S.create("rp");return b.appendChild(e),b.appendChild(c),K.appendChild(b),a="none"===d(e,"display")||"ruby"===d(b,"display")&&"ruby-text"===d(c,"display")?!0:!1,K.removeChild(b),b=null,c=null,e=null,a}(),"ruby-display":function(){var a=S.create("div");return a.innerHTML=' ',"ruby"===a.querySelector("h-test-a").style.display&&"ruby-text-container"===a.querySelector("h-test-b").style.display}(),"ruby-interchar":function(){var a,b="inter-character",c=S.create("div");return c.innerHTML=' ',a=c.querySelector("h-test").style,a.rubyPosition===b||a.WebkitRubyPosition===b||a.MozRubyPosition===b||a.msRubyPosition===b}(),textemphasis:b("textEmphasis"),unicoderange:function(){var a;return c('@font-face{font-family:test-for-unicode-range;src:local(Arial),local("Droid Sans")}@font-face{font-family:test-for-unicode-range;src:local("Times New Roman"),local(Times),local("Droid Serif");unicode-range:U+270C}',function(){a=!V.detectFont("test-for-unicode-range",'Arial, "Droid Sans"',"Q")}),a}(),writingmode:b("writingMode")}}(),V.initCond=function(a){var b,a=a||K,c="";for(var d in V.support)b=(V.support[d]?"":"no-")+d,a.classList.add(b),c+=b+" ";return c};var W=V.support["ruby-interchar"];S.extend(V,{renderRuby:function(a,b){var b=b||"ruby",c=S.qsa(b,a);S.qsa("rtc",a).concat(c).map(n),c.forEach(function(a){var b,c=a.classList;c.contains("complex")?b=l(a):c.contains("zhuyin")&&(b=W?k(a):j(a)),b&&a.parentNode.replaceChild(b,a)})},simplifyRubyClass:n,getZhuyinHTML:q,renderComplexRuby:l,renderSimpleRuby:j,renderInterCharRuby:k}),S.extend(V,{renderElem:function(a){this.renderRuby(a),this.renderDecoLine(a),this.renderDecoLine(a,"s, del"),this.renderEm(a)},renderDecoLine:function(a,b){var c=S.qsa(b||"u, ins",a),d=c.length;a:for(;d--;){var e=c[d],f=null;do{if(f=(f||e).previousSibling,!f)continue a;c[d-1]===f&&e.classList.add("adjacent")}while(S.isIgnorable(f))}},renderEm:function(a,b){var c=b?"qsa":"tag",b=b||"em",d=S[c](b,a);d.forEach(function(a){var b=O(a);V.support.textemphasis?b.avoid("rt, h-char").charify({biaodian:!0,punct:!0}):b.avoid("rt, h-char, h-char-group").jinzify().groupify({western:!0}).charify({hanzi:!0,biaodian:!0,punct:!0,latin:!0,ellinika:!0,kirillica:!0})})}}),O.normalize=V,O.localize=V,O.support=V.support,O.detectFont=V.detectFont,O.fn.initCond=function(){return this.condition.classList.add("han-js-rendered"),O.normalize.initCond(this.condition),this},void["Elem","DecoLine","Em","Ruby"].forEach(function(a){var b="render"+a;O.fn[b]=function(a){return O.normalize[b](this.context,a),this}}),S.extend(O.support,{heiti:!0,songti:O.detectFont('"Han Songti"'),"songti-gb":O.detectFont('"Han Songti GB"'),kaiti:O.detectFont('"Han Kaiti"'),fangsong:O.detectFont('"Han Fangsong"')}),O.correctBiaodian=function(a){var a=a||J,b=O.find(a);return b.avoid("h-char").replace(/([\u2018\u201c])/g,function(a){var b=O.createBDChar(a.text);return b.classList.add("bd-open","punct"),b}).replace(/([\u2019\u201d])/g,function(a){var b=O.createBDChar(a.text);return b.classList.add("bd-close","bd-end","punct"),b}),O.support.unicoderange?b:b.charify({biaodian:!0})},O.correctBasicBD=O.correctBiaodian,O.correctBD=O.correctBiaodian,S.extend(O.fn,{biaodian:null,correctBiaodian:function(){return this.biaodian=O.correctBiaodian(this.context),this},revertCorrectedBiaodian:function(){try{this.biaodian.revert("all")}catch(a){}return this}}),O.fn.correctBasicBD=O.fn.correctBiaodian,O.fn.revertBasicBD=O.fn.revertCorrectedBiaodian;var X="<>",Y=S.create("h-hws");Y.setAttribute("hidden",""),Y.innerHTML=" ";var Z;S.extend(O,{renderHWS:function(a,b){var c=b?"textarea, code, kbd, samp, pre":"textarea",d=b?"strict":"base",a=a||J,e=O.find(a);
+return e.avoid(c).replace(O.TYPESET.hws[d][0],t).replace(O.TYPESET.hws[d][1],t).replace(new RegExp("("+X+")+","g"),u).replace(/([\'"])\s(.+?)\s\1/g,v).replace(/\s[\u2018\u201c]/g,w).replace(/[\u2019\u201d]\s/g,w).normalize(),e}}),S.extend(O.fn,{renderHWS:function(a){return O.renderHWS(this.context,a),this},revertHWS:function(){return S.tag("h-hws",this.context).forEach(function(a){S.remove(a)}),this.HWS=[],this}});var $="bd-hangable",_="h-char.bd-hangable",aa=' ',ba=O.find.matches;O.support["han-space"]=x(),S.extend(O,{detectSpaceFont:x,isSpaceFontLoaded:x(),renderHanging:function(a){var a=a||J,b=O.find(a);return b.avoid("textarea, code, kbd, samp, pre").avoid(_).replace(R.jinze.hanging,function(a){if(/^[\x20\t\r\n\f]+$/.test(a.text))return"";var b,c,d,e,f=a.node.parentNode;return(b=S.parent(f,"h-jinze"))&&y(b),e=a.text.trim(),c=O.createBDChar(e),c.innerHTML=""+e+" ",c.classList.add($),d=S.parent(f,"h-char.biaodian"),d?function(){return d.classList.add($),ba(f,"h-inner, h-inner *")?e:c.firstChild}():c}),b}}),S.extend(O.fn,{renderHanging:function(){var a=this.condition.classList;return O.isSpaceFontLoaded=x(),O.isSpaceFontLoaded&&a.contains("no-han-space")&&(a.remove("no-han-space"),a.add("han-space")),O.renderHanging(this.context),this},revertHanging:function(){return S.qsa("h-char.bd-hangable, h-cs.hangable-outer",this.context).forEach(function(a){var b=a.classList;b.remove("bd-hangable"),b.remove("hangable-outer")}),this}});var ca,da,ea="bd-jiya",fa="h-char.bd-jiya",ga="bd-consecutive",ha=' ',ba=O.find.matches;O.renderJiya=function(a){var a=a||J,b=O.find(a);return b.avoid("textarea, code, kbd, samp, pre, h-cs").avoid(fa).charify({avoid:!1,biaodian:A}).endAvoid().avoid("textarea, code, kbd, samp, pre, h-cs").replace(R.group.biaodian[0],B).replace(R.group.biaodian[1],B),b},S.extend(O.fn,{renderJiya:function(){return O.renderJiya(this.context),this},revertJiya:function(){return S.qsa("h-char.bd-jiya, h-cs.jiya-outer",this.context).forEach(function(a){var b=a.classList;b.remove("bd-jiya"),b.remove("jiya-outer")}),this}});var ia="textarea, code, kbd, samp, pre",ja=S.create("h-char","comb-liga");return S.extend(O,{isVowelCombLigaNormal:F(),isVowelICombLigaNormal:G(),isZhuyinCombLigaNormal:H(),isCombLigaNormal:G()(),substVowelCombLiga:I(O.TYPESET["display-as"]["comb-liga-vowel"]),substZhuyinCombLiga:I(O.TYPESET["display-as"]["comb-liga-zhuyin"]),substCombLigaWithPUA:I(O.TYPESET["display-as"]["comb-liga-pua"]),substInaccurateChar:function(a){var a=a||J,b=O.find(a);b.avoid(ia),O.TYPESET["inaccurate-char"].forEach(function(a){b.replace(new RegExp(a[0],"ig"),a[1])})}}),S.extend(O.fn,{"comb-liga-vowel":null,"comb-liga-vowel-i":null,"comb-liga-zhuyin":null,"inaccurate-char":null,substVowelCombLiga:function(){return this["comb-liga-vowel"]=O.substVowelCombLiga(this.context),this},substVowelICombLiga:function(){return this["comb-liga-vowel-i"]=O.substVowelICombLiga(this.context),this},substZhuyinCombLiga:function(){return this["comb-liga-zhuyin"]=O.substZhuyinCombLiga(this.context),this},substCombLigaWithPUA:function(){return O.isVowelCombLigaNormal()?O.isVowelICombLigaNormal()||(this["comb-liga-vowel-i"]=O.substVowelICombLiga(this.context)):this["comb-liga-vowel"]=O.substVowelCombLiga(this.context),O.isZhuyinCombLigaNormal()||(this["comb-liga-zhuyin"]=O.substZhuyinCombLiga(this.context)),this},revertVowelCombLiga:function(){try{this["comb-liga-vowel"].revert("all")}catch(a){}return this},revertVowelICombLiga:function(){try{this["comb-liga-vowel-i"].revert("all")}catch(a){}return this},revertZhuyinCombLiga:function(){try{this["comb-liga-zhuyin"].revert("all")}catch(a){}return this},revertCombLigaWithPUA:function(){try{this["comb-liga-vowel"].revert("all"),this["comb-liga-vowel-i"].revert("all"),this["comb-liga-zhuyin"].revert("all")}catch(a){}return this},substInaccurateChar:function(){return this["inaccurate-char"]=O.substInaccurateChar(this.context),this},revertInaccurateChar:function(){try{this["inaccurate-char"].revert("all")}catch(a){}return this}}),a.addEventListener("DOMContentLoaded",function(){var a;K.classList.contains("han-init")?O.init():(a=J.querySelector(".han-init-context"))&&(O.init=O(a).render())}),("undefined"==typeof b||b===!1)&&(a.Han=O),O});
\ No newline at end of file
diff --git a/lib/algolia-instant-search/instantsearch.min.css b/lib/algolia-instant-search/instantsearch.min.css
new file mode 100644
index 00000000..590f6f98
--- /dev/null
+++ b/lib/algolia-instant-search/instantsearch.min.css
@@ -0,0 +1 @@
+/*! instantsearch.js 1.5.0 | © Algolia Inc. and other contributors; Licensed MIT | github.com/algolia/instantsearch.js */.ais-search-box--powered-by{font-size:.8em;text-align:right;margin-top:2px}.ais-search-box--powered-by-link{display:inline-block;width:45px;height:16px;text-indent:101%;overflow:hidden;white-space:nowrap;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF0AAAAgCAYAAABwzXTcAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGHRFWHRTb2Z0d2FyZQBwYWludC5uZXQgNC4wLjVlhTJlAAAIJElEQVRoQ+1Za2xURRTugqJVEBAlhICBRFEQeRfodssqiDZaS8vu3dsXVlAbxReJwVfAoqJ/sBqE3S1IgqgBrY9EQ6KJiUAokUfpvQUKogIBlKbyEEUolNL6ndkzw9129+72YaFJv+Rk737nzMyZ756dmXs3oQtd6EJ7oaioqJvX603kr1cl8vPzb+TLzo3MzMx+Xk0r03y+0x5Ne4vpqwoohjeQ4yHYcaYiwcGfVz+ysrIGQfBGsqtWdE37lvLz+nwnmVLIyMjoBd9GxPwL/wKmOw4zCgr6YPBNSGILEviYaVt0dtHxK/DK/BFXq2lad3Z1DJDUqzIBYZrmYldUdLToI4r29HCWmLozUPmEK2AUOgOmRysttRXKTnSPxzMWfD37q0B13DJTUFBwPQatlgKKJJAsu6Oio0VPDlQsTgmajWEWMOaxOyLsRCdQccGez87OHshUxwAJzZbiIYFKkaSmXdJ1fRiHRERHi+4MGk+mBMwXnSVGPj7nQPS3qeLZHRGxRL9ScCAxk8Ur92Rnj5VCItHlHBMRrRDdQRXl8/nG4eaOp5uKz57sC8OkoDEkOWCO5K8CtJRgabnT6TfuS/ZXOKet2duPXVHRDqI7svLz+yPnJCxH07ANuGFDiQ+5WwF0NkWJrOuziEOCm5n7Jy8v7yYRGAHxio4kEyHuK+j3oIyXRr8o2G/wrUXMGIonQbFe18Kq3Ms39By/orw3KnsxKr06fHkxLjkDxubkEuNhMVAE2Ikuni98vsMYtwafQaYVwLvQ9qg1X2mI/xXzyuXQlgGNP+NO/kxLS7tOcOhMda7rz4rACIhH9Ky8vEGY+G4ZZ2ua9hi1gbhvQvBDScu3DUC1j8X1YSV0wDgLsX9m7tJl3lw9onRPDzGoBTFFp1NLyL+WaQUU5GSZG+IuIeYCrhskJ3ivN6o+EYFJDuCOaNBipuXGepI73gMq4k8pluh0E5GsXLoo8U1IMgPLyhDYYExqNL6/Lv1S9FT/7sHOkp0TXCvNYbgBp0hUfB6A2D6rsKn+7YMh9nvOoHkxJL6xLiGhMSzXtoiOfHqDn41ch5MmFC+O1ihEtDnP7c5QHDeJDTSQx8QGTH4E0wLwLWVfo0fXU5kOQyzR0ecL0o/EvoI1O95ZlzcpugAmiKVjKwu+1f2+0Yc9As5VZb3gX4JfQn9XwEyH+HUi1m/kc4hAW0S3A3J9TeaNOWQybQ8aEA0O8IDbmFagM6zsFP5PmA5DTNF5WUH7c7QZMR2GaKK7Ssw0FvyMe2XlIKYVUkrMR4Q/YB6b4t85HKIv5Pj9CY2Xq/3/Ep2qX+aN4prPtD0w2ftlI0z2GaatsJ5qztLPinkFO9Fzc3P7ghfrH/r5nulmiCY6qnhVSEQz4gkKIvvJD2sQS8yqfb3wifWeuN2jOazdRIewibQszszJuYO0yMnJuUXmjbZFHGYPTHAdN7iQOWtWxKMXfPNkx5FujJ3oEHOk9KGfpUw3QzTRsWHuCAloZDFlQaMDN+Ugqrocy8tUJulG/Mg34lGm2iR6YWHhteDnIq8diLmo8gwV0zH5HTGxRcddu1kOhg6PotGCKKbWdVg5N1eIIfpo1VbT3mW6GWxE30cCulbscjOlkLRsb7+UQGUuVOvGlABu0JdC9IChCqS1olNlg9+ocqOY0PG2FrHi1YHi4xJd15+2NorTaLO9h7sQsBOdTieqLX5VTDdD9OXFLCMBm26MdqANV7QpMXWm2iK69VS1AXmm0AmGfOIX4PUmS398omPjFME0oKZtsTPEqDM22qljJcFOdLTtDv4E+2vkM0BT2FR6sRAwaJQyZYuJ2Gyx5NSj2htSPzDpiVGg1aLzfga+mqqeaQX6L0HmjRh70a27Lib5KdNRgZjelsSq3W73NewKEx1xYaITwJVY/IuYDkM00Scv2zGOBETF1+MkM4npqIDga8RNwhMqUwKtFt3n+13wmlbGVBhaJDom9o4MxoQfYtoW6PQLNYDXqx65cX2r4n2+j5hWoN0e/BmOoeUpgDFH0qsFXA+FPQ5/lezDKjoBoq8Ta3TQ/MPl3zWK6XBAOMQtCglu1qcsN8NeScvcIV5d01cadqIjF9o8qd0p+rODaYW4RedBjnBwjbVq7QChPJYBPmda9Ef9sO88fC/NnDnzLnYL4MFqBvk4xt6aiO5ebfSBoLu5gmtxXZzsr0hyBXb1xRFxYHKwwivXfrJkv/EyN1VAn4tk/8hvPebyIK3J5ItR6Qssee1Ageh4drkbn7dT4fC8ZL/RRUeDqZZA2zeIVqAd7eSnud05JKEee3GtnsyEYUlhlwK4MWi3HiZeOVjsF/g+VN+biE6gN4nOYOV3UtiIhvO5028+xU3CgD5vg7B/yzFwXSf3FzvR6Y9s+Lar3GwMbW1Ex7kbHW0iw12bwHRcQPILVVtdn8Y0wYF+52LwChhV+3PMN8N0TARVQu9bJtKLMFAO5HGvSh7VFIpsikaHeNQPGt9A5JMkNG2asP2wJfSuhgMjwpOdPQp5fY0xTiD/vUxL0X8Q88JphWkF8Q5K1+dj7hVoby2Yi+Bq0G4nPkvRdjo36XiI5aaF/zNiUur9DN0Mpu3gmFx8JHH8inKxRLQUcmlpKWhesN4Zc+b0aukcrwSivuynR2lUkHjHjqo53lpBumABKjcRolbBluJ6FpaWKVTNWJ4eQLXQXnD5DwJ852ZdaAsgsvoTwM5wU1Z3hp9spwCqeigELcbS8RPE/QvX9M6iAd/rcH0YtrbJptyFdoYD1dwjPT39hnifD7rQhTiRkPAfxnOcWpCmnRwAAAAASUVORK5CYII=);background-repeat:no-repeat;background-size:contain;vertical-align:middle}.ais-pagination--item{display:inline-block;padding:3px}.ais-range-slider--value,.ais-range-slider--value-sub{font-size:.8em;padding-top:15px}.ais-pagination--item__disabled{visibility:hidden}.ais-hierarchical-menu--list__lvl1,.ais-hierarchical-menu--list__lvl2{margin-left:10px}.ais-range-slider--target{position:relative;direction:ltr;background:#F3F4F7;height:6px;margin-top:2em;margin-bottom:2em}.ais-range-slider--base{height:100%;position:relative;z-index:1;border-top:1px solid #DDD;border-bottom:1px solid #DDD;border-left:2px solid #DDD;border-right:2px solid #DDD}.ais-range-slider--origin{position:absolute;right:0;top:0;left:0;bottom:0}.ais-range-slider--connect{background:#46AEDA}.ais-range-slider--background{background:#F3F4F7}.ais-range-slider--handle{width:20px;height:20px;position:relative;z-index:1;background:#FFF;border:1px solid #46AEDA;border-radius:50%;cursor:pointer}.ais-range-slider--handle-lower{left:-10px;bottom:7px}.ais-range-slider--handle-upper{right:10px;bottom:7px}.ais-range-slider--tooltip{position:absolute;background:#FFF;top:-22px;font-size:.8em}.ais-range-slider--pips{box-sizing:border-box;position:absolute;height:3em;top:100%;left:0;width:100%}.ais-range-slider--value{width:40px;position:absolute;text-align:center;margin-left:-20px}.ais-range-slider--marker{position:absolute;background:#DDD;margin-left:-1px;width:1px;height:5px}.ais-range-slider--marker-sub{background:#DDD;width:2px;margin-left:-2px;height:13px}.ais-range-slider--marker-large{background:#DDD;width:2px;margin-left:-2px;height:12px}.ais-star-rating--star,.ais-star-rating--star__empty{display:inline-block;width:1em;height:1em}.ais-range-slider--marker-large:first-child{margin-left:0}.ais-star-rating--item{vertical-align:middle}.ais-star-rating--item__active{font-weight:700}.ais-star-rating--star:before{content:'\2605';color:#FBAE00}.ais-star-rating--star__empty:before{content:'\2606';color:#FBAE00}.ais-star-rating--link__disabled .ais-star-rating--star:before,.ais-star-rating--link__disabled .ais-star-rating--star__empty:before{color:#C9C9C9}.ais-root__collapsible .ais-header{cursor:pointer}.ais-root__collapsed .ais-body,.ais-root__collapsed .ais-footer{display:none}
\ No newline at end of file
diff --git a/lib/algolia-instant-search/instantsearch.min.js b/lib/algolia-instant-search/instantsearch.min.js
new file mode 100644
index 00000000..2bd5d590
--- /dev/null
+++ b/lib/algolia-instant-search/instantsearch.min.js
@@ -0,0 +1,15 @@
+/*! instantsearch.js 1.5.0 | © Algolia Inc. and other contributors; Licensed MIT | github.com/algolia/instantsearch.js */
+!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.instantsearch=t():e.instantsearch=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={exports:{},id:r,loaded:!1};return e[r].call(o.exports,o,o.exports,t),o.loaded=!0,o.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{"default":e}}var o=n(1),i=r(o);e.exports=i["default"]},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{"default":e}}Object.defineProperty(t,"__esModule",{value:!0}),n(2),n(3);var o=n(4),i=r(o),a=n(5),s=r(a),u=n(99),l=r(u),c=n(222),f=r(c),p=n(400),d=r(p),h=n(404),m=r(h),v=n(408),g=r(v),y=n(411),b=r(y),_=n(416),C=r(_),w=n(420),x=r(w),P=n(422),E=r(P),R=n(424),S=r(R),O=n(425),T=r(O),k=n(432),N=r(k),j=n(437),A=r(j),M=n(439),F=r(M),I=n(443),D=r(I),U=n(444),L=r(U),H=n(447),V=r(H),B=n(450),q=r(B),W=n(220),K=r(W),Q=(0,i["default"])(s["default"]);Q.widgets={clearAll:f["default"],currentRefinedValues:d["default"],hierarchicalMenu:m["default"],hits:g["default"],hitsPerPageSelector:b["default"],menu:C["default"],refinementList:x["default"],numericRefinementList:E["default"],numericSelector:S["default"],pagination:T["default"],priceRanges:N["default"],searchBox:A["default"],rangeSlider:F["default"],sortBySelector:D["default"],starRating:L["default"],stats:V["default"],toggle:q["default"]},Q.version=K["default"],Q.createQueryString=l["default"].url.getQueryStringFromState,t["default"]=Q},function(e,t){"use strict";Object.freeze||(Object.freeze=function(e){if(Object(e)!==e)throw new TypeError("Object.freeze can only be called on Objects.");return e})},function(e,t){"use strict";var n={};if(!Object.setPrototypeOf&&!n.__proto__){var r=Object.getPrototypeOf;Object.getPrototypeOf=function(e){return e.__proto__?e.__proto__:r.call(Object,e)}}},function(e,t){"use strict";function n(e){var t=function(){for(var t=arguments.length,n=Array(t),o=0;t>o;o++)n[o]=arguments[o];return new(r.apply(e,[null].concat(n)))};return t.__proto__=e,t.prototype=e.prototype,t}var r=Function.prototype.bind;e.exports=n},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{"default":e}}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function s(){return"#"}function u(e,t){if(!t.getConfiguration)return e;var n=t.getConfiguration(e);return(0,y["default"])({},e,n,function(e,t){return Array.isArray(e)?(0,_["default"])(e,t):void 0})}Object.defineProperty(t,"__esModule",{value:!0});var l=Object.assign||function(e){for(var t=1;te;e+=2){var t=re[e],n=re[e+1];t(n),re[e]=void 0,re[e+1]=void 0}G=0}function v(){try{var e=n(11);return Q=e.runOnLoop||e.runOnContext,f()}catch(t){return h()}}function g(e,t){var n=this,r=n._state;if(r===se&&!e||r===ue&&!t)return this;var o=new this.constructor(b),i=n._result;if(r){var a=arguments[r-1];X(function(){F(r,o,a,i)})}else N(n,o,e,t);return o}function y(e){var t=this;if(e&&"object"==typeof e&&e.constructor===t)return e;var n=new t(b);return S(n,e),n}function b(){}function _(){return new TypeError("You cannot resolve a promise with itself")}function C(){return new TypeError("A promises callback cannot return that same promise.")}function w(e){try{return e.then}catch(t){return le.error=t,le}}function x(e,t,n,r){try{e.call(t,n,r)}catch(o){return o}}function P(e,t,n){X(function(e){var r=!1,o=x(n,t,function(n){r||(r=!0,t!==n?S(e,n):T(e,n))},function(t){r||(r=!0,k(e,t))},"Settle: "+(e._label||" unknown promise"));!r&&o&&(r=!0,k(e,o))},e)}function E(e,t){t._state===se?T(e,t._result):t._state===ue?k(e,t._result):N(t,void 0,function(t){S(e,t)},function(t){k(e,t)})}function R(e,t,n){t.constructor===e.constructor&&n===oe&&constructor.resolve===ie?E(e,t):n===le?k(e,le.error):void 0===n?T(e,t):s(n)?P(e,t,n):T(e,t)}function S(e,t){e===t?k(e,_()):a(t)?R(e,t,w(t)):T(e,t)}function O(e){e._onerror&&e._onerror(e._result),j(e)}function T(e,t){e._state===ae&&(e._result=t,e._state=se,0!==e._subscribers.length&&X(j,e))}function k(e,t){e._state===ae&&(e._state=ue,e._result=t,X(O,e))}function N(e,t,n,r){var o=e._subscribers,i=o.length;e._onerror=null,o[i]=t,o[i+se]=n,o[i+ue]=r,0===i&&e._state&&X(j,e)}function j(e){var t=e._subscribers,n=e._state;if(0!==t.length){for(var r,o,i=e._result,a=0;aa;a++)N(r.resolve(e[a]),void 0,t,n);return o}function L(e){var t=this,n=new t(b);return k(n,e),n}function H(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}function V(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}function B(e){this._id=he++,this._state=void 0,this._result=void 0,this._subscribers=[],b!==e&&("function"!=typeof e&&H(),this instanceof B?I(this,e):V())}function q(e,t){this._instanceConstructor=e,this.promise=new e(b),Array.isArray(t)?(this._input=t,this.length=t.length,this._remaining=t.length,this._result=new Array(this.length),0===this.length?T(this.promise,this._result):(this.length=this.length||0,this._enumerate(),0===this._remaining&&T(this.promise,this._result))):k(this.promise,this._validationError())}function W(){var e;if("undefined"!=typeof o)e=o;else if("undefined"!=typeof self)e=self;else try{e=Function("return this")()}catch(t){throw new Error("polyfill failed because global object is unavailable in this environment")}var n=e.Promise;n&&"[object Promise]"===Object.prototype.toString.call(n.resolve())&&!n.cast||(e.Promise=me)}var K;K=Array.isArray?Array.isArray:function(e){return"[object Array]"===Object.prototype.toString.call(e)};var Q,$,z,Y=K,G=0,X=function(e,t){re[G]=e,re[G+1]=t,G+=2,2===G&&($?$(m):z())},J="undefined"!=typeof window?window:void 0,Z=J||{},ee=Z.MutationObserver||Z.WebKitMutationObserver,te="undefined"!=typeof e&&"[object process]"==={}.toString.call(e),ne="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel,re=new Array(1e3);z=te?c():ee?p():ne?d():void 0===J?v():h();var oe=g,ie=y,ae=void 0,se=1,ue=2,le=new A,ce=new A,fe=D,pe=U,de=L,he=0,me=B;B.all=fe,B.race=pe,B.resolve=ie,B.reject=de,B._setScheduler=u,B._setAsap=l,B._asap=X,B.prototype={constructor:B,then:oe,"catch":function(e){return this.then(null,e)}};var ve=q;q.prototype._validationError=function(){return new Error("Array Methods must be provided an Array")},q.prototype._enumerate=function(){for(var e=this.length,t=this._input,n=0;this._state===ae&&e>n;n++)this._eachEntry(t[n],n)},q.prototype._eachEntry=function(e,t){var n=this._instanceConstructor,r=n.resolve;if(r===ie){var o=w(e);if(o===oe&&e._state!==ae)this._settledAt(e._state,t,e._result);else if("function"!=typeof o)this._remaining--,this._result[t]=e;else if(n===me){var i=new n(b);R(i,e,o),this._willSettleAt(i,t)}else this._willSettleAt(new n(function(t){t(e)}),t)}else this._willSettleAt(r(e),t)},q.prototype._settledAt=function(e,t,n){var r=this.promise;r._state===ae&&(this._remaining--,e===ue?k(r,n):this._result[t]=n),0===this._remaining&&T(r,this._result)},q.prototype._willSettleAt=function(e,t){var n=this;N(e,void 0,function(e){n._settledAt(se,t,e)},function(e){n._settledAt(ue,t,e)})};var ge=W,ye={Promise:me,polyfill:ge};n(12).amd?(r=function(){return ye}.call(t,n,t,i),!(void 0!==r&&(i.exports=r))):"undefined"!=typeof i&&i.exports?i.exports=ye:"undefined"!=typeof this&&(this.ES6Promise=ye),ge()}).call(this)}).call(t,n(9),function(){return this}(),n(10)(e))},function(e,t){function n(){l=!1,a.length?u=a.concat(u):c=-1,u.length&&r()}function r(){if(!l){var e=setTimeout(n);l=!0;for(var t=u.length;t;){for(a=u,u=[];++c1)for(var n=1;n=u.hosts[e.hostType].length&&(d||!h)?u._promise.reject(r):(u.hostIndex[e.hostType]=++u.hostIndex[e.hostType]%u.hosts[e.hostType].length,r instanceof c.RequestTimeout?v():(d||(f=1/0),t(n,s)))}function v(){return u.hostIndex[e.hostType]=++u.hostIndex[e.hostType]%u.hosts[e.hostType].length,s.timeout=u.requestTimeout*(f+1),t(n,s)}var g;if(u._useCache&&(g=e.url),u._useCache&&r&&(g+="_body_"+s.body),u._useCache&&a&&void 0!==a[g])return i("serving response from cache"),u._promise.resolve(JSON.parse(a[g]));if(f>=u.hosts[e.hostType].length)return!h||d?(i("could not get any response"),u._promise.reject(new c.AlgoliaSearchError("Cannot connect to the AlgoliaSearch API. Send an email to support@algolia.com to report and resolve the issue. Application id was: "+u.applicationID))):(i("switching to fallback"),f=0,s.method=e.fallback.method,s.url=e.fallback.url,s.jsonBody=e.fallback.body,s.jsonBody&&(s.body=l(s.jsonBody)),o=u._computeRequestHeaders(),s.timeout=u.requestTimeout*(f+1),u.hostIndex[e.hostType]=0,d=!0,t(u._request.fallback,s));var y=u.hosts[e.hostType][u.hostIndex[e.hostType]]+s.url,b={body:s.body,jsonBody:s.jsonBody,method:s.method,headers:o,timeout:s.timeout,debug:i};return i("method: %s, url: %s, headers: %j, timeout: %d",b.method,y,b.headers,b.timeout),n===u._request.fallback&&i("using fallback"),n.call(u,y,b).then(p,m)}var r,o,i=n(42)("algoliasearch:"+e.url),a=e.cache,u=this,f=0,d=!1,h=u._useFallback&&u._request.fallback&&e.fallback;this.apiKey.length>p&&void 0!==e.body&&void 0!==e.body.params?(e.body.apiKey=this.apiKey,o=this._computeRequestHeaders(!1)):o=this._computeRequestHeaders(),void 0!==e.body&&(r=l(e.body)),i("request start");var m=t(u._request,{url:e.url,method:e.method,body:r,jsonBody:e.body,timeout:u.requestTimeout*(f+1)});return e.callback?void m.then(function(t){s(function(){e.callback(null,t)},u._setTimeout||setTimeout)},function(t){s(function(){e.callback(t)},u._setTimeout||setTimeout)}):m},_getSearchParams:function(e,t){if(void 0===e||null===e)return t;for(var n in e)null!==n&&void 0!==e[n]&&e.hasOwnProperty(n)&&(t+=""===t?"":"&",t+=n+"="+encodeURIComponent("[object Array]"===Object.prototype.toString.call(e[n])?l(e[n]):e[n]));return t},_computeRequestHeaders:function(e){var t=n(15),r={"x-algolia-agent":this._ua,"x-algolia-application-id":this.applicationID};return e!==!1&&(r["x-algolia-api-key"]=this.apiKey),this.userToken&&(r["x-algolia-usertoken"]=this.userToken),this.securityTags&&(r["x-algolia-tagfilters"]=this.securityTags),this.extraHeaders&&t(this.extraHeaders,function(e){r[e.name]=e.value}),r}},r.prototype.Index.prototype={clearCache:function(){this.cache={}},addObject:function(e,t,n){var r=this;return 1!==arguments.length&&"function"!=typeof t||(n=t,t=void 0),this.as._jsonRequest({method:void 0!==t?"PUT":"POST",url:"/1/indexes/"+encodeURIComponent(r.indexName)+(void 0!==t?"/"+encodeURIComponent(t):""),body:e,hostType:"write",callback:n})},addObjects:function(e,t){var r=n(34),o="Usage: index.addObjects(arrayOfObjects[, callback])";if(!r(e))throw new Error(o);for(var i=this,a={requests:[]},s=0;sa&&(t=a),"published"!==e.status?c._promise.delay(t).then(n):e})}function r(e){s(function(){t(null,e)},c._setTimeout||setTimeout)}function o(e){s(function(){t(e)},c._setTimeout||setTimeout)}var i=100,a=5e3,u=0,l=this,c=l.as,f=n();return t?void f.then(r,o):f},clearIndex:function(e){var t=this;return this.as._jsonRequest({method:"POST",url:"/1/indexes/"+encodeURIComponent(t.indexName)+"/clear",hostType:"write",callback:e})},getSettings:function(e){var t=this;return this.as._jsonRequest({method:"GET",url:"/1/indexes/"+encodeURIComponent(t.indexName)+"/settings",hostType:"read",callback:e})},setSettings:function(e,t){var n=this;return this.as._jsonRequest({method:"PUT",url:"/1/indexes/"+encodeURIComponent(n.indexName)+"/settings",hostType:"write",body:e,callback:t})},listUserKeys:function(e){var t=this;return this.as._jsonRequest({method:"GET",url:"/1/indexes/"+encodeURIComponent(t.indexName)+"/keys",hostType:"read",callback:e})},getUserKeyACL:function(e,t){var n=this;return this.as._jsonRequest({method:"GET",url:"/1/indexes/"+encodeURIComponent(n.indexName)+"/keys/"+e,hostType:"read",callback:t})},deleteUserKey:function(e,t){var n=this;return this.as._jsonRequest({method:"DELETE",url:"/1/indexes/"+encodeURIComponent(n.indexName)+"/keys/"+e,hostType:"write",callback:t})},addUserKey:function(e,t,r){var o=n(34),i="Usage: index.addUserKey(arrayOfAcls[, params, callback])";if(!o(e))throw new Error(i);1!==arguments.length&&"function"!=typeof t||(r=t,t=null);var a={acl:e};return t&&(a.validity=t.validity,a.maxQueriesPerIPPerHour=t.maxQueriesPerIPPerHour,a.maxHitsPerQuery=t.maxHitsPerQuery,a.description=t.description,t.queryParameters&&(a.queryParameters=this.as._getSearchParams(t.queryParameters,"")),a.referers=t.referers),this.as._jsonRequest({method:"POST",url:"/1/indexes/"+encodeURIComponent(this.indexName)+"/keys",body:a,hostType:"write",callback:r})},addUserKeyWithValidity:u(function(e,t,n){return this.addUserKey(e,t,n)},a("index.addUserKeyWithValidity()","index.addUserKey()")),updateUserKey:function(e,t,r,o){var i=n(34),a="Usage: index.updateUserKey(key, arrayOfAcls[, params, callback])";if(!i(t))throw new Error(a);2!==arguments.length&&"function"!=typeof r||(o=r,r=null);var s={acl:t};return r&&(s.validity=r.validity,s.maxQueriesPerIPPerHour=r.maxQueriesPerIPPerHour,s.maxHitsPerQuery=r.maxHitsPerQuery,s.description=r.description,r.queryParameters&&(s.queryParameters=this.as._getSearchParams(r.queryParameters,"")),s.referers=r.referers),this.as._jsonRequest({method:"PUT",url:"/1/indexes/"+encodeURIComponent(this.indexName)+"/keys/"+e,body:s,hostType:"write",callback:o})},_search:function(e,t,n){return this.as._jsonRequest({cache:this.cache,method:"POST",url:t||"/1/indexes/"+encodeURIComponent(this.indexName)+"/query",body:{params:e},hostType:"read",fallback:{method:"GET",url:"/1/indexes/"+encodeURIComponent(this.indexName),body:{params:e}},callback:n})},as:null,indexName:null,typeAheadArgs:null,typeAheadValueOption:null}},function(e,t,n){"use strict";function r(e,t){var r=n(15),o=this;"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):o.stack=(new Error).stack||"Cannot get a stacktrace, browser is too old",this.name=this.constructor.name,this.message=e||"Unknown error",t&&r(t,function(e,t){o[t]=e})}function o(e,t){function n(){var n=Array.prototype.slice.call(arguments,0);"string"!=typeof n[0]&&n.unshift(t),r.apply(this,n),this.name="AlgoliaSearch"+e+"Error"}return i(n,r),n}var i=n(7);i(r,Error),e.exports={AlgoliaSearchError:r,UnparsableJSON:o("UnparsableJSON","Could not parse the incoming response as JSON, see err.more for details"),RequestTimeout:o("RequestTimeout","Request timedout before getting a response"),Network:o("Network","Network issue, see err.more for details"),JSONPScriptFail:o("JSONPScriptFail","
+
+
+
+
+
+
+
+
+
+ 标签: CVE | 混元霹雳手
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+