diff --git a/application/assets/css/main.css b/application/assets/css/main.css index 7a81774..a965154 100644 --- a/application/assets/css/main.css +++ b/application/assets/css/main.css @@ -100,10 +100,11 @@ h2 { h2.reblog::before { content: ""; display: inline-block; - width: 20px; /* Adjust to your image size */ - height: 20px; /* Adjust to your image size */ + width: 1.1rem; /* Adjust to your image size */ + height: 1.1rem; /* Adjust to your image size */ background-image: url("../icons/reblog.svg"); background-size: cover; /* Adjusts image to fill the box */ + padding: 3px 0 0 0; margin-right: 5px; /* Space between image and text */ } diff --git a/application/assets/icons/E0AB.svg b/application/assets/icons/E0AB.svg new file mode 100644 index 0000000..8b7ef9f --- /dev/null +++ b/application/assets/icons/E0AB.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/application/assets/icons/qr.svg b/application/assets/icons/qr.svg deleted file mode 100644 index 18d5984..0000000 --- a/application/assets/icons/qr.svg +++ /dev/null @@ -1,461 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/application/assets/icons/sleep.svg b/application/assets/icons/sleep.svg new file mode 100644 index 0000000..73379e7 --- /dev/null +++ b/application/assets/icons/sleep.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + diff --git a/application/index.js b/application/index.js index 0f637d0..04960ea 100644 --- a/application/index.js +++ b/application/index.js @@ -12,29 +12,50 @@ import { volume_control, } from "./assets/js/helper.js"; import { mastodon_account_info, reblog } from "./assets/js/mastodon.js"; - import localforage from "localforage"; import { detectMobileOS } from "./assets/js/helper.js"; import m from "mithril"; import { v4 as uuidv4 } from "uuid"; import * as sanitizeHtml from "sanitize-html"; - import dayjs from "dayjs"; import duration from "dayjs/plugin/duration"; - import swiped from "swiped-events"; - import fxparser from "fast-xml-parser"; +import Timeworker from "./worker.js"; // Extend dayjs with the duration plugin dayjs.extend(duration); +const worker = new Worker(new URL("./worker.js", import.meta.url), { + type: "module", +}); + +const sw_channel = new BroadcastChannel("sw-messages"); + +function startTimer(timerDuration) { + worker.postMessage({ action: "start", duration: timerDuration }); + side_toaster("sleep mode on", 3000); + status.sleepTimer = true; +} + +function stopTimer() { + worker.postMessage({ action: "stop" }); + side_toaster("sleep mode off", 3000); +} + +worker.onmessage = function (event) { + console.log(event.data.remaining); + if (event.data.action === "stop") { + globalAudioElement.pause(); + status.sleepTimer = false; + } +}; + const parser = new fxparser.XMLParser({ ignoreAttributes: false, parseAttributeValue: true, }); -//github.com/laurentpayot/minidenticons#usage export let status = { visibility: true, deviceOnline: true, @@ -115,8 +136,6 @@ function add_read_article(id) { let xml_parser = new DOMParser(); -let feed_download_list = []; - if ("b2g" in navigator || "navigator.mozApps" in navigator) status.notKaiOS = false; @@ -138,7 +157,6 @@ if (!status.notKaiOS) { } let articles = []; -const channel = new BroadcastChannel("sw-messages"); if (status.debug) { window.onerror = function (msg, url, linenumber) { @@ -206,6 +224,7 @@ let app_launcher = () => { const params = new URLSearchParams(currentUrl.split("?")[1]); const code = params.get("code"); + if (!code) return false; let result = code.split("#")[0]; @@ -218,34 +237,45 @@ let app_launcher = () => { }); activity.onsuccess = function () { console.log("Activity successfuly handled"); + setTimeout(() => { + window.close(); + }, 4000); }; activity.onerror = function () { console.log("The activity encouter en error: " + this.error); alert(this.error); }; - } catch (e) {} + } catch (e) { + console.log(e); + } + if ("b2g" in navigator) { try { let activity = new WebActivity("feedolin", { name: "feedolin", - type: "string", data: result, }); activity.start().then( (rv) => { - window.close(); + setTimeout(() => { + window.close(); + }, 3000); - console.log("Results passed back from activity handler:"); - console.log(rv); + // alert(rv); }, (err) => { - alert(err); + //alert(err); + + if (err == "NO_PROVIDER") { + } } ); - } catch (e) {} + } catch (e) { + alert(e); + } } - }, 4000); + }, 2000); }; app_launcher(); @@ -449,6 +479,7 @@ const fetchContent = async (feed_download_list) => { title: k.account.display_name || k.account.username, content: k.content, url: k.uri, + reblog: false, }; if (k.media_attachments.length > 0) { @@ -536,6 +567,7 @@ const fetchContent = async (feed_download_list) => { f.url = f.link["@_href"]; f.feed_title = e.title; f.typeOfFeed = "ATOM"; + f.reblog = false; if (f["yt:videoId"]) f.youtubeid = f["yt:videoId"]; @@ -580,6 +612,7 @@ const fetchContent = async (feed_download_list) => { f.feed_title = e.title; f.typeOfFeed = "RSS"; + f.reblog = false; if ( dayjs( @@ -661,6 +694,7 @@ let load_mastodon = () => { title: k.account.display_name, content: k.content, url: k.uri, + reblog: false, }; if (k.media_attachments.length > 0) { @@ -704,9 +738,7 @@ let load_mastodon = () => { } } } - } catch (e) { - alert(e); - } + } catch (e) {} articles.push(f); }); @@ -721,13 +753,14 @@ let start_loading = () => { } //load mastodon if (settings.mastodon_token) { - mastodon_account_info( - settings.mastodon_server_url, - settings.mastodon_token - ).then((f) => { - status.mastodon_logged = f.display_name; - load_mastodon(); - }); + mastodon_account_info(settings.mastodon_server_url, settings.mastodon_token) + .then((f) => { + status.mastodon_logged = f.display_name; + load_mastodon(); + }) + .catch((e) => { + alert(e); + }); } channel_filter = localStorage.getItem("last_channel_filter"); @@ -789,6 +822,18 @@ localforage m.route.set("/start?index=0"); side_toaster("Cached feeds loaded", 4000); + + //load mastodon + if (settings.mastodon_token) { + mastodon_account_info( + settings.mastodon_server_url, + settings.mastodon_token + ) + .then((f) => { + status.mastodon_logged = f.display_name; + }) + .catch((e) => {}); + } }) .catch((err) => {}); } @@ -844,6 +889,8 @@ var options = { class: "item", oncreate: ({ dom }) => { dom.focus(); + + scrollToCenter(); }, onclick: () => { m.route.set("/about"); @@ -942,13 +989,13 @@ var start = { if (page_index == 0 && i == 0) { setTimeout(() => { vnode.dom.focus(); - }, 2000); + }, 1200); } else { if (h.id == page_index) { setTimeout(() => { vnode.dom.focus(); scrollToCenter(); - }, 1100); + }, 1200); } } @@ -978,7 +1025,7 @@ var start = { "h2", { oncreate: ({ dom }) => { - if (h.reblog) { + if (h.reblog === true) { dom.classList.add("reblog"); } }, @@ -995,6 +1042,14 @@ var start = { var article = { view: function () { + const matchedArticle = articles.find((h) => { + var index = m.route.param("index"); + if (index != h.id) return false; + + current_article = h; + return true; // Return true to indicate a match + }); + return m( "div", { @@ -1005,83 +1060,62 @@ var article = { bottom_bar("", "", ""); }, }, - articles.map((h, i) => { - var index = m.route.param("index"); - if (index != h.id) return; - - current_article = h; - - console.log(h); - - return m( - "article", - { - class: "item", - tabindex: 0, - - oncreate: (vnode) => { - vnode.dom.focus(); - - if (h.type == "audio") { - h.type = "audio"; - bottom_bar( - "", - "", - "" - ); - } - - if (h.type == "video") { - h.type = "video"; - bottom_bar( - "", - "", - "" - ); - } - - if (h.type == "youtube") { - h.type = "youtube"; - bottom_bar( - "", - "", - "" - ); - } + matchedArticle + ? m( + "article", + { + class: "item", + tabindex: 0, + oncreate: (vnode) => { + vnode.dom.focus(); + if ( + matchedArticle.type === "audio" || + matchedArticle.type === "video" || + matchedArticle.type === "youtube" + ) { + bottom_bar( + "", + "", + "" + ); + } + }, }, - }, - [ - m( - "time", - { - id: "top", - - oncreate: () => { - setTimeout(() => { - document.querySelector("#top").scrollIntoView(); - }, 1000); + [ + m( + "time", + { + id: "top", + oncreate: () => { + setTimeout(() => { + document.querySelector("#top").scrollIntoView(); + }, 1000); + }, }, - }, - dayjs(h.isoDate).format("DD MMM YYYY") - ), - m( - "h2", - { - oncreate: ({ dom }) => { - if (h.reblog) { - dom.classList.add("reblog"); - } + dayjs(matchedArticle.isoDate).format("DD MMM YYYY") + ), + m( + "h2", + { + oncreate: ({ dom }) => { + if (matchedArticle.reblog) dom.classList.add("reblog"); + }, }, - }, - h.title - ), - m("div", { class: "text" }, [m.trust(clean(h.content))]), - h.reblog - ? m("div", { class: "text" }, "reblogged from:" + h.reblogUser) - : "", - ] - ); - }) + matchedArticle.title + ), + m("div", { class: "text" }, [ + m.trust(clean(matchedArticle.content)), + ]), + matchedArticle.reblog + ? m( + "div", + { class: "text" }, + "reblogged from:" + matchedArticle.reblogUser + ) + : "", + ] + ) + : m("div", "Article not found") // Fallback if no match ); }, }; @@ -1161,7 +1195,7 @@ var intro = { id: "intro", oninit: () => { //check if is a mastodon redirect - mastodon_connect(); + if (status.notKaiOS) mastodon_connect(); }, onremove: () => { localStorage.setItem("version", status.version); @@ -1446,8 +1480,25 @@ const AudioPlayerView = { top_bar("", "", ""); bottom_bar("", "", ""); + if (settings.sleepTimer) { + bottom_bar( + "", + "", + "" + ); - if (status.notKaiOS) top_bar("", "", ""); + document + .querySelector("div.button-left") + .addEventListener("click", function (event) { + status.sleepTimer + ? stopTimer() + : startTimer(settings.sleepTimer * 60 * 1000); + }); + } + + if (status.notKaiOS) { + top_bar("", "", ""); + } document .querySelector("div.button-center") @@ -1808,9 +1859,7 @@ var settingsView = { m( "div", { - tabindex: 1, - - class: "item input-parent flex ", + class: "item input-parent flex ", }, [ m( @@ -1841,6 +1890,7 @@ var settingsView = { "div", { id: "account_info", + class: "item", }, `You have successfully logged in as ${status.mastodon_logged} and the data is being loaded from server ${settings.mastodon_server_url}.` ) @@ -1912,6 +1962,29 @@ var settingsView = { "Connect" ), + m("div", { class: "seperation" }), + m( + "div", + { + class: "item input-parent flex ", + }, + [ + m( + "label", + { + for: "sleep-timer", + }, + "Sleep timer in minutes" + ), + m("input", { + id: "sleep-timer", + placeholder: "", + value: settings.sleepTimer, + type: "tel", + }), + ] + ), + m( "button", { @@ -1922,6 +1995,18 @@ var settingsView = { side_toaster("URL not valid"); settings.opml_url = document.getElementById("url-opml").value; settings.proxy_url = document.getElementById("url-proxy").value; + let sleepTimerInput = + document.getElementById("sleep-timer").value; + if ( + sleepTimerInput && + !isNaN(sleepTimerInput) && + Number(sleepTimerInput) > 0 + ) { + settings.sleepTimer = parseInt(sleepTimerInput, 10); + } else { + settings.sleepTimer = ""; // Or leave it undefined if that's preferred + } + status.mastodon_logged ? null : (settings.mastodon_server_url = document.getElementById( @@ -2359,6 +2444,12 @@ document.addEventListener("DOMContentLoaded", function (e) { window.open(current_article.url); } + if (r.startsWith("/AudioPlayerView")) { + status.sleepTimer + ? stopTimer() + : startTimer(settings.sleepTimer * 60 * 1000); + } + break; case "Enter": @@ -2514,43 +2605,46 @@ window.addEventListener("beforeunload", (event) => { //webActivity KaiOS 3 -if ("serviceWorker" in navigator) { - navigator.serviceWorker.getRegistration().then((registration) => { - if (!registration) { - // No service worker registered, proceed with registration - try { - navigator.serviceWorker - .register(new URL("sw.js", import.meta.url), { - type: "module", - }) - .then((registration) => { - if (registration.waiting) { - // Handle waiting service worker if needed - } else { - // Registration was successful, no waiting worker - } +try { + navigator.serviceWorker + .register(new URL("sw.js", import.meta.url), { + type: "module", + }) + .then((registration) => { + console.log("Service Worker registered successfully."); + + // Check if a service worker is waiting to be activated + if (registration.waiting) { + console.log("A waiting Service Worker is already in place."); + registration.update(); + } - registration.systemMessageManager.subscribe("activity").then( - (rv) => { - console.log(rv); - }, - (error) => { - console.log(error); - } - ); - }); - } catch (e) { - console.log(e); + if ("b2g" in navigator) { + // Subscribe to system messages if available + if (registration.systemMessageManager) { + registration.systemMessageManager.subscribe("activity").then( + () => { + console.log("Subscribed to general activity."); + }, + (error) => { + alert("Error subscribing to activity:", error); + } + ); + } else { + alert("systemMessageManager is not available."); + } } - } else { - // Service worker already registered - } - }); + }) + .catch((error) => { + alert("Service Worker registration failed:", error); + }); +} catch (e) { + console.error("Error during Service Worker setup:", e); } -const sw_channel = new BroadcastChannel("sw-messages"); +//KaiOS3 handel mastodon oauth sw_channel.addEventListener("message", (event) => { - let result = event.data.oauth_success.data; + let result = event.data.oauth_success; if (result) { var myHeaders = new Headers(); @@ -2575,8 +2669,6 @@ sw_channel.addEventListener("message", (event) => { fetch(settings.mastodon_server_url + "/oauth/token", requestOptions) .then((response) => response.json()) // Parse the JSON once .then((data) => { - console.log(data); // Log the parsed data - settings.mastodon_token = data.access_token; // Access the token localforage.setItem("settings", settings); m.route.set("/start?index=0"); diff --git a/application/manifest.webapp b/application/manifest.webapp index c35cfdf..5d27093 100644 --- a/application/manifest.webapp +++ b/application/manifest.webapp @@ -1,5 +1,5 @@ { - "version": "2.0.6", + "version": "2.0.7", "name": "feedolin", "description": "Feedolin is an RSS / Atom / Mastodon reader and podcast player. It is intended for users who already use an rss reader client and want to read their feeds on a kaios device. the list of subscribed websites / podcasts is managed locally or online in an opml file.", "launch_path": "/index.html", diff --git a/application/manifest.webmanifest b/application/manifest.webmanifest index 56030a6..51974fb 100644 --- a/application/manifest.webmanifest +++ b/application/manifest.webmanifest @@ -24,13 +24,13 @@ ], "b2g_features": { - "version": "1.8.66", + "version": "1.8.110", "id": "feedolin", "subtitle": "RSS Reader and Mastodon Reader", "core": true, "type": "privileged", "display": "fullscreen", - "theme_color": "#ffffff", + "origin": "http://feedolin.localhost", "developer": { "name": "strukturart", @@ -40,7 +40,11 @@ "dependencies": { "ads-sdk": "1.5.8" }, - "messages": [{ "serviceworker-notification": "index.html" }, "activity"], + + "messages": [ + { "serviceworker-notification": "index.html" }, + { "activity": "/index.html" } + ], "activities": { "feedolin": {} diff --git a/application/sw.js b/application/sw.js index a2fcbd7..9ef8a59 100644 --- a/application/sw.js +++ b/application/sw.js @@ -1,37 +1,41 @@ -const userAgent = navigator.userAgent || ""; - -const channel = new BroadcastChannel("sw-messages"); +const sw_channel = new BroadcastChannel("sw-messages"); +sw_channel.addEventListener("message", (event) => { + sw_channel.postMessage({ + test: event.data.test, + }); +}); +self.addEventListener("systemmessage", async (evt) => { + // Store evt data early + let activityData; -self.addEventListener("activate", (event) => {}); + if (evt.name === "activity") { + try { + const handler = evt.data.webActivityRequestHandler(); -self.onsystemmessage = (evt) => { - try { - let m = evt.data.json(); - self.registration.showNotification("feedolin", { - body: m.data.note, - }); - } catch (e) {} + const { name: activityName, data } = handler.source; - try { - const serviceHandler = () => { - if (evt.name === "activity") { - handler = evt.data.webActivityRequestHandler(); - const { name: activityName, data: activityData } = handler.source; - if (activityName == "feedolin") { - let code = activityData; + // Store data for later use + activityData = data; - channel.postMessage({ - oauth_success: code, - }); - return "OK"; - } + if (activityData.name === "feedolin") { + sw_channel.postMessage({ + oauth_success: activityData.data, + }); } - }; - evt.waitUntil(serviceHandler()); - } catch (e) {} -}; -if (!userAgent.includes("KaiOS")) { - const CACHE_NAME = "pwa-cache-v0.1092"; + } catch (error) { + console.error("Error handling system message:", error); + } + } +}); + +sw_channel.postMessage({ + oauth_success: navigator.userAgent, +}); + +const userAgent = navigator.userAgent || ""; + +if (userAgent && !userAgent.includes("KAIOS")) { + const CACHE_NAME = "pwa-cache-v0.1149"; const FILE_LIST_URL = "/file-list.json"; // URL of the JSON file containing the array of files self.addEventListener("install", (event) => { diff --git a/application/worker.js b/application/worker.js new file mode 100644 index 0000000..69b1a5c --- /dev/null +++ b/application/worker.js @@ -0,0 +1,24 @@ +let timerId = null; +let endTime = 0; + +self.onmessage = function (event) { + const { action, duration } = event.data; + + if (action === "start") { + endTime = Date.now() + duration; + clearInterval(timerId); // Clear any previous timer + timerId = setInterval(() => { + const remainingTime = endTime - Date.now(); + self.postMessage({ remaining: remainingTime }); + if (remainingTime <= 0) { + clearInterval(timerId); + timerId = null; // Reset timerId when the timer completes + self.postMessage({ action: "stop" }); + } + }, 1000); // Check every second + } else if (action === "stop") { + clearInterval(timerId); + timerId = null; // Reset timerId so that a new "start" message works correctly + endTime = 0; // Reset endTime to prevent continuing after stopping + } +}; diff --git a/docs/assets/icons/E0AB.svg b/docs/assets/icons/E0AB.svg new file mode 100644 index 0000000..8b7ef9f --- /dev/null +++ b/docs/assets/icons/E0AB.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/docs/assets/icons/qr.svg b/docs/assets/icons/qr.svg deleted file mode 100644 index 18d5984..0000000 --- a/docs/assets/icons/qr.svg +++ /dev/null @@ -1,461 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/assets/icons/sleep.svg b/docs/assets/icons/sleep.svg new file mode 100644 index 0000000..73379e7 --- /dev/null +++ b/docs/assets/icons/sleep.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + diff --git a/docs/file-list.json b/docs/file-list.json index efbab4f..1c94187 100644 --- a/docs/file-list.json +++ b/docs/file-list.json @@ -9,6 +9,7 @@ "/reblog.a18be2b5.svg", "/Roboto-Regular.4f1a9903.ttf", "/index.8d33ff60.js", +"/worker.85859de9.js", "/icon-112-112.185b7f3e.png", "/index.runtime.8c6e9fd2.js", "/file-list.json", @@ -25,6 +26,7 @@ "/assets/icons/option.svg", "/assets/icons/intro.png", "/assets/icons/icon-112-112.png", +"/assets/icons/sleep.svg", "/assets/icons/delete.svg", "/assets/icons/online.svg", "/assets/icons/reblog.svg", @@ -32,7 +34,6 @@ "/assets/icons/E252.svg", "/assets/icons/person.svg", "/assets/icons/select.svg", -"/assets/icons/qr.svg", "/assets/icons/23EF.svg", "/assets/icons/E261.svg", "/assets/icons/25B6.svg", @@ -41,6 +42,7 @@ "/assets/icons/icon-56-56.svg", "/assets/icons/favicon.ico", "/assets/icons/link.svg", +"/assets/icons/E0AB.svg", "/assets/icons/back.svg", "/assets/icons/2B07.svg", "/assets/icons/E253.svg", diff --git a/docs/index.339e55c4.js b/docs/index.339e55c4.js index 72d0092..b7ff220 100644 --- a/docs/index.339e55c4.js +++ b/docs/index.339e55c4.js @@ -1,13 +1,13 @@ -!function(){function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,N,T,O,_,C,P,L,D,R,B,M,q,U,j,F,V,$,z,H,G,W,Y,K,Z,Q,J,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eN,eT,eO,e_,eC,eP,eL,eD,eR,eB,eM,eq,eU,ej,eF="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},eV={},e$={},ez=eF.parcelRequire5393;null==ez&&((ez=function(e){if(e in eV)return eV[e].exports;if(e in e$){var t=e$[e];delete e$[e];var r={id:e,exports:{}};return eV[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){e$[e]=t},eF.parcelRequire5393=ez);var eH=ez.register;function eG(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eW(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eG(o,n,i,a,s,"next",e)}function s(e){eG(o,n,i,a,s,"throw",e)}a(void 0)})}}function eY(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eY=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eY(e)}eH("ilwPy",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,N=i,T=A-u+1,O=Array(T),_=0,C=0,P=0x7fffffff,L=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var R=t.lengthR&&S(e,t,u,t.length),r.length>R&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&M(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function L(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function D(){this._=e}function R(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new D,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function B(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function M(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return D.prototype=Object.create(null),D.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),eH("bgUiC",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),ez("2L7Ke"),"function"==typeof SuppressedError&&SuppressedError}),eH("2L7Ke",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eH("8IMbs",function(e,t){var r=ez("ilwPy");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),eH("ar5FS",function(e,t){var r=ez("gOSId"),n=ez("7KoNz");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),eH("4L5Fm",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),eH("a26rS",function(e,t){var r=ez("goS5k");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),eH("goS5k",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),eH("bWx8M",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eH("9PbbU",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eH("izz4O",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eK=(ez("bgUiC"),ez("bgUiC")),eZ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eQ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eZ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eJ=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eW(function(){var r,i,o,a,s,u,c,l;return(0,eK.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eY(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var eX=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oT.window_status="volume",setTimeout(function(){oT.window_status=""},2e3)}catch(e){}},e0=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e0("Greg",e.data.note)});var e1=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e3=[],e2=[],e5=function(e,t){e2.push({text:e,time:t}),1===e2.length&&e8(e,t)},e8=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e2[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e2=e3.slice(1)).length>0&&setTimeout(function(){e8(e,t)},1e3)},t)},e6=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e4=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e9=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oT.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eK=ez("bgUiC"),e7=(M=eW(function(e,t){var r;return(0,eK.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return M.apply(this,arguments)}),te={},tt=ez("2L7Ke");te=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function G(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=T[(3&r[t])<<4|r[t+1]>>4],n+=T[(15&r[t+1])<<2|r[t+2]>>6],n+=T[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var W={serialize:function(e,t){var r="";if(e&&(r=z.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===z.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=D:"[object Uint8Array]"===r?i+=R:"[object Uint8ClampedArray]"===r?i+=B:"[object Int16Array]"===r?i+=M:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=q:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+G(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+L+("~~local_forage_type~"+e.type)+"~"+G(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===L&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=H(r);switch(n){case P:return a;case L:return o([a],{type:t});case D:return new Int8Array(a);case R:return new Uint8Array(a);case B:return new Uint8ClampedArray(a);case M:return new Int16Array(a);case U:return new Uint16Array(a);case q:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:H,bufferToString:G};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function Z(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(Z.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var Q={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=W,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=W,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=eo.ZERO&&e<=eo.NINE}th.decodeCodePoint=tw.default,Object.defineProperty(th,"replaceCodePoint",{enumerable:!0,get:function(){return ez("izz4O").replaceCodePoint}}),Object.defineProperty(th,"fromCodePoint",{enumerable:!0,get:function(){return ez("izz4O").fromCodePoint}}),(q=eo||(eo={}))[q.NUM=35]="NUM",q[q.SEMI=59]="SEMI",q[q.EQUALS=61]="EQUALS",q[q.ZERO=48]="ZERO",q[q.NINE=57]="NINE",q[q.LOWER_A=97]="LOWER_A",q[q.LOWER_F=102]="LOWER_F",q[q.LOWER_X=120]="LOWER_X",q[q.LOWER_Z=122]="LOWER_Z",q[q.UPPER_A=65]="UPPER_A",q[q.UPPER_F=70]="UPPER_F",q[q.UPPER_Z=90]="UPPER_Z",(U=ea=th.BinTrieFlags||(th.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=es||(es={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=eu=th.DecodingMode||(th.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tE=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=es.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=eu.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=es.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case es.EntityStart:if(e.charCodeAt(t)===eo.NUM)return this.state=es.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=es.NamedEntity,this.stateNamedEntity(e,t);case es.NumericStart:return this.stateNumericStart(e,t);case es.NumericDecimal:return this.stateNumericDecimal(e,t);case es.NumericHex:return this.stateNumericHex(e,t);case es.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===eo.LOWER_X?(this.state=es.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=es.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=eo.UPPER_A)||!(n<=eo.UPPER_F))&&(!(n>=eo.LOWER_A)||!(n<=eo.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=eo.UPPER_A&&t<=eo.UPPER_Z||t>=eo.LOWER_A&&t<=eo.LOWER_Z||tx(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ea.VALUE_LENGTH)>>14)){if(o===eo.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==eu.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&ea.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ea.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case es.NamedEntity:return 0!==this.result&&(this.decodeMode!==eu.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case es.NumericDecimal:return this.emitNumericEntity(0,2);case es.NumericHex:return this.emitNumericEntity(0,3);case es.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case es.EntityStart:return 0}},e}();function tS(e){var t="",r=new tE(e,function(e){return t+=(0,tw.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tk(e,t,r,n){var i=(t&ea.BRANCH_LENGTH)>>7,o=t&ea.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}th.EntityDecoder=tE,th.determineBranch=tk;var tA=tS(ty.default),tI=tS(tb.default);function tN(e){return e===ec.Space||e===ec.NewLine||e===ec.Tab||e===ec.FormFeed||e===ec.CarriageReturn}function tT(e){return e===ec.Slash||e===ec.Gt||tN(e)}function tO(e){return e>=ec.Zero&&e<=ec.Nine}th.decodeHTML=function(e,t){return void 0===t&&(t=eu.Legacy),tA(e,t)},th.decodeHTMLAttribute=function(e){return tA(e,eu.Attribute)},th.decodeHTMLStrict=function(e){return tA(e,eu.Strict)},th.decodeXML=function(e){return tI(e,eu.Strict)},(V=ec||(ec={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=el||(el={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(z=ef||(ef={}))[z.NoValue=0]="NoValue",z[z.Unquoted=1]="Unquoted",z[z.Single=2]="Single",z[z.Double=3]="Double";var t_={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tC=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tl(this,e),this.cbs=r,this.state=el.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=el.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?th.xmlDecodeTree:th.htmlDecodeTree}return td(e,[{key:"reset",value:function(){this.state=el.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=el.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=el.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===ec.Amp&&(this.state=el.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tT(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=el.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===ec.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=ec.LowerA&&e<=ec.LowerZ||e>=ec.UpperA&&e<=ec.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=el.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===ec.ExclamationMark)this.state=el.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===ec.Questionmark)this.state=el.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==t_.TitleEnd[2]?this.state=this.xmlMode||t!==t_.ScriptEnd[2]?el.InTagName:el.BeforeSpecialS:this.startSpecial(t_.TitleEnd,3)}else e===ec.Slash?this.state=el.BeforeClosingTagName:(this.state=el.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tT(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===ec.Gt?this.state=el.Text:(this.state=this.isTagStartChar(e)?el.InClosingTagName:el.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===ec.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.state=el.Text,this.baseState=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===ec.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=el.InSpecialTag,this.sequenceIndex=0):this.state=el.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===ec.Slash?this.state=el.InSelfClosingTag:tN(e)||(this.state=el.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===ec.Gt?(this.cbs.onselfclosingtag(this.index),this.state=el.Text,this.baseState=el.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===ec.Eq||tT(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===ec.Eq?this.state=el.BeforeAttributeValue:e===ec.Slash||e===ec.Gt?(this.cbs.onattribend(ef.NoValue,this.index),this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ef.NoValue,this.index),this.state=el.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===ec.DoubleQuote?(this.state=el.InAttributeValueDq,this.sectionStart=this.index+1):e===ec.SingleQuote?(this.state=el.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=el.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===ec.DoubleQuote?ef.Double:ef.Single,this.index),this.state=el.BeforeAttributeName):this.decodeEntities&&e===ec.Amp&&(this.baseState=this.state,this.state=el.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,ec.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,ec.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===ec.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ef.Unquoted,this.index),this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===ec.Amp&&(this.baseState=this.state,this.state=el.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===ec.OpeningSquareBracket?(this.state=el.CDATASequence,this.sequenceIndex=0):this.state=e===ec.Dash?el.BeforeComment:el.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===ec.Dash?(this.state=el.InCommentLike,this.currentSequence=t_.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=el.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===t_.ScriptEnd[3]?this.startSpecial(t_.ScriptEnd,4):t===t_.StyleEnd[3]?this.startSpecial(t_.StyleEnd,4):(this.state=el.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===ec.Number?this.state=el.BeforeNumericEntity:e===ec.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=el.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,th.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&th.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===ec.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&th.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~th.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===ec.LowerX?(this.entityExcess++,this.state=el.InHexEntity):(this.state=el.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===el.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,th.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===ec.Semi?this.emitNumericEntity(!0):tO(e)?(this.entityResult=10*this.entityResult+(e-ec.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===ec.Semi?this.emitNumericEntity(!0):tO(e)?(this.entityResult=16*this.entityResult+(e-ec.Zero),this.entityExcess++):e>=ec.UpperA&&e<=ec.UpperF||e>=ec.LowerA&&e<=ec.LowerF?(this.entityResult=16*this.entityResult+((32|e)-ec.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===el.Text||this.baseState===el.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===el.Text||this.state===el.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===el.InAttributeValueDq||this.state===el.InAttributeValueSq||this.state===el.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tl(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tC)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return td(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,th.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tq.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tM.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tU.has(e)?this.foreignContext.push(!0):tj.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tU.has(u)||tj.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,th.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ef.Double?'"':e===ef.Single?"'":e===ef.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tF),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t9(this,e)}}]),e}(),t0=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this)).data=e,n}return td(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tZ(tX)),t1=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Text,e}return td(r,[{key:"nodeType",get:function(){return 3}}]),r}(t0),t3=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Comment,e}return td(r,[{key:"nodeType",get:function(){return 8}}]),r}(t0),t2=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e,n){var i;return tl(this,r),(i=t.call(this,n)).name=e,i.type=ed.Directive,i}return td(r,[{key:"nodeType",get:function(){return 1}}]),r}(t0),t5=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this)).children=e,n}return td(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tZ(tX)),t8=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.CDATA,e}return td(r,[{key:"nodeType",get:function(){return 4}}]),r}(t5),t6=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Root,e}return td(r,[{key:"nodeType",get:function(){return 9}}]),r}(t5),t4=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?ed.Script:"style"===e?ed.Style:ed.Tag;return tl(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return td(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t5);function t9(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===ed.Text)t=new t1(e.data);else if(e.type===ed.Comment)t=new t3(e.data);else if(e.type===ed.Tag||e.type===ed.Script||e.type===ed.Style){var n=r?t7(e.children):[],i=new t4(e.name,tG({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=i}else if(e.type===ed.CDATA){var o=r?t7(e.children):[],a=new t8(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===ed.Root){var s=r?t7(e.children):[],u=new t6(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===ed.Directive){var c=new t2(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function t7(e){for(var t=e.map(function(e){return t9(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rr=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),rn=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ri=null!==(eh=String.fromCodePoint)&&void 0!==eh?eh:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ro(e){return e>=ep.ZERO&&e<=ep.NINE}(G=ep||(ep={}))[G.NUM=35]="NUM",G[G.SEMI=59]="SEMI",G[G.EQUALS=61]="EQUALS",G[G.ZERO=48]="ZERO",G[G.NINE=57]="NINE",G[G.LOWER_A=97]="LOWER_A",G[G.LOWER_F=102]="LOWER_F",G[G.LOWER_X=120]="LOWER_X",G[G.LOWER_Z=122]="LOWER_Z",G[G.UPPER_A=65]="UPPER_A",G[G.UPPER_F=70]="UPPER_F",G[G.UPPER_Z=90]="UPPER_Z",(W=em||(em={}))[W.VALUE_LENGTH=49152]="VALUE_LENGTH",W[W.BRANCH_LENGTH=16256]="BRANCH_LENGTH",W[W.JUMP_TABLE=127]="JUMP_TABLE",(Y=ev||(ev={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=eg||(eg={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var ra=/*#__PURE__*/function(){function e(t,r,n){tl(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=ev.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=eg.Strict}return td(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=ev.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case ev.EntityStart:if(e.charCodeAt(t)===ep.NUM)return this.state=ev.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=ev.NamedEntity,this.stateNamedEntity(e,t);case ev.NumericStart:return this.stateNumericStart(e,t);case ev.NumericDecimal:return this.stateNumericDecimal(e,t);case ev.NumericHex:return this.stateNumericHex(e,t);case ev.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ep.LOWER_X?(this.state=ev.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=ev.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=ep.UPPER_A)||!(n<=ep.UPPER_F))&&(!(n>=ep.LOWER_A)||!(n<=ep.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=rn.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==ep.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&em.VALUE_LENGTH)>>14;t>7,o=t&em.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===eg.Attribute&&(0===i||function(e){var t;return e===ep.EQUALS||(t=e)>=ep.UPPER_A&&t<=ep.UPPER_Z||t>=ep.LOWER_A&&t<=ep.LOWER_Z||ro(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&em.VALUE_LENGTH)>>14)){if(o===ep.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==eg.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&em.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~em.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case ev.NamedEntity:return 0!==this.result&&(this.decodeMode!==eg.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case ev.NumericDecimal:return this.emitNumericEntity(0,2);case ev.NumericHex:return this.emitNumericEntity(0,3);case ev.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case ev.EntityStart:return 0}}}]),e}();function rs(e){var t="",r=new ra(e,function(e){return t+=ri(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}rs(rt),rs(rr);var ru=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rc(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rc(/[&<>'"]/g,ru),rc(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rc(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(Z=ey||(ey={}))[Z.XML=0]="XML",Z[Z.HTML=1]="HTML",(Q=eb||(eb={}))[Q.UTF8=0]="UTF8",Q[Q.ASCII=1]="ASCII",Q[Q.Extensive=2]="Extensive",Q[Q.Attribute=3]="Attribute",Q[Q.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(J=ew||(ew={}))[J.DISCONNECTED=1]="DISCONNECTED",J[J.PRECEDING=2]="PRECEDING",J[J.FOLLOWING=4]="FOLLOWING",J[J.CONTAINS=8]="CONTAINS",J[J.CONTAINED_BY=16]="CONTAINED_BY";var rl={};/*! +!function(){function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,N,T,O,_,C,P,L,D,M,R,B,q,U,j,F,V,$,z,H,W,G,Y,K,Z,Q,J,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eN,eT,eO,e_,eC,eP,eL,eD,eM,eR,eB,eq,eU,ej,eF="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},eV={},e$={},ez=eF.parcelRequire5393;null==ez&&((ez=function(e){if(e in eV)return eV[e].exports;if(e in e$){var t=e$[e];delete e$[e];var r={id:e,exports:{}};return eV[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){e$[e]=t},eF.parcelRequire5393=ez);var eH=ez.register;function eW(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eG(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eW(o,n,i,a,s,"next",e)}function s(e){eW(o,n,i,a,s,"throw",e)}a(void 0)})}}function eY(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eY=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eY(e)}eH("ilwPy",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,N=i,T=A-u+1,O=Array(T),_=0,C=0,P=0x7fffffff,L=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var M=t.lengthM&&S(e,t,u,t.length),r.length>M&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&B(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function L(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function D(){this._=e}function M(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new D,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function R(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function B(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return D.prototype=Object.create(null),D.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),eH("bgUiC",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),ez("2L7Ke"),"function"==typeof SuppressedError&&SuppressedError}),eH("2L7Ke",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eH("8IMbs",function(e,t){var r=ez("ilwPy");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),eH("ar5FS",function(e,t){var r=ez("gOSId"),n=ez("7KoNz");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),eH("4L5Fm",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),eH("a26rS",function(e,t){var r=ez("goS5k");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),eH("goS5k",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),eH("bWx8M",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eH("9PbbU",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eH("izz4O",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eK=(ez("bgUiC"),ez("bgUiC")),eZ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eQ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eZ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eJ=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eG(function(){var r,i,o,a,s,u,c,l;return(0,eK.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eY(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var eX=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oB.window_status="volume",setTimeout(function(){oB.window_status=""},2e3)}catch(e){}},e0=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e0("Greg",e.data.note)});var e1=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e3=[],e2=[],e5=function(e,t){e2.push({text:e,time:t}),1===e2.length&&e8(e,t)},e8=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e2[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e2=e3.slice(1)).length>0&&setTimeout(function(){e8(e,t)},1e3)},t)},e6=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e4=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e9=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oB.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eK=ez("bgUiC"),e7=(B=eG(function(e,t){var r;return(0,eK.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return B.apply(this,arguments)}),te={},tt=ez("2L7Ke");te=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function W(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=T[(3&r[t])<<4|r[t+1]>>4],n+=T[(15&r[t+1])<<2|r[t+2]>>6],n+=T[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var G={serialize:function(e,t){var r="";if(e&&(r=z.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===z.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=D:"[object Uint8Array]"===r?i+=M:"[object Uint8ClampedArray]"===r?i+=R:"[object Int16Array]"===r?i+=B:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=q:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+W(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+L+("~~local_forage_type~"+e.type)+"~"+W(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===L&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=H(r);switch(n){case P:return a;case L:return o([a],{type:t});case D:return new Int8Array(a);case M:return new Uint8Array(a);case R:return new Uint8ClampedArray(a);case B:return new Int16Array(a);case U:return new Uint16Array(a);case q:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:H,bufferToString:W};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function Z(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(Z.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var Q={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=G,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=G,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=eo.ZERO&&e<=eo.NINE}th.decodeCodePoint=tw.default,Object.defineProperty(th,"replaceCodePoint",{enumerable:!0,get:function(){return ez("izz4O").replaceCodePoint}}),Object.defineProperty(th,"fromCodePoint",{enumerable:!0,get:function(){return ez("izz4O").fromCodePoint}}),(q=eo||(eo={}))[q.NUM=35]="NUM",q[q.SEMI=59]="SEMI",q[q.EQUALS=61]="EQUALS",q[q.ZERO=48]="ZERO",q[q.NINE=57]="NINE",q[q.LOWER_A=97]="LOWER_A",q[q.LOWER_F=102]="LOWER_F",q[q.LOWER_X=120]="LOWER_X",q[q.LOWER_Z=122]="LOWER_Z",q[q.UPPER_A=65]="UPPER_A",q[q.UPPER_F=70]="UPPER_F",q[q.UPPER_Z=90]="UPPER_Z",(U=ea=th.BinTrieFlags||(th.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=es||(es={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=eu=th.DecodingMode||(th.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tE=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=es.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=eu.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=es.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case es.EntityStart:if(e.charCodeAt(t)===eo.NUM)return this.state=es.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=es.NamedEntity,this.stateNamedEntity(e,t);case es.NumericStart:return this.stateNumericStart(e,t);case es.NumericDecimal:return this.stateNumericDecimal(e,t);case es.NumericHex:return this.stateNumericHex(e,t);case es.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===eo.LOWER_X?(this.state=es.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=es.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=eo.UPPER_A)||!(n<=eo.UPPER_F))&&(!(n>=eo.LOWER_A)||!(n<=eo.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=eo.UPPER_A&&t<=eo.UPPER_Z||t>=eo.LOWER_A&&t<=eo.LOWER_Z||tx(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ea.VALUE_LENGTH)>>14)){if(o===eo.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==eu.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&ea.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ea.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case es.NamedEntity:return 0!==this.result&&(this.decodeMode!==eu.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case es.NumericDecimal:return this.emitNumericEntity(0,2);case es.NumericHex:return this.emitNumericEntity(0,3);case es.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case es.EntityStart:return 0}},e}();function tS(e){var t="",r=new tE(e,function(e){return t+=(0,tw.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tk(e,t,r,n){var i=(t&ea.BRANCH_LENGTH)>>7,o=t&ea.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}th.EntityDecoder=tE,th.determineBranch=tk;var tA=tS(ty.default),tI=tS(tb.default);function tN(e){return e===ec.Space||e===ec.NewLine||e===ec.Tab||e===ec.FormFeed||e===ec.CarriageReturn}function tT(e){return e===ec.Slash||e===ec.Gt||tN(e)}function tO(e){return e>=ec.Zero&&e<=ec.Nine}th.decodeHTML=function(e,t){return void 0===t&&(t=eu.Legacy),tA(e,t)},th.decodeHTMLAttribute=function(e){return tA(e,eu.Attribute)},th.decodeHTMLStrict=function(e){return tA(e,eu.Strict)},th.decodeXML=function(e){return tI(e,eu.Strict)},(V=ec||(ec={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=el||(el={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(z=ef||(ef={}))[z.NoValue=0]="NoValue",z[z.Unquoted=1]="Unquoted",z[z.Single=2]="Single",z[z.Double=3]="Double";var t_={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tC=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tl(this,e),this.cbs=r,this.state=el.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=el.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?th.xmlDecodeTree:th.htmlDecodeTree}return td(e,[{key:"reset",value:function(){this.state=el.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=el.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=el.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===ec.Amp&&(this.state=el.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tT(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=el.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===ec.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=ec.LowerA&&e<=ec.LowerZ||e>=ec.UpperA&&e<=ec.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=el.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===ec.ExclamationMark)this.state=el.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===ec.Questionmark)this.state=el.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==t_.TitleEnd[2]?this.state=this.xmlMode||t!==t_.ScriptEnd[2]?el.InTagName:el.BeforeSpecialS:this.startSpecial(t_.TitleEnd,3)}else e===ec.Slash?this.state=el.BeforeClosingTagName:(this.state=el.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tT(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===ec.Gt?this.state=el.Text:(this.state=this.isTagStartChar(e)?el.InClosingTagName:el.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===ec.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.state=el.Text,this.baseState=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===ec.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=el.InSpecialTag,this.sequenceIndex=0):this.state=el.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===ec.Slash?this.state=el.InSelfClosingTag:tN(e)||(this.state=el.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===ec.Gt?(this.cbs.onselfclosingtag(this.index),this.state=el.Text,this.baseState=el.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===ec.Eq||tT(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===ec.Eq?this.state=el.BeforeAttributeValue:e===ec.Slash||e===ec.Gt?(this.cbs.onattribend(ef.NoValue,this.index),this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ef.NoValue,this.index),this.state=el.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===ec.DoubleQuote?(this.state=el.InAttributeValueDq,this.sectionStart=this.index+1):e===ec.SingleQuote?(this.state=el.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=el.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===ec.DoubleQuote?ef.Double:ef.Single,this.index),this.state=el.BeforeAttributeName):this.decodeEntities&&e===ec.Amp&&(this.baseState=this.state,this.state=el.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,ec.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,ec.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===ec.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ef.Unquoted,this.index),this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===ec.Amp&&(this.baseState=this.state,this.state=el.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===ec.OpeningSquareBracket?(this.state=el.CDATASequence,this.sequenceIndex=0):this.state=e===ec.Dash?el.BeforeComment:el.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===ec.Dash?(this.state=el.InCommentLike,this.currentSequence=t_.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=el.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===t_.ScriptEnd[3]?this.startSpecial(t_.ScriptEnd,4):t===t_.StyleEnd[3]?this.startSpecial(t_.StyleEnd,4):(this.state=el.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===ec.Number?this.state=el.BeforeNumericEntity:e===ec.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=el.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,th.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&th.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===ec.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&th.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~th.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===ec.LowerX?(this.entityExcess++,this.state=el.InHexEntity):(this.state=el.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===el.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,th.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===ec.Semi?this.emitNumericEntity(!0):tO(e)?(this.entityResult=10*this.entityResult+(e-ec.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===ec.Semi?this.emitNumericEntity(!0):tO(e)?(this.entityResult=16*this.entityResult+(e-ec.Zero),this.entityExcess++):e>=ec.UpperA&&e<=ec.UpperF||e>=ec.LowerA&&e<=ec.LowerF?(this.entityResult=16*this.entityResult+((32|e)-ec.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===el.Text||this.baseState===el.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===el.Text||this.state===el.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===el.InAttributeValueDq||this.state===el.InAttributeValueSq||this.state===el.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tl(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tC)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return td(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,th.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tq.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tB.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tU.has(e)?this.foreignContext.push(!0):tj.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tU.has(u)||tj.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,th.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ef.Double?'"':e===ef.Single?"'":e===ef.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tF),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t9(this,e)}}]),e}(),t0=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this)).data=e,n}return td(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tZ(tX)),t1=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Text,e}return td(r,[{key:"nodeType",get:function(){return 3}}]),r}(t0),t3=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Comment,e}return td(r,[{key:"nodeType",get:function(){return 8}}]),r}(t0),t2=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e,n){var i;return tl(this,r),(i=t.call(this,n)).name=e,i.type=ed.Directive,i}return td(r,[{key:"nodeType",get:function(){return 1}}]),r}(t0),t5=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this)).children=e,n}return td(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tZ(tX)),t8=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.CDATA,e}return td(r,[{key:"nodeType",get:function(){return 4}}]),r}(t5),t6=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Root,e}return td(r,[{key:"nodeType",get:function(){return 9}}]),r}(t5),t4=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?ed.Script:"style"===e?ed.Style:ed.Tag;return tl(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return td(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t5);function t9(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===ed.Text)t=new t1(e.data);else if(e.type===ed.Comment)t=new t3(e.data);else if(e.type===ed.Tag||e.type===ed.Script||e.type===ed.Style){var n=r?t7(e.children):[],i=new t4(e.name,tW({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tW({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tW({},e["x-attribsPrefix"])),t=i}else if(e.type===ed.CDATA){var o=r?t7(e.children):[],a=new t8(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===ed.Root){var s=r?t7(e.children):[],u=new t6(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===ed.Directive){var c=new t2(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function t7(e){for(var t=e.map(function(e){return t9(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rr=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),rn=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ri=null!==(eh=String.fromCodePoint)&&void 0!==eh?eh:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ro(e){return e>=ep.ZERO&&e<=ep.NINE}(W=ep||(ep={}))[W.NUM=35]="NUM",W[W.SEMI=59]="SEMI",W[W.EQUALS=61]="EQUALS",W[W.ZERO=48]="ZERO",W[W.NINE=57]="NINE",W[W.LOWER_A=97]="LOWER_A",W[W.LOWER_F=102]="LOWER_F",W[W.LOWER_X=120]="LOWER_X",W[W.LOWER_Z=122]="LOWER_Z",W[W.UPPER_A=65]="UPPER_A",W[W.UPPER_F=70]="UPPER_F",W[W.UPPER_Z=90]="UPPER_Z",(G=em||(em={}))[G.VALUE_LENGTH=49152]="VALUE_LENGTH",G[G.BRANCH_LENGTH=16256]="BRANCH_LENGTH",G[G.JUMP_TABLE=127]="JUMP_TABLE",(Y=ev||(ev={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=eg||(eg={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var ra=/*#__PURE__*/function(){function e(t,r,n){tl(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=ev.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=eg.Strict}return td(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=ev.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case ev.EntityStart:if(e.charCodeAt(t)===ep.NUM)return this.state=ev.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=ev.NamedEntity,this.stateNamedEntity(e,t);case ev.NumericStart:return this.stateNumericStart(e,t);case ev.NumericDecimal:return this.stateNumericDecimal(e,t);case ev.NumericHex:return this.stateNumericHex(e,t);case ev.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ep.LOWER_X?(this.state=ev.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=ev.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=ep.UPPER_A)||!(n<=ep.UPPER_F))&&(!(n>=ep.LOWER_A)||!(n<=ep.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=rn.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==ep.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&em.VALUE_LENGTH)>>14;t>7,o=t&em.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===eg.Attribute&&(0===i||function(e){var t;return e===ep.EQUALS||(t=e)>=ep.UPPER_A&&t<=ep.UPPER_Z||t>=ep.LOWER_A&&t<=ep.LOWER_Z||ro(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&em.VALUE_LENGTH)>>14)){if(o===ep.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==eg.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&em.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~em.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case ev.NamedEntity:return 0!==this.result&&(this.decodeMode!==eg.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case ev.NumericDecimal:return this.emitNumericEntity(0,2);case ev.NumericHex:return this.emitNumericEntity(0,3);case ev.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case ev.EntityStart:return 0}}}]),e}();function rs(e){var t="",r=new ra(e,function(e){return t+=ri(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}rs(rt),rs(rr);var ru=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rc(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rc(/[&<>'"]/g,ru),rc(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rc(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(Z=ey||(ey={}))[Z.XML=0]="XML",Z[Z.HTML=1]="HTML",(Q=eb||(eb={}))[Q.UTF8=0]="UTF8",Q[Q.ASCII=1]="ASCII",Q[Q.Extensive=2]="Extensive",Q[Q.Attribute=3]="Attribute",Q[Q.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(J=ew||(ew={}))[J.DISCONNECTED=1]="DISCONNECTED",J[J.PRECEDING=2]="PRECEDING",J[J.FOLLOWING=4]="FOLLOWING",J[J.CONTAINS=8]="CONTAINS",J[J.CONTAINED_BY=16]="CONTAINED_BY";var rl={};/*! * is-plain-object * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. - */function rf(e){return"[object Object]"===Object.prototype.toString.call(e)}rl=function(e){if("string"!=typeof e)throw TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")};var rd=function(e){var t,r;return!1!==rf(e)&&(void 0===(t=e.constructor)||!1!==rf(r=t.prototype)&&!1!==r.hasOwnProperty("isPrototypeOf"))},rh={},rp=function(e){var t;return!!e&&"object"==typeof e&&"[object RegExp]"!==(t=Object.prototype.toString.call(e))&&"[object Date]"!==t&&e.$$typeof!==rm},rm="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function rv(e,t){return!1!==t.clone&&t.isMergeableObject(e)?rw(Array.isArray(e)?[]:{},e,t):e}function rg(e,t,r){return e.concat(t).map(function(e){return rv(e,r)})}function ry(e){return Object.keys(e).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter(function(t){return Object.propertyIsEnumerable.call(e,t)}):[])}function rb(e,t){try{return t in e}catch(e){return!1}}function rw(e,t,r){(r=r||{}).arrayMerge=r.arrayMerge||rg,r.isMergeableObject=r.isMergeableObject||rp,r.cloneUnlessOtherwiseSpecified=rv;var n,i,o=Array.isArray(t);return o!==Array.isArray(e)?rv(t,r):o?r.arrayMerge(e,t,r):(i={},(n=r).isMergeableObject(e)&&ry(e).forEach(function(t){i[t]=rv(e[t],n)}),ry(t).forEach(function(r){rb(e,r)&&!(Object.hasOwnProperty.call(e,r)&&Object.propertyIsEnumerable.call(e,r))||(rb(e,r)&&n.isMergeableObject(t[r])?i[r]=(function(e,t){if(!t.customMerge)return rw;var r=t.customMerge(e);return"function"==typeof r?r:rw})(r,n)(e[r],t[r],n):i[r]=rv(t[r],n))}),i)}rw.all=function(e,t){if(!Array.isArray(e))throw Error("first argument should be an array");return e.reduce(function(e,r){return rw(e,r,t)},{})},rh=rw;var rx={};X=rx,ee=function(){return function(e){function t(e){return" "===e||" "===e||"\n"===e||"\f"===e||"\r"===e}function r(t){var r,n=t.exec(e.substring(m));if(n)return r=n[0],m+=r.length,r}for(var n,i,o,a,s,u=e.length,c=/^[ \t\n\r\u000c]+/,l=/^[, \t\n\r\u000c]+/,f=/^[^ \t\n\r\u000c]+/,d=/[,]+$/,h=/^\d+$/,p=/^-?(?:[0-9]+|[0-9]*\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/,m=0,v=[];;){if(r(l),m>=u)return v;n=r(f),i=[],","===n.slice(-1)?(n=n.replace(d,""),g()):function(){for(r(c),o="",a="in descriptor";;){if(s=e.charAt(m),"in descriptor"===a){if(t(s))o&&(i.push(o),o="",a="after descriptor");else if(","===s){m+=1,o&&i.push(o),g();return}else if("("===s)o+=s,a="in parens";else if(""===s){o&&i.push(o),g();return}else o+=s}else if("in parens"===a){if(")"===s)o+=s,a="in descriptor";else if(""===s){i.push(o),g();return}else o+=s}else if("after descriptor"===a){if(t(s));else if(""===s){g();return}else a="in descriptor",m-=1}m+=1}}()}function g(){var t,r,o,a,s,u,c,l,f,d=!1,m={};for(a=0;ae.length)&&(t=e.length);for(var r=0,n=Array(t);r",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}},{key:"showSourceCode",value:function(e){var t=this;if(!this.source)return"";var r=this.source;null==e&&(e=rP.isColorSupported);var n=function(e){return e},i=function(e){return e},o=function(e){return e};if(e){var a=rP.createColors(!0),s=a.bold,u=a.gray,c=a.red;i=function(e){return s(c(e))},n=function(e){return u(e)},rR&&(o=function(e){return rR(e)})}var l=r.split(/\r?\n/),f=Math.max(this.line-3,0),d=Math.min(this.line+2,l.length),h=String(d).length;return l.slice(f,d).map(function(e,r){var a=f+1+r,s=" "+(" "+a).slice(-h)+" | ";if(a===t.line){if(e.length>160){var u=Math.max(0,t.column-20),c=Math.max(t.column+20,t.endColumn+20),l=e.slice(u,c),d=n(s.replace(/\d/g," "))+e.slice(0,Math.min(t.column-1,19)).replace(/[^\t]/g," ");return i(">")+n(s)+o(l)+"\n "+d+i("^")}var p=n(s.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return i(">")+n(s)+o(e)+"\n "+p+i("^")}return" "+n(s)+o(e)}).join("\n")}},{key:"toString",value:function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}]),r}(tZ(Error));rC=rB,rB.default=rB;var rM={},rq={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1},rU=/*#__PURE__*/function(){function e(t){tl(this,e),this.builder=t}return td(e,[{key:"atrule",value:function(e,t){var r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{var i=(e.raws.between||"")+(t?";":"");this.builder(r+n+i,e)}}},{key:"beforeAfter",value:function(e,t){r="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var r,n=e.parent,i=0;n&&"root"!==n.type;)i+=1,n=n.parent;if(r.includes("\n")){var o=this.raw(e,null,"indent");if(o.length)for(var a=0;a0&&"comment"===e.nodes[t].type;)t-=1;for(var r=this.raw(e,"semicolon"),n=0;n0&&void 0!==e.raws.after)return(t=e.raws.after).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawBeforeComment",value:function(e,t){var r;return e.walkComments(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeDecl",value:function(e,t){var r;return e.walkDecls(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeOpen",value:function(e){var t;return e.walk(function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1}),t}},{key:"rawBeforeRule",value:function(e){var t;return e.walk(function(r){if(r.nodes&&(r.parent!==e||e.first!==r)&&void 0!==r.raws.before)return(t=r.raws.before).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawColon",value:function(e){var t;return e.walkDecls(function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1}),t}},{key:"rawEmptyBody",value:function(e){var t;return e.walk(function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1}),t}},{key:"rawIndent",value:function(e){var t;return e.raws.indent?e.raws.indent:(e.walk(function(r){var n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&void 0!==r.raws.before){var i=r.raws.before.split("\n");return t=(t=i[i.length-1]).replace(/\S/g,""),!1}}),t)}},{key:"rawSemicolon",value:function(e){var t;return e.walk(function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1}),t}},{key:"rawValue",value:function(e,t){var r=e[t],n=e.raws[t];return n&&n.value===r?n.raw:r}},{key:"root",value:function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}},{key:"rule",value:function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}},{key:"stringify",value:function(e,t){if(!this[e.type])throw Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}]),e}();rM=rU,rU.default=rU;var rj={};function rF(e,t){new rM(t).stringify(e)}rj=rF,rF.default=rF,ex=Symbol("isClean"),eE=Symbol("my");var rV=/*#__PURE__*/function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var r in tl(this,e),this.raws={},this[ex]=!1,this[eE]=!0,t)if("nodes"===r){this.nodes=[];var n=!0,i=!1,o=void 0;try{for(var a,s=t[r][Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;"function"==typeof u.clone?this.append(u.clone()):this.append(u)}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}else this[r]=t[r]}return td(e,[{key:"addToError",value:function(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){var t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,"$&".concat(t.input.from,":").concat(t.start.line,":").concat(t.start.column,"$&"))}return e}},{key:"after",value:function(e){return this.parent.insertAfter(this,e),this}},{key:"assign",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var t in e)this[t]=e[t];return this}},{key:"before",value:function(e){return this.parent.insertBefore(this,e),this}},{key:"cleanRaws",value:function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}},{key:"clone",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=function e(t,r){var n=new t.constructor;for(var i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&"proxyCache"!==i){var o=t[i],a=void 0===o?"undefined":(0,tt._)(o);"parent"===i&&"object"===a?r&&(n[i]=r):"source"===i?n[i]=o:Array.isArray(o)?n[i]=o.map(function(t){return e(t,n)}):("object"===a&&null!==o&&(o=e(o)),n[i]=o)}return n}(this);for(var r in e)t[r]=e[r];return t}},{key:"cloneAfter",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t}},{key:"cloneBefore",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t}},{key:"error",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var r=this.rangeBy(t),n=r.end,i=r.start;return this.source.input.error(e,{column:i.column,line:i.line},{column:n.column,line:n.line},t)}return new rC(e)}},{key:"getProxyProcessor",value:function(){return{get:function(e,t){return"proxyOf"===t?e:"root"===t?function(){return e.root().toProxy()}:e[t]},set:function(e,t,r){return e[t]===r||(e[t]=r,("prop"===t||"value"===t||"name"===t||"params"===t||"important"===t||"text"===t)&&e.markDirty(),!0)}}}},{key:"markClean",value:function(){this[ex]=!0}},{key:"markDirty",value:function(){if(this[ex]){this[ex]=!1;for(var e=this;e=e.parent;)e[ex]=!1}}},{key:"next",value:function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}}},{key:"positionBy",value:function(e,t){var r=this.source.start;if(e.index)r=this.positionInside(e.index,t);else if(e.word){var n=(t=this.toString()).indexOf(e.word);-1!==n&&(r=this.positionInside(n,t))}return r}},{key:"positionInside",value:function(e,t){for(var r=t||this.toString(),n=this.source.start.column,i=this.source.start.line,o=0;o0&&void 0!==arguments[0]?arguments[0]:rj;e.stringify&&(e=e.stringify);var t="";return e(this,function(e){t+=e}),t}},{key:"warn",value:function(e,t,r){var n={node:this};for(var i in r)n[i]=r[i];return e.warn(t,n)}},{key:"proxyOf",get:function(){return this}}]),e}();r_=rV,rV.default=rV;var r$=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="comment",n}return r}(tZ(r_));rO=r$,r$.default=r$;var rz={},rH=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),e&&void 0!==e.value&&"string"!=typeof e.value&&(e=re(tG({},e),{value:String(e.value)})),(n=t.call(this,e)).type="decl",n}return td(r,[{key:"variable",get:function(){return this.prop.startsWith("--")||"$"===this.prop[0]}}]),r}(tZ(r_));rz=rH,rH.default=rH;var rG=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){return tl(this,r),t.apply(this,arguments)}return td(r,[{key:"append",value:function(){for(var e=arguments.length,t=Array(e),r=0;r1?t-1:0),i=1;i=e&&(this.indexes[r]=t-1);return this.markDirty(),this}},{key:"replaceValues",value:function(e,t,r){return r||(r=t,t={}),this.walkDecls(function(n){(!t.props||t.props.includes(n.prop))&&(!t.fast||n.value.includes(t.fast))&&(n.value=n.value.replace(e,r))}),this.markDirty(),this}},{key:"some",value:function(e){return this.nodes.some(e)}},{key:"walk",value:function(e){return this.each(function(t,r){var n;try{n=e(t,r)}catch(e){throw t.addToError(e)}return!1!==n&&t.walk&&(n=t.walk(e)),n})}},{key:"walkAtRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("atrule"===r.type&&e.test(r.name))return t(r,n)}):this.walk(function(r,n){if("atrule"===r.type&&r.name===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("atrule"===e.type)return t(e,r)}))}},{key:"walkComments",value:function(e){return this.walk(function(t,r){if("comment"===t.type)return e(t,r)})}},{key:"walkDecls",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("decl"===r.type&&e.test(r.prop))return t(r,n)}):this.walk(function(r,n){if("decl"===r.type&&r.prop===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("decl"===e.type)return t(e,r)}))}},{key:"walkRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("rule"===r.type&&e.test(r.selector))return t(r,n)}):this.walk(function(r,n){if("rule"===r.type&&r.selector===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("rule"===e.type)return t(e,r)}))}},{key:"first",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}},{key:"last",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}]),r}(tZ(r_));rG.registerParse=function(e){ek=e},rG.registerRule=function(e){eI=e},rG.registerAtRule=function(e){eS=e},rG.registerRoot=function(e){eA=e},rT=rG,rG.default=rG,rG.rebuild=function(e){"atrule"===e.type?Object.setPrototypeOf(e,eS.prototype):"rule"===e.type?Object.setPrototypeOf(e,eI.prototype):"decl"===e.type?Object.setPrototypeOf(e,rz.prototype):"comment"===e.type?Object.setPrototypeOf(e,rO.prototype):"root"===e.type&&Object.setPrototypeOf(e,eA.prototype),e[eE]=!0,e.nodes&&e.nodes.forEach(function(e){rG.rebuild(e)})};var rW=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="atrule",n}return td(r,[{key:"append",value:function(){for(var e,t=arguments.length,n=Array(t),i=0;i0&&void 0!==arguments[0]?arguments[0]:{};return new eN(new eT,this,e).stringify()}}]),r}(rT);rK.registerLazyResult=function(e){eN=e},rK.registerProcessor=function(e){eT=e},rY=rK,rK.default=rK;var rZ={};function rQ(e,t){if(null==e)return{};var r,n,i=function(e,t){if(null==e)return{};var r,n,i={},o=Object.keys(e);for(n=0;n=0||(i[r]=e[r]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n=0)&&Object.prototype.propertyIsEnumerable.call(e,r)&&(i[r]=e[r])}return i}var rJ={},rX=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:21,t="",r=e;r--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},r0=rR.isAbsolute,r1=rR.resolve,r3=rR.SourceMapConsumer,r2=rR.SourceMapGenerator,r5=rR.fileURLToPath,r8=rR.pathToFileURL,r6={},tt=ez("2L7Ke");eO=function(e){var t,r,n=function(e){var t=e.length;if(t%4>0)throw Error("Invalid string. Length must be a multiple of 4");var r=e.indexOf("=");-1===r&&(r=t);var n=r===t?0:4-r%4;return[r,n]}(e),i=n[0],o=n[1],a=new r7((i+o)*3/4-o),s=0,u=o>0?i-4:i;for(r=0;r>16&255,a[s++]=t>>8&255,a[s++]=255&t;return 2===o&&(t=r9[e.charCodeAt(r)]<<2|r9[e.charCodeAt(r+1)]>>4,a[s++]=255&t),1===o&&(t=r9[e.charCodeAt(r)]<<10|r9[e.charCodeAt(r+1)]<<4|r9[e.charCodeAt(r+2)]>>2,a[s++]=t>>8&255,a[s++]=255&t),a},e_=function(e){for(var t,r=e.length,n=r%3,i=[],o=0,a=r-n;o>18&63]+r4[n>>12&63]+r4[n>>6&63]+r4[63&n]);return i.join("")}(e,o,o+16383>a?a:o+16383));return 1===n?i.push(r4[(t=e[r-1])>>2]+r4[t<<4&63]+"=="):2===n&&i.push(r4[(t=(e[r-2]<<8)+e[r-1])>>10]+r4[t>>4&63]+r4[t<<2&63]+"="),i.join("")};for(var r4=[],r9=[],r7="undefined"!=typeof Uint8Array?Uint8Array:Array,ne="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",nt=0,nr=ne.length;nt>1,l=-7,f=r?i-1:0,d=r?-1:1,h=e[t+f];for(f+=d,o=h&(1<<-l)-1,h>>=-l,l+=s;l>0;o=256*o+e[t+f],f+=d,l-=8);for(a=o&(1<<-l)-1,o>>=-l,l+=n;l>0;a=256*a+e[t+f],f+=d,l-=8);if(0===o)o=1-c;else{if(o===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,n),o-=c}return(h?-1:1)*a*Math.pow(2,o-n)},eP=function(e,t,r,n,i,o){var a,s,u,c=8*o-i-1,l=(1<>1,d=23===i?5960464477539062e-23:0,h=n?0:o-1,p=n?1:-1,m=t<0||0===t&&1/t<0?1:0;for(isNaN(t=Math.abs(t))||t===1/0?(s=isNaN(t)?1:0,a=l):(a=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-a))<1&&(a--,u*=2),a+f>=1?t+=d/u:t+=d*Math.pow(2,1-f),t*u>=2&&(a++,u/=2),a+f>=l?(s=0,a=l):a+f>=1?(s=(t*u-1)*Math.pow(2,i),a+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),a=0));i>=8;e[r+h]=255&s,h+=p,s/=256,i-=8);for(a=a<0;e[r+h]=255&a,h+=p,a/=256,c-=8);e[r+h-p]|=128*m};var nn="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;function ni(e){if(e>0x7fffffff)throw RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,no.prototype),t}function no(e,t,r){if("number"==typeof e){if("string"==typeof t)throw TypeError('The "string" argument must be of type string. Received type number');return nu(e)}return na(e,t,r)}function na(e,t,r){if("string"==typeof e)return function(e,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!no.isEncoding(t))throw TypeError("Unknown encoding: "+t);var r=0|nd(e,t),n=ni(r),i=n.write(e,t);return i!==r&&(n=n.slice(0,i)),n}(e,t);if(ArrayBuffer.isView(e))return function(e){if(nR(e,Uint8Array)){var t=new Uint8Array(e);return nl(t.buffer,t.byteOffset,t.byteLength)}return nc(e)}(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tt._)(e)));if(nR(e,ArrayBuffer)||e&&nR(e.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(nR(e,SharedArrayBuffer)||e&&nR(e.buffer,SharedArrayBuffer)))return nl(e,t,r);if("number"==typeof e)throw TypeError('The "value" argument must not be of type number. Received type number');var n=e.valueOf&&e.valueOf();if(null!=n&&n!==e)return no.from(n,t,r);var i=function(e){if(no.isBuffer(e)){var t,r=0|nf(e.length),n=ni(r);return 0===n.length||e.copy(n,0,0,r),n}return void 0!==e.length?"number"!=typeof e.length||(t=e.length)!=t?ni(0):nc(e):"Buffer"===e.type&&Array.isArray(e.data)?nc(e.data):void 0}(e);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return no.from(e[Symbol.toPrimitive]("string"),t,r);throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tt._)(e)))}function ns(e){if("number"!=typeof e)throw TypeError('"size" argument must be of type number');if(e<0)throw RangeError('The value "'+e+'" is invalid for option "size"')}function nu(e){return ns(e),ni(e<0?0:0|nf(e))}function nc(e){for(var t=e.length<0?0:0|nf(e.length),r=ni(t),n=0;n=0x7fffffff)throw RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|e}function nd(e,t){if(no.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||nR(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+(void 0===e?"undefined":(0,tt._)(e)));var r=e.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return nP(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return nL(e).length;default:if(i)return n?-1:nP(e).length;t=(""+t).toLowerCase(),i=!0}}function nh(e,t,r){var n,i,o=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===r||r>this.length)&&(r=this.length),r<=0||(r>>>=0)<=(t>>>=0)))return"";for(e||(e="utf8");;)switch(e){case"hex":return function(e,t,r){var n=e.length;(!t||t<0)&&(t=0),(!r||r<0||r>n)&&(r=n);for(var i="",o=t;o0x7fffffff?r=0x7fffffff:r<-0x80000000&&(r=-0x80000000),(o=r=+r)!=o&&(r=i?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(i)return -1;r=e.length-1}else if(r<0){if(!i)return -1;r=0}if("string"==typeof t&&(t=no.from(t,n)),no.isBuffer(t))return 0===t.length?-1:nv(e,t,r,n,i);if("number"==typeof t)return(t&=255,"function"==typeof Uint8Array.prototype.indexOf)?i?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):nv(e,[t],r,n,i);throw TypeError("val must be string, number or Buffer")}function nv(e,t,r,n,i){var o,a=1,s=e.length,u=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return -1;a=2,s/=2,u/=2,r/=2}function c(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var l=-1;for(o=r;os&&(r=s-u),o=r;o>=0;o--){for(var f=!0,d=0;d239?4:o>223?3:o>191?2:1;if(i+s<=r){var u=void 0,c=void 0,l=void 0,f=void 0;switch(s){case 1:o<128&&(a=o);break;case 2:(192&(u=e[i+1]))==128&&(f=(31&o)<<6|63&u)>127&&(a=f);break;case 3:u=e[i+1],c=e[i+2],(192&u)==128&&(192&c)==128&&(f=(15&o)<<12|(63&u)<<6|63&c)>2047&&(f<55296||f>57343)&&(a=f);break;case 4:u=e[i+1],c=e[i+2],l=e[i+3],(192&u)==128&&(192&c)==128&&(192&l)==128&&(f=(15&o)<<18|(63&u)<<12|(63&c)<<6|63&l)>65535&&f<1114112&&(a=f)}}null===a?(a=65533,s=1):a>65535&&(a-=65536,n.push(a>>>10&1023|55296),a=56320|1023&a),n.push(a),i+=s}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);for(var r="",n=0;nr)throw RangeError("Trying to access beyond buffer length")}function nb(e,t,r,n,i,o){if(!no.isBuffer(e))throw TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw RangeError("Index out of range")}function nw(e,t,r,n,i){nT(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,r}function nx(e,t,r,n,i){nT(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r+7]=o,o>>=8,e[r+6]=o,o>>=8,e[r+5]=o,o>>=8,e[r+4]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r+3]=a,a>>=8,e[r+2]=a,a>>=8,e[r+1]=a,a>>=8,e[r]=a,r+8}function nE(e,t,r,n,i,o){if(r+n>e.length||r<0)throw RangeError("Index out of range")}function nS(e,t,r,n,i){return t=+t,r>>>=0,i||nE(e,t,r,4,34028234663852886e22,-34028234663852886e22),eP(e,t,r,n,23,4),r+4}function nk(e,t,r,n,i){return t=+t,r>>>=0,i||nE(e,t,r,8,17976931348623157e292,-17976931348623157e292),eP(e,t,r,n,52,8),r+8}no.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),no.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(no.prototype,"parent",{enumerable:!0,get:function(){if(no.isBuffer(this))return this.buffer}}),Object.defineProperty(no.prototype,"offset",{enumerable:!0,get:function(){if(no.isBuffer(this))return this.byteOffset}}),no.poolSize=8192,no.from=function(e,t,r){return na(e,t,r)},Object.setPrototypeOf(no.prototype,Uint8Array.prototype),Object.setPrototypeOf(no,Uint8Array),no.alloc=function(e,t,r){return(ns(e),e<=0)?ni(e):void 0!==t?"string"==typeof r?ni(e).fill(t,r):ni(e).fill(t):ni(e)},no.allocUnsafe=function(e){return nu(e)},no.allocUnsafeSlow=function(e){return nu(e)},no.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==no.prototype},no.compare=function(e,t){if(nR(e,Uint8Array)&&(e=no.from(e,e.offset,e.byteLength)),nR(t,Uint8Array)&&(t=no.from(t,t.offset,t.byteLength)),!no.isBuffer(e)||!no.isBuffer(t))throw TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var r=e.length,n=t.length,i=0,o=Math.min(r,n);in.length?(no.isBuffer(o)||(o=no.from(o)),o.copy(n,i)):Uint8Array.prototype.set.call(n,o,i);else if(no.isBuffer(o))o.copy(n,i);else throw TypeError('"list" argument must be an Array of Buffers');i+=o.length}return n},no.byteLength=nd,no.prototype._isBuffer=!0,no.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t50&&(e+=" ... "),""},nn&&(no.prototype[nn]=no.prototype.inspect),no.prototype.compare=function(e,t,r,n,i){if(nR(e,Uint8Array)&&(e=no.from(e,e.offset,e.byteLength)),!no.isBuffer(e))throw TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+(void 0===e?"undefined":(0,tt._)(e)));if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),t<0||r>e.length||n<0||i>this.length)throw RangeError("out of range index");if(n>=i&&t>=r)return 0;if(n>=i)return -1;if(t>=r)return 1;if(t>>>=0,r>>>=0,n>>>=0,i>>>=0,this===e)return 0;for(var o=i-n,a=r-t,s=Math.min(o,a),u=this.slice(n,i),c=e.slice(t,r),l=0;l>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0);else throw Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var i,o,a,s,u,c,l,f,d=this.length-t;if((void 0===r||r>d)&&(r=d),e.length>0&&(r<0||t<0)||t>this.length)throw RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var h=!1;;)switch(n){case"hex":return function(e,t,r,n){r=Number(r)||0;var i,o=e.length-r;n?(n=Number(n))>o&&(n=o):n=o;var a=t.length;for(n>a/2&&(n=a/2),i=0;i>8,i.push(r%256),i.push(n);return i}(e,this.length-l),this,l,f);default:if(h)throw TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),h=!0}},no.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},no.prototype.slice=function(e,t){var r=this.length;e=~~e,t=void 0===t?r:~~t,e<0?(e+=r)<0&&(e=0):e>r&&(e=r),t<0?(t+=r)<0&&(t=0):t>r&&(t=r),t>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e],i=1,o=0;++o>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e+--t],i=1;t>0&&(i*=256);)n+=this[e+--t]*i;return n},no.prototype.readUint8=no.prototype.readUInt8=function(e,t){return e>>>=0,t||ny(e,1,this.length),this[e]},no.prototype.readUint16LE=no.prototype.readUInt16LE=function(e,t){return e>>>=0,t||ny(e,2,this.length),this[e]|this[e+1]<<8},no.prototype.readUint16BE=no.prototype.readUInt16BE=function(e,t){return e>>>=0,t||ny(e,2,this.length),this[e]<<8|this[e+1]},no.prototype.readUint32LE=no.prototype.readUInt32LE=function(e,t){return e>>>=0,t||ny(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+0x1000000*this[e+3]},no.prototype.readUint32BE=no.prototype.readUInt32BE=function(e,t){return e>>>=0,t||ny(e,4,this.length),0x1000000*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},no.prototype.readBigUInt64LE=nM(function(e){nO(e>>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&n_(e,this.length-8);var n=t+256*this[++e]+65536*this[++e]+0x1000000*this[++e],i=this[++e]+256*this[++e]+65536*this[++e]+0x1000000*r;return BigInt(n)+(BigInt(i)<>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&n_(e,this.length-8);var n=0x1000000*t+65536*this[++e]+256*this[++e]+this[++e],i=0x1000000*this[++e]+65536*this[++e]+256*this[++e]+r;return(BigInt(n)<>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e],i=1,o=0;++o=(i*=128)&&(n-=Math.pow(2,8*t)),n},no.prototype.readIntBE=function(e,t,r){e>>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=t,i=1,o=this[e+--n];n>0&&(i*=256);)o+=this[e+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},no.prototype.readInt8=function(e,t){return(e>>>=0,t||ny(e,1,this.length),128&this[e])?-((255-this[e]+1)*1):this[e]},no.prototype.readInt16LE=function(e,t){e>>>=0,t||ny(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?0xffff0000|r:r},no.prototype.readInt16BE=function(e,t){e>>>=0,t||ny(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?0xffff0000|r:r},no.prototype.readInt32LE=function(e,t){return e>>>=0,t||ny(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},no.prototype.readInt32BE=function(e,t){return e>>>=0,t||ny(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},no.prototype.readBigInt64LE=nM(function(e){nO(e>>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&n_(e,this.length-8),(BigInt(this[e+4]+256*this[e+5]+65536*this[e+6]+(r<<24))<>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&n_(e,this.length-8),(BigInt((t<<24)+65536*this[++e]+256*this[++e]+this[++e])<>>=0,t||ny(e,4,this.length),eC(this,e,!0,23,4)},no.prototype.readFloatBE=function(e,t){return e>>>=0,t||ny(e,4,this.length),eC(this,e,!1,23,4)},no.prototype.readDoubleLE=function(e,t){return e>>>=0,t||ny(e,8,this.length),eC(this,e,!0,52,8)},no.prototype.readDoubleBE=function(e,t){return e>>>=0,t||ny(e,8,this.length),eC(this,e,!1,52,8)},no.prototype.writeUintLE=no.prototype.writeUIntLE=function(e,t,r,n){if(e=+e,t>>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nb(this,e,t,r,i,0)}var o=1,a=0;for(this[t]=255&e;++a>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nb(this,e,t,r,i,0)}var o=r-1,a=1;for(this[t+o]=255&e;--o>=0&&(a*=256);)this[t+o]=e/a&255;return t+r},no.prototype.writeUint8=no.prototype.writeUInt8=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,1,255,0),this[t]=255&e,t+1},no.prototype.writeUint16LE=no.prototype.writeUInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},no.prototype.writeUint16BE=no.prototype.writeUInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},no.prototype.writeUint32LE=no.prototype.writeUInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0xffffffff,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},no.prototype.writeUint32BE=no.prototype.writeUInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0xffffffff,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},no.prototype.writeBigUInt64LE=nM(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nw(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),no.prototype.writeBigUInt64BE=nM(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),no.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nb(this,e,t,r,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o>0)-s&255;return t+r},no.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nb(this,e,t,r,i-1,-i)}var o=r-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+r},no.prototype.writeInt8=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},no.prototype.writeInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},no.prototype.writeInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},no.prototype.writeInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0x7fffffff,-0x80000000),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},no.prototype.writeInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0x7fffffff,-0x80000000),e<0&&(e=0xffffffff+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},no.prototype.writeBigInt64LE=nM(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nw(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),no.prototype.writeBigInt64BE=nM(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),no.prototype.writeFloatLE=function(e,t,r){return nS(this,e,t,!0,r)},no.prototype.writeFloatBE=function(e,t,r){return nS(this,e,t,!1,r)},no.prototype.writeDoubleLE=function(e,t,r){return nk(this,e,t,!0,r)},no.prototype.writeDoubleBE=function(e,t,r){return nk(this,e,t,!1,r)},no.prototype.copy=function(e,t,r,n){if(!no.isBuffer(e))throw TypeError("argument should be a Buffer");if(r||(r=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n=this.length)throw RangeError("Index out of range");if(n<0)throw RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t>>=0,r=void 0===r?this.length:r>>>0,e||(e=0),"number"==typeof e)for(i=t;i=n+4;r-=3)t="_".concat(e.slice(r-3,r)).concat(t);return"".concat(e.slice(0,r)).concat(t)}function nT(e,t,r,n,i,o){if(e>r||e3?0===t||t===BigInt(0)?">= 0".concat(s," and < 2").concat(s," ** ").concat((o+1)*8).concat(s):">= -(2".concat(s," ** ").concat((o+1)*8-1).concat(s,") and < 2 ** ")+"".concat((o+1)*8-1).concat(s):">= ".concat(t).concat(s," and <= ").concat(r).concat(s),new nA.ERR_OUT_OF_RANGE("value",a,e)}nO(i,"offset"),(void 0===n[i]||void 0===n[i+o])&&n_(i,n.length-(o+1))}function nO(e,t){if("number"!=typeof e)throw new nA.ERR_INVALID_ARG_TYPE(t,"number",e)}function n_(e,t,r){if(Math.floor(e)!==e)throw nO(e,r),new nA.ERR_OUT_OF_RANGE(r||"offset","an integer",e);if(t<0)throw new nA.ERR_BUFFER_OUT_OF_BOUNDS;throw new nA.ERR_OUT_OF_RANGE(r||"offset",">= ".concat(r?1:0," and <= ").concat(t),e)}nI("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"},RangeError),nI("ERR_INVALID_ARG_TYPE",function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(void 0===t?"undefined":(0,tt._)(t))},TypeError),nI("ERR_OUT_OF_RANGE",function(e,t,r){var n='The value of "'.concat(e,'" is out of range.'),i=r;return Number.isInteger(r)&&Math.abs(r)>0x100000000?i=nN(String(r)):(void 0===r?"undefined":(0,tt._)(r))==="bigint"&&(i=String(r),(r>Math.pow(BigInt(2),BigInt(32))||r<-Math.pow(BigInt(2),BigInt(32)))&&(i=nN(i)),i+="n"),n+=" It must be ".concat(t,". Received ").concat(i)},RangeError);var nC=/[^+/0-9A-Za-z-_]/g;function nP(e,t){t=t||1/0;for(var r,n=e.length,i=null,o=[],a=0;a55295&&r<57344){if(!i){if(r>56319||a+1===n){(t-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(r<56320){(t-=3)>-1&&o.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,r<128){if((t-=1)<0)break;o.push(r)}else if(r<2048){if((t-=2)<0)break;o.push(r>>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else if(r<1114112){if((t-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}else throw Error("Invalid code point")}return o}function nL(e){return eO(function(e){if((e=(e=e.split("=")[0]).trim().replace(nC,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function nD(e,t,r,n){var i;for(i=0;i=t.length)&&!(i>=e.length);++i)t[i+r]=e[i];return i}function nR(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}var nB=function(){for(var e="0123456789abcdef",t=Array(256),r=0;r<16;++r)for(var n=16*r,i=0;i<16;++i)t[n+i]=e[r]+e[i];return t}();function nM(e){return"undefined"==typeof BigInt?nq:e}function nq(){throw Error("BigInt not supported")}var nU=rR.existsSync,nj=rR.readFileSync,nF=rR.dirname,nV=rR.join,n$=rR.SourceMapConsumer,nz=rR.SourceMapGenerator,nH=/*#__PURE__*/function(){function e(t,r){if(tl(this,e),!1!==r.map){this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var n=r.map?r.map.prev:void 0,i=this.loadMap(r.from,n);!this.mapFile&&r.from&&(this.mapFile=r.from),this.mapFile&&(this.root=nF(this.mapFile)),i&&(this.text=i)}}return td(e,[{key:"consumer",value:function(){return this.consumerCache||(this.consumerCache=new n$(this.text)),this.consumerCache}},{key:"decodeInline",value:function(e){var t,r=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(r)return decodeURIComponent(e.substr(r[0].length));var n=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(n)return t=e.substr(n[0].length),no?no.from(t,"base64").toString():window.atob(t);throw Error("Unsupported source map encoding "+e.match(/data:application\/json;([^,]+),/)[1])}},{key:"getAnnotationURL",value:function(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}},{key:"isMap",value:function(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}},{key:"loadAnnotation",value:function(e){var t=e.match(/\/\*\s*# sourceMappingURL=/g);if(t){var r=e.lastIndexOf(t.pop()),n=e.indexOf("*/",r);r>-1&&n>-1&&(this.annotation=this.getAnnotationURL(e.substring(r,n)))}}},{key:"loadFile",value:function(e){if(this.root=nF(e),nU(e))return this.mapFile=e,nj(e,"utf-8").toString().trim()}},{key:"loadMap",value:function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var r=t(e);if(r){var n=this.loadFile(r);if(!n)throw Error("Unable to load previous source map: "+r.toString());return n}}else if(t instanceof n$)return nz.fromSourceMap(t).toString();else if(t instanceof nz)return t.toString();else if(this.isMap(t))return JSON.stringify(t);else throw Error("Unsupported previous source map format: "+t.toString())}else if(this.inline)return this.decodeInline(this.annotation);else if(this.annotation){var i=this.annotation;return e&&(i=nV(nF(e),i)),this.loadFile(i)}}},{key:"startWith",value:function(e,t){return!!e&&e.substr(0,t.length)===t}},{key:"withContent",value:function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}]),e}();r6=nH,nH.default=nH;var nG=Symbol("fromOffsetCache"),nW=!!(r3&&r2),nY=!!(r1&&r0),nK=/*#__PURE__*/function(){function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(tl(this,e),null==t||"object"==typeof t&&!t.toString)throw Error("PostCSS received ".concat(t," instead of CSS string"));if(this.css=t.toString(),"\uFEFF"===this.css[0]||"￾"===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,r.from&&(!nY||/^\w+:\/\//.test(r.from)||r0(r.from)?this.file=r.from:this.file=r1(r.from)),nY&&nW){var n=new r6(this.css,r);if(n.text){this.map=n;var i=n.consumer().file;!this.file&&i&&(this.file=this.mapResolve(i))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}return td(e,[{key:"error",value:function(e,t,r){var n,i,o,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(t&&"object"==typeof t){var s=t,u=r;if("number"==typeof s.offset){var c=this.fromOffset(s.offset);t=c.line,r=c.col}else t=s.line,r=s.column;if("number"==typeof u.offset){var l=this.fromOffset(u.offset);i=l.line,n=l.col}else i=u.line,n=u.column}else if(!r){var f=this.fromOffset(t);t=f.line,r=f.col}var d=this.origin(t,r,i,n);return(o=d?new rC(e,void 0===d.endLine?d.line:{column:d.column,line:d.line},void 0===d.endLine?d.column:{column:d.endColumn,line:d.endLine},d.source,d.file,a.plugin):new rC(e,void 0===i?t:{column:r,line:t},void 0===i?r:{column:n,line:i},this.css,this.file,a.plugin)).input={column:r,endColumn:n,endLine:i,line:t,source:this.css},this.file&&(r8&&(o.input.url=r8(this.file).toString()),o.input.file=this.file),o}},{key:"fromOffset",value:function(e){if(this[nG])s=this[nG];else{var t=this.css.split("\n");s=Array(t.length);for(var r=0,n=0,i=t.length;n=a)o=s.length-1;else for(var a,s,u,c=s.length-2;o>1)])c=u-1;else if(e>=s[u+1])o=u+1;else{o=u;break}return{col:e-s[o]+1,line:o+1}}},{key:"mapResolve",value:function(e){return/^\w+:\/\//.test(e)?e:r1(this.map.consumer().sourceRoot||this.map.root||".",e)}},{key:"origin",value:function(e,t,r,n){if(!this.map)return!1;var i,o,a=this.map.consumer(),s=a.originalPositionFor({column:t,line:e});if(!s.source)return!1;"number"==typeof r&&(i=a.originalPositionFor({column:n,line:r})),o=r0(s.source)?r8(s.source):new URL(s.source,this.map.consumer().sourceRoot||r8(this.map.mapFile));var u={column:s.column,endColumn:i&&i.column,endLine:i&&i.line,line:s.line,url:o.toString()};if("file:"===o.protocol){if(r5)u.file=r5(o);else throw Error("file: protocol is not available in this PostCSS build")}var c=a.sourceContentFor(s.source);return c&&(u.source=c),u}},{key:"toJSON",value:function(){for(var e={},t=0,r=["hasBOM","css","file","id"];t1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)try{for(var u,c=i[Symbol.iterator]();!(o=(u=c.next()).done);o=!0)u.value.raws.before=t.raws.before}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}}return i}},{key:"removeChild",value:function(e,t){var n=this.index(e);return!t&&0===n&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[n].raws.before),rN(tK(r.prototype),"removeChild",this).call(this,e)}},{key:"toResult",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new eL(new eD,this,e).stringify()}}]),r}(rT);nQ.registerLazyResult=function(e){eL=e},nQ.registerProcessor=function(e){eD=e},nZ=nQ,nQ.default=nQ,rT.registerRoot(nQ);var nJ={},nX={},n0={comma:function(e){return n0.split(e,[","],!0)},space:function(e){return n0.split(e,[" ","\n"," "])},split:function(e,t,r){var n=[],i="",o=!1,a=0,s=!1,u="",c=!1,l=!0,f=!1,d=void 0;try{for(var h,p=e[Symbol.iterator]();!(l=(h=p.next()).done);l=!0){var m=h.value;c?c=!1:"\\"===m?c=!0:s?m===u&&(s=!1):'"'===m||"'"===m?(s=!0,u=m):"("===m?a+=1:")"===m?a>0&&(a-=1):0===a&&t.includes(m)&&(o=!0),o?(""!==i&&n.push(i.trim()),i="",o=!1):i+=m}}catch(e){f=!0,d=e}finally{try{l||null==p.return||p.return()}finally{if(f)throw d}}return(r||""!==i)&&n.push(i.trim()),n}};nX=n0,n0.default=n0;var n1=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="rule",n.nodes||(n.nodes=[]),n}return td(r,[{key:"selectors",get:function(){return nX.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}}]),r}(rT);function n3(e,t){if(Array.isArray(e))return e.map(function(e){return n3(e)});var r=e.inputs,n=rQ(e,["inputs"]);if(r){t=[];var i=!0,o=!1,a=void 0;try{for(var s,u=r[Symbol.iterator]();!(i=(s=u.next()).done);i=!0){var c=s.value,l=re(tG({},c),{__proto__:rJ.prototype});l.map&&(l.map=re(tG({},l.map),{__proto__:r6.prototype})),t.push(l)}}catch(e){o=!0,a=e}finally{try{i||null==u.return||u.return()}finally{if(o)throw a}}}if(n.nodes&&(n.nodes=e.nodes.map(function(e){return n3(e,t)})),n.source){var f=n.source,d=f.inputId,h=rQ(f,["inputId"]);n.source=h,null!=d&&(n.source.input=t[d])}if("root"===n.type)return new nZ(n);if("decl"===n.type)return new rz(n);if("rule"===n.type)return new nJ(n);if("comment"===n.type)return new rO(n);if("atrule"===n.type)return new rI(n);throw Error("Unknown node type: "+e.type)}nJ=n1,n1.default=n1,rT.registerRule(n1),rZ=n3,n3.default=n3;var n2={};function n5(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r,n,i=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=i){var o=[],a=!0,s=!1;try{for(i=i.call(e);!(a=(r=i.next()).done)&&(o.push(r.value),!t||o.length!==t);a=!0);}catch(e){s=!0,n=e}finally{try{a||null==i.return||i.return()}finally{if(s)throw n}}return o}}(e,t)||rk(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var eK=(ez("bgUiC"),ez("bgUiC")),n8={},n6=rR.dirname,n4=rR.relative,n9=rR.resolve,n7=rR.sep,ie=rR.SourceMapConsumer,it=rR.SourceMapGenerator,ir=rR.pathToFileURL,ii=!!(ie&&it),io=!!(n6&&n9&&n4&&n7);n8=/*#__PURE__*/function(){function e(t,r,n,i){tl(this,e),this.stringify=t,this.mapOpts=n.map||{},this.root=r,this.opts=n,this.css=i,this.originalCSS=i,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}return td(e,[{key:"addAnnotation",value:function(){e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";var e,t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}},{key:"applyPrevMaps",value:function(){var e=!0,t=!1,r=void 0;try{for(var n,i=this.previous()[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.toUrl(this.path(o.file)),s=o.root||n6(o.file),u=void 0;!1===this.mapOpts.sourcesContent?(u=new ie(o.text)).sourcesContent&&(u.sourcesContent=null):u=o.consumer(),this.map.applySourceMap(u,a,this.toUrl(this.path(s)))}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}}},{key:"clearAnnotation",value:function(){if(!1!==this.mapOpts.annotation){if(this.root)for(var e,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t);else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}}},{key:"generate",value:function(){if(this.clearAnnotation(),io&&ii&&this.isMap())return this.generateMap();var e="";return this.stringify(this.root,function(t){e+=t}),[e]}},{key:"generateMap",value:function(){if(this.root)this.generateString();else if(1===this.previous().length){var e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=it.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new it({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return(this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline())?[this.css]:[this.css,this.map]}},{key:"generateString",value:function(){var e,t,r=this;this.css="",this.map=new it({file:this.outputFile(),ignoreInvalidMapping:!0});var n=1,i=1,o="",a={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,function(s,u,c){if(r.css+=s,u&&"end"!==c&&(a.generated.line=n,a.generated.column=i-1,u.source&&u.source.start?(a.source=r.sourcePath(u),a.original.line=u.source.start.line,a.original.column=u.source.start.column-1):(a.source=o,a.original.line=1,a.original.column=0),r.map.addMapping(a)),(t=s.match(/\n/g))?(n+=t.length,e=s.lastIndexOf("\n"),i=s.length-e):i+=s.length,u&&"start"!==c){var l=u.parent||{raws:{}};(!("decl"===u.type||"atrule"===u.type&&!u.nodes)||u!==l.last||l.raws.semicolon)&&(u.source&&u.source.end?(a.source=r.sourcePath(u),a.original.line=u.source.end.line,a.original.column=u.source.end.column-1,a.generated.line=n,a.generated.column=i-2):(a.source=o,a.original.line=1,a.original.column=0,a.generated.line=n,a.generated.column=i-1),r.map.addMapping(a))}})}},{key:"isAnnotation",value:function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some(function(e){return e.annotation}))}},{key:"isInline",value:function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some(function(e){return e.inline}))}},{key:"isMap",value:function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}},{key:"isSourcesContent",value:function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some(function(e){return e.withContent()})}},{key:"outputFile",value:function(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}},{key:"path",value:function(e){if(this.mapOpts.absolute||60===e.charCodeAt(0)||/^\w+:\/\//.test(e))return e;var t=this.memoizedPaths.get(e);if(t)return t;var r=this.opts.to?n6(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(r=n6(n9(r,this.mapOpts.annotation)));var n=n4(r,e);return this.memoizedPaths.set(e,n),n}},{key:"previous",value:function(){var e=this;if(!this.previousMaps){if(this.previousMaps=[],this.root)this.root.walk(function(t){if(t.source&&t.source.input.map){var r=t.source.input.map;e.previousMaps.includes(r)||e.previousMaps.push(r)}});else{var t=new rJ(this.originalCSS,this.opts);t.map&&this.previousMaps.push(t.map)}}return this.previousMaps}},{key:"setSourcesContent",value:function(){var e=this,t={};if(this.root)this.root.walk(function(r){if(r.source){var n=r.source.input.from;if(n&&!t[n]){t[n]=!0;var i=e.usesFileUrls?e.toFileUrl(n):e.toUrl(e.path(n));e.map.setSourceContent(i,r.source.input.css)}}});else if(this.css){var r=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(r,this.css)}}},{key:"sourcePath",value:function(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}},{key:"toBase64",value:function(e){return no?no.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}},{key:"toFileUrl",value:function(e){var t=this.memoizedFileURLs.get(e);if(t)return t;if(ir){var r=ir(e).toString();return this.memoizedFileURLs.set(e,r),r}throw Error("`map.absolute` option is not available in this PostCSS build")}},{key:"toUrl",value:function(e){var t=this.memoizedURLs.get(e);if(t)return t;"\\"===n7&&(e=e.replace(/\\/g,"/"));var r=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,r),r}}]),e}();var ia={},is={},iu={},ic=/[\t\n\f\r "#'()/;[\\\]{}]/g,il=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,id=/.[\r\n"'(/\\]/,ih=/[\da-f]/i;iu=function(e){var t,r,n,i,o,a,s,u,c,l,f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},d=e.css.valueOf(),h=f.ignoreErrors,p=d.length,m=0,v=[],g=[];function y(t){throw e.error("Unclosed "+t,m)}return{back:function(e){g.push(e)},endOfFile:function(){return 0===g.length&&m>=p},nextToken:function(e){if(g.length)return g.pop();if(!(m>=p)){var f=!!e&&e.ignoreUnclosed;switch(t=d.charCodeAt(m)){case 10:case 32:case 9:case 13:case 12:i=m;do i+=1,t=d.charCodeAt(i);while(32===t||10===t||9===t||13===t||12===t)a=["space",d.slice(m,i)],m=i-1;break;case 91:case 93:case 123:case 125:case 58:case 59:case 41:var b=String.fromCharCode(t);a=[b,b,m];break;case 40:if(l=v.length?v.pop()[1]:"",c=d.charCodeAt(m+1),"url"===l&&39!==c&&34!==c&&32!==c&&10!==c&&9!==c&&12!==c&&13!==c){i=m;do{if(s=!1,-1===(i=d.indexOf(")",i+1))){if(h||f){i=m;break}y("bracket")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["brackets",d.slice(m,i+1),m,i],m=i}else i=d.indexOf(")",m+1),r=d.slice(m,i+1),-1===i||id.test(r)?a=["(","(",m]:(a=["brackets",r,m,i],m=i);break;case 39:case 34:o=39===t?"'":'"',i=m;do{if(s=!1,-1===(i=d.indexOf(o,i+1))){if(h||f){i=m+1;break}y("string")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["string",d.slice(m,i+1),m,i],m=i;break;case 64:ic.lastIndex=m+1,ic.test(d),i=0===ic.lastIndex?d.length-1:ic.lastIndex-2,a=["at-word",d.slice(m,i+1),m,i],m=i;break;case 92:for(i=m,n=!0;92===d.charCodeAt(i+1);)i+=1,n=!n;if(t=d.charCodeAt(i+1),n&&47!==t&&32!==t&&10!==t&&9!==t&&13!==t&&12!==t&&(i+=1,ih.test(d.charAt(i)))){for(;ih.test(d.charAt(i+1));)i+=1;32===d.charCodeAt(i+1)&&(i+=1)}a=["word",d.slice(m,i+1),m,i],m=i;break;default:47===t&&42===d.charCodeAt(m+1)?(0===(i=d.indexOf("*/",m+2)+1)&&(h||f?i=d.length:y("comment")),a=["comment",d.slice(m,i+1),m,i]):(il.lastIndex=m+1,il.test(d),i=0===il.lastIndex?d.length-1:il.lastIndex-2,a=["word",d.slice(m,i+1),m,i],v.push(a)),m=i}return m++,a}},position:function(){return m}}};var ip={empty:!0,space:!0};function im(e,t){var r=new rJ(e,t),n=new is(r);try{n.parse()}catch(e){throw e}return n.root}is=/*#__PURE__*/function(){function e(t){tl(this,e),this.input=t,this.root=new nZ,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{column:1,line:1,offset:0}}}return td(e,[{key:"atrule",value:function(e){var t,r,n,i=new rI;i.name=e[1].slice(1),""===i.name&&this.unnamedAtrule(i,e),this.init(i,e[2]);for(var o=!1,a=!1,s=[],u=[];!this.tokenizer.endOfFile();){if("("===(t=(e=this.tokenizer.nextToken())[0])||"["===t?u.push("("===t?")":"]"):"{"===t&&u.length>0?u.push("}"):t===u[u.length-1]&&u.pop(),0===u.length){if(";"===t){i.source.end=this.getPosition(e[2]),i.source.end.offset++,this.semicolon=!0;break}if("{"===t){a=!0;break}if("}"===t){if(s.length>0){for(n=s.length-1,r=s[n];r&&"space"===r[0];)r=s[--n];r&&(i.source.end=this.getPosition(r[3]||r[2]),i.source.end.offset++)}this.end(e);break}s.push(e)}else s.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}i.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(i.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(i,"params",s),o&&(e=s[s.length-1],i.source.end=this.getPosition(e[3]||e[2]),i.source.end.offset++,this.spaces=i.raws.between,i.raws.between="")):(i.raws.afterName="",i.params=""),a&&(i.nodes=[],this.current=i)}},{key:"checkMissedSemicolon",value:function(e){var t,r=this.colon(e);if(!1!==r){for(var n=0,i=r-1;i>=0&&("space"===(t=e[i])[0]||2!==(n+=1));i--);throw this.input.error("Missed semicolon","word"===t[0]?t[3]+1:t[2])}}},{key:"colon",value:function(e){var t=0,r=!0,n=!1,i=void 0;try{for(var o,a,s,u=e.entries()[Symbol.iterator]();!(r=(s=u.next()).done);r=!0){var c=n5(s.value,2),l=c[0],f=c[1];if(a=f[0],"("===a&&(t+=1),")"===a&&(t-=1),0===t&&":"===a){if(o){if("word"===o[0]&&"progid"===o[1])continue;return l}this.doubleColon(f)}o=f}}catch(e){n=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(n)throw i}}return!1}},{key:"comment",value:function(e){var t=new rO;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;var r=e[1].slice(2,-2);if(/^\s*$/.test(r))t.text="",t.raws.left=r,t.raws.right="";else{var n=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=n[2],t.raws.left=n[1],t.raws.right=n[3]}}},{key:"createTokenizer",value:function(){this.tokenizer=iu(this.input)}},{key:"decl",value:function(e,t){var r,n,i=new rz;this.init(i,e[0][2]);var o=e[e.length-1];for(";"===o[0]&&(this.semicolon=!0,e.pop()),i.source.end=this.getPosition(o[3]||o[2]||function(e){for(var t=e.length-1;t>=0;t--){var r=e[t],n=r[3]||r[2];if(n)return n}}(e)),i.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),i.raws.before+=e.shift()[1];for(i.source.start=this.getPosition(e[0][2]),i.prop="";e.length;){var a=e[0][0];if(":"===a||"space"===a||"comment"===a)break;i.prop+=e.shift()[1]}for(i.raws.between="";e.length;){if(":"===(r=e.shift())[0]){i.raws.between+=r[1];break}"word"===r[0]&&/\w/.test(r[1])&&this.unknownWord([r]),i.raws.between+=r[1]}("_"===i.prop[0]||"*"===i.prop[0])&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1));for(var s=[];e.length&&("space"===(n=e[0][0])||"comment"===n);)s.push(e.shift());this.precheckMissedSemicolon(e);for(var u=e.length-1;u>=0;u--){if("!important"===(r=e[u])[1].toLowerCase()){i.important=!0;var c=this.stringFrom(e,u);" !important"!==(c=this.spacesFromEnd(e)+c)&&(i.raws.important=c);break}if("important"===r[1].toLowerCase()){for(var l=e.slice(0),f="",d=u;d>0;d--){var h=l[d][0];if(f.trim().startsWith("!")&&"space"!==h)break;f=l.pop()[1]+f}f.trim().startsWith("!")&&(i.important=!0,i.raws.important=f,e=l)}if("space"!==r[0]&&"comment"!==r[0])break}e.some(function(e){return"space"!==e[0]&&"comment"!==e[0]})&&(i.raws.between+=s.map(function(e){return e[1]}).join(""),s=[]),this.raw(i,"value",s.concat(e),t),i.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}},{key:"doubleColon",value:function(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}},{key:"emptyRule",value:function(e){var t=new nJ;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}},{key:"end",value:function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}},{key:"endFile",value:function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}},{key:"freeSemicolon",value:function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}},{key:"getPosition",value:function(e){var t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}},{key:"init",value:function(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}},{key:"other",value:function(e){for(var t=!1,r=null,n=!1,i=null,o=[],a=e[1].startsWith("--"),s=[],u=e;u;){if(r=u[0],s.push(u),"("===r||"["===r)i||(i=u),o.push("("===r?")":"]");else if(a&&n&&"{"===r)i||(i=u),o.push("}");else if(0===o.length){if(";"===r){if(n){this.decl(s,a);return}break}if("{"===r){this.rule(s);return}if("}"===r){this.tokenizer.back(s.pop()),t=!0;break}":"===r&&(n=!0)}else r===o[o.length-1]&&(o.pop(),0===o.length&&(i=null));u=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),o.length>0&&this.unclosedBracket(i),t&&n){if(!a)for(;s.length&&("space"===(u=s[s.length-1][0])||"comment"===u);)this.tokenizer.back(s.pop());this.decl(s,a)}else this.unknownWord(s)}},{key:"parse",value:function(){for(var e;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}},{key:"precheckMissedSemicolon",value:function(){}},{key:"raw",value:function(e,t,r,n){for(var i,o,a,s,u=r.length,c="",l=!0,f=0;f1&&void 0!==arguments[1]?arguments[1]:{};if(tl(this,e),this.type="warning",this.text=t,r.node&&r.node.source){var n=r.node.rangeBy(r);this.line=n.start.line,this.column=n.start.column,this.endLine=n.end.line,this.endColumn=n.end.column}for(var i in r)this[i]=r[i]}return td(e,[{key:"toString",value:function(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}]),e}();ig=iy,iy.default=iy;var ib=/*#__PURE__*/function(){function e(t,r,n){tl(this,e),this.processor=t,this.messages=[],this.root=r,this.opts=n,this.css=void 0,this.map=void 0}return td(e,[{key:"toString",value:function(){return this.css}},{key:"warn",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!t.plugin&&this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var r=new ig(e,t);return this.messages.push(r),r}},{key:"warnings",value:function(){return this.messages.filter(function(e){return"warning"===e.type})}},{key:"content",get:function(){return this.css}}]),e}();iv=ib,ib.default=ib;var iw={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},ix={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},iE={Once:!0,postcssPlugin:!0,prepare:!0};function iS(e){return"object"==typeof e&&"function"==typeof e.then}function ik(e){var t=!1,r=iw[e.type];return("decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append)?[r,r+"-"+t,0,r+"Exit",r+"Exit-"+t]:t?[r,r+"-"+t,r+"Exit",r+"Exit-"+t]:e.append?[r,0,r+"Exit"]:[r,r+"Exit"]}function iA(e){return{eventIndex:0,events:"document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:ik(e),iterator:0,node:e,visitorIndex:0,visitors:[]}}function iI(e){return e[ex]=!1,e.nodes&&e.nodes.forEach(function(e){return iI(e)}),e}var iN={},iT=/*#__PURE__*/function(){function e(t,r,n){var i,o=this;if(tl(this,e),this.stringified=!1,this.processed=!1,"object"==typeof r&&null!==r&&("root"===r.type||"document"===r.type))i=iI(r);else if(r instanceof e||r instanceof iv)i=iI(r.root),r.map&&(void 0===n.map&&(n.map={}),n.map.inline||(n.map.inline=!1),n.map.prev=r.map);else{var a=ia;n.syntax&&(a=n.syntax.parse),n.parser&&(a=n.parser),a.parse&&(a=a.parse);try{i=a(r,n)}catch(e){this.processed=!0,this.error=e}i&&!i[eE]&&rT.rebuild(i)}this.result=new iv(t,i,n),this.helpers=re(tG({},iN),{postcss:iN,result:this.result}),this.plugins=this.processor.plugins.map(function(e){return"object"==typeof e&&e.prepare?tG({},e,e.prepare(o.result)):e})}return td(e,[{key:"async",value:function(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}},{key:"catch",value:function(e){return this.async().catch(e)}},{key:"finally",value:function(e){return this.async().then(e,e)}},{key:"getAsyncError",value:function(){throw Error("Use process(css).then(cb) to work with async plugins")}},{key:"handleError",value:function(e,t){var r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?r.postcssVersion:(e.plugin=r.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}},{key:"prepareVisitors",value:function(){var e=this;this.listeners={};var t=function(t,r,n){e.listeners[r]||(e.listeners[r]=[]),e.listeners[r].push([t,n])},r=!0,n=!1,i=void 0;try{for(var o,a=this.plugins[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("object"==typeof s)for(var u in s){if(!ix[u]&&/^[A-Z]/.test(u))throw Error("Unknown event ".concat(u," in ").concat(s.postcssPlugin,". ")+"Try to update PostCSS (".concat(this.processor.version," now)."));if(!iE[u]){if("object"==typeof s[u])for(var c in s[u])t(s,"*"===c?u:u+"-"+c.toLowerCase(),s[u][c]);else"function"==typeof s[u]&&t(s,u,s[u])}}}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}this.hasListener=Object.keys(this.listeners).length>0}},{key:"runAsync",value:function(){var e=this;return eW(function(){var t,r,n,i,o,a,s,u,c,l,f,d,h,p,m,v;return(0,eK.__generator)(this,function(g){switch(g.label){case 0:e.plugin=0,t=0,g.label=1;case 1:if(!(t0))return[3,13];if(!iS(s=e.visitTick(a)))return[3,12];g.label=9;case 9:return g.trys.push([9,11,,12]),[4,s];case 10:return g.sent(),[3,12];case 11:throw u=g.sent(),c=a[a.length-1].node,e.handleError(u,c);case 12:return[3,8];case 13:return[3,7];case 14:if(l=!0,f=!1,d=void 0,!e.listeners.OnceExit)return[3,22];g.label=15;case 15:g.trys.push([15,20,21,22]),h=function(){var t,r,n,i;return(0,eK.__generator)(this,function(a){switch(a.label){case 0:r=(t=n5(m.value,2))[0],n=t[1],e.result.lastPlugin=r,a.label=1;case 1:if(a.trys.push([1,6,,7]),"document"!==o.type)return[3,3];return[4,Promise.all(o.nodes.map(function(t){return n(t,e.helpers)}))];case 2:return a.sent(),[3,5];case 3:return[4,n(o,e.helpers)];case 4:a.sent(),a.label=5;case 5:return[3,7];case 6:throw i=a.sent(),e.handleError(i);case 7:return[2]}})},p=e.listeners.OnceExit[Symbol.iterator](),g.label=16;case 16:if(l=(m=p.next()).done)return[3,19];return[5,(0,eK.__values)(h())];case 17:g.sent(),g.label=18;case 18:return l=!0,[3,16];case 19:return[3,22];case 20:return v=g.sent(),f=!0,d=v,[3,22];case 21:try{l||null==p.return||p.return()}finally{if(f)throw d}return[7];case 22:return e.processed=!0,[2,e.stringify()]}})})()}},{key:"runOnRoot",value:function(e){var t=this;this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){var r=this.result.root.nodes.map(function(r){return e.Once(r,t.helpers)});if(iS(r[0]))return Promise.all(r);return r}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}},{key:"stringify",value:function(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=rj;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var r=new n8(t,this.result.root,this.result.opts).generate();return this.result.css=r[0],this.result.map=r[1],this.result}},{key:"sync",value:function(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();var e=!0,t=!1,r=void 0;try{for(var n,i=this.plugins[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.runOnRoot(o);if(iS(a))throw this.getAsyncError()}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}if(this.prepareVisitors(),this.hasListener){for(var s=this.result.root;!s[ex];)s[ex]=!0,this.walkSync(s);if(this.listeners.OnceExit){var u=!0,c=!1,l=void 0;if("document"===s.type)try{for(var f,d=s.nodes[Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var h=f.value;this.visitSync(this.listeners.OnceExit,h)}}catch(e){c=!0,l=e}finally{try{u||null==d.return||d.return()}finally{if(c)throw l}}else this.visitSync(this.listeners.OnceExit,s)}}return this.result}},{key:"then",value:function(e,t){return this.async().then(e,t)}},{key:"toString",value:function(){return this.css}},{key:"visitSync",value:function(e,t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=n5(o.value,2),u=s[0],c=s[1];this.result.lastPlugin=u;var l=void 0;try{l=c(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(iS(l))throw this.getAsyncError()}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}},{key:"visitTick",value:function(e){var t=e[e.length-1],r=t.node,n=t.visitors;if("root"!==r.type&&"document"!==r.type&&!r.parent){e.pop();return}if(n.length>0&&t.visitorIndex0&&void 0!==arguments[0]?arguments[0]:[];tl(this,e),this.version="8.4.47",this.plugins=this.normalize(t)}return td(e,[{key:"normalize",value:function(e){var t=[],r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if(!0===s.postcss?s=s():s.postcss&&(s=s.postcss),"object"==typeof s&&Array.isArray(s.plugins))t=t.concat(s.plugins);else if("object"==typeof s&&s.postcssPlugin)t.push(s);else if("function"==typeof s)t.push(s);else if("object"==typeof s&&(s.parse||s.stringify));else throw Error(s+" is not a PostCSS plugin")}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}return t}},{key:"process",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.plugins.length||t.parser||t.stringifier||t.syntax?new n2(this,e,t):new i_(this,e,t)}},{key:"use",value:function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}]),e}();function iL(){for(var e=arguments.length,t=Array(e),r=0;r]+$/;function iF(e,t,r){if(null==e)return"";"number"==typeof e&&(e=e.toString());var n,i,o,a,s,u,c,l,f,d="",h="";function p(e,t){var r=this;this.tag=e,this.attribs=t||{},this.tagPosition=d.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(s.length){var e=s[s.length-1];e.text+=r.text}},this.updateParentNodeMediaChildren=function(){s.length&&iR.includes(this.tag)&&s[s.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},iF.defaults,t)).parser=Object.assign({},iV,t.parser);var m=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};iB.forEach(function(e){m(e)&&!t.allowVulnerableTags&&console.warn("\n\n⚠️ Your `allowedTags` option includes, `".concat(e,"`, which is inherently\nvulnerable to XSS attacks. Please remove it from `allowedTags`.\nOr, to disable this warning, add the `allowVulnerableTags` option\nand ensure you are accounting for this risk.\n\n"))});var v=t.nonTextTags||["script","style","textarea","option"];t.allowedAttributes&&(n={},i={},iM(t.allowedAttributes,function(e,t){n[t]=[];var r=[];e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rl(e).replace(/\\\*/g,".*")):n[t].push(e)}),r.length&&(i[t]=RegExp("^("+r.join("|")+")$"))}));var g={},y={},b={};iM(t.allowedClasses,function(e,t){if(n&&(iq(n,t)||(n[t]=[]),n[t].push("class")),g[t]=e,Array.isArray(e)){var r=[];g[t]=[],b[t]=[],e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rl(e).replace(/\\\*/g,".*")):e instanceof RegExp?b[t].push(e):g[t].push(e)}),r.length&&(y[t]=RegExp("^("+r.join("|")+")$"))}});var w={};iM(t.transformTags,function(e,t){var r;"function"==typeof e?r=e:"string"==typeof e&&(r=iF.simpleTransform(e)),"*"===t?o=r:w[t]=r});var x=!1;S();var E=new tV({onopentag:function(e,r){if(t.enforceHtmlBoundary&&"html"===e&&S(),l){f++;return}var E,T=new p(e,r);s.push(T);var O=!1,_=!!T.text;if(iq(w,e)&&(E=w[e](e,r),T.attribs=r=E.attribs,void 0!==E.text&&(T.innerText=E.text),e!==E.tagName&&(T.name=e=E.tagName,c[a]=E.tagName)),o&&(E=o(e,r),T.attribs=r=E.attribs,e!==E.tagName&&(T.name=e=E.tagName,c[a]=E.tagName)),(!m(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(var t in e)if(iq(e,t))return!1;return!0}(u)||null!=t.nestingLimit&&a>=t.nestingLimit)&&(O=!0,u[a]=!0,("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&-1!==v.indexOf(e)&&(l=!0,f=1),u[a]=!0),a++,O){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return;h=d,d=""}d+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(T.innerText=""),(!n||iq(n,e)||n["*"])&&iM(r,function(r,o){if(!ij.test(o)||""===r&&!t.allowedEmptyAttributes.includes(o)&&(t.nonBooleanAttributes.includes(o)||t.nonBooleanAttributes.includes("*"))){delete T.attribs[o];return}var a=!1;if(!n||iq(n,e)&&-1!==n[e].indexOf(o)||n["*"]&&-1!==n["*"].indexOf(o)||iq(i,e)&&i[e].test(o)||i["*"]&&i["*"].test(o))a=!0;else if(n&&n[e]){var s=!0,u=!1,c=void 0;try{for(var l,f=n[e][Symbol.iterator]();!(s=(l=f.next()).done);s=!0){var h=l.value;if(rd(h)&&h.name&&h.name===o){a=!0;var p="";if(!0===h.multiple){var m=r.split(" "),v=!0,w=!1,x=void 0;try{for(var E,S=m[Symbol.iterator]();!(v=(E=S.next()).done);v=!0){var O=E.value;-1!==h.values.indexOf(O)&&(""===p?p=O:p+=" "+O)}}catch(e){w=!0,x=e}finally{try{v||null==S.return||S.return()}finally{if(w)throw x}}}else h.values.indexOf(r)>=0&&(p=r);r=p}}}catch(e){u=!0,c=e}finally{try{s||null==f.return||f.return()}finally{if(u)throw c}}}if(a){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(o)&&A(e,r)){delete T.attribs[o];return}if("script"===e&&"src"===o){var _=!0;try{var C=I(r);if(t.allowedScriptHostnames||t.allowedScriptDomains){var P=(t.allowedScriptHostnames||[]).find(function(e){return e===C.url.hostname}),L=(t.allowedScriptDomains||[]).find(function(e){return C.url.hostname===e||C.url.hostname.endsWith(".".concat(e))});_=P||L}}catch(e){_=!1}if(!_){delete T.attribs[o];return}}if("iframe"===e&&"src"===o){var D=!0;try{var R=I(r);if(R.isRelativeUrl)D=iq(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){var B=(t.allowedIframeHostnames||[]).find(function(e){return e===R.url.hostname}),M=(t.allowedIframeDomains||[]).find(function(e){return R.url.hostname===e||R.url.hostname.endsWith(".".concat(e))});D=B||M}}catch(e){D=!1}if(!D){delete T.attribs[o];return}}if("srcset"===o)try{var q=rx(r);if(q.forEach(function(e){A("srcset",e.url)&&(e.evil=!0)}),(q=iU(q,function(e){return!e.evil})).length)r=iU(q,function(e){return!e.evil}).map(function(e){if(!e.url)throw Error("URL missing");return e.url+(e.w?" ".concat(e.w,"w"):"")+(e.h?" ".concat(e.h,"h"):"")+(e.d?" ".concat(e.d,"x"):"")}).join(", "),T.attribs[o]=r;else{delete T.attribs[o];return}}catch(e){delete T.attribs[o];return}if("class"===o){var U=g[e],j=g["*"],F=y[e],V=b[e],$=b["*"],z=[F,y["*"]].concat(V,$).filter(function(e){return e});if(!(r=U&&j?N(r,rh(U,j),z):N(r,U||j,z)).length){delete T.attribs[o];return}}if("style"===o){if(t.parseStyleAttributes)try{var H=iD(e+" {"+r+"}",{map:!1});if(r=(function(e,t){if(!t)return e;var r,n=e.nodes[0];return(r=t[n.selector]&&t["*"]?rh(t[n.selector],t["*"]):t[n.selector]||t["*"])&&(e.nodes[0].nodes=n.nodes.reduce(function(e,t){return iq(r,t.prop)&&r[t.prop].some(function(e){return e.test(t.value)})&&e.push(t),e},[])),e})(H,t.allowedStyles).nodes[0].nodes.reduce(function(e,t){return e.push("".concat(t.prop,":").concat(t.value).concat(t.important?" !important":"")),e},[]).join(";"),0===r.length){delete T.attribs[o];return}}catch(t){"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+r+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),delete T.attribs[o];return}else if(t.allowedStyles)throw Error("allowedStyles option cannot be used together with parseStyleAttributes: false.")}d+=" "+o,r&&r.length?d+='="'+k(r,!0)+'"':t.allowedEmptyAttributes.includes(o)&&(d+='=""')}else delete T.attribs[o]}),-1!==t.selfClosing.indexOf(e)?d+=" />":(d+=">",!T.innerText||_||t.textFilter||(d+=k(T.innerText),x=!0)),O&&(d=h+k(d),h="")},ontext:function(e){if(!l){var r,n=s[s.length-1];if(n&&(r=n.tag,e=void 0!==n.innerText?n.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||m(r)){if(("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&("script"===r||"style"===r))d+=e;else{var i=k(e,!1);t.textFilter&&!x?d+=t.textFilter(i,r):x||(d+=i)}}else e="";if(s.length){var o=s[s.length-1];o.text+=e}}},onclosetag:function(e,r){if(l){if(--f)return;l=!1}var n=s.pop();if(n){if(n.tag!==e){s.push(n);return}l=!!t.enforceHtmlBoundary&&"html"===e;var i=u[--a];if(i){if(delete u[a],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){n.updateParentNodeText();return}h=d,d=""}if(c[a]&&(e=c[a],delete c[a]),t.exclusiveFilter&&t.exclusiveFilter(n)){d=d.substr(0,n.tagPosition);return}if(n.updateParentNodeMediaChildren(),n.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||r&&!m(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0){i&&(d=h,h="");return}d+="",i&&(d=h+k(d),h=""),x=!1}}},t.parser);return E.write(e),E.end(),d;function S(){d="",a=0,s=[],u={},c={},l=!1,f=0}function k(e,r){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,""")),e}function A(e,r){for(r=r.replace(/[\x00-\x20]+/g,"");;){var n=r.indexOf("",n+4);if(-1===i)break;r=r.substring(0,n)+r.substring(i+3)}var o=r.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!o)return!!r.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;var a=o[1].toLowerCase();return iq(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(a):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(a)}function I(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw Error("relative: exploit attempt");for(var t="relative://relative-site",r=0;r<100;r++)t+="/".concat(r);var n=new URL(e,t);return{isRelativeUrl:n&&"relative-site"===n.hostname&&"relative:"===n.protocol,url:n}}function N(e,t,r){return t?(e=e.split(/\s+/)).filter(function(e){return -1!==t.indexOf(e)||r.some(function(t){return t.test(e)})}).join(" "):e}}var iV={decodeEntities:!0};iF.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},iF.simpleTransform=function(e,t,r){return r=void 0===r||r,t=t||{},function(n,i){var o;if(r)for(o in t)i[o]=t[o];else i=t;return{tagName:e,attribs:i}}};var i$={};r="millisecond",n="second",i="minute",o="hour",a="week",s="month",u="quarter",c="year",l="date",f="Invalid Date",d=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,p=function(e,t,r){var n=String(e);return!n||n.length>=t?e:""+Array(t+1-n.length).join(r)+e},(v={})[m="en"]={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],r=e%100;return"["+e+(t[(r-20)%10]||t[r]||"th")+"]"}},g="$isDayjsObject",y=function(e){return e instanceof E||!(!e||!e[g])},b=function e(t,r,n){var i;if(!t)return m;if("string"==typeof t){var o=t.toLowerCase();v[o]&&(i=o),r&&(v[o]=r,i=o);var a=t.split("-");if(!i&&a.length>1)return e(a[0])}else{var s=t.name;v[s]=t,i=s}return!n&&i&&(m=i),i||!n&&m},w=function(e,t){if(y(e))return e.clone();var r="object"==typeof t?t:{};return r.date=e,r.args=arguments,new E(r)},(x={s:p,z:function(e){var t=-e.utcOffset(),r=Math.abs(t);return(t<=0?"+":"-")+p(Math.floor(r/60),2,"0")+":"+p(r%60,2,"0")},m:function e(t,r){if(t.date()=u)return v;n=r(f),i=[],","===n.slice(-1)?(n=n.replace(d,""),g()):function(){for(r(c),o="",a="in descriptor";;){if(s=e.charAt(m),"in descriptor"===a){if(t(s))o&&(i.push(o),o="",a="after descriptor");else if(","===s){m+=1,o&&i.push(o),g();return}else if("("===s)o+=s,a="in parens";else if(""===s){o&&i.push(o),g();return}else o+=s}else if("in parens"===a){if(")"===s)o+=s,a="in descriptor";else if(""===s){i.push(o),g();return}else o+=s}else if("after descriptor"===a){if(t(s));else if(""===s){g();return}else a="in descriptor",m-=1}m+=1}}()}function g(){var t,r,o,a,s,u,c,l,f,d=!1,m={};for(a=0;ae.length)&&(t=e.length);for(var r=0,n=Array(t);r",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}},{key:"showSourceCode",value:function(e){var t=this;if(!this.source)return"";var r=this.source;null==e&&(e=rP.isColorSupported);var n=function(e){return e},i=function(e){return e},o=function(e){return e};if(e){var a=rP.createColors(!0),s=a.bold,u=a.gray,c=a.red;i=function(e){return s(c(e))},n=function(e){return u(e)},rM&&(o=function(e){return rM(e)})}var l=r.split(/\r?\n/),f=Math.max(this.line-3,0),d=Math.min(this.line+2,l.length),h=String(d).length;return l.slice(f,d).map(function(e,r){var a=f+1+r,s=" "+(" "+a).slice(-h)+" | ";if(a===t.line){if(e.length>160){var u=Math.max(0,t.column-20),c=Math.max(t.column+20,t.endColumn+20),l=e.slice(u,c),d=n(s.replace(/\d/g," "))+e.slice(0,Math.min(t.column-1,19)).replace(/[^\t]/g," ");return i(">")+n(s)+o(l)+"\n "+d+i("^")}var p=n(s.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return i(">")+n(s)+o(e)+"\n "+p+i("^")}return" "+n(s)+o(e)}).join("\n")}},{key:"toString",value:function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}]),r}(tZ(Error));rC=rR,rR.default=rR;var rB={},rq={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1},rU=/*#__PURE__*/function(){function e(t){tl(this,e),this.builder=t}return td(e,[{key:"atrule",value:function(e,t){var r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{var i=(e.raws.between||"")+(t?";":"");this.builder(r+n+i,e)}}},{key:"beforeAfter",value:function(e,t){r="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var r,n=e.parent,i=0;n&&"root"!==n.type;)i+=1,n=n.parent;if(r.includes("\n")){var o=this.raw(e,null,"indent");if(o.length)for(var a=0;a0&&"comment"===e.nodes[t].type;)t-=1;for(var r=this.raw(e,"semicolon"),n=0;n0&&void 0!==e.raws.after)return(t=e.raws.after).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawBeforeComment",value:function(e,t){var r;return e.walkComments(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeDecl",value:function(e,t){var r;return e.walkDecls(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeOpen",value:function(e){var t;return e.walk(function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1}),t}},{key:"rawBeforeRule",value:function(e){var t;return e.walk(function(r){if(r.nodes&&(r.parent!==e||e.first!==r)&&void 0!==r.raws.before)return(t=r.raws.before).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawColon",value:function(e){var t;return e.walkDecls(function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1}),t}},{key:"rawEmptyBody",value:function(e){var t;return e.walk(function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1}),t}},{key:"rawIndent",value:function(e){var t;return e.raws.indent?e.raws.indent:(e.walk(function(r){var n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&void 0!==r.raws.before){var i=r.raws.before.split("\n");return t=(t=i[i.length-1]).replace(/\S/g,""),!1}}),t)}},{key:"rawSemicolon",value:function(e){var t;return e.walk(function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1}),t}},{key:"rawValue",value:function(e,t){var r=e[t],n=e.raws[t];return n&&n.value===r?n.raw:r}},{key:"root",value:function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}},{key:"rule",value:function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}},{key:"stringify",value:function(e,t){if(!this[e.type])throw Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}]),e}();rB=rU,rU.default=rU;var rj={};function rF(e,t){new rB(t).stringify(e)}rj=rF,rF.default=rF,ex=Symbol("isClean"),eE=Symbol("my");var rV=/*#__PURE__*/function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var r in tl(this,e),this.raws={},this[ex]=!1,this[eE]=!0,t)if("nodes"===r){this.nodes=[];var n=!0,i=!1,o=void 0;try{for(var a,s=t[r][Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;"function"==typeof u.clone?this.append(u.clone()):this.append(u)}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}else this[r]=t[r]}return td(e,[{key:"addToError",value:function(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){var t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,"$&".concat(t.input.from,":").concat(t.start.line,":").concat(t.start.column,"$&"))}return e}},{key:"after",value:function(e){return this.parent.insertAfter(this,e),this}},{key:"assign",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var t in e)this[t]=e[t];return this}},{key:"before",value:function(e){return this.parent.insertBefore(this,e),this}},{key:"cleanRaws",value:function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}},{key:"clone",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=function e(t,r){var n=new t.constructor;for(var i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&"proxyCache"!==i){var o=t[i],a=void 0===o?"undefined":(0,tt._)(o);"parent"===i&&"object"===a?r&&(n[i]=r):"source"===i?n[i]=o:Array.isArray(o)?n[i]=o.map(function(t){return e(t,n)}):("object"===a&&null!==o&&(o=e(o)),n[i]=o)}return n}(this);for(var r in e)t[r]=e[r];return t}},{key:"cloneAfter",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t}},{key:"cloneBefore",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t}},{key:"error",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var r=this.rangeBy(t),n=r.end,i=r.start;return this.source.input.error(e,{column:i.column,line:i.line},{column:n.column,line:n.line},t)}return new rC(e)}},{key:"getProxyProcessor",value:function(){return{get:function(e,t){return"proxyOf"===t?e:"root"===t?function(){return e.root().toProxy()}:e[t]},set:function(e,t,r){return e[t]===r||(e[t]=r,("prop"===t||"value"===t||"name"===t||"params"===t||"important"===t||"text"===t)&&e.markDirty(),!0)}}}},{key:"markClean",value:function(){this[ex]=!0}},{key:"markDirty",value:function(){if(this[ex]){this[ex]=!1;for(var e=this;e=e.parent;)e[ex]=!1}}},{key:"next",value:function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}}},{key:"positionBy",value:function(e,t){var r=this.source.start;if(e.index)r=this.positionInside(e.index,t);else if(e.word){var n=(t=this.toString()).indexOf(e.word);-1!==n&&(r=this.positionInside(n,t))}return r}},{key:"positionInside",value:function(e,t){for(var r=t||this.toString(),n=this.source.start.column,i=this.source.start.line,o=0;o0&&void 0!==arguments[0]?arguments[0]:rj;e.stringify&&(e=e.stringify);var t="";return e(this,function(e){t+=e}),t}},{key:"warn",value:function(e,t,r){var n={node:this};for(var i in r)n[i]=r[i];return e.warn(t,n)}},{key:"proxyOf",get:function(){return this}}]),e}();r_=rV,rV.default=rV;var r$=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="comment",n}return r}(tZ(r_));rO=r$,r$.default=r$;var rz={},rH=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),e&&void 0!==e.value&&"string"!=typeof e.value&&(e=re(tW({},e),{value:String(e.value)})),(n=t.call(this,e)).type="decl",n}return td(r,[{key:"variable",get:function(){return this.prop.startsWith("--")||"$"===this.prop[0]}}]),r}(tZ(r_));rz=rH,rH.default=rH;var rW=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(){return tl(this,r),t.apply(this,arguments)}return td(r,[{key:"append",value:function(){for(var e=arguments.length,t=Array(e),r=0;r1?t-1:0),i=1;i=e&&(this.indexes[r]=t-1);return this.markDirty(),this}},{key:"replaceValues",value:function(e,t,r){return r||(r=t,t={}),this.walkDecls(function(n){(!t.props||t.props.includes(n.prop))&&(!t.fast||n.value.includes(t.fast))&&(n.value=n.value.replace(e,r))}),this.markDirty(),this}},{key:"some",value:function(e){return this.nodes.some(e)}},{key:"walk",value:function(e){return this.each(function(t,r){var n;try{n=e(t,r)}catch(e){throw t.addToError(e)}return!1!==n&&t.walk&&(n=t.walk(e)),n})}},{key:"walkAtRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("atrule"===r.type&&e.test(r.name))return t(r,n)}):this.walk(function(r,n){if("atrule"===r.type&&r.name===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("atrule"===e.type)return t(e,r)}))}},{key:"walkComments",value:function(e){return this.walk(function(t,r){if("comment"===t.type)return e(t,r)})}},{key:"walkDecls",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("decl"===r.type&&e.test(r.prop))return t(r,n)}):this.walk(function(r,n){if("decl"===r.type&&r.prop===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("decl"===e.type)return t(e,r)}))}},{key:"walkRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("rule"===r.type&&e.test(r.selector))return t(r,n)}):this.walk(function(r,n){if("rule"===r.type&&r.selector===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("rule"===e.type)return t(e,r)}))}},{key:"first",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}},{key:"last",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}]),r}(tZ(r_));rW.registerParse=function(e){ek=e},rW.registerRule=function(e){eI=e},rW.registerAtRule=function(e){eS=e},rW.registerRoot=function(e){eA=e},rT=rW,rW.default=rW,rW.rebuild=function(e){"atrule"===e.type?Object.setPrototypeOf(e,eS.prototype):"rule"===e.type?Object.setPrototypeOf(e,eI.prototype):"decl"===e.type?Object.setPrototypeOf(e,rz.prototype):"comment"===e.type?Object.setPrototypeOf(e,rO.prototype):"root"===e.type&&Object.setPrototypeOf(e,eA.prototype),e[eE]=!0,e.nodes&&e.nodes.forEach(function(e){rW.rebuild(e)})};var rG=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="atrule",n}return td(r,[{key:"append",value:function(){for(var e,t=arguments.length,n=Array(t),i=0;i0&&void 0!==arguments[0]?arguments[0]:{};return new eN(new eT,this,e).stringify()}}]),r}(rT);rK.registerLazyResult=function(e){eN=e},rK.registerProcessor=function(e){eT=e},rY=rK,rK.default=rK;var rZ={};function rQ(e,t){if(null==e)return{};var r,n,i=function(e,t){if(null==e)return{};var r,n,i={},o=Object.keys(e);for(n=0;n=0||(i[r]=e[r]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n=0)&&Object.prototype.propertyIsEnumerable.call(e,r)&&(i[r]=e[r])}return i}var rJ={},rX=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:21,t="",r=e;r--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},r0=rM.isAbsolute,r1=rM.resolve,r3=rM.SourceMapConsumer,r2=rM.SourceMapGenerator,r5=rM.fileURLToPath,r8=rM.pathToFileURL,r6={},tt=ez("2L7Ke");eO=function(e){var t,r,n=function(e){var t=e.length;if(t%4>0)throw Error("Invalid string. Length must be a multiple of 4");var r=e.indexOf("=");-1===r&&(r=t);var n=r===t?0:4-r%4;return[r,n]}(e),i=n[0],o=n[1],a=new r7((i+o)*3/4-o),s=0,u=o>0?i-4:i;for(r=0;r>16&255,a[s++]=t>>8&255,a[s++]=255&t;return 2===o&&(t=r9[e.charCodeAt(r)]<<2|r9[e.charCodeAt(r+1)]>>4,a[s++]=255&t),1===o&&(t=r9[e.charCodeAt(r)]<<10|r9[e.charCodeAt(r+1)]<<4|r9[e.charCodeAt(r+2)]>>2,a[s++]=t>>8&255,a[s++]=255&t),a},e_=function(e){for(var t,r=e.length,n=r%3,i=[],o=0,a=r-n;o>18&63]+r4[n>>12&63]+r4[n>>6&63]+r4[63&n]);return i.join("")}(e,o,o+16383>a?a:o+16383));return 1===n?i.push(r4[(t=e[r-1])>>2]+r4[t<<4&63]+"=="):2===n&&i.push(r4[(t=(e[r-2]<<8)+e[r-1])>>10]+r4[t>>4&63]+r4[t<<2&63]+"="),i.join("")};for(var r4=[],r9=[],r7="undefined"!=typeof Uint8Array?Uint8Array:Array,ne="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",nt=0,nr=ne.length;nt>1,l=-7,f=r?i-1:0,d=r?-1:1,h=e[t+f];for(f+=d,o=h&(1<<-l)-1,h>>=-l,l+=s;l>0;o=256*o+e[t+f],f+=d,l-=8);for(a=o&(1<<-l)-1,o>>=-l,l+=n;l>0;a=256*a+e[t+f],f+=d,l-=8);if(0===o)o=1-c;else{if(o===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,n),o-=c}return(h?-1:1)*a*Math.pow(2,o-n)},eP=function(e,t,r,n,i,o){var a,s,u,c=8*o-i-1,l=(1<>1,d=23===i?5960464477539062e-23:0,h=n?0:o-1,p=n?1:-1,m=t<0||0===t&&1/t<0?1:0;for(isNaN(t=Math.abs(t))||t===1/0?(s=isNaN(t)?1:0,a=l):(a=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-a))<1&&(a--,u*=2),a+f>=1?t+=d/u:t+=d*Math.pow(2,1-f),t*u>=2&&(a++,u/=2),a+f>=l?(s=0,a=l):a+f>=1?(s=(t*u-1)*Math.pow(2,i),a+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),a=0));i>=8;e[r+h]=255&s,h+=p,s/=256,i-=8);for(a=a<0;e[r+h]=255&a,h+=p,a/=256,c-=8);e[r+h-p]|=128*m};var nn="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;function ni(e){if(e>0x7fffffff)throw RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,no.prototype),t}function no(e,t,r){if("number"==typeof e){if("string"==typeof t)throw TypeError('The "string" argument must be of type string. Received type number');return nu(e)}return na(e,t,r)}function na(e,t,r){if("string"==typeof e)return function(e,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!no.isEncoding(t))throw TypeError("Unknown encoding: "+t);var r=0|nd(e,t),n=ni(r),i=n.write(e,t);return i!==r&&(n=n.slice(0,i)),n}(e,t);if(ArrayBuffer.isView(e))return function(e){if(nM(e,Uint8Array)){var t=new Uint8Array(e);return nl(t.buffer,t.byteOffset,t.byteLength)}return nc(e)}(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tt._)(e)));if(nM(e,ArrayBuffer)||e&&nM(e.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(nM(e,SharedArrayBuffer)||e&&nM(e.buffer,SharedArrayBuffer)))return nl(e,t,r);if("number"==typeof e)throw TypeError('The "value" argument must not be of type number. Received type number');var n=e.valueOf&&e.valueOf();if(null!=n&&n!==e)return no.from(n,t,r);var i=function(e){if(no.isBuffer(e)){var t,r=0|nf(e.length),n=ni(r);return 0===n.length||e.copy(n,0,0,r),n}return void 0!==e.length?"number"!=typeof e.length||(t=e.length)!=t?ni(0):nc(e):"Buffer"===e.type&&Array.isArray(e.data)?nc(e.data):void 0}(e);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return no.from(e[Symbol.toPrimitive]("string"),t,r);throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tt._)(e)))}function ns(e){if("number"!=typeof e)throw TypeError('"size" argument must be of type number');if(e<0)throw RangeError('The value "'+e+'" is invalid for option "size"')}function nu(e){return ns(e),ni(e<0?0:0|nf(e))}function nc(e){for(var t=e.length<0?0:0|nf(e.length),r=ni(t),n=0;n=0x7fffffff)throw RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|e}function nd(e,t){if(no.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||nM(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+(void 0===e?"undefined":(0,tt._)(e)));var r=e.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return nP(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return nL(e).length;default:if(i)return n?-1:nP(e).length;t=(""+t).toLowerCase(),i=!0}}function nh(e,t,r){var n,i,o=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===r||r>this.length)&&(r=this.length),r<=0||(r>>>=0)<=(t>>>=0)))return"";for(e||(e="utf8");;)switch(e){case"hex":return function(e,t,r){var n=e.length;(!t||t<0)&&(t=0),(!r||r<0||r>n)&&(r=n);for(var i="",o=t;o0x7fffffff?r=0x7fffffff:r<-0x80000000&&(r=-0x80000000),(o=r=+r)!=o&&(r=i?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(i)return -1;r=e.length-1}else if(r<0){if(!i)return -1;r=0}if("string"==typeof t&&(t=no.from(t,n)),no.isBuffer(t))return 0===t.length?-1:nv(e,t,r,n,i);if("number"==typeof t)return(t&=255,"function"==typeof Uint8Array.prototype.indexOf)?i?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):nv(e,[t],r,n,i);throw TypeError("val must be string, number or Buffer")}function nv(e,t,r,n,i){var o,a=1,s=e.length,u=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return -1;a=2,s/=2,u/=2,r/=2}function c(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var l=-1;for(o=r;os&&(r=s-u),o=r;o>=0;o--){for(var f=!0,d=0;d239?4:o>223?3:o>191?2:1;if(i+s<=r){var u=void 0,c=void 0,l=void 0,f=void 0;switch(s){case 1:o<128&&(a=o);break;case 2:(192&(u=e[i+1]))==128&&(f=(31&o)<<6|63&u)>127&&(a=f);break;case 3:u=e[i+1],c=e[i+2],(192&u)==128&&(192&c)==128&&(f=(15&o)<<12|(63&u)<<6|63&c)>2047&&(f<55296||f>57343)&&(a=f);break;case 4:u=e[i+1],c=e[i+2],l=e[i+3],(192&u)==128&&(192&c)==128&&(192&l)==128&&(f=(15&o)<<18|(63&u)<<12|(63&c)<<6|63&l)>65535&&f<1114112&&(a=f)}}null===a?(a=65533,s=1):a>65535&&(a-=65536,n.push(a>>>10&1023|55296),a=56320|1023&a),n.push(a),i+=s}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);for(var r="",n=0;nr)throw RangeError("Trying to access beyond buffer length")}function nb(e,t,r,n,i,o){if(!no.isBuffer(e))throw TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw RangeError("Index out of range")}function nw(e,t,r,n,i){nT(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,r}function nx(e,t,r,n,i){nT(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r+7]=o,o>>=8,e[r+6]=o,o>>=8,e[r+5]=o,o>>=8,e[r+4]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r+3]=a,a>>=8,e[r+2]=a,a>>=8,e[r+1]=a,a>>=8,e[r]=a,r+8}function nE(e,t,r,n,i,o){if(r+n>e.length||r<0)throw RangeError("Index out of range")}function nS(e,t,r,n,i){return t=+t,r>>>=0,i||nE(e,t,r,4,34028234663852886e22,-34028234663852886e22),eP(e,t,r,n,23,4),r+4}function nk(e,t,r,n,i){return t=+t,r>>>=0,i||nE(e,t,r,8,17976931348623157e292,-17976931348623157e292),eP(e,t,r,n,52,8),r+8}no.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),no.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(no.prototype,"parent",{enumerable:!0,get:function(){if(no.isBuffer(this))return this.buffer}}),Object.defineProperty(no.prototype,"offset",{enumerable:!0,get:function(){if(no.isBuffer(this))return this.byteOffset}}),no.poolSize=8192,no.from=function(e,t,r){return na(e,t,r)},Object.setPrototypeOf(no.prototype,Uint8Array.prototype),Object.setPrototypeOf(no,Uint8Array),no.alloc=function(e,t,r){return(ns(e),e<=0)?ni(e):void 0!==t?"string"==typeof r?ni(e).fill(t,r):ni(e).fill(t):ni(e)},no.allocUnsafe=function(e){return nu(e)},no.allocUnsafeSlow=function(e){return nu(e)},no.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==no.prototype},no.compare=function(e,t){if(nM(e,Uint8Array)&&(e=no.from(e,e.offset,e.byteLength)),nM(t,Uint8Array)&&(t=no.from(t,t.offset,t.byteLength)),!no.isBuffer(e)||!no.isBuffer(t))throw TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var r=e.length,n=t.length,i=0,o=Math.min(r,n);in.length?(no.isBuffer(o)||(o=no.from(o)),o.copy(n,i)):Uint8Array.prototype.set.call(n,o,i);else if(no.isBuffer(o))o.copy(n,i);else throw TypeError('"list" argument must be an Array of Buffers');i+=o.length}return n},no.byteLength=nd,no.prototype._isBuffer=!0,no.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t50&&(e+=" ... "),""},nn&&(no.prototype[nn]=no.prototype.inspect),no.prototype.compare=function(e,t,r,n,i){if(nM(e,Uint8Array)&&(e=no.from(e,e.offset,e.byteLength)),!no.isBuffer(e))throw TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+(void 0===e?"undefined":(0,tt._)(e)));if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),t<0||r>e.length||n<0||i>this.length)throw RangeError("out of range index");if(n>=i&&t>=r)return 0;if(n>=i)return -1;if(t>=r)return 1;if(t>>>=0,r>>>=0,n>>>=0,i>>>=0,this===e)return 0;for(var o=i-n,a=r-t,s=Math.min(o,a),u=this.slice(n,i),c=e.slice(t,r),l=0;l>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0);else throw Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var i,o,a,s,u,c,l,f,d=this.length-t;if((void 0===r||r>d)&&(r=d),e.length>0&&(r<0||t<0)||t>this.length)throw RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var h=!1;;)switch(n){case"hex":return function(e,t,r,n){r=Number(r)||0;var i,o=e.length-r;n?(n=Number(n))>o&&(n=o):n=o;var a=t.length;for(n>a/2&&(n=a/2),i=0;i>8,i.push(r%256),i.push(n);return i}(e,this.length-l),this,l,f);default:if(h)throw TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),h=!0}},no.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},no.prototype.slice=function(e,t){var r=this.length;e=~~e,t=void 0===t?r:~~t,e<0?(e+=r)<0&&(e=0):e>r&&(e=r),t<0?(t+=r)<0&&(t=0):t>r&&(t=r),t>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e],i=1,o=0;++o>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e+--t],i=1;t>0&&(i*=256);)n+=this[e+--t]*i;return n},no.prototype.readUint8=no.prototype.readUInt8=function(e,t){return e>>>=0,t||ny(e,1,this.length),this[e]},no.prototype.readUint16LE=no.prototype.readUInt16LE=function(e,t){return e>>>=0,t||ny(e,2,this.length),this[e]|this[e+1]<<8},no.prototype.readUint16BE=no.prototype.readUInt16BE=function(e,t){return e>>>=0,t||ny(e,2,this.length),this[e]<<8|this[e+1]},no.prototype.readUint32LE=no.prototype.readUInt32LE=function(e,t){return e>>>=0,t||ny(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+0x1000000*this[e+3]},no.prototype.readUint32BE=no.prototype.readUInt32BE=function(e,t){return e>>>=0,t||ny(e,4,this.length),0x1000000*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},no.prototype.readBigUInt64LE=nB(function(e){nO(e>>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&n_(e,this.length-8);var n=t+256*this[++e]+65536*this[++e]+0x1000000*this[++e],i=this[++e]+256*this[++e]+65536*this[++e]+0x1000000*r;return BigInt(n)+(BigInt(i)<>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&n_(e,this.length-8);var n=0x1000000*t+65536*this[++e]+256*this[++e]+this[++e],i=0x1000000*this[++e]+65536*this[++e]+256*this[++e]+r;return(BigInt(n)<>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e],i=1,o=0;++o=(i*=128)&&(n-=Math.pow(2,8*t)),n},no.prototype.readIntBE=function(e,t,r){e>>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=t,i=1,o=this[e+--n];n>0&&(i*=256);)o+=this[e+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},no.prototype.readInt8=function(e,t){return(e>>>=0,t||ny(e,1,this.length),128&this[e])?-((255-this[e]+1)*1):this[e]},no.prototype.readInt16LE=function(e,t){e>>>=0,t||ny(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?0xffff0000|r:r},no.prototype.readInt16BE=function(e,t){e>>>=0,t||ny(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?0xffff0000|r:r},no.prototype.readInt32LE=function(e,t){return e>>>=0,t||ny(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},no.prototype.readInt32BE=function(e,t){return e>>>=0,t||ny(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},no.prototype.readBigInt64LE=nB(function(e){nO(e>>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&n_(e,this.length-8),(BigInt(this[e+4]+256*this[e+5]+65536*this[e+6]+(r<<24))<>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&n_(e,this.length-8),(BigInt((t<<24)+65536*this[++e]+256*this[++e]+this[++e])<>>=0,t||ny(e,4,this.length),eC(this,e,!0,23,4)},no.prototype.readFloatBE=function(e,t){return e>>>=0,t||ny(e,4,this.length),eC(this,e,!1,23,4)},no.prototype.readDoubleLE=function(e,t){return e>>>=0,t||ny(e,8,this.length),eC(this,e,!0,52,8)},no.prototype.readDoubleBE=function(e,t){return e>>>=0,t||ny(e,8,this.length),eC(this,e,!1,52,8)},no.prototype.writeUintLE=no.prototype.writeUIntLE=function(e,t,r,n){if(e=+e,t>>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nb(this,e,t,r,i,0)}var o=1,a=0;for(this[t]=255&e;++a>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nb(this,e,t,r,i,0)}var o=r-1,a=1;for(this[t+o]=255&e;--o>=0&&(a*=256);)this[t+o]=e/a&255;return t+r},no.prototype.writeUint8=no.prototype.writeUInt8=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,1,255,0),this[t]=255&e,t+1},no.prototype.writeUint16LE=no.prototype.writeUInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},no.prototype.writeUint16BE=no.prototype.writeUInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},no.prototype.writeUint32LE=no.prototype.writeUInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0xffffffff,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},no.prototype.writeUint32BE=no.prototype.writeUInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0xffffffff,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},no.prototype.writeBigUInt64LE=nB(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nw(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),no.prototype.writeBigUInt64BE=nB(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),no.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nb(this,e,t,r,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o>0)-s&255;return t+r},no.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nb(this,e,t,r,i-1,-i)}var o=r-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+r},no.prototype.writeInt8=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},no.prototype.writeInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},no.prototype.writeInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},no.prototype.writeInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0x7fffffff,-0x80000000),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},no.prototype.writeInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0x7fffffff,-0x80000000),e<0&&(e=0xffffffff+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},no.prototype.writeBigInt64LE=nB(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nw(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),no.prototype.writeBigInt64BE=nB(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),no.prototype.writeFloatLE=function(e,t,r){return nS(this,e,t,!0,r)},no.prototype.writeFloatBE=function(e,t,r){return nS(this,e,t,!1,r)},no.prototype.writeDoubleLE=function(e,t,r){return nk(this,e,t,!0,r)},no.prototype.writeDoubleBE=function(e,t,r){return nk(this,e,t,!1,r)},no.prototype.copy=function(e,t,r,n){if(!no.isBuffer(e))throw TypeError("argument should be a Buffer");if(r||(r=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n=this.length)throw RangeError("Index out of range");if(n<0)throw RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t>>=0,r=void 0===r?this.length:r>>>0,e||(e=0),"number"==typeof e)for(i=t;i=n+4;r-=3)t="_".concat(e.slice(r-3,r)).concat(t);return"".concat(e.slice(0,r)).concat(t)}function nT(e,t,r,n,i,o){if(e>r||e3?0===t||t===BigInt(0)?">= 0".concat(s," and < 2").concat(s," ** ").concat((o+1)*8).concat(s):">= -(2".concat(s," ** ").concat((o+1)*8-1).concat(s,") and < 2 ** ")+"".concat((o+1)*8-1).concat(s):">= ".concat(t).concat(s," and <= ").concat(r).concat(s),new nA.ERR_OUT_OF_RANGE("value",a,e)}nO(i,"offset"),(void 0===n[i]||void 0===n[i+o])&&n_(i,n.length-(o+1))}function nO(e,t){if("number"!=typeof e)throw new nA.ERR_INVALID_ARG_TYPE(t,"number",e)}function n_(e,t,r){if(Math.floor(e)!==e)throw nO(e,r),new nA.ERR_OUT_OF_RANGE(r||"offset","an integer",e);if(t<0)throw new nA.ERR_BUFFER_OUT_OF_BOUNDS;throw new nA.ERR_OUT_OF_RANGE(r||"offset",">= ".concat(r?1:0," and <= ").concat(t),e)}nI("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"},RangeError),nI("ERR_INVALID_ARG_TYPE",function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(void 0===t?"undefined":(0,tt._)(t))},TypeError),nI("ERR_OUT_OF_RANGE",function(e,t,r){var n='The value of "'.concat(e,'" is out of range.'),i=r;return Number.isInteger(r)&&Math.abs(r)>0x100000000?i=nN(String(r)):(void 0===r?"undefined":(0,tt._)(r))==="bigint"&&(i=String(r),(r>Math.pow(BigInt(2),BigInt(32))||r<-Math.pow(BigInt(2),BigInt(32)))&&(i=nN(i)),i+="n"),n+=" It must be ".concat(t,". Received ").concat(i)},RangeError);var nC=/[^+/0-9A-Za-z-_]/g;function nP(e,t){t=t||1/0;for(var r,n=e.length,i=null,o=[],a=0;a55295&&r<57344){if(!i){if(r>56319||a+1===n){(t-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(r<56320){(t-=3)>-1&&o.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,r<128){if((t-=1)<0)break;o.push(r)}else if(r<2048){if((t-=2)<0)break;o.push(r>>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else if(r<1114112){if((t-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}else throw Error("Invalid code point")}return o}function nL(e){return eO(function(e){if((e=(e=e.split("=")[0]).trim().replace(nC,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function nD(e,t,r,n){var i;for(i=0;i=t.length)&&!(i>=e.length);++i)t[i+r]=e[i];return i}function nM(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}var nR=function(){for(var e="0123456789abcdef",t=Array(256),r=0;r<16;++r)for(var n=16*r,i=0;i<16;++i)t[n+i]=e[r]+e[i];return t}();function nB(e){return"undefined"==typeof BigInt?nq:e}function nq(){throw Error("BigInt not supported")}var nU=rM.existsSync,nj=rM.readFileSync,nF=rM.dirname,nV=rM.join,n$=rM.SourceMapConsumer,nz=rM.SourceMapGenerator,nH=/*#__PURE__*/function(){function e(t,r){if(tl(this,e),!1!==r.map){this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var n=r.map?r.map.prev:void 0,i=this.loadMap(r.from,n);!this.mapFile&&r.from&&(this.mapFile=r.from),this.mapFile&&(this.root=nF(this.mapFile)),i&&(this.text=i)}}return td(e,[{key:"consumer",value:function(){return this.consumerCache||(this.consumerCache=new n$(this.text)),this.consumerCache}},{key:"decodeInline",value:function(e){var t,r=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(r)return decodeURIComponent(e.substr(r[0].length));var n=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(n)return t=e.substr(n[0].length),no?no.from(t,"base64").toString():window.atob(t);throw Error("Unsupported source map encoding "+e.match(/data:application\/json;([^,]+),/)[1])}},{key:"getAnnotationURL",value:function(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}},{key:"isMap",value:function(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}},{key:"loadAnnotation",value:function(e){var t=e.match(/\/\*\s*# sourceMappingURL=/g);if(t){var r=e.lastIndexOf(t.pop()),n=e.indexOf("*/",r);r>-1&&n>-1&&(this.annotation=this.getAnnotationURL(e.substring(r,n)))}}},{key:"loadFile",value:function(e){if(this.root=nF(e),nU(e))return this.mapFile=e,nj(e,"utf-8").toString().trim()}},{key:"loadMap",value:function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var r=t(e);if(r){var n=this.loadFile(r);if(!n)throw Error("Unable to load previous source map: "+r.toString());return n}}else if(t instanceof n$)return nz.fromSourceMap(t).toString();else if(t instanceof nz)return t.toString();else if(this.isMap(t))return JSON.stringify(t);else throw Error("Unsupported previous source map format: "+t.toString())}else if(this.inline)return this.decodeInline(this.annotation);else if(this.annotation){var i=this.annotation;return e&&(i=nV(nF(e),i)),this.loadFile(i)}}},{key:"startWith",value:function(e,t){return!!e&&e.substr(0,t.length)===t}},{key:"withContent",value:function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}]),e}();r6=nH,nH.default=nH;var nW=Symbol("fromOffsetCache"),nG=!!(r3&&r2),nY=!!(r1&&r0),nK=/*#__PURE__*/function(){function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(tl(this,e),null==t||"object"==typeof t&&!t.toString)throw Error("PostCSS received ".concat(t," instead of CSS string"));if(this.css=t.toString(),"\uFEFF"===this.css[0]||"￾"===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,r.from&&(!nY||/^\w+:\/\//.test(r.from)||r0(r.from)?this.file=r.from:this.file=r1(r.from)),nY&&nG){var n=new r6(this.css,r);if(n.text){this.map=n;var i=n.consumer().file;!this.file&&i&&(this.file=this.mapResolve(i))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}return td(e,[{key:"error",value:function(e,t,r){var n,i,o,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(t&&"object"==typeof t){var s=t,u=r;if("number"==typeof s.offset){var c=this.fromOffset(s.offset);t=c.line,r=c.col}else t=s.line,r=s.column;if("number"==typeof u.offset){var l=this.fromOffset(u.offset);i=l.line,n=l.col}else i=u.line,n=u.column}else if(!r){var f=this.fromOffset(t);t=f.line,r=f.col}var d=this.origin(t,r,i,n);return(o=d?new rC(e,void 0===d.endLine?d.line:{column:d.column,line:d.line},void 0===d.endLine?d.column:{column:d.endColumn,line:d.endLine},d.source,d.file,a.plugin):new rC(e,void 0===i?t:{column:r,line:t},void 0===i?r:{column:n,line:i},this.css,this.file,a.plugin)).input={column:r,endColumn:n,endLine:i,line:t,source:this.css},this.file&&(r8&&(o.input.url=r8(this.file).toString()),o.input.file=this.file),o}},{key:"fromOffset",value:function(e){if(this[nW])s=this[nW];else{var t=this.css.split("\n");s=Array(t.length);for(var r=0,n=0,i=t.length;n=a)o=s.length-1;else for(var a,s,u,c=s.length-2;o>1)])c=u-1;else if(e>=s[u+1])o=u+1;else{o=u;break}return{col:e-s[o]+1,line:o+1}}},{key:"mapResolve",value:function(e){return/^\w+:\/\//.test(e)?e:r1(this.map.consumer().sourceRoot||this.map.root||".",e)}},{key:"origin",value:function(e,t,r,n){if(!this.map)return!1;var i,o,a=this.map.consumer(),s=a.originalPositionFor({column:t,line:e});if(!s.source)return!1;"number"==typeof r&&(i=a.originalPositionFor({column:n,line:r})),o=r0(s.source)?r8(s.source):new URL(s.source,this.map.consumer().sourceRoot||r8(this.map.mapFile));var u={column:s.column,endColumn:i&&i.column,endLine:i&&i.line,line:s.line,url:o.toString()};if("file:"===o.protocol){if(r5)u.file=r5(o);else throw Error("file: protocol is not available in this PostCSS build")}var c=a.sourceContentFor(s.source);return c&&(u.source=c),u}},{key:"toJSON",value:function(){for(var e={},t=0,r=["hasBOM","css","file","id"];t1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)try{for(var u,c=i[Symbol.iterator]();!(o=(u=c.next()).done);o=!0)u.value.raws.before=t.raws.before}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}}return i}},{key:"removeChild",value:function(e,t){var n=this.index(e);return!t&&0===n&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[n].raws.before),rN(tK(r.prototype),"removeChild",this).call(this,e)}},{key:"toResult",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new eL(new eD,this,e).stringify()}}]),r}(rT);nQ.registerLazyResult=function(e){eL=e},nQ.registerProcessor=function(e){eD=e},nZ=nQ,nQ.default=nQ,rT.registerRoot(nQ);var nJ={},nX={},n0={comma:function(e){return n0.split(e,[","],!0)},space:function(e){return n0.split(e,[" ","\n"," "])},split:function(e,t,r){var n=[],i="",o=!1,a=0,s=!1,u="",c=!1,l=!0,f=!1,d=void 0;try{for(var h,p=e[Symbol.iterator]();!(l=(h=p.next()).done);l=!0){var m=h.value;c?c=!1:"\\"===m?c=!0:s?m===u&&(s=!1):'"'===m||"'"===m?(s=!0,u=m):"("===m?a+=1:")"===m?a>0&&(a-=1):0===a&&t.includes(m)&&(o=!0),o?(""!==i&&n.push(i.trim()),i="",o=!1):i+=m}}catch(e){f=!0,d=e}finally{try{l||null==p.return||p.return()}finally{if(f)throw d}}return(r||""!==i)&&n.push(i.trim()),n}};nX=n0,n0.default=n0;var n1=/*#__PURE__*/function(e){tz(r,e);var t=tJ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="rule",n.nodes||(n.nodes=[]),n}return td(r,[{key:"selectors",get:function(){return nX.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}}]),r}(rT);function n3(e,t){if(Array.isArray(e))return e.map(function(e){return n3(e)});var r=e.inputs,n=rQ(e,["inputs"]);if(r){t=[];var i=!0,o=!1,a=void 0;try{for(var s,u=r[Symbol.iterator]();!(i=(s=u.next()).done);i=!0){var c=s.value,l=re(tW({},c),{__proto__:rJ.prototype});l.map&&(l.map=re(tW({},l.map),{__proto__:r6.prototype})),t.push(l)}}catch(e){o=!0,a=e}finally{try{i||null==u.return||u.return()}finally{if(o)throw a}}}if(n.nodes&&(n.nodes=e.nodes.map(function(e){return n3(e,t)})),n.source){var f=n.source,d=f.inputId,h=rQ(f,["inputId"]);n.source=h,null!=d&&(n.source.input=t[d])}if("root"===n.type)return new nZ(n);if("decl"===n.type)return new rz(n);if("rule"===n.type)return new nJ(n);if("comment"===n.type)return new rO(n);if("atrule"===n.type)return new rI(n);throw Error("Unknown node type: "+e.type)}nJ=n1,n1.default=n1,rT.registerRule(n1),rZ=n3,n3.default=n3;var n2={};function n5(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r,n,i=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=i){var o=[],a=!0,s=!1;try{for(i=i.call(e);!(a=(r=i.next()).done)&&(o.push(r.value),!t||o.length!==t);a=!0);}catch(e){s=!0,n=e}finally{try{a||null==i.return||i.return()}finally{if(s)throw n}}return o}}(e,t)||rk(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var eK=(ez("bgUiC"),ez("bgUiC")),n8={},n6=rM.dirname,n4=rM.relative,n9=rM.resolve,n7=rM.sep,ie=rM.SourceMapConsumer,it=rM.SourceMapGenerator,ir=rM.pathToFileURL,ii=!!(ie&&it),io=!!(n6&&n9&&n4&&n7);n8=/*#__PURE__*/function(){function e(t,r,n,i){tl(this,e),this.stringify=t,this.mapOpts=n.map||{},this.root=r,this.opts=n,this.css=i,this.originalCSS=i,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}return td(e,[{key:"addAnnotation",value:function(){e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";var e,t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}},{key:"applyPrevMaps",value:function(){var e=!0,t=!1,r=void 0;try{for(var n,i=this.previous()[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.toUrl(this.path(o.file)),s=o.root||n6(o.file),u=void 0;!1===this.mapOpts.sourcesContent?(u=new ie(o.text)).sourcesContent&&(u.sourcesContent=null):u=o.consumer(),this.map.applySourceMap(u,a,this.toUrl(this.path(s)))}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}}},{key:"clearAnnotation",value:function(){if(!1!==this.mapOpts.annotation){if(this.root)for(var e,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t);else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}}},{key:"generate",value:function(){if(this.clearAnnotation(),io&&ii&&this.isMap())return this.generateMap();var e="";return this.stringify(this.root,function(t){e+=t}),[e]}},{key:"generateMap",value:function(){if(this.root)this.generateString();else if(1===this.previous().length){var e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=it.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new it({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return(this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline())?[this.css]:[this.css,this.map]}},{key:"generateString",value:function(){var e,t,r=this;this.css="",this.map=new it({file:this.outputFile(),ignoreInvalidMapping:!0});var n=1,i=1,o="",a={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,function(s,u,c){if(r.css+=s,u&&"end"!==c&&(a.generated.line=n,a.generated.column=i-1,u.source&&u.source.start?(a.source=r.sourcePath(u),a.original.line=u.source.start.line,a.original.column=u.source.start.column-1):(a.source=o,a.original.line=1,a.original.column=0),r.map.addMapping(a)),(t=s.match(/\n/g))?(n+=t.length,e=s.lastIndexOf("\n"),i=s.length-e):i+=s.length,u&&"start"!==c){var l=u.parent||{raws:{}};(!("decl"===u.type||"atrule"===u.type&&!u.nodes)||u!==l.last||l.raws.semicolon)&&(u.source&&u.source.end?(a.source=r.sourcePath(u),a.original.line=u.source.end.line,a.original.column=u.source.end.column-1,a.generated.line=n,a.generated.column=i-2):(a.source=o,a.original.line=1,a.original.column=0,a.generated.line=n,a.generated.column=i-1),r.map.addMapping(a))}})}},{key:"isAnnotation",value:function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some(function(e){return e.annotation}))}},{key:"isInline",value:function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some(function(e){return e.inline}))}},{key:"isMap",value:function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}},{key:"isSourcesContent",value:function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some(function(e){return e.withContent()})}},{key:"outputFile",value:function(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}},{key:"path",value:function(e){if(this.mapOpts.absolute||60===e.charCodeAt(0)||/^\w+:\/\//.test(e))return e;var t=this.memoizedPaths.get(e);if(t)return t;var r=this.opts.to?n6(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(r=n6(n9(r,this.mapOpts.annotation)));var n=n4(r,e);return this.memoizedPaths.set(e,n),n}},{key:"previous",value:function(){var e=this;if(!this.previousMaps){if(this.previousMaps=[],this.root)this.root.walk(function(t){if(t.source&&t.source.input.map){var r=t.source.input.map;e.previousMaps.includes(r)||e.previousMaps.push(r)}});else{var t=new rJ(this.originalCSS,this.opts);t.map&&this.previousMaps.push(t.map)}}return this.previousMaps}},{key:"setSourcesContent",value:function(){var e=this,t={};if(this.root)this.root.walk(function(r){if(r.source){var n=r.source.input.from;if(n&&!t[n]){t[n]=!0;var i=e.usesFileUrls?e.toFileUrl(n):e.toUrl(e.path(n));e.map.setSourceContent(i,r.source.input.css)}}});else if(this.css){var r=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(r,this.css)}}},{key:"sourcePath",value:function(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}},{key:"toBase64",value:function(e){return no?no.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}},{key:"toFileUrl",value:function(e){var t=this.memoizedFileURLs.get(e);if(t)return t;if(ir){var r=ir(e).toString();return this.memoizedFileURLs.set(e,r),r}throw Error("`map.absolute` option is not available in this PostCSS build")}},{key:"toUrl",value:function(e){var t=this.memoizedURLs.get(e);if(t)return t;"\\"===n7&&(e=e.replace(/\\/g,"/"));var r=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,r),r}}]),e}();var ia={},is={},iu={},ic=/[\t\n\f\r "#'()/;[\\\]{}]/g,il=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,id=/.[\r\n"'(/\\]/,ih=/[\da-f]/i;iu=function(e){var t,r,n,i,o,a,s,u,c,l,f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},d=e.css.valueOf(),h=f.ignoreErrors,p=d.length,m=0,v=[],g=[];function y(t){throw e.error("Unclosed "+t,m)}return{back:function(e){g.push(e)},endOfFile:function(){return 0===g.length&&m>=p},nextToken:function(e){if(g.length)return g.pop();if(!(m>=p)){var f=!!e&&e.ignoreUnclosed;switch(t=d.charCodeAt(m)){case 10:case 32:case 9:case 13:case 12:i=m;do i+=1,t=d.charCodeAt(i);while(32===t||10===t||9===t||13===t||12===t)a=["space",d.slice(m,i)],m=i-1;break;case 91:case 93:case 123:case 125:case 58:case 59:case 41:var b=String.fromCharCode(t);a=[b,b,m];break;case 40:if(l=v.length?v.pop()[1]:"",c=d.charCodeAt(m+1),"url"===l&&39!==c&&34!==c&&32!==c&&10!==c&&9!==c&&12!==c&&13!==c){i=m;do{if(s=!1,-1===(i=d.indexOf(")",i+1))){if(h||f){i=m;break}y("bracket")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["brackets",d.slice(m,i+1),m,i],m=i}else i=d.indexOf(")",m+1),r=d.slice(m,i+1),-1===i||id.test(r)?a=["(","(",m]:(a=["brackets",r,m,i],m=i);break;case 39:case 34:o=39===t?"'":'"',i=m;do{if(s=!1,-1===(i=d.indexOf(o,i+1))){if(h||f){i=m+1;break}y("string")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["string",d.slice(m,i+1),m,i],m=i;break;case 64:ic.lastIndex=m+1,ic.test(d),i=0===ic.lastIndex?d.length-1:ic.lastIndex-2,a=["at-word",d.slice(m,i+1),m,i],m=i;break;case 92:for(i=m,n=!0;92===d.charCodeAt(i+1);)i+=1,n=!n;if(t=d.charCodeAt(i+1),n&&47!==t&&32!==t&&10!==t&&9!==t&&13!==t&&12!==t&&(i+=1,ih.test(d.charAt(i)))){for(;ih.test(d.charAt(i+1));)i+=1;32===d.charCodeAt(i+1)&&(i+=1)}a=["word",d.slice(m,i+1),m,i],m=i;break;default:47===t&&42===d.charCodeAt(m+1)?(0===(i=d.indexOf("*/",m+2)+1)&&(h||f?i=d.length:y("comment")),a=["comment",d.slice(m,i+1),m,i]):(il.lastIndex=m+1,il.test(d),i=0===il.lastIndex?d.length-1:il.lastIndex-2,a=["word",d.slice(m,i+1),m,i],v.push(a)),m=i}return m++,a}},position:function(){return m}}};var ip={empty:!0,space:!0};function im(e,t){var r=new rJ(e,t),n=new is(r);try{n.parse()}catch(e){throw e}return n.root}is=/*#__PURE__*/function(){function e(t){tl(this,e),this.input=t,this.root=new nZ,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{column:1,line:1,offset:0}}}return td(e,[{key:"atrule",value:function(e){var t,r,n,i=new rI;i.name=e[1].slice(1),""===i.name&&this.unnamedAtrule(i,e),this.init(i,e[2]);for(var o=!1,a=!1,s=[],u=[];!this.tokenizer.endOfFile();){if("("===(t=(e=this.tokenizer.nextToken())[0])||"["===t?u.push("("===t?")":"]"):"{"===t&&u.length>0?u.push("}"):t===u[u.length-1]&&u.pop(),0===u.length){if(";"===t){i.source.end=this.getPosition(e[2]),i.source.end.offset++,this.semicolon=!0;break}if("{"===t){a=!0;break}if("}"===t){if(s.length>0){for(n=s.length-1,r=s[n];r&&"space"===r[0];)r=s[--n];r&&(i.source.end=this.getPosition(r[3]||r[2]),i.source.end.offset++)}this.end(e);break}s.push(e)}else s.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}i.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(i.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(i,"params",s),o&&(e=s[s.length-1],i.source.end=this.getPosition(e[3]||e[2]),i.source.end.offset++,this.spaces=i.raws.between,i.raws.between="")):(i.raws.afterName="",i.params=""),a&&(i.nodes=[],this.current=i)}},{key:"checkMissedSemicolon",value:function(e){var t,r=this.colon(e);if(!1!==r){for(var n=0,i=r-1;i>=0&&("space"===(t=e[i])[0]||2!==(n+=1));i--);throw this.input.error("Missed semicolon","word"===t[0]?t[3]+1:t[2])}}},{key:"colon",value:function(e){var t=0,r=!0,n=!1,i=void 0;try{for(var o,a,s,u=e.entries()[Symbol.iterator]();!(r=(s=u.next()).done);r=!0){var c=n5(s.value,2),l=c[0],f=c[1];if(a=f[0],"("===a&&(t+=1),")"===a&&(t-=1),0===t&&":"===a){if(o){if("word"===o[0]&&"progid"===o[1])continue;return l}this.doubleColon(f)}o=f}}catch(e){n=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(n)throw i}}return!1}},{key:"comment",value:function(e){var t=new rO;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;var r=e[1].slice(2,-2);if(/^\s*$/.test(r))t.text="",t.raws.left=r,t.raws.right="";else{var n=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=n[2],t.raws.left=n[1],t.raws.right=n[3]}}},{key:"createTokenizer",value:function(){this.tokenizer=iu(this.input)}},{key:"decl",value:function(e,t){var r,n,i=new rz;this.init(i,e[0][2]);var o=e[e.length-1];for(";"===o[0]&&(this.semicolon=!0,e.pop()),i.source.end=this.getPosition(o[3]||o[2]||function(e){for(var t=e.length-1;t>=0;t--){var r=e[t],n=r[3]||r[2];if(n)return n}}(e)),i.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),i.raws.before+=e.shift()[1];for(i.source.start=this.getPosition(e[0][2]),i.prop="";e.length;){var a=e[0][0];if(":"===a||"space"===a||"comment"===a)break;i.prop+=e.shift()[1]}for(i.raws.between="";e.length;){if(":"===(r=e.shift())[0]){i.raws.between+=r[1];break}"word"===r[0]&&/\w/.test(r[1])&&this.unknownWord([r]),i.raws.between+=r[1]}("_"===i.prop[0]||"*"===i.prop[0])&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1));for(var s=[];e.length&&("space"===(n=e[0][0])||"comment"===n);)s.push(e.shift());this.precheckMissedSemicolon(e);for(var u=e.length-1;u>=0;u--){if("!important"===(r=e[u])[1].toLowerCase()){i.important=!0;var c=this.stringFrom(e,u);" !important"!==(c=this.spacesFromEnd(e)+c)&&(i.raws.important=c);break}if("important"===r[1].toLowerCase()){for(var l=e.slice(0),f="",d=u;d>0;d--){var h=l[d][0];if(f.trim().startsWith("!")&&"space"!==h)break;f=l.pop()[1]+f}f.trim().startsWith("!")&&(i.important=!0,i.raws.important=f,e=l)}if("space"!==r[0]&&"comment"!==r[0])break}e.some(function(e){return"space"!==e[0]&&"comment"!==e[0]})&&(i.raws.between+=s.map(function(e){return e[1]}).join(""),s=[]),this.raw(i,"value",s.concat(e),t),i.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}},{key:"doubleColon",value:function(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}},{key:"emptyRule",value:function(e){var t=new nJ;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}},{key:"end",value:function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}},{key:"endFile",value:function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}},{key:"freeSemicolon",value:function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}},{key:"getPosition",value:function(e){var t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}},{key:"init",value:function(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}},{key:"other",value:function(e){for(var t=!1,r=null,n=!1,i=null,o=[],a=e[1].startsWith("--"),s=[],u=e;u;){if(r=u[0],s.push(u),"("===r||"["===r)i||(i=u),o.push("("===r?")":"]");else if(a&&n&&"{"===r)i||(i=u),o.push("}");else if(0===o.length){if(";"===r){if(n){this.decl(s,a);return}break}if("{"===r){this.rule(s);return}if("}"===r){this.tokenizer.back(s.pop()),t=!0;break}":"===r&&(n=!0)}else r===o[o.length-1]&&(o.pop(),0===o.length&&(i=null));u=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),o.length>0&&this.unclosedBracket(i),t&&n){if(!a)for(;s.length&&("space"===(u=s[s.length-1][0])||"comment"===u);)this.tokenizer.back(s.pop());this.decl(s,a)}else this.unknownWord(s)}},{key:"parse",value:function(){for(var e;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}},{key:"precheckMissedSemicolon",value:function(){}},{key:"raw",value:function(e,t,r,n){for(var i,o,a,s,u=r.length,c="",l=!0,f=0;f1&&void 0!==arguments[1]?arguments[1]:{};if(tl(this,e),this.type="warning",this.text=t,r.node&&r.node.source){var n=r.node.rangeBy(r);this.line=n.start.line,this.column=n.start.column,this.endLine=n.end.line,this.endColumn=n.end.column}for(var i in r)this[i]=r[i]}return td(e,[{key:"toString",value:function(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}]),e}();ig=iy,iy.default=iy;var ib=/*#__PURE__*/function(){function e(t,r,n){tl(this,e),this.processor=t,this.messages=[],this.root=r,this.opts=n,this.css=void 0,this.map=void 0}return td(e,[{key:"toString",value:function(){return this.css}},{key:"warn",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!t.plugin&&this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var r=new ig(e,t);return this.messages.push(r),r}},{key:"warnings",value:function(){return this.messages.filter(function(e){return"warning"===e.type})}},{key:"content",get:function(){return this.css}}]),e}();iv=ib,ib.default=ib;var iw={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},ix={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},iE={Once:!0,postcssPlugin:!0,prepare:!0};function iS(e){return"object"==typeof e&&"function"==typeof e.then}function ik(e){var t=!1,r=iw[e.type];return("decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append)?[r,r+"-"+t,0,r+"Exit",r+"Exit-"+t]:t?[r,r+"-"+t,r+"Exit",r+"Exit-"+t]:e.append?[r,0,r+"Exit"]:[r,r+"Exit"]}function iA(e){return{eventIndex:0,events:"document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:ik(e),iterator:0,node:e,visitorIndex:0,visitors:[]}}function iI(e){return e[ex]=!1,e.nodes&&e.nodes.forEach(function(e){return iI(e)}),e}var iN={},iT=/*#__PURE__*/function(){function e(t,r,n){var i,o=this;if(tl(this,e),this.stringified=!1,this.processed=!1,"object"==typeof r&&null!==r&&("root"===r.type||"document"===r.type))i=iI(r);else if(r instanceof e||r instanceof iv)i=iI(r.root),r.map&&(void 0===n.map&&(n.map={}),n.map.inline||(n.map.inline=!1),n.map.prev=r.map);else{var a=ia;n.syntax&&(a=n.syntax.parse),n.parser&&(a=n.parser),a.parse&&(a=a.parse);try{i=a(r,n)}catch(e){this.processed=!0,this.error=e}i&&!i[eE]&&rT.rebuild(i)}this.result=new iv(t,i,n),this.helpers=re(tW({},iN),{postcss:iN,result:this.result}),this.plugins=this.processor.plugins.map(function(e){return"object"==typeof e&&e.prepare?tW({},e,e.prepare(o.result)):e})}return td(e,[{key:"async",value:function(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}},{key:"catch",value:function(e){return this.async().catch(e)}},{key:"finally",value:function(e){return this.async().then(e,e)}},{key:"getAsyncError",value:function(){throw Error("Use process(css).then(cb) to work with async plugins")}},{key:"handleError",value:function(e,t){var r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?r.postcssVersion:(e.plugin=r.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}},{key:"prepareVisitors",value:function(){var e=this;this.listeners={};var t=function(t,r,n){e.listeners[r]||(e.listeners[r]=[]),e.listeners[r].push([t,n])},r=!0,n=!1,i=void 0;try{for(var o,a=this.plugins[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("object"==typeof s)for(var u in s){if(!ix[u]&&/^[A-Z]/.test(u))throw Error("Unknown event ".concat(u," in ").concat(s.postcssPlugin,". ")+"Try to update PostCSS (".concat(this.processor.version," now)."));if(!iE[u]){if("object"==typeof s[u])for(var c in s[u])t(s,"*"===c?u:u+"-"+c.toLowerCase(),s[u][c]);else"function"==typeof s[u]&&t(s,u,s[u])}}}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}this.hasListener=Object.keys(this.listeners).length>0}},{key:"runAsync",value:function(){var e=this;return eG(function(){var t,r,n,i,o,a,s,u,c,l,f,d,h,p,m,v;return(0,eK.__generator)(this,function(g){switch(g.label){case 0:e.plugin=0,t=0,g.label=1;case 1:if(!(t0))return[3,13];if(!iS(s=e.visitTick(a)))return[3,12];g.label=9;case 9:return g.trys.push([9,11,,12]),[4,s];case 10:return g.sent(),[3,12];case 11:throw u=g.sent(),c=a[a.length-1].node,e.handleError(u,c);case 12:return[3,8];case 13:return[3,7];case 14:if(l=!0,f=!1,d=void 0,!e.listeners.OnceExit)return[3,22];g.label=15;case 15:g.trys.push([15,20,21,22]),h=function(){var t,r,n,i;return(0,eK.__generator)(this,function(a){switch(a.label){case 0:r=(t=n5(m.value,2))[0],n=t[1],e.result.lastPlugin=r,a.label=1;case 1:if(a.trys.push([1,6,,7]),"document"!==o.type)return[3,3];return[4,Promise.all(o.nodes.map(function(t){return n(t,e.helpers)}))];case 2:return a.sent(),[3,5];case 3:return[4,n(o,e.helpers)];case 4:a.sent(),a.label=5;case 5:return[3,7];case 6:throw i=a.sent(),e.handleError(i);case 7:return[2]}})},p=e.listeners.OnceExit[Symbol.iterator](),g.label=16;case 16:if(l=(m=p.next()).done)return[3,19];return[5,(0,eK.__values)(h())];case 17:g.sent(),g.label=18;case 18:return l=!0,[3,16];case 19:return[3,22];case 20:return v=g.sent(),f=!0,d=v,[3,22];case 21:try{l||null==p.return||p.return()}finally{if(f)throw d}return[7];case 22:return e.processed=!0,[2,e.stringify()]}})})()}},{key:"runOnRoot",value:function(e){var t=this;this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){var r=this.result.root.nodes.map(function(r){return e.Once(r,t.helpers)});if(iS(r[0]))return Promise.all(r);return r}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}},{key:"stringify",value:function(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=rj;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var r=new n8(t,this.result.root,this.result.opts).generate();return this.result.css=r[0],this.result.map=r[1],this.result}},{key:"sync",value:function(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();var e=!0,t=!1,r=void 0;try{for(var n,i=this.plugins[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.runOnRoot(o);if(iS(a))throw this.getAsyncError()}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}if(this.prepareVisitors(),this.hasListener){for(var s=this.result.root;!s[ex];)s[ex]=!0,this.walkSync(s);if(this.listeners.OnceExit){var u=!0,c=!1,l=void 0;if("document"===s.type)try{for(var f,d=s.nodes[Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var h=f.value;this.visitSync(this.listeners.OnceExit,h)}}catch(e){c=!0,l=e}finally{try{u||null==d.return||d.return()}finally{if(c)throw l}}else this.visitSync(this.listeners.OnceExit,s)}}return this.result}},{key:"then",value:function(e,t){return this.async().then(e,t)}},{key:"toString",value:function(){return this.css}},{key:"visitSync",value:function(e,t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=n5(o.value,2),u=s[0],c=s[1];this.result.lastPlugin=u;var l=void 0;try{l=c(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(iS(l))throw this.getAsyncError()}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}},{key:"visitTick",value:function(e){var t=e[e.length-1],r=t.node,n=t.visitors;if("root"!==r.type&&"document"!==r.type&&!r.parent){e.pop();return}if(n.length>0&&t.visitorIndex0&&void 0!==arguments[0]?arguments[0]:[];tl(this,e),this.version="8.4.47",this.plugins=this.normalize(t)}return td(e,[{key:"normalize",value:function(e){var t=[],r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if(!0===s.postcss?s=s():s.postcss&&(s=s.postcss),"object"==typeof s&&Array.isArray(s.plugins))t=t.concat(s.plugins);else if("object"==typeof s&&s.postcssPlugin)t.push(s);else if("function"==typeof s)t.push(s);else if("object"==typeof s&&(s.parse||s.stringify));else throw Error(s+" is not a PostCSS plugin")}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}return t}},{key:"process",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.plugins.length||t.parser||t.stringifier||t.syntax?new n2(this,e,t):new i_(this,e,t)}},{key:"use",value:function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}]),e}();function iL(){for(var e=arguments.length,t=Array(e),r=0;r]+$/;function iF(e,t,r){if(null==e)return"";"number"==typeof e&&(e=e.toString());var n,i,o,a,s,u,c,l,f,d="",h="";function p(e,t){var r=this;this.tag=e,this.attribs=t||{},this.tagPosition=d.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(s.length){var e=s[s.length-1];e.text+=r.text}},this.updateParentNodeMediaChildren=function(){s.length&&iM.includes(this.tag)&&s[s.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},iF.defaults,t)).parser=Object.assign({},iV,t.parser);var m=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};iR.forEach(function(e){m(e)&&!t.allowVulnerableTags&&console.warn("\n\n⚠️ Your `allowedTags` option includes, `".concat(e,"`, which is inherently\nvulnerable to XSS attacks. Please remove it from `allowedTags`.\nOr, to disable this warning, add the `allowVulnerableTags` option\nand ensure you are accounting for this risk.\n\n"))});var v=t.nonTextTags||["script","style","textarea","option"];t.allowedAttributes&&(n={},i={},iB(t.allowedAttributes,function(e,t){n[t]=[];var r=[];e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rl(e).replace(/\\\*/g,".*")):n[t].push(e)}),r.length&&(i[t]=RegExp("^("+r.join("|")+")$"))}));var g={},y={},b={};iB(t.allowedClasses,function(e,t){if(n&&(iq(n,t)||(n[t]=[]),n[t].push("class")),g[t]=e,Array.isArray(e)){var r=[];g[t]=[],b[t]=[],e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rl(e).replace(/\\\*/g,".*")):e instanceof RegExp?b[t].push(e):g[t].push(e)}),r.length&&(y[t]=RegExp("^("+r.join("|")+")$"))}});var w={};iB(t.transformTags,function(e,t){var r;"function"==typeof e?r=e:"string"==typeof e&&(r=iF.simpleTransform(e)),"*"===t?o=r:w[t]=r});var x=!1;S();var E=new tV({onopentag:function(e,r){if(t.enforceHtmlBoundary&&"html"===e&&S(),l){f++;return}var E,T=new p(e,r);s.push(T);var O=!1,_=!!T.text;if(iq(w,e)&&(E=w[e](e,r),T.attribs=r=E.attribs,void 0!==E.text&&(T.innerText=E.text),e!==E.tagName&&(T.name=e=E.tagName,c[a]=E.tagName)),o&&(E=o(e,r),T.attribs=r=E.attribs,e!==E.tagName&&(T.name=e=E.tagName,c[a]=E.tagName)),(!m(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(var t in e)if(iq(e,t))return!1;return!0}(u)||null!=t.nestingLimit&&a>=t.nestingLimit)&&(O=!0,u[a]=!0,("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&-1!==v.indexOf(e)&&(l=!0,f=1),u[a]=!0),a++,O){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return;h=d,d=""}d+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(T.innerText=""),(!n||iq(n,e)||n["*"])&&iB(r,function(r,o){if(!ij.test(o)||""===r&&!t.allowedEmptyAttributes.includes(o)&&(t.nonBooleanAttributes.includes(o)||t.nonBooleanAttributes.includes("*"))){delete T.attribs[o];return}var a=!1;if(!n||iq(n,e)&&-1!==n[e].indexOf(o)||n["*"]&&-1!==n["*"].indexOf(o)||iq(i,e)&&i[e].test(o)||i["*"]&&i["*"].test(o))a=!0;else if(n&&n[e]){var s=!0,u=!1,c=void 0;try{for(var l,f=n[e][Symbol.iterator]();!(s=(l=f.next()).done);s=!0){var h=l.value;if(rd(h)&&h.name&&h.name===o){a=!0;var p="";if(!0===h.multiple){var m=r.split(" "),v=!0,w=!1,x=void 0;try{for(var E,S=m[Symbol.iterator]();!(v=(E=S.next()).done);v=!0){var O=E.value;-1!==h.values.indexOf(O)&&(""===p?p=O:p+=" "+O)}}catch(e){w=!0,x=e}finally{try{v||null==S.return||S.return()}finally{if(w)throw x}}}else h.values.indexOf(r)>=0&&(p=r);r=p}}}catch(e){u=!0,c=e}finally{try{s||null==f.return||f.return()}finally{if(u)throw c}}}if(a){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(o)&&A(e,r)){delete T.attribs[o];return}if("script"===e&&"src"===o){var _=!0;try{var C=I(r);if(t.allowedScriptHostnames||t.allowedScriptDomains){var P=(t.allowedScriptHostnames||[]).find(function(e){return e===C.url.hostname}),L=(t.allowedScriptDomains||[]).find(function(e){return C.url.hostname===e||C.url.hostname.endsWith(".".concat(e))});_=P||L}}catch(e){_=!1}if(!_){delete T.attribs[o];return}}if("iframe"===e&&"src"===o){var D=!0;try{var M=I(r);if(M.isRelativeUrl)D=iq(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){var R=(t.allowedIframeHostnames||[]).find(function(e){return e===M.url.hostname}),B=(t.allowedIframeDomains||[]).find(function(e){return M.url.hostname===e||M.url.hostname.endsWith(".".concat(e))});D=R||B}}catch(e){D=!1}if(!D){delete T.attribs[o];return}}if("srcset"===o)try{var q=rx(r);if(q.forEach(function(e){A("srcset",e.url)&&(e.evil=!0)}),(q=iU(q,function(e){return!e.evil})).length)r=iU(q,function(e){return!e.evil}).map(function(e){if(!e.url)throw Error("URL missing");return e.url+(e.w?" ".concat(e.w,"w"):"")+(e.h?" ".concat(e.h,"h"):"")+(e.d?" ".concat(e.d,"x"):"")}).join(", "),T.attribs[o]=r;else{delete T.attribs[o];return}}catch(e){delete T.attribs[o];return}if("class"===o){var U=g[e],j=g["*"],F=y[e],V=b[e],$=b["*"],z=[F,y["*"]].concat(V,$).filter(function(e){return e});if(!(r=U&&j?N(r,rh(U,j),z):N(r,U||j,z)).length){delete T.attribs[o];return}}if("style"===o){if(t.parseStyleAttributes)try{var H=iD(e+" {"+r+"}",{map:!1});if(r=(function(e,t){if(!t)return e;var r,n=e.nodes[0];return(r=t[n.selector]&&t["*"]?rh(t[n.selector],t["*"]):t[n.selector]||t["*"])&&(e.nodes[0].nodes=n.nodes.reduce(function(e,t){return iq(r,t.prop)&&r[t.prop].some(function(e){return e.test(t.value)})&&e.push(t),e},[])),e})(H,t.allowedStyles).nodes[0].nodes.reduce(function(e,t){return e.push("".concat(t.prop,":").concat(t.value).concat(t.important?" !important":"")),e},[]).join(";"),0===r.length){delete T.attribs[o];return}}catch(t){"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+r+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),delete T.attribs[o];return}else if(t.allowedStyles)throw Error("allowedStyles option cannot be used together with parseStyleAttributes: false.")}d+=" "+o,r&&r.length?d+='="'+k(r,!0)+'"':t.allowedEmptyAttributes.includes(o)&&(d+='=""')}else delete T.attribs[o]}),-1!==t.selfClosing.indexOf(e)?d+=" />":(d+=">",!T.innerText||_||t.textFilter||(d+=k(T.innerText),x=!0)),O&&(d=h+k(d),h="")},ontext:function(e){if(!l){var r,n=s[s.length-1];if(n&&(r=n.tag,e=void 0!==n.innerText?n.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||m(r)){if(("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&("script"===r||"style"===r))d+=e;else{var i=k(e,!1);t.textFilter&&!x?d+=t.textFilter(i,r):x||(d+=i)}}else e="";if(s.length){var o=s[s.length-1];o.text+=e}}},onclosetag:function(e,r){if(l){if(--f)return;l=!1}var n=s.pop();if(n){if(n.tag!==e){s.push(n);return}l=!!t.enforceHtmlBoundary&&"html"===e;var i=u[--a];if(i){if(delete u[a],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){n.updateParentNodeText();return}h=d,d=""}if(c[a]&&(e=c[a],delete c[a]),t.exclusiveFilter&&t.exclusiveFilter(n)){d=d.substr(0,n.tagPosition);return}if(n.updateParentNodeMediaChildren(),n.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||r&&!m(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0){i&&(d=h,h="");return}d+="",i&&(d=h+k(d),h=""),x=!1}}},t.parser);return E.write(e),E.end(),d;function S(){d="",a=0,s=[],u={},c={},l=!1,f=0}function k(e,r){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,""")),e}function A(e,r){for(r=r.replace(/[\x00-\x20]+/g,"");;){var n=r.indexOf("",n+4);if(-1===i)break;r=r.substring(0,n)+r.substring(i+3)}var o=r.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!o)return!!r.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;var a=o[1].toLowerCase();return iq(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(a):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(a)}function I(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw Error("relative: exploit attempt");for(var t="relative://relative-site",r=0;r<100;r++)t+="/".concat(r);var n=new URL(e,t);return{isRelativeUrl:n&&"relative-site"===n.hostname&&"relative:"===n.protocol,url:n}}function N(e,t,r){return t?(e=e.split(/\s+/)).filter(function(e){return -1!==t.indexOf(e)||r.some(function(t){return t.test(e)})}).join(" "):e}}var iV={decodeEntities:!0};iF.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},iF.simpleTransform=function(e,t,r){return r=void 0===r||r,t=t||{},function(n,i){var o;if(r)for(o in t)i[o]=t[o];else i=t;return{tagName:e,attribs:i}}};var i$={};r="millisecond",n="second",i="minute",o="hour",a="week",s="month",u="quarter",c="year",l="date",f="Invalid Date",d=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,p=function(e,t,r){var n=String(e);return!n||n.length>=t?e:""+Array(t+1-n.length).join(r)+e},(v={})[m="en"]={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],r=e%100;return"["+e+(t[(r-20)%10]||t[r]||"th")+"]"}},g="$isDayjsObject",y=function(e){return e instanceof E||!(!e||!e[g])},b=function e(t,r,n){var i;if(!t)return m;if("string"==typeof t){var o=t.toLowerCase();v[o]&&(i=o),r&&(v[o]=r,i=o);var a=t.split("-");if(!i&&a.length>1)return e(a[0])}else{var s=t.name;v[s]=t,i=s}return!n&&i&&(m=i),i||!n&&m},w=function(e,t){if(y(e))return e.clone();var r="object"==typeof t?t:{};return r.date=e,r.args=arguments,new E(r)},(x={s:p,z:function(e){var t=-e.utcOffset(),r=Math.abs(t);return(t<=0?"+":"-")+p(Math.floor(r/60),2,"0")+":"+p(r%60,2,"0")},m:function e(t,r){if(t.date() * @license MIT - */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iH={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iW=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iY=RegExp("^"+("["+iW+"][")+iW+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eB=function(e){return void 0!==e},eM=function(e){return null!=iY.exec(e)},eq=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i1("InvalidXml","XML declaration allowed only at the start of the document.",i3(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iJ(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iK,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eM(u))return i1("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i3(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i1("InvalidAttr","Attributes for '"+u+"' have open quote.",i3(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i0(l=l.substring(0,l.length-1),t);if(!0!==d)return i1(d.err.code,d.err.msg,i3(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i1("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i3(e,o));if(l.trim().length>0)return i1("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i3(e,a));if(0===r.length)return i1("InvalidTag","Closing tag '"+u+"' has not been opened.",i3(e,a));var h=r.pop();if(u!==h.tagName){var p=i3(e,h.tagStartPos);return i1("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i3(e,a))}0==r.length&&(i=!0)}else{var m=i0(l,t);if(!0!==m)return i1(m.err.code,m.err.msg,i3(e,o-l.length+m.err.line));if(!0===i)return i1("InvalidXml","Multiple possible root nodes found.",i3(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i1("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i1("InvalidXml","Start tag expected.",1)};var iX=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i0(e,t){for(var r=eq(e,iX),n={},i=0;i0?this.child.push((tH(t={},e.tagname,e.child),tH(t,":@",e[":@"]),t)):this.child.push(tH({},e.tagname,e.child))}}]),e}();var i9={};function i7(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i9=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n5(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},on,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&ot.test(n))return Number.parseInt(n,16);var i=or.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oi={};function oo(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tt._)(s))!==(void 0===e?"undefined":(0,tt._)(e))||s!==e?s:this.options.trimValues?oy(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?oy(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function os(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oi=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var ou=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function oc(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eq(e,ou),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=ov(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i4(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=om(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tH({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i9(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=om(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tH({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=ov(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var N=this.readStopNodeData(e,x,k+1);if(!N)throw Error("Unexpected end of ".concat(x));o=N.i,I=N.tagContent}var T=new i4(w);w!==E&&S&&(T[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),T.add(this.options.textNodeName,I),this.addChild(r,T,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i4(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i4(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function of(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var od=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function oh(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function op(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function om(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function ov(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=om(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=om(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=om(e,"]]>",r,"StopNode is not closed.")-2;else{var a=ov(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function oy(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&oe(e,r)}return eB(e)?e:""}i6=function e(t){tl(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oo,this.parseXml=ol,this.parseTextData=oa,this.resolveNameSpace=os,this.buildAttributesMap=oc,this.isItStopNode=op,this.replaceEntitiesValue=od,this.readStopNodeData=og,this.saveTextToParentTag=oh,this.addChild=of,this.ignoreAttributesFn=oi(this.options.ignoreAttributes)},ej=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i5=/*#__PURE__*/function(){function e(t){tl(this,e),this.externalEntities={},this.options=eU(t)}return td(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eR(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i6(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:ej(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ob={};function ow(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=ox(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function ox(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ow(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ow(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oE={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function oS(e){this.options=Object.assign({},oE,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oi(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oI),this.processTextOrObjNode=ok,this.options.format?(this.indentate=oA,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function ok(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oA(e){return this.options.indentBy.repeat(e)}function oI(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}oS.prototype.build=function(e){return this.options.preserveOrder?ob(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tH({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},oS.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},oS.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t300;else{var oO=navigator.userAgent||"";oT.notKaiOS=!oO.includes("KaiOS")}var o_="",oC="https://corsproxy.io/?",oP={opml_url:"https://raw.githubusercontent.com/strukturart/feedolin/master/example.opml",opml_local:"",proxy_url:"https://corsproxy.io/?",cache_time:1e3},oL={},oD=[],oR=[];/*@__PURE__*/t(te).getItem("read_articles").then(function(e){if(null===e)return oR=[],/*@__PURE__*/t(te).setItem("read_articles",oR).then(function(){});oR=e}).catch(function(e){console.error("Error accessing localForage:",e)});var oB=function(){oU=[],e5("reload data",3e3),localStorage.setItem("last_channel_filter",oJ),setTimeout(function(){oK()},3e3)};function oM(e){var r=[];oU.map(function(e,t){r.push(e.id)}),(oR=oR.filter(function(t){return r.includes(e)})).push(e),/*@__PURE__*/t(te).setItem("read_articles",oR).then(function(){}).catch(function(e){console.error("Error updating localForage:",e)})}var oq=new DOMParser;("b2g"in navigator||"navigator.mozApps"in navigator)&&(oT.notKaiOS=!1),oT.notKaiOS||["http://127.0.0.1/api/v1/shared/core.js","http://127.0.0.1/api/v1/shared/session.js","http://127.0.0.1/api/v1/apps/service.js","http://127.0.0.1/api/v1/audiovolumemanager/service.js","./assets/js/kaiads.v5.min.js"].forEach(function(e){var t=document.createElement("script");t.type="text/javascript",t.src=e,document.head.appendChild(t)});var oU=[];new BroadcastChannel("sw-messages"),oT.debug&&(window.onerror=function(e,t,r){return alert("Error message: "+e+"\nURL: "+t+"\nLine Number: "+r),!0});var oj=function(){/*@__PURE__*/t(te).getItem("settings").then(function(e){oL=e;var r=new URLSearchParams(window.location.href.split("?")[1]).get("code");if(r){var n=r.split("#")[0];if(r){/*@__PURE__*/t(te).setItem("mastodon_code",n);var i=new Headers;i.append("Content-Type","application/x-www-form-urlencoded");var o=new URLSearchParams;o.append("code",n),o.append("scope","read"),o.append("grant_type","authorization_code"),o.append("redirect_uri","https://feedolin.strukturart.com"),o.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),o.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oL.mastodon_server_url+"/oauth/token",{method:"POST",headers:i,body:o,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oL.mastodon_token=e.access_token,/*@__PURE__*/t(te).setItem("settings",oL),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e5("Connection failed")})}}})};function oF(e){for(var t=0,r=0;r0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,oW(r)];case 2:return i.sent(),oL.last_update=new Date,/*@__PURE__*/t(te).setItem("settings",oL),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),oG=function(e){var t=oq.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},oW=(ei=eW(function(e){var r,n,i,o,a;return(0,eK.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){oJ=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(te).setItem("articles",oU).then(function(){console.log("feeds cached"),oU.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oU.forEach(function(e){-1===oD.indexOf(e.channel)&&e.channel&&oD.push(e.channel)}),oD.length>0&&!i&&(oJ=localStorage.getItem("last_channel_filter")||oD[0],i=!0),/*@__PURE__*/t(tr).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oU.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oC+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oN.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){alert(e)}oU.push(r)}}),oD.push("Mastodon")})},oK=function(){oz(oC+oL.opml_url+"?time="+new Date),oL.opml_local&&oH(oL.opml_local),oL.mastodon_token&&e7(oL.mastodon_server_url,oL.mastodon_token).then(function(e){oT.mastodon_logged=e.display_name,oY()}),oJ=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(te).getItem("settings").then(function(e){null==e&&(oL=oP,/*@__PURE__*/t(te).setItem("settings",oL).then(function(e){}).catch(function(e){console.log(e)})),(oL=e).cache_time=oL.cache_time||1e3,oL.last_update?oT.last_update_duration=new Date/1e3-oL.last_update/1e3:oT.last_update_duration=3600,oL.opml_url||oL.opml_local_filename||e5("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oT.last_update_duration>oL.cache_time?(oK(),e5("Load feeds",4e3)):/*@__PURE__*/t(te).getItem("articles").then(function(e){(oU=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oU.forEach(function(e){-1===oD.indexOf(e.channel)&&e.channel&&oD.push(e.channel)}),oD.length&&(oJ=localStorage.getItem("last_channel_filter")||oD[0]),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Cached feeds loaded",4e3)}).catch(function(e){})})}).catch(function(e){e5("The default settings was loaded",3e3),oz(oC+(oL=oP).opml_url),/*@__PURE__*/t(te).setItem("settings",oL).then(function(e){}).catch(function(e){console.log(e)})});var oZ=document.getElementById("app"),oQ=-1,oJ=localStorage.getItem("last_channel_filter")||"",oX=0,o0=function(e){return /*@__PURE__*/t(i$).duration(e,"seconds").format("mm:ss")},o1={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oT.notKaiOS&&e4("","",""),o1.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(o1.videoElement);var n=r.url;n&&(o1.videoElement.src=n,o1.videoElement.play(),o1.isPlaying=!0),o1.videoElement.onloadedmetadata=function(){o1.videoDuration=o1.videoElement.duration,/*@__PURE__*/t(tr).redraw()},o1.videoElement.ontimeupdate=function(){o1.currentTime=o1.videoElement.currentTime,/*@__PURE__*/t(tr).redraw()},document.addEventListener("keydown",o1.handleKeydown)},onremove:function(){document.removeEventListener("keydown",o1.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?o1.togglePlayPause():"ArrowLeft"===e.key?o1.seek("left"):"ArrowRight"===e.key&&o1.seek("right")},togglePlayPause:function(){o1.isPlaying?o1.videoElement.pause():o1.videoElement.play(),o1.isPlaying=!o1.isPlaying},seek:function(e){var t=o1.videoElement.currentTime;"left"===e?o1.videoElement.currentTime=Math.max(0,t-o1.seekAmount):"right"===e&&(o1.videoElement.currentTime=Math.min(o1.videoDuration,t+o1.seekAmount))},view:function(e){e.attrs;var r=o1.videoDuration>0?o1.currentTime/o1.videoDuration*100:0;return /*@__PURE__*/t(tr)("div",{class:"video-player"},[/*@__PURE__*/t(tr)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tr)("div",{class:"video-info"},[" ".concat(o0(o1.currentTime)," / ").concat(o0(o1.videoDuration))]),/*@__PURE__*/t(tr)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tr)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},o3={player:null,oncreate:function(e){var t=e.attrs;oT.notKaiOS&&e4("","",""),e6("","",""),YT?o3.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:o3.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",o3.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?o3.togglePlayPause():"ArrowLeft"===e.key?o3.seek("left"):"ArrowRight"===e.key&&o3.seek("right")},togglePlayPause:function(){1===o3.player.getPlayerState()?o3.player.pauseVideo():o3.player.playVideo()},seek:function(e){var t=o3.player.getCurrentTime();"left"===e?o3.player.seekTo(Math.max(0,t-5),!0):"right"===e&&o3.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tr)("div",{class:"youtube-player"},[/*@__PURE__*/t(tr)("div",{id:"video-container",class:"video-container"})])}},o2=document.createElement("audio");if(o2.preload="auto","b2g"in navigator)try{o2.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var o5={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&o2.src!==r.url&&(o2.src=r.url,o2.play().catch(function(){}),o5.isPlaying=!0),o2.onloadedmetadata=function(){o5.audioDuration=o2.duration,/*@__PURE__*/t(tr).redraw()},o2.ontimeupdate=function(){o5.currentTime=o2.currentTime,/*@__PURE__*/t(tr).redraw()},o5.isPlaying=!o2.paused,document.addEventListener("keydown",o5.handleKeydown)},oncreate:function(){oT.player=!0,e4("","",""),e6("","",""),oT.notKaiOS&&e4("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){o5.togglePlayPause()}),document.addEventListener("swiped-left",function(){o5.seek("left")}),document.addEventListener("swiped-right",function(){o5.seek("right")})},onremove:function(){document.removeEventListener("keydown",o5.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?o5.togglePlayPause():"ArrowLeft"===e.key?o5.seek("left"):"ArrowRight"===e.key&&o5.seek("right")},togglePlayPause:function(){o5.isPlaying?o2.pause():o2.play().catch(function(){}),o5.isPlaying=!o5.isPlaying},seek:function(e){var t=o2.currentTime;"left"===e?o2.currentTime=Math.max(0,t-o5.seekAmount):"right"===e&&(o2.currentTime=Math.min(o5.audioDuration,t+o5.seekAmount))},view:function(e){e.attrs;var r=o5.audioDuration>0?o5.currentTime/o5.audioDuration*100:0;return /*@__PURE__*/t(tr)("div",{class:"audio-player"},[/*@__PURE__*/t(tr)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tr)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(o_.cover,")")}}),/*@__PURE__*/t(tr)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(o0(o5.currentTime)," / ").concat(o0(o5.audioDuration))]),/*@__PURE__*/t(tr)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tr)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function o8(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tr).route(oZ,"/intro",{"/article":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"article",oncreate:function(){oT.notKaiOS&&e4("","",""),e6("","","")}},oU.map(function(e,r){if(/*@__PURE__*/t(tr).route.param("index")==e.id)return o_=e,console.log(e),/*@__PURE__*/t(tr)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),"audio"==e.type&&(e.type="audio",e6("","","")),"video"==e.type&&(e.type="video",e6("","","")),"youtube"==e.type&&(e.type="youtube",e6("","",""))}},[/*@__PURE__*/t(tr)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(i$)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tr)("h2",{oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tr)("div",{class:"text"},[/*@__PURE__*/t(tr).trust(o$(e.content))]),e.reblog?/*@__PURE__*/t(tr)("div",{class:"text"},"reblogged from:"+e.reblogUser):""])}))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oT.notKaiOS||(oT.local_opml=[],eJ("opml",function(e){oT.local_opml.push(e)})),e6("","",""),oT.notKaiOS&&e6("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oT.notKaiOS&&e4("","",""),oT.notKaiOS&&e6("","","")}},[/*@__PURE__*/t(tr)("div",{class:"item input-parent flex"},[/*@__PURE__*/t(tr)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tr)("input",{id:"url-opml",placeholder:"",value:oL.opml_url||"",type:"url"})]),/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){oL.opml_local_filename?(oL.opml_local="",oL.opml_local_filename="",/*@__PURE__*/t(te).setItem("settings",oL).then(function(){e5("OPML file removed",4e3),/*@__PURE__*/t(tr).redraw()})):oT.notKaiOS?e9(function(e){var r=new FileReader;r.onload=function(){oG(r.result).error?e5("OPML file not valid",4e3):(oL.opml_local=r.result,oL.opml_local_filename=e.filename,/*@__PURE__*/t(te).setItem("settings",oL).then(function(){e5("OPML file added",4e3)}))},r.onerror=function(){e5("OPML file not valid",4e3)},r.readAsText(e.blob)}):oT.local_opml.length>0?/*@__PURE__*/t(tr).route.set("/localOPML"):e5("not enough",3e3)}},oL.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tr)("div",oL.opml_local_filename),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("div",{tabindex:1,class:"item input-parent flex "},[/*@__PURE__*/t(tr)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tr)("input",{id:"url-proxy",placeholder:"",value:oL.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oT.mastodon_logged?/*@__PURE__*/t(tr)("div",{id:"account_info"},"You have successfully logged in as ".concat(oT.mastodon_logged," and the data is being loaded from server ").concat(oL.mastodon_server_url,".")):null,oT.mastodon_logged?/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){oL.mastodon_server_url="",oL.mastodon_token="",/*@__PURE__*/t(te).setItem("settings",oL),oT.mastodon_logged="",/*@__PURE__*/t(tr).route.set("/settingsView")}},"Disconnect"):null,oT.mastodon_logged?null:/*@__PURE__*/t(tr)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tr)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tr)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:oL.mastodon_server_url})]),oT.mastodon_logged?null:/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){/*@__PURE__*/t(te).setItem("settings",oL),oL.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=oL.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tr)("button",{class:"item",id:"button-save-settings",onclick:function(){var e;e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e5("URL not valid"),oL.opml_url=document.getElementById("url-opml").value,oL.proxy_url=document.getElementById("url-proxy").value,oT.mastodon_logged||(oL.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(te).setItem("settings",oL).then(function(e){e5("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oj()},onremove:function(){localStorage.setItem("version",oT.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tr)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e1(function(e){try{oT.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oT.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oT.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tr)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tr)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oU.filter(function(e){return""===oJ||oJ===e.channel});return /*@__PURE__*/t(tr)("div",{id:"start",oncreate:function(){oX=/*@__PURE__*/t(tr).route.param("index")||0,e6("","",""),oT.notKaiOS&&e6("","",""),oT.notKaiOS&&e4("","",""),oT.notKaiOS&&oT.player&&e4("","","")}},/*@__PURE__*/t(tr)("span",{class:"channel",oncreate:function(){}},oJ),e.map(function(r,n){var i=oR.includes(r.id)?"read":"";return /*@__PURE__*/t(tr)("article",{class:"item ".concat(i),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==oX&&0==n?setTimeout(function(){t.dom.focus()},2e3):r.id==oX&&setTimeout(function(){t.dom.focus(),o8()},1100),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tr).route.set("/article?index="+r.id),oM(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tr).route.set("/article?index="+r.id),oM(r.id))}},[/*@__PURE__*/t(tr)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tr)("time",/*@__PURE__*/t(i$)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tr)("h2",{oncreate:function(e){var t=e.dom;r.reblog&&t.classList.add("reblog")}},o$(r.feed_title)),/*@__PURE__*/t(tr)("h3",o$(r.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"optionsView",class:"flex",oncreate:function(){e4("","",""),oT.notKaiOS&&e4("","",""),e6("","",""),oT.notKaiOS&&e6("","","")}},[/*@__PURE__*/t(tr)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus()},onclick:function(){/*@__PURE__*/t(tr).route.set("/about")}},"About"),/*@__PURE__*/t(tr)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tr).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tr)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tr).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tr)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oT.notKaiOS&&eQ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"page"},/*@__PURE__*/t(tr)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tr)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tr)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tr)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tr)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tr)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tr)("ul",[/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oT.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use Alt to access various options.")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oT.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use # Volume")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oT.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use * Audioplayer

")),/*@__PURE__*/t(tr)("li","Version: "+oT.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tr)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tr)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tr)("h2","Data Storage and Collection"),/*@__PURE__*/t(tr)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tr)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tr)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tr)("ul",[/*@__PURE__*/t(tr)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tr)("li","OPML files you upload or manage."),/*@__PURE__*/t(tr)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tr)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tr)("h2","KaiOS Users"),/*@__PURE__*/t(tr)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tr)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tr)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tr)("p",["For users on all other platforms, ",/*@__PURE__*/t(tr)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tr)("h2","External Sources Responsibility"),/*@__PURE__*/t(tr)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tr)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tr)("h2","Third-Party Services"),/*@__PURE__*/t(tr)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tr)("h2","Policy Updates"),/*@__PURE__*/t(tr)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tr)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"flex",id:"index",oncreate:function(){oT.notKaiOS&&e4("","",""),e6("","","")}},oT.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tr)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){oG(e.result).error?e5("OPML file not valid",4e3):(oL.opml_local=e.result,oL.opml_local_filename=n,/*@__PURE__*/t(te).setItem("settings",oL).then(function(){e5("OPML file added",4e3),/*@__PURE__*/t(tr).route.set("/settingsView")}))},e.onerror=function(){e5("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":o5,"/VideoPlayerView":o1,"/YouTubePlayerView":o3}),document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oT.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),o8()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var t=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);document.querySelector("body").style.opacity=t},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oU=[],oB()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oT.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tr).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--oQ<1&&(oQ=oD.length-1),oJ=oD[oQ],/*@__PURE__*/t(tr).redraw();var i=/*@__PURE__*/t(tr).route.param();i.index=0,/*@__PURE__*/t(tr).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++oQ>oD.length-1&&(oQ=0),oJ=oD[oQ],/*@__PURE__*/t(tr).redraw();var o=/*@__PURE__*/t(tr).route.param();o.index=0,/*@__PURE__*/t(tr).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tr).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++oQ>oD.length-1&&(oQ=0),oJ=oD[oQ],/*@__PURE__*/t(tr).redraw();var n=/*@__PURE__*/t(tr).route.param();n.index=0,/*@__PURE__*/t(tr).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),o8()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--oQ<0&&(oQ=oD.length-1),oJ=oD[oQ],/*@__PURE__*/t(tr).redraw();var o=/*@__PURE__*/t(tr).route.param();o.index=0,/*@__PURE__*/t(tr).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),o8()},500)}break;case"ArrowUp":i(-1),"volume"==oT.window_status&&(navigator.volumeManager.requestVolumeUp(),oT.window_status="volume",setTimeout(function(){oT.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oT.window_status&&(navigator.volumeManager.requestVolumeDown(),oT.window_status="volume",setTimeout(function(){oT.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/article")&&("audio"==o_.type&&/*@__PURE__*/t(tr).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(o_.enclosure["@_url"]))),"video"==o_.type&&/*@__PURE__*/t(tr).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(o_.enclosure["@_url"]))),"youtube"==o_.type&&/*@__PURE__*/t(tr).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(o_.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oB(),r.startsWith("/article")&&window.open(o_.url);break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tr).route.set("/AudioPlayerView");break;case"#":eX();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tr).route.param("index");/*@__PURE__*/t(tr).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tr).route.param("index");/*@__PURE__*/t(tr).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tr).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tr).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tr).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&oL.last_update?(oT.visibility=!0,new Date/1e3-oL.last_update/1e3>oL.cache_time&&(oU=[],e5("load new content",4e3),oK())):oT.visibility=!1})}),window.addEventListener("online",function(){oT.deviceOnline=!0}),window.addEventListener("offline",function(){oT.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oU=[],e5("load new content",4e3),oK(),/*@__PURE__*/t(tr).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var o6={};o6=ez("MMwCY").getBundleURL("5Waqz")+"sw.js","serviceWorker"in navigator&&navigator.serviceWorker.getRegistration().then(function(e){if(!e)try{navigator.serviceWorker.register(o6).then(function(e){e.waiting,e.systemMessageManager.subscribe("activity").then(function(e){console.log(e)},function(e){console.log(e)})})}catch(e){console.log(e)}}),new BroadcastChannel("sw-messages").addEventListener("message",function(e){var r=e.data.oauth_success.data;if(r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oL.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){console.log(e),oL.mastodon_token=e.access_token,/*@__PURE__*/t(te).setItem("settings",oL),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e5("Connection failed")})}})}(); \ No newline at end of file + */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iH={},iW={};e(iW,"validate",function(){return eM},function(e){return eM=e});var iG=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iY=RegExp("^"+("["+iG+"][")+iG+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eR=function(e){return void 0!==e},eB=function(e){return null!=iY.exec(e)},eq=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i1("InvalidXml","XML declaration allowed only at the start of the document.",i3(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iJ(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eM=function(e,t){t=Object.assign({},iK,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eB(u))return i1("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i3(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i1("InvalidAttr","Attributes for '"+u+"' have open quote.",i3(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i0(l=l.substring(0,l.length-1),t);if(!0!==d)return i1(d.err.code,d.err.msg,i3(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i1("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i3(e,o));if(l.trim().length>0)return i1("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i3(e,a));if(0===r.length)return i1("InvalidTag","Closing tag '"+u+"' has not been opened.",i3(e,a));var h=r.pop();if(u!==h.tagName){var p=i3(e,h.tagStartPos);return i1("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i3(e,a))}0==r.length&&(i=!0)}else{var m=i0(l,t);if(!0!==m)return i1(m.err.code,m.err.msg,i3(e,o-l.length+m.err.line));if(!0===i)return i1("InvalidXml","Multiple possible root nodes found.",i3(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i1("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i1("InvalidXml","Start tag expected.",1)};var iX=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i0(e,t){for(var r=eq(e,iX),n={},i=0;i0?this.child.push((tH(t={},e.tagname,e.child),tH(t,":@",e[":@"]),t)):this.child.push(tH({},e.tagname,e.child))}}]),e}();var i9={};function i7(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i9=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n5(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},on,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&ot.test(n))return Number.parseInt(n,16);var i=or.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oi={};function oo(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tt._)(s))!==(void 0===e?"undefined":(0,tt._)(e))||s!==e?s:this.options.trimValues?oy(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?oy(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function os(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oi=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var ou=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function oc(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eq(e,ou),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=ov(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i4(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=om(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tH({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i9(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=om(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tH({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=ov(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var N=this.readStopNodeData(e,x,k+1);if(!N)throw Error("Unexpected end of ".concat(x));o=N.i,I=N.tagContent}var T=new i4(w);w!==E&&S&&(T[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),T.add(this.options.textNodeName,I),this.addChild(r,T,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i4(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i4(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function of(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var od=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function oh(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function op(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function om(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function ov(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=om(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=om(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=om(e,"]]>",r,"StopNode is not closed.")-2;else{var a=ov(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function oy(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&oe(e,r)}return eR(e)?e:""}i6=function e(t){tl(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oo,this.parseXml=ol,this.parseTextData=oa,this.resolveNameSpace=os,this.buildAttributesMap=oc,this.isItStopNode=op,this.replaceEntitiesValue=od,this.readStopNodeData=og,this.saveTextToParentTag=oh,this.addChild=of,this.ignoreAttributesFn=oi(this.options.ignoreAttributes)},ej=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i5=/*#__PURE__*/function(){function e(t){tl(this,e),this.externalEntities={},this.options=eU(t)}return td(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eM(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i6(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:ej(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ob={};function ow(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=ox(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function ox(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ow(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ow(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oE={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function oS(e){this.options=Object.assign({},oE,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oi(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oI),this.processTextOrObjNode=ok,this.options.format?(this.indentate=oA,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function ok(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oA(e){return this.options.indentBy.repeat(e)}function oI(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}oS.prototype.build=function(e){return this.options.preserveOrder?ob(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tH({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},oS.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},oS.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t300;else{var oq=navigator.userAgent||"";oB.notKaiOS=!oq.includes("KaiOS")}var oU="",oj="https://corsproxy.io/?",oF={opml_url:"https://raw.githubusercontent.com/strukturart/feedolin/master/example.opml",opml_local:"",proxy_url:"https://corsproxy.io/?",cache_time:1e3},oV={},o$=[],oz=[];/*@__PURE__*/t(te).getItem("read_articles").then(function(e){if(null===e)return oz=[],/*@__PURE__*/t(te).setItem("read_articles",oz).then(function(){});oz=e}).catch(function(e){console.error("Error accessing localForage:",e)});var oH=function(){oY=[],e5("reload data",3e3),localStorage.setItem("last_channel_filter",o4),setTimeout(function(){o5()},3e3)};function oW(e){var r=[];oY.map(function(e,t){r.push(e.id)}),(oz=oz.filter(function(t){return r.includes(e)})).push(e),/*@__PURE__*/t(te).setItem("read_articles",oz).then(function(){}).catch(function(e){console.error("Error updating localForage:",e)})}var oG=new DOMParser;("b2g"in navigator||"navigator.mozApps"in navigator)&&(oB.notKaiOS=!1),oB.notKaiOS||["http://127.0.0.1/api/v1/shared/core.js","http://127.0.0.1/api/v1/shared/session.js","http://127.0.0.1/api/v1/apps/service.js","http://127.0.0.1/api/v1/audiovolumemanager/service.js","./assets/js/kaiads.v5.min.js"].forEach(function(e){var t=document.createElement("script");t.type="text/javascript",t.src=e,document.head.appendChild(t)});var oY=[];oB.debug&&(window.onerror=function(e,t,r){return alert("Error message: "+e+"\nURL: "+t+"\nLine Number: "+r),!0});var oK=function(){/*@__PURE__*/t(te).getItem("settings").then(function(e){oV=e;var r=new URLSearchParams(window.location.href.split("?")[1]).get("code");if(r){var n=r.split("#")[0];if(r){/*@__PURE__*/t(te).setItem("mastodon_code",n);var i=new Headers;i.append("Content-Type","application/x-www-form-urlencoded");var o=new URLSearchParams;o.append("code",n),o.append("scope","read"),o.append("grant_type","authorization_code"),o.append("redirect_uri","https://feedolin.strukturart.com"),o.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),o.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oV.mastodon_server_url+"/oauth/token",{method:"POST",headers:i,body:o,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oV.mastodon_token=e.access_token,/*@__PURE__*/t(te).setItem("settings",oV),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e5("Connection failed")})}}})};function oZ(e){for(var t=0,r=0;r0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o3(r)];case 2:return i.sent(),oV.last_update=new Date,/*@__PURE__*/t(te).setItem("settings",oV),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),o1=function(e){var t=oG.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},o3=(ei=eG(function(e){var r,n,i,o,a;return(0,eK.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){o4=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(te).setItem("articles",oY).then(function(){console.log("feeds cached"),oY.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length>0&&!i&&(o4=localStorage.getItem("last_channel_filter")||o$[0],i=!0),/*@__PURE__*/t(tr).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oY.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oj+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oR.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oY.push(r)}}),o$.push("Mastodon")})},o5=function(){oX(oj+oV.opml_url+"?time="+new Date),oV.opml_local&&o0(oV.opml_local),oV.mastodon_token&&e7(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oB.mastodon_logged=e.display_name,o2()}).catch(function(e){alert(e)}),o4=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(te).getItem("settings").then(function(e){null==e&&(oV=oF,/*@__PURE__*/t(te).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})),(oV=e).cache_time=oV.cache_time||1e3,oV.last_update?oB.last_update_duration=new Date/1e3-oV.last_update/1e3:oB.last_update_duration=3600,oV.opml_url||oV.opml_local_filename||e5("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oB.last_update_duration>oV.cache_time?(o5(),e5("Load feeds",4e3)):/*@__PURE__*/t(te).getItem("articles").then(function(e){(oY=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length&&(o4=localStorage.getItem("last_channel_filter")||o$[0]),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Cached feeds loaded",4e3),oV.mastodon_token&&e7(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oB.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e5("The default settings was loaded",3e3),oX(oj+(oV=oF).opml_url),/*@__PURE__*/t(te).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})});var o8=document.getElementById("app"),o6=-1,o4=localStorage.getItem("last_channel_filter")||"",o9=0,o7=function(e){return /*@__PURE__*/t(i$).duration(e,"seconds").format("mm:ss")},ae={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oB.notKaiOS&&e4("","",""),ae.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(ae.videoElement);var n=r.url;n&&(ae.videoElement.src=n,ae.videoElement.play(),ae.isPlaying=!0),ae.videoElement.onloadedmetadata=function(){ae.videoDuration=ae.videoElement.duration,/*@__PURE__*/t(tr).redraw()},ae.videoElement.ontimeupdate=function(){ae.currentTime=ae.videoElement.currentTime,/*@__PURE__*/t(tr).redraw()},document.addEventListener("keydown",ae.handleKeydown)},onremove:function(){document.removeEventListener("keydown",ae.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ae.togglePlayPause():"ArrowLeft"===e.key?ae.seek("left"):"ArrowRight"===e.key&&ae.seek("right")},togglePlayPause:function(){ae.isPlaying?ae.videoElement.pause():ae.videoElement.play(),ae.isPlaying=!ae.isPlaying},seek:function(e){var t=ae.videoElement.currentTime;"left"===e?ae.videoElement.currentTime=Math.max(0,t-ae.seekAmount):"right"===e&&(ae.videoElement.currentTime=Math.min(ae.videoDuration,t+ae.seekAmount))},view:function(e){e.attrs;var r=ae.videoDuration>0?ae.currentTime/ae.videoDuration*100:0;return /*@__PURE__*/t(tr)("div",{class:"video-player"},[/*@__PURE__*/t(tr)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tr)("div",{class:"video-info"},[" ".concat(o7(ae.currentTime)," / ").concat(o7(ae.videoDuration))]),/*@__PURE__*/t(tr)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tr)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},at={player:null,oncreate:function(e){var t=e.attrs;oB.notKaiOS&&e4("","",""),e6("","",""),YT?at.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:at.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",at.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){1===at.player.getPlayerState()?at.player.pauseVideo():at.player.playVideo()},seek:function(e){var t=at.player.getCurrentTime();"left"===e?at.player.seekTo(Math.max(0,t-5),!0):"right"===e&&at.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tr)("div",{class:"youtube-player"},[/*@__PURE__*/t(tr)("div",{id:"video-container",class:"video-container"})])}},ar=document.createElement("audio");if(ar.preload="auto","b2g"in navigator)try{ar.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var an={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&ar.src!==r.url&&(ar.src=r.url,ar.play().catch(function(){}),an.isPlaying=!0),ar.onloadedmetadata=function(){an.audioDuration=ar.duration,/*@__PURE__*/t(tr).redraw()},ar.ontimeupdate=function(){an.currentTime=ar.currentTime,/*@__PURE__*/t(tr).redraw()},an.isPlaying=!ar.paused,document.addEventListener("keydown",an.handleKeydown)},oncreate:function(){oB.player=!0,e4("","",""),e6("","",""),oV.sleepTimer&&(e6("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oB.sleepTimer?oM():oD(6e4*oV.sleepTimer)})),oB.notKaiOS&&e4("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){an.togglePlayPause()}),document.addEventListener("swiped-left",function(){an.seek("left")}),document.addEventListener("swiped-right",function(){an.seek("right")})},onremove:function(){document.removeEventListener("keydown",an.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?an.togglePlayPause():"ArrowLeft"===e.key?an.seek("left"):"ArrowRight"===e.key&&an.seek("right")},togglePlayPause:function(){an.isPlaying?ar.pause():ar.play().catch(function(){}),an.isPlaying=!an.isPlaying},seek:function(e){var t=ar.currentTime;"left"===e?ar.currentTime=Math.max(0,t-an.seekAmount):"right"===e&&(ar.currentTime=Math.min(an.audioDuration,t+an.seekAmount))},view:function(e){e.attrs;var r=an.audioDuration>0?an.currentTime/an.audioDuration*100:0;return /*@__PURE__*/t(tr)("div",{class:"audio-player"},[/*@__PURE__*/t(tr)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tr)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oU.cover,")")}}),/*@__PURE__*/t(tr)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(o7(an.currentTime)," / ").concat(o7(an.audioDuration))]),/*@__PURE__*/t(tr)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tr)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function ai(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tr).route(o8,"/intro",{"/article":{view:function(){var e=oY.find(function(e){return /*@__PURE__*/t(tr).route.param("index")==e.id&&(oU=e,!0)});return /*@__PURE__*/t(tr)("div",{id:"article",oncreate:function(){oB.notKaiOS&&e4("","",""),e6("","","")}},e?/*@__PURE__*/t(tr)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e6("","","")}},[/*@__PURE__*/t(tr)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(i$)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tr)("h2",{oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tr)("div",{class:"text"},[/*@__PURE__*/t(tr).trust(oJ(e.content))]),e.reblog?/*@__PURE__*/t(tr)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tr)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oB.notKaiOS||(oB.local_opml=[],eJ("opml",function(e){oB.local_opml.push(e)})),e6("","",""),oB.notKaiOS&&e6("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oB.notKaiOS&&e4("","",""),oB.notKaiOS&&e6("","","")}},[/*@__PURE__*/t(tr)("div",{class:"item input-parent flex"},[/*@__PURE__*/t(tr)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tr)("input",{id:"url-opml",placeholder:"",value:oV.opml_url||"",type:"url"})]),/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){oV.opml_local_filename?(oV.opml_local="",oV.opml_local_filename="",/*@__PURE__*/t(te).setItem("settings",oV).then(function(){e5("OPML file removed",4e3),/*@__PURE__*/t(tr).redraw()})):oB.notKaiOS?e9(function(e){var r=new FileReader;r.onload=function(){o1(r.result).error?e5("OPML file not valid",4e3):(oV.opml_local=r.result,oV.opml_local_filename=e.filename,/*@__PURE__*/t(te).setItem("settings",oV).then(function(){e5("OPML file added",4e3)}))},r.onerror=function(){e5("OPML file not valid",4e3)},r.readAsText(e.blob)}):oB.local_opml.length>0?/*@__PURE__*/t(tr).route.set("/localOPML"):e5("not enough",3e3)}},oV.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tr)("div",oV.opml_local_filename),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tr)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tr)("input",{id:"url-proxy",placeholder:"",value:oV.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oB.mastodon_logged?/*@__PURE__*/t(tr)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oB.mastodon_logged," and the data is being loaded from server ").concat(oV.mastodon_server_url,".")):null,oB.mastodon_logged?/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){oV.mastodon_server_url="",oV.mastodon_token="",/*@__PURE__*/t(te).setItem("settings",oV),oB.mastodon_logged="",/*@__PURE__*/t(tr).route.set("/settingsView")}},"Disconnect"):null,oB.mastodon_logged?null:/*@__PURE__*/t(tr)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tr)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tr)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:oV.mastodon_server_url})]),oB.mastodon_logged?null:/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){/*@__PURE__*/t(te).setItem("settings",oV),oV.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=oV.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tr)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tr)("input",{id:"sleep-timer",placeholder:"",value:oV.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tr)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e5("URL not valid"),oV.opml_url=document.getElementById("url-opml").value,oV.proxy_url=document.getElementById("url-proxy").value;var e,r=document.getElementById("sleep-timer").value;r&&!isNaN(r)&&Number(r)>0?oV.sleepTimer=parseInt(r,10):oV.sleepTimer="",oB.mastodon_logged||(oV.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(te).setItem("settings",oV).then(function(e){e5("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oB.notKaiOS&&oK()},onremove:function(){localStorage.setItem("version",oB.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tr)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e1(function(e){try{oB.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oB.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oB.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tr)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tr)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oY.filter(function(e){return""===o4||o4===e.channel});return /*@__PURE__*/t(tr)("div",{id:"start",oncreate:function(){o9=/*@__PURE__*/t(tr).route.param("index")||0,e6("","",""),oB.notKaiOS&&e6("","",""),oB.notKaiOS&&e4("","",""),oB.notKaiOS&&oB.player&&e4("","","")}},/*@__PURE__*/t(tr)("span",{class:"channel",oncreate:function(){}},o4),e.map(function(r,n){var i=oz.includes(r.id)?"read":"";return /*@__PURE__*/t(tr)("article",{class:"item ".concat(i),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==o9&&0==n?setTimeout(function(){t.dom.focus()},1200):r.id==o9&&setTimeout(function(){t.dom.focus(),ai()},1200),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tr).route.set("/article?index="+r.id),oW(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tr).route.set("/article?index="+r.id),oW(r.id))}},[/*@__PURE__*/t(tr)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tr)("time",/*@__PURE__*/t(i$)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tr)("h2",{oncreate:function(e){var t=e.dom;!0===r.reblog&&t.classList.add("reblog")}},oJ(r.feed_title)),/*@__PURE__*/t(tr)("h3",oJ(r.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"optionsView",class:"flex",oncreate:function(){e4("","",""),oB.notKaiOS&&e4("","",""),e6("","",""),oB.notKaiOS&&e6("","","")}},[/*@__PURE__*/t(tr)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ai()},onclick:function(){/*@__PURE__*/t(tr).route.set("/about")}},"About"),/*@__PURE__*/t(tr)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tr).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tr)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tr).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tr)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oB.notKaiOS&&eQ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"page"},/*@__PURE__*/t(tr)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tr)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tr)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tr)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tr)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tr)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tr)("ul",[/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oB.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use Alt to access various options.")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oB.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use # Volume")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oB.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use * Audioplayer

")),/*@__PURE__*/t(tr)("li","Version: "+oB.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tr)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tr)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tr)("h2","Data Storage and Collection"),/*@__PURE__*/t(tr)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tr)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tr)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tr)("ul",[/*@__PURE__*/t(tr)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tr)("li","OPML files you upload or manage."),/*@__PURE__*/t(tr)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tr)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tr)("h2","KaiOS Users"),/*@__PURE__*/t(tr)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tr)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tr)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tr)("p",["For users on all other platforms, ",/*@__PURE__*/t(tr)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tr)("h2","External Sources Responsibility"),/*@__PURE__*/t(tr)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tr)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tr)("h2","Third-Party Services"),/*@__PURE__*/t(tr)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tr)("h2","Policy Updates"),/*@__PURE__*/t(tr)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tr)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"flex",id:"index",oncreate:function(){oB.notKaiOS&&e4("","",""),e6("","","")}},oB.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tr)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){o1(e.result).error?e5("OPML file not valid",4e3):(oV.opml_local=e.result,oV.opml_local_filename=n,/*@__PURE__*/t(te).setItem("settings",oV).then(function(){e5("OPML file added",4e3),/*@__PURE__*/t(tr).route.set("/settingsView")}))},e.onerror=function(){e5("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":an,"/VideoPlayerView":ae,"/YouTubePlayerView":at}),document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oB.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),ai()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var t=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);document.querySelector("body").style.opacity=t},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oY=[],oH()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oB.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tr).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--o6<1&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tr).redraw();var i=/*@__PURE__*/t(tr).route.param();i.index=0,/*@__PURE__*/t(tr).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tr).redraw();var o=/*@__PURE__*/t(tr).route.param();o.index=0,/*@__PURE__*/t(tr).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tr).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tr).redraw();var n=/*@__PURE__*/t(tr).route.param();n.index=0,/*@__PURE__*/t(tr).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ai()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--o6<0&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tr).redraw();var o=/*@__PURE__*/t(tr).route.param();o.index=0,/*@__PURE__*/t(tr).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ai()},500)}break;case"ArrowUp":i(-1),"volume"==oB.window_status&&(navigator.volumeManager.requestVolumeUp(),oB.window_status="volume",setTimeout(function(){oB.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oB.window_status&&(navigator.volumeManager.requestVolumeDown(),oB.window_status="volume",setTimeout(function(){oB.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/article")&&("audio"==oU.type&&/*@__PURE__*/t(tr).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"video"==oU.type&&/*@__PURE__*/t(tr).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"youtube"==oU.type&&/*@__PURE__*/t(tr).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oU.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oH(),r.startsWith("/article")&&window.open(oU.url),r.startsWith("/AudioPlayerView")&&(oB.sleepTimer?oM():oD(6e4*oV.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tr).route.set("/AudioPlayerView");break;case"#":eX();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tr).route.param("index");/*@__PURE__*/t(tr).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tr).route.param("index");/*@__PURE__*/t(tr).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tr).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tr).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tr).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&oV.last_update?(oB.visibility=!0,new Date/1e3-oV.last_update/1e3>oV.cache_time&&(oY=[],e5("load new content",4e3),o5())):oB.visibility=!1})}),window.addEventListener("online",function(){oB.deviceOnline=!0}),window.addEventListener("offline",function(){oB.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oY=[],e5("load new content",4e3),o5(),/*@__PURE__*/t(tr).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var ao={};ao=ez("MMwCY").getBundleURL("5Waqz")+"sw.js";try{navigator.serviceWorker.register(ao).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oL.addEventListener("message",function(e){var r=e.data.oauth_success;if(r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oV.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oV.mastodon_token=e.access_token,/*@__PURE__*/t(te).setItem("settings",oV),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e5("Connection failed")})}})}(); \ No newline at end of file diff --git a/docs/index.63982eba.css b/docs/index.63982eba.css index 1c18543..aaada64 100644 --- a/docs/index.63982eba.css +++ b/docs/index.63982eba.css @@ -1 +1 @@ -:root{--color-one:black;--color-two:yellow;--color-three:silver;--color-four:#beb9b9;--color-five:rgba(214,225,228,.32);--color-seven:rgba(101,216,24,.286);--color-eight:rgba(47,82,196,.19)}@font-face{font-family:Roboto;src:url(Roboto-Regular.4f1a9903.ttf)}*,:before,:after{-moz-box-sizing:border-box;box-sizing:border-box;overflow-wrap:break-word;word-wrap:break-word;scroll-behavior:smooth;hyphens:auto;border:0;margin:0;padding:0;font-family:Roboto!important}::-webkit-scrollbar{display:none!important}:focus{outline:none}::-moz-focus-inner{border:0}.debug{outline:1px solid red}html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.15rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}#app{width:40vw;min-width:40vw;height:100%;position:relative;overflow:scroll}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:90vh;max-height:90vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.2rem}h2{width:100%;font-size:1.1rem}h2.reblog:before{content:"";background-image:url(reblog.a18be2b5.svg);background-size:cover;width:20px;height:20px;margin-right:5px;display:inline-block}h3{font-size:1rem}li{list-style:none}time{font-size:.8rem}p{margin:0 0 20px}label{font-weight:700}article img{width:100%;height:auto;padding:10px;display:block}img[src=""],img[src=\ ]{display:none}button{color:#000;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;min-width:93%;max-width:90%;min-height:40px;margin:0 0 15px 5px;padding:5px;font-size:1rem;font-weight:700;font-family:Roboto!important}button:focus,button:hover{background:orange;border:0 solid gray}a.button-style{color:#000;text-align:center;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;width:95%;min-height:40px;margin:10px 0 15px;padding:5px;font-size:1rem;font-weight:700;display:block;font-family:Roboto!important}a.button-style:focus{background:orange;border:0 solid gray}a{text-decoration:none}select{font:inherit;text-align:center;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;background-color:#fff;border:thin solid #383842;-moz-border-radius:4px;border-radius:4px;width:95%;margin:10px 5% 0;padding:10px;line-height:1.5em}textarea{border:1px solid silver;width:95%;height:30px;padding:3px}input{border:2px solid silver;-moz-border-radius:7px;border-radius:7px;width:95%;height:30px;margin:0 0 0 10px;padding:3px}label{text-align:center;min-width:100%;margin:0 0 10px;display:block}.input-parent{min-width:100%;margin:0 0 20px;padding:10px}.input-parent:focus{background:orange}article:focus{background:silver;padding:5px}div#intro{z-index:100000;background:#000;min-width:100vw;height:100%;position:fixed;top:0;left:0}div#intro img{width:120px;height:auto;margin-left:-60px;position:absolute;top:50px;left:50%}#intro #version-box{height:40px;position:absolute;bottom:50px}#intro #version-box kbd{letter-spacing:.05em;white-space:nowrap;color:#fff;border:2px solid pink;width:fit-content;height:20px;padding:3px 5px;font-size:.6em;font-weight:600;line-height:.85em;display:block;box-shadow:2px 2px pink}article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;min-width:100%}#start{min-width:100%;padding:20px 20px 60px;overflow:scroll}#start article{margin:30px 0 10px;position:relative}#start article.read{opacity:.6}#start article .type-indicator{border:2px solid #000;-moz-border-radius:8px;border-radius:8px;width:auto;padding:3px;font-size:.7rem;line-height:.4rem;position:absolute;right:5px}#start .channel{z-index:200;background:#fff;border:2px solid #000;-moz-border-radius:12px;border-radius:12px;width:fit-content;padding:8px;font-size:1rem;line-height:.7rem;display:block;position:fixed;top:10px;left:50%;transform:translate(-50%)}.channel:empty:before{content:"All feeds"}#article article:focus{background:#fff}#article time{margin:0 0 10px}#article{padding:20px}#KaiOSAd{width:240px;height:200px}#KaiOSAds-Wrapper{padding:0}#KaiOSAds-Wrapper iframe{width:240px}.text{word-break:break-all;background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;padding:0 0 50px}#optionsView{margin:40px 0 0}#account_info{margin:0 0 20px;padding:20px}.page{margin:30px 0 0;padding:10px 10px 40px}#button-save-settings{margin:30px 0 0}#settings-page .seperation{width:100%;height:5px;margin:80px 0 0}div#toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;background:#000;min-width:100%;height:auto;padding:5px;transition:all .5s ease-in-out;position:fixed;top:0;transform:translateY(-100px)}div#side-toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;opacity:0;background:orange;-moz-border-top-right-radius:15px;border-top-right-radius:15px;-moz-border-bottom-right-radius:15px;border-bottom-right-radius:15px;max-width:100vw;height:auto;padding:8px;transition:all .5s ease-in-out;position:fixed;top:70vh}div#side-toast img{width:60px}div.nickname{font-weight:700}.audio-player{min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .cover-container{z-index:-1;background-position:50%;background-repeat:no-repeat;background-size:cover;min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px}div#options{z-index:4;height:92vh;padding:10px 0 0;display:none;position:absolute;top:0;overflow:hidden}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:100vw;height:50px;display:flex;position:fixed;bottom:20px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#bottom-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#bottom-bar div.button-center img{cursor:pointer;width:40px}div#bottom-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#bottom-bar div.button-left img,div#bottom-bar div.button-right img{width:40px}div#bottom-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#bottom-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}div#top-bar{z-index:2000;z-index:6;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:30px;display:flex;position:fixed;top:0;left:0}div#top-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#top-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img{width:40px}div#top-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#top-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#top-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}.loading-spinner{z-index:2147483647;width:60px;height:60px;margin-top:-40px;margin-left:-40px;display:none;position:fixed;top:50%;left:50%}.loading-spinner div{-moz-box-sizing:border-box;box-sizing:border-box;border:8px solid transparent;border-top-color:#ee1b1b;-moz-border-radius:50%;border-radius:50%;width:100%;height:100%;margin:8px;animation:1.2s cubic-bezier(.5,0,.5,1) infinite lds-ring;display:block;position:absolute}.loading-spinner div:first-child{animation-delay:-.45s}.loading-spinner div:nth-child(2){animation-delay:-.3s}.loading-spinner div:nth-child(3){animation-delay:-.15s}@keyframes lds-ring{0%{transform:rotate(0)}to{transform:rotate(360deg)}}video,#video-container,.video-player{max-width:100%}@media screen and (min-width:400px) and (max-width:900px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.1rem;font-weight:400;line-height:1.5rem;position:relative;overflow:hidden;font-family:Roboto!important}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.1rem}h2{width:100%;margin:0 0 10px;font-size:1.1rem}h3{font-size:1.1rem}time{font-size:.9rem}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}}@media screen and (min-width:0) and (max-width:400px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}h2,h3{font-size:.9rem}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}#article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:25px 25px;padding:0}#start article{min-width:100vw;margin:0 0 10px;padding:10px}#start{min-width:100%;padding:30px 0;overflow:hidden}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img,div#bottom-bar div.button-left img,div#bottom-bar div.button-right img,div#bottom-bar div.button-center img{width:25px}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:18px;display:flex;position:fixed;bottom:30px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:5px;display:flex;position:relative}div#intro img{width:80px;height:auto;margin-left:-40px;position:absolute;top:20px;left:50%}#start .channel{padding:6px;font-size:.9rem;line-height:.5rem}#settings-page .seperation{width:100%;height:5px;margin:20px 0 0}#settings-page{width:100vw;margin:10px 0 0}.input-parent{min-width:100vw}.page{margin:10px 0 0;padding:10px 10px 40px}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px}} \ No newline at end of file +:root{--color-one:black;--color-two:yellow;--color-three:silver;--color-four:#beb9b9;--color-five:rgba(214,225,228,.32);--color-seven:rgba(101,216,24,.286);--color-eight:rgba(47,82,196,.19)}@font-face{font-family:Roboto;src:url(Roboto-Regular.4f1a9903.ttf)}*,:before,:after{-moz-box-sizing:border-box;box-sizing:border-box;overflow-wrap:break-word;word-wrap:break-word;scroll-behavior:smooth;hyphens:auto;border:0;margin:0;padding:0;font-family:Roboto!important}::-webkit-scrollbar{display:none!important}:focus{outline:none}::-moz-focus-inner{border:0}.debug{outline:1px solid red}html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.15rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}#app{width:40vw;min-width:40vw;height:100%;position:relative;overflow:scroll}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:90vh;max-height:90vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.2rem}h2{width:100%;font-size:1.1rem}h2.reblog:before{content:"";background-image:url(reblog.a18be2b5.svg);background-size:cover;width:1.1rem;height:1.1rem;margin-right:5px;padding:3px 0 0;display:inline-block}h3{font-size:1rem}li{list-style:none}time{font-size:.8rem}p{margin:0 0 20px}label{font-weight:700}article img{width:100%;height:auto;padding:10px;display:block}img[src=""],img[src=\ ]{display:none}button{color:#000;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;min-width:93%;max-width:90%;min-height:40px;margin:0 0 15px 5px;padding:5px;font-size:1rem;font-weight:700;font-family:Roboto!important}button:focus,button:hover{background:orange;border:0 solid gray}a.button-style{color:#000;text-align:center;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;width:95%;min-height:40px;margin:10px 0 15px;padding:5px;font-size:1rem;font-weight:700;display:block;font-family:Roboto!important}a.button-style:focus{background:orange;border:0 solid gray}a{text-decoration:none}select{font:inherit;text-align:center;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;background-color:#fff;border:thin solid #383842;-moz-border-radius:4px;border-radius:4px;width:95%;margin:10px 5% 0;padding:10px;line-height:1.5em}textarea{border:1px solid silver;width:95%;height:30px;padding:3px}input{border:2px solid silver;-moz-border-radius:7px;border-radius:7px;width:95%;height:30px;margin:0 0 0 10px;padding:3px}label{text-align:center;min-width:100%;margin:0 0 10px;display:block}.input-parent{min-width:100%;margin:0 0 20px;padding:10px}.input-parent:focus{background:orange}article:focus{background:silver;padding:5px}div#intro{z-index:100000;background:#000;min-width:100vw;height:100%;position:fixed;top:0;left:0}div#intro img{width:120px;height:auto;margin-left:-60px;position:absolute;top:50px;left:50%}#intro #version-box{height:40px;position:absolute;bottom:50px}#intro #version-box kbd{letter-spacing:.05em;white-space:nowrap;color:#fff;border:2px solid pink;width:fit-content;height:20px;padding:3px 5px;font-size:.6em;font-weight:600;line-height:.85em;display:block;box-shadow:2px 2px pink}article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;min-width:100%}#start{min-width:100%;padding:20px 20px 60px;overflow:scroll}#start article{margin:30px 0 10px;position:relative}#start article.read{opacity:.6}#start article .type-indicator{border:2px solid #000;-moz-border-radius:8px;border-radius:8px;width:auto;padding:3px;font-size:.7rem;line-height:.4rem;position:absolute;right:5px}#start .channel{z-index:200;background:#fff;border:2px solid #000;-moz-border-radius:12px;border-radius:12px;width:fit-content;padding:8px;font-size:1rem;line-height:.7rem;display:block;position:fixed;top:10px;left:50%;transform:translate(-50%)}.channel:empty:before{content:"All feeds"}#article article:focus{background:#fff}#article time{margin:0 0 10px}#article{padding:20px}#KaiOSAd{width:240px;height:200px}#KaiOSAds-Wrapper{padding:0}#KaiOSAds-Wrapper iframe{width:240px}.text{word-break:break-all;background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;padding:0 0 50px}#optionsView{margin:40px 0 0}#account_info{margin:0 0 20px;padding:20px}.page{margin:30px 0 0;padding:10px 10px 40px}#button-save-settings{margin:30px 0 0}#settings-page .seperation{width:100%;height:5px;margin:80px 0 0}div#toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;background:#000;min-width:100%;height:auto;padding:5px;transition:all .5s ease-in-out;position:fixed;top:0;transform:translateY(-100px)}div#side-toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;opacity:0;background:orange;-moz-border-top-right-radius:15px;border-top-right-radius:15px;-moz-border-bottom-right-radius:15px;border-bottom-right-radius:15px;max-width:100vw;height:auto;padding:8px;transition:all .5s ease-in-out;position:fixed;top:70vh}div#side-toast img{width:60px}div.nickname{font-weight:700}.audio-player{min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .cover-container{z-index:-1;background-position:50%;background-repeat:no-repeat;background-size:cover;min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px}div#options{z-index:4;height:92vh;padding:10px 0 0;display:none;position:absolute;top:0;overflow:hidden}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:100vw;height:50px;display:flex;position:fixed;bottom:20px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#bottom-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#bottom-bar div.button-center img{cursor:pointer;width:40px}div#bottom-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#bottom-bar div.button-left img,div#bottom-bar div.button-right img{width:40px}div#bottom-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#bottom-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}div#top-bar{z-index:2000;z-index:6;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:30px;display:flex;position:fixed;top:0;left:0}div#top-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#top-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img{width:40px}div#top-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#top-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#top-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}.loading-spinner{z-index:2147483647;width:60px;height:60px;margin-top:-40px;margin-left:-40px;display:none;position:fixed;top:50%;left:50%}.loading-spinner div{-moz-box-sizing:border-box;box-sizing:border-box;border:8px solid transparent;border-top-color:#ee1b1b;-moz-border-radius:50%;border-radius:50%;width:100%;height:100%;margin:8px;animation:1.2s cubic-bezier(.5,0,.5,1) infinite lds-ring;display:block;position:absolute}.loading-spinner div:first-child{animation-delay:-.45s}.loading-spinner div:nth-child(2){animation-delay:-.3s}.loading-spinner div:nth-child(3){animation-delay:-.15s}@keyframes lds-ring{0%{transform:rotate(0)}to{transform:rotate(360deg)}}video,#video-container,.video-player{max-width:100%}@media screen and (min-width:400px) and (max-width:900px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.1rem;font-weight:400;line-height:1.5rem;position:relative;overflow:hidden;font-family:Roboto!important}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.1rem}h2{width:100%;margin:0 0 10px;font-size:1.1rem}h3{font-size:1.1rem}time{font-size:.9rem}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}}@media screen and (min-width:0) and (max-width:400px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}h2,h3{font-size:.9rem}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}#article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:25px 25px;padding:0}#start article{min-width:100vw;margin:0 0 10px;padding:10px}#start{min-width:100%;padding:30px 0;overflow:hidden}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img,div#bottom-bar div.button-left img,div#bottom-bar div.button-right img,div#bottom-bar div.button-center img{width:25px}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:18px;display:flex;position:fixed;bottom:30px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:5px;display:flex;position:relative}div#intro img{width:80px;height:auto;margin-left:-40px;position:absolute;top:20px;left:50%}#start .channel{padding:6px;font-size:.9rem;line-height:.5rem}#settings-page .seperation{width:100%;height:5px;margin:20px 0 0}#settings-page{width:100vw;margin:10px 0 0}.input-parent{min-width:100vw}.page{margin:10px 0 0;padding:10px 10px 40px}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px}} \ No newline at end of file diff --git a/docs/index.f0337e49.js b/docs/index.f0337e49.js index 3128b4d..3f51bf7 100644 --- a/docs/index.f0337e49.js +++ b/docs/index.f0337e49.js @@ -1,13 +1,13 @@ -function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,N,T,O,_,C,P,D,L,R,B,q,M,U,j,F,V,$,H,z,G,W,Y,K,Z,J,Q,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eN,eT,eO,e_,eC,eP,eD,eL,eR,eB,eq,eM,eU,ej,eF="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},eV={},e$={},eH=eF.parcelRequire5393;null==eH&&((eH=function(e){if(e in eV)return eV[e].exports;if(e in e$){var t=e$[e];delete e$[e];var r={id:e,exports:{}};return eV[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){e$[e]=t},eF.parcelRequire5393=eH);var ez=eH.register;function eG(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eW(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eG(o,n,i,a,s,"next",e)}function s(e){eG(o,n,i,a,s,"throw",e)}a(void 0)})}}function eY(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eY=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eY(e)}ez("dH95r",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,N=i,T=A-u+1,O=Array(T),_=0,C=0,P=0x7fffffff,D=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var R=t.lengthR&&S(e,t,u,t.length),r.length>R&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&q(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function D(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function L(){this._=e}function R(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new L,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function B(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function q(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return L.prototype=Object.create(null),L.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),ez("h7Cmf",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),eH("bbrsO"),"function"==typeof SuppressedError&&SuppressedError}),ez("bbrsO",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),ez("hz6ru",function(e,t){var r=eH("dH95r");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),ez("bF6RK",function(e,t){var r=eH("ayCHi"),n=eH("c6nqe");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),ez("2KJLy",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),ez("lJWab",function(e,t){var r=eH("5VK6y");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),ez("5VK6y",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),ez("c6lT5",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),ez("fdYAD",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),ez("7DjOf",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eK=(eH("h7Cmf"),eH("h7Cmf")),eZ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eJ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eZ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eQ=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eW(function(){var r,i,o,a,s,u,c,l;return(0,eK.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eY(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var eX=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oT.window_status="volume",setTimeout(function(){oT.window_status=""},2e3)}catch(e){}},e0=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e0("Greg",e.data.note)});var e1=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e3=[],e2=[],e5=function(e,t){e2.push({text:e,time:t}),1===e2.length&&e8(e,t)},e8=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e2[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e2=e3.slice(1)).length>0&&setTimeout(function(){e8(e,t)},1e3)},t)},e6=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e4=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e9=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oT.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eK=eH("h7Cmf"),e7=(q=eW(function(e,t){var r;return(0,eK.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return q.apply(this,arguments)}),te={},tt=eH("bbrsO");te=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function G(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=T[(3&r[t])<<4|r[t+1]>>4],n+=T[(15&r[t+1])<<2|r[t+2]>>6],n+=T[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var W={serialize:function(e,t){var r="";if(e&&(r=H.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===H.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=L:"[object Uint8Array]"===r?i+=R:"[object Uint8ClampedArray]"===r?i+=B:"[object Int16Array]"===r?i+=q:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=M:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+G(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+D+("~~local_forage_type~"+e.type)+"~"+G(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===D&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=z(r);switch(n){case P:return a;case D:return o([a],{type:t});case L:return new Int8Array(a);case R:return new Uint8Array(a);case B:return new Uint8ClampedArray(a);case q:return new Int16Array(a);case U:return new Uint16Array(a);case M:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:z,bufferToString:G};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function Z(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(Z.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var J={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=W,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=W,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=eo.ZERO&&e<=eo.NINE}th.decodeCodePoint=tw.default,Object.defineProperty(th,"replaceCodePoint",{enumerable:!0,get:function(){return eH("7DjOf").replaceCodePoint}}),Object.defineProperty(th,"fromCodePoint",{enumerable:!0,get:function(){return eH("7DjOf").fromCodePoint}}),(M=eo||(eo={}))[M.NUM=35]="NUM",M[M.SEMI=59]="SEMI",M[M.EQUALS=61]="EQUALS",M[M.ZERO=48]="ZERO",M[M.NINE=57]="NINE",M[M.LOWER_A=97]="LOWER_A",M[M.LOWER_F=102]="LOWER_F",M[M.LOWER_X=120]="LOWER_X",M[M.LOWER_Z=122]="LOWER_Z",M[M.UPPER_A=65]="UPPER_A",M[M.UPPER_F=70]="UPPER_F",M[M.UPPER_Z=90]="UPPER_Z",(U=ea=th.BinTrieFlags||(th.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=es||(es={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=eu=th.DecodingMode||(th.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tE=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=es.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=eu.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=es.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case es.EntityStart:if(e.charCodeAt(t)===eo.NUM)return this.state=es.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=es.NamedEntity,this.stateNamedEntity(e,t);case es.NumericStart:return this.stateNumericStart(e,t);case es.NumericDecimal:return this.stateNumericDecimal(e,t);case es.NumericHex:return this.stateNumericHex(e,t);case es.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===eo.LOWER_X?(this.state=es.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=es.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=eo.UPPER_A)||!(n<=eo.UPPER_F))&&(!(n>=eo.LOWER_A)||!(n<=eo.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=eo.UPPER_A&&t<=eo.UPPER_Z||t>=eo.LOWER_A&&t<=eo.LOWER_Z||tx(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ea.VALUE_LENGTH)>>14)){if(o===eo.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==eu.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&ea.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ea.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case es.NamedEntity:return 0!==this.result&&(this.decodeMode!==eu.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case es.NumericDecimal:return this.emitNumericEntity(0,2);case es.NumericHex:return this.emitNumericEntity(0,3);case es.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case es.EntityStart:return 0}},e}();function tS(e){var t="",r=new tE(e,function(e){return t+=(0,tw.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tk(e,t,r,n){var i=(t&ea.BRANCH_LENGTH)>>7,o=t&ea.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}th.EntityDecoder=tE,th.determineBranch=tk;var tA=tS(ty.default),tI=tS(tb.default);function tN(e){return e===ec.Space||e===ec.NewLine||e===ec.Tab||e===ec.FormFeed||e===ec.CarriageReturn}function tT(e){return e===ec.Slash||e===ec.Gt||tN(e)}function tO(e){return e>=ec.Zero&&e<=ec.Nine}th.decodeHTML=function(e,t){return void 0===t&&(t=eu.Legacy),tA(e,t)},th.decodeHTMLAttribute=function(e){return tA(e,eu.Attribute)},th.decodeHTMLStrict=function(e){return tA(e,eu.Strict)},th.decodeXML=function(e){return tI(e,eu.Strict)},(V=ec||(ec={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=el||(el={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(H=ef||(ef={}))[H.NoValue=0]="NoValue",H[H.Unquoted=1]="Unquoted",H[H.Single=2]="Single",H[H.Double=3]="Double";var t_={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tC=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tl(this,e),this.cbs=r,this.state=el.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=el.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?th.xmlDecodeTree:th.htmlDecodeTree}return td(e,[{key:"reset",value:function(){this.state=el.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=el.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=el.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===ec.Amp&&(this.state=el.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tT(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=el.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===ec.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=ec.LowerA&&e<=ec.LowerZ||e>=ec.UpperA&&e<=ec.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=el.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===ec.ExclamationMark)this.state=el.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===ec.Questionmark)this.state=el.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==t_.TitleEnd[2]?this.state=this.xmlMode||t!==t_.ScriptEnd[2]?el.InTagName:el.BeforeSpecialS:this.startSpecial(t_.TitleEnd,3)}else e===ec.Slash?this.state=el.BeforeClosingTagName:(this.state=el.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tT(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===ec.Gt?this.state=el.Text:(this.state=this.isTagStartChar(e)?el.InClosingTagName:el.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===ec.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.state=el.Text,this.baseState=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===ec.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=el.InSpecialTag,this.sequenceIndex=0):this.state=el.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===ec.Slash?this.state=el.InSelfClosingTag:tN(e)||(this.state=el.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===ec.Gt?(this.cbs.onselfclosingtag(this.index),this.state=el.Text,this.baseState=el.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===ec.Eq||tT(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===ec.Eq?this.state=el.BeforeAttributeValue:e===ec.Slash||e===ec.Gt?(this.cbs.onattribend(ef.NoValue,this.index),this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ef.NoValue,this.index),this.state=el.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===ec.DoubleQuote?(this.state=el.InAttributeValueDq,this.sectionStart=this.index+1):e===ec.SingleQuote?(this.state=el.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=el.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===ec.DoubleQuote?ef.Double:ef.Single,this.index),this.state=el.BeforeAttributeName):this.decodeEntities&&e===ec.Amp&&(this.baseState=this.state,this.state=el.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,ec.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,ec.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===ec.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ef.Unquoted,this.index),this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===ec.Amp&&(this.baseState=this.state,this.state=el.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===ec.OpeningSquareBracket?(this.state=el.CDATASequence,this.sequenceIndex=0):this.state=e===ec.Dash?el.BeforeComment:el.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===ec.Dash?(this.state=el.InCommentLike,this.currentSequence=t_.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=el.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===t_.ScriptEnd[3]?this.startSpecial(t_.ScriptEnd,4):t===t_.StyleEnd[3]?this.startSpecial(t_.StyleEnd,4):(this.state=el.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===ec.Number?this.state=el.BeforeNumericEntity:e===ec.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=el.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,th.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&th.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===ec.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&th.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~th.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===ec.LowerX?(this.entityExcess++,this.state=el.InHexEntity):(this.state=el.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===el.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,th.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===ec.Semi?this.emitNumericEntity(!0):tO(e)?(this.entityResult=10*this.entityResult+(e-ec.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===ec.Semi?this.emitNumericEntity(!0):tO(e)?(this.entityResult=16*this.entityResult+(e-ec.Zero),this.entityExcess++):e>=ec.UpperA&&e<=ec.UpperF||e>=ec.LowerA&&e<=ec.LowerF?(this.entityResult=16*this.entityResult+((32|e)-ec.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===el.Text||this.baseState===el.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===el.Text||this.state===el.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===el.InAttributeValueDq||this.state===el.InAttributeValueSq||this.state===el.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tl(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tC)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return td(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,th.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tM.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tq.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tU.has(e)?this.foreignContext.push(!0):tj.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tU.has(u)||tj.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,th.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ef.Double?'"':e===ef.Single?"'":e===ef.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tF),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t9(this,e)}}]),e}(),t0=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this)).data=e,n}return td(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tZ(tX)),t1=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Text,e}return td(r,[{key:"nodeType",get:function(){return 3}}]),r}(t0),t3=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Comment,e}return td(r,[{key:"nodeType",get:function(){return 8}}]),r}(t0),t2=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e,n){var i;return tl(this,r),(i=t.call(this,n)).name=e,i.type=ed.Directive,i}return td(r,[{key:"nodeType",get:function(){return 1}}]),r}(t0),t5=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this)).children=e,n}return td(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tZ(tX)),t8=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.CDATA,e}return td(r,[{key:"nodeType",get:function(){return 4}}]),r}(t5),t6=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Root,e}return td(r,[{key:"nodeType",get:function(){return 9}}]),r}(t5),t4=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?ed.Script:"style"===e?ed.Style:ed.Tag;return tl(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return td(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t5);function t9(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===ed.Text)t=new t1(e.data);else if(e.type===ed.Comment)t=new t3(e.data);else if(e.type===ed.Tag||e.type===ed.Script||e.type===ed.Style){var n=r?t7(e.children):[],i=new t4(e.name,tG({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=i}else if(e.type===ed.CDATA){var o=r?t7(e.children):[],a=new t8(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===ed.Root){var s=r?t7(e.children):[],u=new t6(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===ed.Directive){var c=new t2(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function t7(e){for(var t=e.map(function(e){return t9(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rr=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),rn=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ri=null!==(eh=String.fromCodePoint)&&void 0!==eh?eh:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ro(e){return e>=ep.ZERO&&e<=ep.NINE}(G=ep||(ep={}))[G.NUM=35]="NUM",G[G.SEMI=59]="SEMI",G[G.EQUALS=61]="EQUALS",G[G.ZERO=48]="ZERO",G[G.NINE=57]="NINE",G[G.LOWER_A=97]="LOWER_A",G[G.LOWER_F=102]="LOWER_F",G[G.LOWER_X=120]="LOWER_X",G[G.LOWER_Z=122]="LOWER_Z",G[G.UPPER_A=65]="UPPER_A",G[G.UPPER_F=70]="UPPER_F",G[G.UPPER_Z=90]="UPPER_Z",(W=em||(em={}))[W.VALUE_LENGTH=49152]="VALUE_LENGTH",W[W.BRANCH_LENGTH=16256]="BRANCH_LENGTH",W[W.JUMP_TABLE=127]="JUMP_TABLE",(Y=ev||(ev={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=eg||(eg={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var ra=/*#__PURE__*/function(){function e(t,r,n){tl(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=ev.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=eg.Strict}return td(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=ev.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case ev.EntityStart:if(e.charCodeAt(t)===ep.NUM)return this.state=ev.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=ev.NamedEntity,this.stateNamedEntity(e,t);case ev.NumericStart:return this.stateNumericStart(e,t);case ev.NumericDecimal:return this.stateNumericDecimal(e,t);case ev.NumericHex:return this.stateNumericHex(e,t);case ev.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ep.LOWER_X?(this.state=ev.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=ev.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=ep.UPPER_A)||!(n<=ep.UPPER_F))&&(!(n>=ep.LOWER_A)||!(n<=ep.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=rn.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==ep.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&em.VALUE_LENGTH)>>14;t>7,o=t&em.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===eg.Attribute&&(0===i||function(e){var t;return e===ep.EQUALS||(t=e)>=ep.UPPER_A&&t<=ep.UPPER_Z||t>=ep.LOWER_A&&t<=ep.LOWER_Z||ro(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&em.VALUE_LENGTH)>>14)){if(o===ep.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==eg.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&em.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~em.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case ev.NamedEntity:return 0!==this.result&&(this.decodeMode!==eg.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case ev.NumericDecimal:return this.emitNumericEntity(0,2);case ev.NumericHex:return this.emitNumericEntity(0,3);case ev.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case ev.EntityStart:return 0}}}]),e}();function rs(e){var t="",r=new ra(e,function(e){return t+=ri(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}rs(rt),rs(rr);var ru=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rc(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rc(/[&<>'"]/g,ru),rc(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rc(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(Z=ey||(ey={}))[Z.XML=0]="XML",Z[Z.HTML=1]="HTML",(J=eb||(eb={}))[J.UTF8=0]="UTF8",J[J.ASCII=1]="ASCII",J[J.Extensive=2]="Extensive",J[J.Attribute=3]="Attribute",J[J.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(Q=ew||(ew={}))[Q.DISCONNECTED=1]="DISCONNECTED",Q[Q.PRECEDING=2]="PRECEDING",Q[Q.FOLLOWING=4]="FOLLOWING",Q[Q.CONTAINS=8]="CONTAINS",Q[Q.CONTAINED_BY=16]="CONTAINED_BY";var rl={};/*! +function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,T,N,O,_,C,P,L,D,B,R,M,q,U,j,F,V,$,H,z,W,G,Y,K,J,Z,Q,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eT,eN,eO,e_,eC,eP,eL,eD,eB,eR,eM,eq,eU,ej,eF="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},eV={},e$={},eH=eF.parcelRequire5393;null==eH&&((eH=function(e){if(e in eV)return eV[e].exports;if(e in e$){var t=e$[e];delete e$[e];var r={id:e,exports:{}};return eV[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){e$[e]=t},eF.parcelRequire5393=eH);var ez=eH.register;function eW(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eG(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eW(o,n,i,a,s,"next",e)}function s(e){eW(o,n,i,a,s,"throw",e)}a(void 0)})}}function eY(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eY=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eY(e)}ez("dH95r",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,T=i,N=A-u+1,O=Array(N),_=0,C=0,P=0x7fffffff,L=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var B=t.lengthB&&S(e,t,u,t.length),r.length>B&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&M(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function L(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function D(){this._=e}function B(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new D,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function R(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function M(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return D.prototype=Object.create(null),D.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),ez("h7Cmf",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),eH("bbrsO"),"function"==typeof SuppressedError&&SuppressedError}),ez("bbrsO",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),ez("hz6ru",function(e,t){var r=eH("dH95r");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),ez("bF6RK",function(e,t){var r=eH("ayCHi"),n=eH("c6nqe");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),ez("2KJLy",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),ez("lJWab",function(e,t){var r=eH("5VK6y");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),ez("5VK6y",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),ez("c6lT5",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),ez("fdYAD",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),ez("7DjOf",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eK=(eH("h7Cmf"),eH("h7Cmf")),eJ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eZ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eJ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eQ=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eG(function(){var r,i,o,a,s,u,c,l;return(0,eK.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eY(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var eX=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oM.window_status="volume",setTimeout(function(){oM.window_status=""},2e3)}catch(e){}},e0=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e0("Greg",e.data.note)});var e1=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e3=[],e2=[],e5=function(e,t){e2.push({text:e,time:t}),1===e2.length&&e8(e,t)},e8=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e2[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e2=e3.slice(1)).length>0&&setTimeout(function(){e8(e,t)},1e3)},t)},e6=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e4=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e9=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oM.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eK=eH("h7Cmf"),e7=(M=eG(function(e,t){var r;return(0,eK.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return M.apply(this,arguments)}),te={},tt=eH("bbrsO");te=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function W(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=N[(3&r[t])<<4|r[t+1]>>4],n+=N[(15&r[t+1])<<2|r[t+2]>>6],n+=N[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var G={serialize:function(e,t){var r="";if(e&&(r=H.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===H.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=D:"[object Uint8Array]"===r?i+=B:"[object Uint8ClampedArray]"===r?i+=R:"[object Int16Array]"===r?i+=M:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=q:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+W(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+L+("~~local_forage_type~"+e.type)+"~"+W(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===L&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=z(r);switch(n){case P:return a;case L:return o([a],{type:t});case D:return new Int8Array(a);case B:return new Uint8Array(a);case R:return new Uint8ClampedArray(a);case M:return new Int16Array(a);case U:return new Uint16Array(a);case q:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:z,bufferToString:W};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function J(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(J.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var Z={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=G,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=G,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=eo.ZERO&&e<=eo.NINE}th.decodeCodePoint=tw.default,Object.defineProperty(th,"replaceCodePoint",{enumerable:!0,get:function(){return eH("7DjOf").replaceCodePoint}}),Object.defineProperty(th,"fromCodePoint",{enumerable:!0,get:function(){return eH("7DjOf").fromCodePoint}}),(q=eo||(eo={}))[q.NUM=35]="NUM",q[q.SEMI=59]="SEMI",q[q.EQUALS=61]="EQUALS",q[q.ZERO=48]="ZERO",q[q.NINE=57]="NINE",q[q.LOWER_A=97]="LOWER_A",q[q.LOWER_F=102]="LOWER_F",q[q.LOWER_X=120]="LOWER_X",q[q.LOWER_Z=122]="LOWER_Z",q[q.UPPER_A=65]="UPPER_A",q[q.UPPER_F=70]="UPPER_F",q[q.UPPER_Z=90]="UPPER_Z",(U=ea=th.BinTrieFlags||(th.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=es||(es={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=eu=th.DecodingMode||(th.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tE=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=es.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=eu.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=es.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case es.EntityStart:if(e.charCodeAt(t)===eo.NUM)return this.state=es.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=es.NamedEntity,this.stateNamedEntity(e,t);case es.NumericStart:return this.stateNumericStart(e,t);case es.NumericDecimal:return this.stateNumericDecimal(e,t);case es.NumericHex:return this.stateNumericHex(e,t);case es.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===eo.LOWER_X?(this.state=es.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=es.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=eo.UPPER_A)||!(n<=eo.UPPER_F))&&(!(n>=eo.LOWER_A)||!(n<=eo.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=eo.UPPER_A&&t<=eo.UPPER_Z||t>=eo.LOWER_A&&t<=eo.LOWER_Z||tx(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ea.VALUE_LENGTH)>>14)){if(o===eo.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==eu.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&ea.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ea.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case es.NamedEntity:return 0!==this.result&&(this.decodeMode!==eu.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case es.NumericDecimal:return this.emitNumericEntity(0,2);case es.NumericHex:return this.emitNumericEntity(0,3);case es.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case es.EntityStart:return 0}},e}();function tS(e){var t="",r=new tE(e,function(e){return t+=(0,tw.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tk(e,t,r,n){var i=(t&ea.BRANCH_LENGTH)>>7,o=t&ea.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}th.EntityDecoder=tE,th.determineBranch=tk;var tA=tS(ty.default),tI=tS(tb.default);function tT(e){return e===ec.Space||e===ec.NewLine||e===ec.Tab||e===ec.FormFeed||e===ec.CarriageReturn}function tN(e){return e===ec.Slash||e===ec.Gt||tT(e)}function tO(e){return e>=ec.Zero&&e<=ec.Nine}th.decodeHTML=function(e,t){return void 0===t&&(t=eu.Legacy),tA(e,t)},th.decodeHTMLAttribute=function(e){return tA(e,eu.Attribute)},th.decodeHTMLStrict=function(e){return tA(e,eu.Strict)},th.decodeXML=function(e){return tI(e,eu.Strict)},(V=ec||(ec={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=el||(el={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(H=ef||(ef={}))[H.NoValue=0]="NoValue",H[H.Unquoted=1]="Unquoted",H[H.Single=2]="Single",H[H.Double=3]="Double";var t_={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tC=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tl(this,e),this.cbs=r,this.state=el.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=el.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?th.xmlDecodeTree:th.htmlDecodeTree}return td(e,[{key:"reset",value:function(){this.state=el.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=el.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=el.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===ec.Amp&&(this.state=el.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tN(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=el.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===ec.Gt||tT(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=ec.LowerA&&e<=ec.LowerZ||e>=ec.UpperA&&e<=ec.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=el.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===ec.ExclamationMark)this.state=el.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===ec.Questionmark)this.state=el.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==t_.TitleEnd[2]?this.state=this.xmlMode||t!==t_.ScriptEnd[2]?el.InTagName:el.BeforeSpecialS:this.startSpecial(t_.TitleEnd,3)}else e===ec.Slash?this.state=el.BeforeClosingTagName:(this.state=el.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tN(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tT(e)||(e===ec.Gt?this.state=el.Text:(this.state=this.isTagStartChar(e)?el.InClosingTagName:el.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===ec.Gt||tT(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.state=el.Text,this.baseState=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===ec.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=el.InSpecialTag,this.sequenceIndex=0):this.state=el.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===ec.Slash?this.state=el.InSelfClosingTag:tT(e)||(this.state=el.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===ec.Gt?(this.cbs.onselfclosingtag(this.index),this.state=el.Text,this.baseState=el.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tT(e)||(this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===ec.Eq||tN(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=el.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===ec.Eq?this.state=el.BeforeAttributeValue:e===ec.Slash||e===ec.Gt?(this.cbs.onattribend(ef.NoValue,this.index),this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e)):tT(e)||(this.cbs.onattribend(ef.NoValue,this.index),this.state=el.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===ec.DoubleQuote?(this.state=el.InAttributeValueDq,this.sectionStart=this.index+1):e===ec.SingleQuote?(this.state=el.InAttributeValueSq,this.sectionStart=this.index+1):tT(e)||(this.sectionStart=this.index,this.state=el.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===ec.DoubleQuote?ef.Double:ef.Single,this.index),this.state=el.BeforeAttributeName):this.decodeEntities&&e===ec.Amp&&(this.baseState=this.state,this.state=el.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,ec.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,ec.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tT(e)||e===ec.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ef.Unquoted,this.index),this.state=el.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===ec.Amp&&(this.baseState=this.state,this.state=el.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===ec.OpeningSquareBracket?(this.state=el.CDATASequence,this.sequenceIndex=0):this.state=e===ec.Dash?el.BeforeComment:el.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===ec.Dash?(this.state=el.InCommentLike,this.currentSequence=t_.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=el.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===ec.Gt||this.fastForwardTo(ec.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=el.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===t_.ScriptEnd[3]?this.startSpecial(t_.ScriptEnd,4):t===t_.StyleEnd[3]?this.startSpecial(t_.StyleEnd,4):(this.state=el.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===ec.Number?this.state=el.BeforeNumericEntity:e===ec.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=el.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,th.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&th.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===ec.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&th.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~th.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===ec.LowerX?(this.entityExcess++,this.state=el.InHexEntity):(this.state=el.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===el.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,th.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===ec.Semi?this.emitNumericEntity(!0):tO(e)?(this.entityResult=10*this.entityResult+(e-ec.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===ec.Semi?this.emitNumericEntity(!0):tO(e)?(this.entityResult=16*this.entityResult+(e-ec.Zero),this.entityExcess++):e>=ec.UpperA&&e<=ec.UpperF||e>=ec.LowerA&&e<=ec.LowerF?(this.entityResult=16*this.entityResult+((32|e)-ec.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===el.Text||this.baseState===el.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===el.Text||this.state===el.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===el.InAttributeValueDq||this.state===el.InAttributeValueSq||this.state===el.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tl(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tC)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return td(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,th.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tq.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tM.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tU.has(e)?this.foreignContext.push(!0):tj.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tU.has(u)||tj.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,th.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ef.Double?'"':e===ef.Single?"'":e===ef.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tF),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t9(this,e)}}]),e}(),t0=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this)).data=e,n}return td(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tJ(tX)),t1=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Text,e}return td(r,[{key:"nodeType",get:function(){return 3}}]),r}(t0),t3=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Comment,e}return td(r,[{key:"nodeType",get:function(){return 8}}]),r}(t0),t2=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e,n){var i;return tl(this,r),(i=t.call(this,n)).name=e,i.type=ed.Directive,i}return td(r,[{key:"nodeType",get:function(){return 1}}]),r}(t0),t5=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this)).children=e,n}return td(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tJ(tX)),t8=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.CDATA,e}return td(r,[{key:"nodeType",get:function(){return 4}}]),r}(t5),t6=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){var e;return tl(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=ed.Root,e}return td(r,[{key:"nodeType",get:function(){return 9}}]),r}(t5),t4=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?ed.Script:"style"===e?ed.Style:ed.Tag;return tl(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return td(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t5);function t9(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===ed.Text)t=new t1(e.data);else if(e.type===ed.Comment)t=new t3(e.data);else if(e.type===ed.Tag||e.type===ed.Script||e.type===ed.Style){var n=r?t7(e.children):[],i=new t4(e.name,tW({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tW({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tW({},e["x-attribsPrefix"])),t=i}else if(e.type===ed.CDATA){var o=r?t7(e.children):[],a=new t8(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===ed.Root){var s=r?t7(e.children):[],u=new t6(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===ed.Directive){var c=new t2(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function t7(e){for(var t=e.map(function(e){return t9(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rr=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),rn=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ri=null!==(eh=String.fromCodePoint)&&void 0!==eh?eh:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ro(e){return e>=ep.ZERO&&e<=ep.NINE}(W=ep||(ep={}))[W.NUM=35]="NUM",W[W.SEMI=59]="SEMI",W[W.EQUALS=61]="EQUALS",W[W.ZERO=48]="ZERO",W[W.NINE=57]="NINE",W[W.LOWER_A=97]="LOWER_A",W[W.LOWER_F=102]="LOWER_F",W[W.LOWER_X=120]="LOWER_X",W[W.LOWER_Z=122]="LOWER_Z",W[W.UPPER_A=65]="UPPER_A",W[W.UPPER_F=70]="UPPER_F",W[W.UPPER_Z=90]="UPPER_Z",(G=em||(em={}))[G.VALUE_LENGTH=49152]="VALUE_LENGTH",G[G.BRANCH_LENGTH=16256]="BRANCH_LENGTH",G[G.JUMP_TABLE=127]="JUMP_TABLE",(Y=ev||(ev={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=eg||(eg={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var ra=/*#__PURE__*/function(){function e(t,r,n){tl(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=ev.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=eg.Strict}return td(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=ev.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case ev.EntityStart:if(e.charCodeAt(t)===ep.NUM)return this.state=ev.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=ev.NamedEntity,this.stateNamedEntity(e,t);case ev.NumericStart:return this.stateNumericStart(e,t);case ev.NumericDecimal:return this.stateNumericDecimal(e,t);case ev.NumericHex:return this.stateNumericHex(e,t);case ev.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ep.LOWER_X?(this.state=ev.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=ev.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=ep.UPPER_A)||!(n<=ep.UPPER_F))&&(!(n>=ep.LOWER_A)||!(n<=ep.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=rn.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==ep.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&em.VALUE_LENGTH)>>14;t>7,o=t&em.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===eg.Attribute&&(0===i||function(e){var t;return e===ep.EQUALS||(t=e)>=ep.UPPER_A&&t<=ep.UPPER_Z||t>=ep.LOWER_A&&t<=ep.LOWER_Z||ro(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&em.VALUE_LENGTH)>>14)){if(o===ep.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==eg.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&em.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~em.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case ev.NamedEntity:return 0!==this.result&&(this.decodeMode!==eg.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case ev.NumericDecimal:return this.emitNumericEntity(0,2);case ev.NumericHex:return this.emitNumericEntity(0,3);case ev.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case ev.EntityStart:return 0}}}]),e}();function rs(e){var t="",r=new ra(e,function(e){return t+=ri(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}rs(rt),rs(rr);var ru=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rc(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rc(/[&<>'"]/g,ru),rc(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rc(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(J=ey||(ey={}))[J.XML=0]="XML",J[J.HTML=1]="HTML",(Z=eb||(eb={}))[Z.UTF8=0]="UTF8",Z[Z.ASCII=1]="ASCII",Z[Z.Extensive=2]="Extensive",Z[Z.Attribute=3]="Attribute",Z[Z.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(Q=ew||(ew={}))[Q.DISCONNECTED=1]="DISCONNECTED",Q[Q.PRECEDING=2]="PRECEDING",Q[Q.FOLLOWING=4]="FOLLOWING",Q[Q.CONTAINS=8]="CONTAINS",Q[Q.CONTAINED_BY=16]="CONTAINED_BY";var rl={};/*! * is-plain-object * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. - */function rf(e){return"[object Object]"===Object.prototype.toString.call(e)}rl=function(e){if("string"!=typeof e)throw TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")};var rd=function(e){var t,r;return!1!==rf(e)&&(void 0===(t=e.constructor)||!1!==rf(r=t.prototype)&&!1!==r.hasOwnProperty("isPrototypeOf"))},rh={},rp=function(e){var t;return!!e&&"object"==typeof e&&"[object RegExp]"!==(t=Object.prototype.toString.call(e))&&"[object Date]"!==t&&e.$$typeof!==rm},rm="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function rv(e,t){return!1!==t.clone&&t.isMergeableObject(e)?rw(Array.isArray(e)?[]:{},e,t):e}function rg(e,t,r){return e.concat(t).map(function(e){return rv(e,r)})}function ry(e){return Object.keys(e).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter(function(t){return Object.propertyIsEnumerable.call(e,t)}):[])}function rb(e,t){try{return t in e}catch(e){return!1}}function rw(e,t,r){(r=r||{}).arrayMerge=r.arrayMerge||rg,r.isMergeableObject=r.isMergeableObject||rp,r.cloneUnlessOtherwiseSpecified=rv;var n,i,o=Array.isArray(t);return o!==Array.isArray(e)?rv(t,r):o?r.arrayMerge(e,t,r):(i={},(n=r).isMergeableObject(e)&&ry(e).forEach(function(t){i[t]=rv(e[t],n)}),ry(t).forEach(function(r){rb(e,r)&&!(Object.hasOwnProperty.call(e,r)&&Object.propertyIsEnumerable.call(e,r))||(rb(e,r)&&n.isMergeableObject(t[r])?i[r]=(function(e,t){if(!t.customMerge)return rw;var r=t.customMerge(e);return"function"==typeof r?r:rw})(r,n)(e[r],t[r],n):i[r]=rv(t[r],n))}),i)}rw.all=function(e,t){if(!Array.isArray(e))throw Error("first argument should be an array");return e.reduce(function(e,r){return rw(e,r,t)},{})},rh=rw;var rx={};X=rx,ee=function(){return function(e){function t(e){return" "===e||" "===e||"\n"===e||"\f"===e||"\r"===e}function r(t){var r,n=t.exec(e.substring(m));if(n)return r=n[0],m+=r.length,r}for(var n,i,o,a,s,u=e.length,c=/^[ \t\n\r\u000c]+/,l=/^[, \t\n\r\u000c]+/,f=/^[^ \t\n\r\u000c]+/,d=/[,]+$/,h=/^\d+$/,p=/^-?(?:[0-9]+|[0-9]*\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/,m=0,v=[];;){if(r(l),m>=u)return v;n=r(f),i=[],","===n.slice(-1)?(n=n.replace(d,""),g()):function(){for(r(c),o="",a="in descriptor";;){if(s=e.charAt(m),"in descriptor"===a){if(t(s))o&&(i.push(o),o="",a="after descriptor");else if(","===s){m+=1,o&&i.push(o),g();return}else if("("===s)o+=s,a="in parens";else if(""===s){o&&i.push(o),g();return}else o+=s}else if("in parens"===a){if(")"===s)o+=s,a="in descriptor";else if(""===s){i.push(o),g();return}else o+=s}else if("after descriptor"===a){if(t(s));else if(""===s){g();return}else a="in descriptor",m-=1}m+=1}}()}function g(){var t,r,o,a,s,u,c,l,f,d=!1,m={};for(a=0;ae.length)&&(t=e.length);for(var r=0,n=Array(t);r",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}},{key:"showSourceCode",value:function(e){var t=this;if(!this.source)return"";var r=this.source;null==e&&(e=rP.isColorSupported);var n=function(e){return e},i=function(e){return e},o=function(e){return e};if(e){var a=rP.createColors(!0),s=a.bold,u=a.gray,c=a.red;i=function(e){return s(c(e))},n=function(e){return u(e)},rR&&(o=function(e){return rR(e)})}var l=r.split(/\r?\n/),f=Math.max(this.line-3,0),d=Math.min(this.line+2,l.length),h=String(d).length;return l.slice(f,d).map(function(e,r){var a=f+1+r,s=" "+(" "+a).slice(-h)+" | ";if(a===t.line){if(e.length>160){var u=Math.max(0,t.column-20),c=Math.max(t.column+20,t.endColumn+20),l=e.slice(u,c),d=n(s.replace(/\d/g," "))+e.slice(0,Math.min(t.column-1,19)).replace(/[^\t]/g," ");return i(">")+n(s)+o(l)+"\n "+d+i("^")}var p=n(s.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return i(">")+n(s)+o(e)+"\n "+p+i("^")}return" "+n(s)+o(e)}).join("\n")}},{key:"toString",value:function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}]),r}(tZ(Error));rC=rB,rB.default=rB;var rq={},rM={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1},rU=/*#__PURE__*/function(){function e(t){tl(this,e),this.builder=t}return td(e,[{key:"atrule",value:function(e,t){var r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{var i=(e.raws.between||"")+(t?";":"");this.builder(r+n+i,e)}}},{key:"beforeAfter",value:function(e,t){r="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var r,n=e.parent,i=0;n&&"root"!==n.type;)i+=1,n=n.parent;if(r.includes("\n")){var o=this.raw(e,null,"indent");if(o.length)for(var a=0;a0&&"comment"===e.nodes[t].type;)t-=1;for(var r=this.raw(e,"semicolon"),n=0;n0&&void 0!==e.raws.after)return(t=e.raws.after).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawBeforeComment",value:function(e,t){var r;return e.walkComments(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeDecl",value:function(e,t){var r;return e.walkDecls(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeOpen",value:function(e){var t;return e.walk(function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1}),t}},{key:"rawBeforeRule",value:function(e){var t;return e.walk(function(r){if(r.nodes&&(r.parent!==e||e.first!==r)&&void 0!==r.raws.before)return(t=r.raws.before).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawColon",value:function(e){var t;return e.walkDecls(function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1}),t}},{key:"rawEmptyBody",value:function(e){var t;return e.walk(function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1}),t}},{key:"rawIndent",value:function(e){var t;return e.raws.indent?e.raws.indent:(e.walk(function(r){var n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&void 0!==r.raws.before){var i=r.raws.before.split("\n");return t=(t=i[i.length-1]).replace(/\S/g,""),!1}}),t)}},{key:"rawSemicolon",value:function(e){var t;return e.walk(function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1}),t}},{key:"rawValue",value:function(e,t){var r=e[t],n=e.raws[t];return n&&n.value===r?n.raw:r}},{key:"root",value:function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}},{key:"rule",value:function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}},{key:"stringify",value:function(e,t){if(!this[e.type])throw Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}]),e}();rq=rU,rU.default=rU;var rj={};function rF(e,t){new rq(t).stringify(e)}rj=rF,rF.default=rF,ex=Symbol("isClean"),eE=Symbol("my");var rV=/*#__PURE__*/function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var r in tl(this,e),this.raws={},this[ex]=!1,this[eE]=!0,t)if("nodes"===r){this.nodes=[];var n=!0,i=!1,o=void 0;try{for(var a,s=t[r][Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;"function"==typeof u.clone?this.append(u.clone()):this.append(u)}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}else this[r]=t[r]}return td(e,[{key:"addToError",value:function(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){var t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,"$&".concat(t.input.from,":").concat(t.start.line,":").concat(t.start.column,"$&"))}return e}},{key:"after",value:function(e){return this.parent.insertAfter(this,e),this}},{key:"assign",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var t in e)this[t]=e[t];return this}},{key:"before",value:function(e){return this.parent.insertBefore(this,e),this}},{key:"cleanRaws",value:function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}},{key:"clone",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=function e(t,r){var n=new t.constructor;for(var i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&"proxyCache"!==i){var o=t[i],a=void 0===o?"undefined":(0,tt._)(o);"parent"===i&&"object"===a?r&&(n[i]=r):"source"===i?n[i]=o:Array.isArray(o)?n[i]=o.map(function(t){return e(t,n)}):("object"===a&&null!==o&&(o=e(o)),n[i]=o)}return n}(this);for(var r in e)t[r]=e[r];return t}},{key:"cloneAfter",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t}},{key:"cloneBefore",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t}},{key:"error",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var r=this.rangeBy(t),n=r.end,i=r.start;return this.source.input.error(e,{column:i.column,line:i.line},{column:n.column,line:n.line},t)}return new rC(e)}},{key:"getProxyProcessor",value:function(){return{get:function(e,t){return"proxyOf"===t?e:"root"===t?function(){return e.root().toProxy()}:e[t]},set:function(e,t,r){return e[t]===r||(e[t]=r,("prop"===t||"value"===t||"name"===t||"params"===t||"important"===t||"text"===t)&&e.markDirty(),!0)}}}},{key:"markClean",value:function(){this[ex]=!0}},{key:"markDirty",value:function(){if(this[ex]){this[ex]=!1;for(var e=this;e=e.parent;)e[ex]=!1}}},{key:"next",value:function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}}},{key:"positionBy",value:function(e,t){var r=this.source.start;if(e.index)r=this.positionInside(e.index,t);else if(e.word){var n=(t=this.toString()).indexOf(e.word);-1!==n&&(r=this.positionInside(n,t))}return r}},{key:"positionInside",value:function(e,t){for(var r=t||this.toString(),n=this.source.start.column,i=this.source.start.line,o=0;o0&&void 0!==arguments[0]?arguments[0]:rj;e.stringify&&(e=e.stringify);var t="";return e(this,function(e){t+=e}),t}},{key:"warn",value:function(e,t,r){var n={node:this};for(var i in r)n[i]=r[i];return e.warn(t,n)}},{key:"proxyOf",get:function(){return this}}]),e}();r_=rV,rV.default=rV;var r$=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="comment",n}return r}(tZ(r_));rO=r$,r$.default=r$;var rH={},rz=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),e&&void 0!==e.value&&"string"!=typeof e.value&&(e=re(tG({},e),{value:String(e.value)})),(n=t.call(this,e)).type="decl",n}return td(r,[{key:"variable",get:function(){return this.prop.startsWith("--")||"$"===this.prop[0]}}]),r}(tZ(r_));rH=rz,rz.default=rz;var rG=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){return tl(this,r),t.apply(this,arguments)}return td(r,[{key:"append",value:function(){for(var e=arguments.length,t=Array(e),r=0;r1?t-1:0),i=1;i=e&&(this.indexes[r]=t-1);return this.markDirty(),this}},{key:"replaceValues",value:function(e,t,r){return r||(r=t,t={}),this.walkDecls(function(n){(!t.props||t.props.includes(n.prop))&&(!t.fast||n.value.includes(t.fast))&&(n.value=n.value.replace(e,r))}),this.markDirty(),this}},{key:"some",value:function(e){return this.nodes.some(e)}},{key:"walk",value:function(e){return this.each(function(t,r){var n;try{n=e(t,r)}catch(e){throw t.addToError(e)}return!1!==n&&t.walk&&(n=t.walk(e)),n})}},{key:"walkAtRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("atrule"===r.type&&e.test(r.name))return t(r,n)}):this.walk(function(r,n){if("atrule"===r.type&&r.name===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("atrule"===e.type)return t(e,r)}))}},{key:"walkComments",value:function(e){return this.walk(function(t,r){if("comment"===t.type)return e(t,r)})}},{key:"walkDecls",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("decl"===r.type&&e.test(r.prop))return t(r,n)}):this.walk(function(r,n){if("decl"===r.type&&r.prop===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("decl"===e.type)return t(e,r)}))}},{key:"walkRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("rule"===r.type&&e.test(r.selector))return t(r,n)}):this.walk(function(r,n){if("rule"===r.type&&r.selector===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("rule"===e.type)return t(e,r)}))}},{key:"first",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}},{key:"last",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}]),r}(tZ(r_));rG.registerParse=function(e){ek=e},rG.registerRule=function(e){eI=e},rG.registerAtRule=function(e){eS=e},rG.registerRoot=function(e){eA=e},rT=rG,rG.default=rG,rG.rebuild=function(e){"atrule"===e.type?Object.setPrototypeOf(e,eS.prototype):"rule"===e.type?Object.setPrototypeOf(e,eI.prototype):"decl"===e.type?Object.setPrototypeOf(e,rH.prototype):"comment"===e.type?Object.setPrototypeOf(e,rO.prototype):"root"===e.type&&Object.setPrototypeOf(e,eA.prototype),e[eE]=!0,e.nodes&&e.nodes.forEach(function(e){rG.rebuild(e)})};var rW=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="atrule",n}return td(r,[{key:"append",value:function(){for(var e,t=arguments.length,n=Array(t),i=0;i0&&void 0!==arguments[0]?arguments[0]:{};return new eN(new eT,this,e).stringify()}}]),r}(rT);rK.registerLazyResult=function(e){eN=e},rK.registerProcessor=function(e){eT=e},rY=rK,rK.default=rK;var rZ={};function rJ(e,t){if(null==e)return{};var r,n,i=function(e,t){if(null==e)return{};var r,n,i={},o=Object.keys(e);for(n=0;n=0||(i[r]=e[r]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n=0)&&Object.prototype.propertyIsEnumerable.call(e,r)&&(i[r]=e[r])}return i}var rQ={},rX=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:21,t="",r=e;r--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},r0=rR.isAbsolute,r1=rR.resolve,r3=rR.SourceMapConsumer,r2=rR.SourceMapGenerator,r5=rR.fileURLToPath,r8=rR.pathToFileURL,r6={},tt=eH("bbrsO");eO=function(e){var t,r,n=function(e){var t=e.length;if(t%4>0)throw Error("Invalid string. Length must be a multiple of 4");var r=e.indexOf("=");-1===r&&(r=t);var n=r===t?0:4-r%4;return[r,n]}(e),i=n[0],o=n[1],a=new r7((i+o)*3/4-o),s=0,u=o>0?i-4:i;for(r=0;r>16&255,a[s++]=t>>8&255,a[s++]=255&t;return 2===o&&(t=r9[e.charCodeAt(r)]<<2|r9[e.charCodeAt(r+1)]>>4,a[s++]=255&t),1===o&&(t=r9[e.charCodeAt(r)]<<10|r9[e.charCodeAt(r+1)]<<4|r9[e.charCodeAt(r+2)]>>2,a[s++]=t>>8&255,a[s++]=255&t),a},e_=function(e){for(var t,r=e.length,n=r%3,i=[],o=0,a=r-n;o>18&63]+r4[n>>12&63]+r4[n>>6&63]+r4[63&n]);return i.join("")}(e,o,o+16383>a?a:o+16383));return 1===n?i.push(r4[(t=e[r-1])>>2]+r4[t<<4&63]+"=="):2===n&&i.push(r4[(t=(e[r-2]<<8)+e[r-1])>>10]+r4[t>>4&63]+r4[t<<2&63]+"="),i.join("")};for(var r4=[],r9=[],r7="undefined"!=typeof Uint8Array?Uint8Array:Array,ne="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",nt=0,nr=ne.length;nt>1,l=-7,f=r?i-1:0,d=r?-1:1,h=e[t+f];for(f+=d,o=h&(1<<-l)-1,h>>=-l,l+=s;l>0;o=256*o+e[t+f],f+=d,l-=8);for(a=o&(1<<-l)-1,o>>=-l,l+=n;l>0;a=256*a+e[t+f],f+=d,l-=8);if(0===o)o=1-c;else{if(o===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,n),o-=c}return(h?-1:1)*a*Math.pow(2,o-n)},eP=function(e,t,r,n,i,o){var a,s,u,c=8*o-i-1,l=(1<>1,d=23===i?5960464477539062e-23:0,h=n?0:o-1,p=n?1:-1,m=t<0||0===t&&1/t<0?1:0;for(isNaN(t=Math.abs(t))||t===1/0?(s=isNaN(t)?1:0,a=l):(a=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-a))<1&&(a--,u*=2),a+f>=1?t+=d/u:t+=d*Math.pow(2,1-f),t*u>=2&&(a++,u/=2),a+f>=l?(s=0,a=l):a+f>=1?(s=(t*u-1)*Math.pow(2,i),a+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),a=0));i>=8;e[r+h]=255&s,h+=p,s/=256,i-=8);for(a=a<0;e[r+h]=255&a,h+=p,a/=256,c-=8);e[r+h-p]|=128*m};var nn="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;function ni(e){if(e>0x7fffffff)throw RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,no.prototype),t}function no(e,t,r){if("number"==typeof e){if("string"==typeof t)throw TypeError('The "string" argument must be of type string. Received type number');return nu(e)}return na(e,t,r)}function na(e,t,r){if("string"==typeof e)return function(e,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!no.isEncoding(t))throw TypeError("Unknown encoding: "+t);var r=0|nd(e,t),n=ni(r),i=n.write(e,t);return i!==r&&(n=n.slice(0,i)),n}(e,t);if(ArrayBuffer.isView(e))return function(e){if(nR(e,Uint8Array)){var t=new Uint8Array(e);return nl(t.buffer,t.byteOffset,t.byteLength)}return nc(e)}(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tt._)(e)));if(nR(e,ArrayBuffer)||e&&nR(e.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(nR(e,SharedArrayBuffer)||e&&nR(e.buffer,SharedArrayBuffer)))return nl(e,t,r);if("number"==typeof e)throw TypeError('The "value" argument must not be of type number. Received type number');var n=e.valueOf&&e.valueOf();if(null!=n&&n!==e)return no.from(n,t,r);var i=function(e){if(no.isBuffer(e)){var t,r=0|nf(e.length),n=ni(r);return 0===n.length||e.copy(n,0,0,r),n}return void 0!==e.length?"number"!=typeof e.length||(t=e.length)!=t?ni(0):nc(e):"Buffer"===e.type&&Array.isArray(e.data)?nc(e.data):void 0}(e);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return no.from(e[Symbol.toPrimitive]("string"),t,r);throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tt._)(e)))}function ns(e){if("number"!=typeof e)throw TypeError('"size" argument must be of type number');if(e<0)throw RangeError('The value "'+e+'" is invalid for option "size"')}function nu(e){return ns(e),ni(e<0?0:0|nf(e))}function nc(e){for(var t=e.length<0?0:0|nf(e.length),r=ni(t),n=0;n=0x7fffffff)throw RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|e}function nd(e,t){if(no.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||nR(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+(void 0===e?"undefined":(0,tt._)(e)));var r=e.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return nP(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return nD(e).length;default:if(i)return n?-1:nP(e).length;t=(""+t).toLowerCase(),i=!0}}function nh(e,t,r){var n,i,o=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===r||r>this.length)&&(r=this.length),r<=0||(r>>>=0)<=(t>>>=0)))return"";for(e||(e="utf8");;)switch(e){case"hex":return function(e,t,r){var n=e.length;(!t||t<0)&&(t=0),(!r||r<0||r>n)&&(r=n);for(var i="",o=t;o0x7fffffff?r=0x7fffffff:r<-0x80000000&&(r=-0x80000000),(o=r=+r)!=o&&(r=i?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(i)return -1;r=e.length-1}else if(r<0){if(!i)return -1;r=0}if("string"==typeof t&&(t=no.from(t,n)),no.isBuffer(t))return 0===t.length?-1:nv(e,t,r,n,i);if("number"==typeof t)return(t&=255,"function"==typeof Uint8Array.prototype.indexOf)?i?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):nv(e,[t],r,n,i);throw TypeError("val must be string, number or Buffer")}function nv(e,t,r,n,i){var o,a=1,s=e.length,u=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return -1;a=2,s/=2,u/=2,r/=2}function c(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var l=-1;for(o=r;os&&(r=s-u),o=r;o>=0;o--){for(var f=!0,d=0;d239?4:o>223?3:o>191?2:1;if(i+s<=r){var u=void 0,c=void 0,l=void 0,f=void 0;switch(s){case 1:o<128&&(a=o);break;case 2:(192&(u=e[i+1]))==128&&(f=(31&o)<<6|63&u)>127&&(a=f);break;case 3:u=e[i+1],c=e[i+2],(192&u)==128&&(192&c)==128&&(f=(15&o)<<12|(63&u)<<6|63&c)>2047&&(f<55296||f>57343)&&(a=f);break;case 4:u=e[i+1],c=e[i+2],l=e[i+3],(192&u)==128&&(192&c)==128&&(192&l)==128&&(f=(15&o)<<18|(63&u)<<12|(63&c)<<6|63&l)>65535&&f<1114112&&(a=f)}}null===a?(a=65533,s=1):a>65535&&(a-=65536,n.push(a>>>10&1023|55296),a=56320|1023&a),n.push(a),i+=s}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);for(var r="",n=0;nr)throw RangeError("Trying to access beyond buffer length")}function nb(e,t,r,n,i,o){if(!no.isBuffer(e))throw TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw RangeError("Index out of range")}function nw(e,t,r,n,i){nT(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,r}function nx(e,t,r,n,i){nT(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r+7]=o,o>>=8,e[r+6]=o,o>>=8,e[r+5]=o,o>>=8,e[r+4]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r+3]=a,a>>=8,e[r+2]=a,a>>=8,e[r+1]=a,a>>=8,e[r]=a,r+8}function nE(e,t,r,n,i,o){if(r+n>e.length||r<0)throw RangeError("Index out of range")}function nS(e,t,r,n,i){return t=+t,r>>>=0,i||nE(e,t,r,4,34028234663852886e22,-34028234663852886e22),eP(e,t,r,n,23,4),r+4}function nk(e,t,r,n,i){return t=+t,r>>>=0,i||nE(e,t,r,8,17976931348623157e292,-17976931348623157e292),eP(e,t,r,n,52,8),r+8}no.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),no.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(no.prototype,"parent",{enumerable:!0,get:function(){if(no.isBuffer(this))return this.buffer}}),Object.defineProperty(no.prototype,"offset",{enumerable:!0,get:function(){if(no.isBuffer(this))return this.byteOffset}}),no.poolSize=8192,no.from=function(e,t,r){return na(e,t,r)},Object.setPrototypeOf(no.prototype,Uint8Array.prototype),Object.setPrototypeOf(no,Uint8Array),no.alloc=function(e,t,r){return(ns(e),e<=0)?ni(e):void 0!==t?"string"==typeof r?ni(e).fill(t,r):ni(e).fill(t):ni(e)},no.allocUnsafe=function(e){return nu(e)},no.allocUnsafeSlow=function(e){return nu(e)},no.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==no.prototype},no.compare=function(e,t){if(nR(e,Uint8Array)&&(e=no.from(e,e.offset,e.byteLength)),nR(t,Uint8Array)&&(t=no.from(t,t.offset,t.byteLength)),!no.isBuffer(e)||!no.isBuffer(t))throw TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var r=e.length,n=t.length,i=0,o=Math.min(r,n);in.length?(no.isBuffer(o)||(o=no.from(o)),o.copy(n,i)):Uint8Array.prototype.set.call(n,o,i);else if(no.isBuffer(o))o.copy(n,i);else throw TypeError('"list" argument must be an Array of Buffers');i+=o.length}return n},no.byteLength=nd,no.prototype._isBuffer=!0,no.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t50&&(e+=" ... "),""},nn&&(no.prototype[nn]=no.prototype.inspect),no.prototype.compare=function(e,t,r,n,i){if(nR(e,Uint8Array)&&(e=no.from(e,e.offset,e.byteLength)),!no.isBuffer(e))throw TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+(void 0===e?"undefined":(0,tt._)(e)));if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),t<0||r>e.length||n<0||i>this.length)throw RangeError("out of range index");if(n>=i&&t>=r)return 0;if(n>=i)return -1;if(t>=r)return 1;if(t>>>=0,r>>>=0,n>>>=0,i>>>=0,this===e)return 0;for(var o=i-n,a=r-t,s=Math.min(o,a),u=this.slice(n,i),c=e.slice(t,r),l=0;l>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0);else throw Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var i,o,a,s,u,c,l,f,d=this.length-t;if((void 0===r||r>d)&&(r=d),e.length>0&&(r<0||t<0)||t>this.length)throw RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var h=!1;;)switch(n){case"hex":return function(e,t,r,n){r=Number(r)||0;var i,o=e.length-r;n?(n=Number(n))>o&&(n=o):n=o;var a=t.length;for(n>a/2&&(n=a/2),i=0;i>8,i.push(r%256),i.push(n);return i}(e,this.length-l),this,l,f);default:if(h)throw TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),h=!0}},no.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},no.prototype.slice=function(e,t){var r=this.length;e=~~e,t=void 0===t?r:~~t,e<0?(e+=r)<0&&(e=0):e>r&&(e=r),t<0?(t+=r)<0&&(t=0):t>r&&(t=r),t>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e],i=1,o=0;++o>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e+--t],i=1;t>0&&(i*=256);)n+=this[e+--t]*i;return n},no.prototype.readUint8=no.prototype.readUInt8=function(e,t){return e>>>=0,t||ny(e,1,this.length),this[e]},no.prototype.readUint16LE=no.prototype.readUInt16LE=function(e,t){return e>>>=0,t||ny(e,2,this.length),this[e]|this[e+1]<<8},no.prototype.readUint16BE=no.prototype.readUInt16BE=function(e,t){return e>>>=0,t||ny(e,2,this.length),this[e]<<8|this[e+1]},no.prototype.readUint32LE=no.prototype.readUInt32LE=function(e,t){return e>>>=0,t||ny(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+0x1000000*this[e+3]},no.prototype.readUint32BE=no.prototype.readUInt32BE=function(e,t){return e>>>=0,t||ny(e,4,this.length),0x1000000*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},no.prototype.readBigUInt64LE=nq(function(e){nO(e>>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&n_(e,this.length-8);var n=t+256*this[++e]+65536*this[++e]+0x1000000*this[++e],i=this[++e]+256*this[++e]+65536*this[++e]+0x1000000*r;return BigInt(n)+(BigInt(i)<>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&n_(e,this.length-8);var n=0x1000000*t+65536*this[++e]+256*this[++e]+this[++e],i=0x1000000*this[++e]+65536*this[++e]+256*this[++e]+r;return(BigInt(n)<>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e],i=1,o=0;++o=(i*=128)&&(n-=Math.pow(2,8*t)),n},no.prototype.readIntBE=function(e,t,r){e>>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=t,i=1,o=this[e+--n];n>0&&(i*=256);)o+=this[e+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},no.prototype.readInt8=function(e,t){return(e>>>=0,t||ny(e,1,this.length),128&this[e])?-((255-this[e]+1)*1):this[e]},no.prototype.readInt16LE=function(e,t){e>>>=0,t||ny(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?0xffff0000|r:r},no.prototype.readInt16BE=function(e,t){e>>>=0,t||ny(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?0xffff0000|r:r},no.prototype.readInt32LE=function(e,t){return e>>>=0,t||ny(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},no.prototype.readInt32BE=function(e,t){return e>>>=0,t||ny(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},no.prototype.readBigInt64LE=nq(function(e){nO(e>>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&n_(e,this.length-8),(BigInt(this[e+4]+256*this[e+5]+65536*this[e+6]+(r<<24))<>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&n_(e,this.length-8),(BigInt((t<<24)+65536*this[++e]+256*this[++e]+this[++e])<>>=0,t||ny(e,4,this.length),eC(this,e,!0,23,4)},no.prototype.readFloatBE=function(e,t){return e>>>=0,t||ny(e,4,this.length),eC(this,e,!1,23,4)},no.prototype.readDoubleLE=function(e,t){return e>>>=0,t||ny(e,8,this.length),eC(this,e,!0,52,8)},no.prototype.readDoubleBE=function(e,t){return e>>>=0,t||ny(e,8,this.length),eC(this,e,!1,52,8)},no.prototype.writeUintLE=no.prototype.writeUIntLE=function(e,t,r,n){if(e=+e,t>>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nb(this,e,t,r,i,0)}var o=1,a=0;for(this[t]=255&e;++a>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nb(this,e,t,r,i,0)}var o=r-1,a=1;for(this[t+o]=255&e;--o>=0&&(a*=256);)this[t+o]=e/a&255;return t+r},no.prototype.writeUint8=no.prototype.writeUInt8=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,1,255,0),this[t]=255&e,t+1},no.prototype.writeUint16LE=no.prototype.writeUInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},no.prototype.writeUint16BE=no.prototype.writeUInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},no.prototype.writeUint32LE=no.prototype.writeUInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0xffffffff,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},no.prototype.writeUint32BE=no.prototype.writeUInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0xffffffff,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},no.prototype.writeBigUInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nw(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),no.prototype.writeBigUInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),no.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nb(this,e,t,r,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o>0)-s&255;return t+r},no.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nb(this,e,t,r,i-1,-i)}var o=r-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+r},no.prototype.writeInt8=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},no.prototype.writeInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},no.prototype.writeInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},no.prototype.writeInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0x7fffffff,-0x80000000),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},no.prototype.writeInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0x7fffffff,-0x80000000),e<0&&(e=0xffffffff+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},no.prototype.writeBigInt64LE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nw(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),no.prototype.writeBigInt64BE=nq(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),no.prototype.writeFloatLE=function(e,t,r){return nS(this,e,t,!0,r)},no.prototype.writeFloatBE=function(e,t,r){return nS(this,e,t,!1,r)},no.prototype.writeDoubleLE=function(e,t,r){return nk(this,e,t,!0,r)},no.prototype.writeDoubleBE=function(e,t,r){return nk(this,e,t,!1,r)},no.prototype.copy=function(e,t,r,n){if(!no.isBuffer(e))throw TypeError("argument should be a Buffer");if(r||(r=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n=this.length)throw RangeError("Index out of range");if(n<0)throw RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t>>=0,r=void 0===r?this.length:r>>>0,e||(e=0),"number"==typeof e)for(i=t;i=n+4;r-=3)t="_".concat(e.slice(r-3,r)).concat(t);return"".concat(e.slice(0,r)).concat(t)}function nT(e,t,r,n,i,o){if(e>r||e3?0===t||t===BigInt(0)?">= 0".concat(s," and < 2").concat(s," ** ").concat((o+1)*8).concat(s):">= -(2".concat(s," ** ").concat((o+1)*8-1).concat(s,") and < 2 ** ")+"".concat((o+1)*8-1).concat(s):">= ".concat(t).concat(s," and <= ").concat(r).concat(s),new nA.ERR_OUT_OF_RANGE("value",a,e)}nO(i,"offset"),(void 0===n[i]||void 0===n[i+o])&&n_(i,n.length-(o+1))}function nO(e,t){if("number"!=typeof e)throw new nA.ERR_INVALID_ARG_TYPE(t,"number",e)}function n_(e,t,r){if(Math.floor(e)!==e)throw nO(e,r),new nA.ERR_OUT_OF_RANGE(r||"offset","an integer",e);if(t<0)throw new nA.ERR_BUFFER_OUT_OF_BOUNDS;throw new nA.ERR_OUT_OF_RANGE(r||"offset",">= ".concat(r?1:0," and <= ").concat(t),e)}nI("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"},RangeError),nI("ERR_INVALID_ARG_TYPE",function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(void 0===t?"undefined":(0,tt._)(t))},TypeError),nI("ERR_OUT_OF_RANGE",function(e,t,r){var n='The value of "'.concat(e,'" is out of range.'),i=r;return Number.isInteger(r)&&Math.abs(r)>0x100000000?i=nN(String(r)):(void 0===r?"undefined":(0,tt._)(r))==="bigint"&&(i=String(r),(r>Math.pow(BigInt(2),BigInt(32))||r<-Math.pow(BigInt(2),BigInt(32)))&&(i=nN(i)),i+="n"),n+=" It must be ".concat(t,". Received ").concat(i)},RangeError);var nC=/[^+/0-9A-Za-z-_]/g;function nP(e,t){t=t||1/0;for(var r,n=e.length,i=null,o=[],a=0;a55295&&r<57344){if(!i){if(r>56319||a+1===n){(t-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(r<56320){(t-=3)>-1&&o.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,r<128){if((t-=1)<0)break;o.push(r)}else if(r<2048){if((t-=2)<0)break;o.push(r>>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else if(r<1114112){if((t-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}else throw Error("Invalid code point")}return o}function nD(e){return eO(function(e){if((e=(e=e.split("=")[0]).trim().replace(nC,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function nL(e,t,r,n){var i;for(i=0;i=t.length)&&!(i>=e.length);++i)t[i+r]=e[i];return i}function nR(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}var nB=function(){for(var e="0123456789abcdef",t=Array(256),r=0;r<16;++r)for(var n=16*r,i=0;i<16;++i)t[n+i]=e[r]+e[i];return t}();function nq(e){return"undefined"==typeof BigInt?nM:e}function nM(){throw Error("BigInt not supported")}var nU=rR.existsSync,nj=rR.readFileSync,nF=rR.dirname,nV=rR.join,n$=rR.SourceMapConsumer,nH=rR.SourceMapGenerator,nz=/*#__PURE__*/function(){function e(t,r){if(tl(this,e),!1!==r.map){this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var n=r.map?r.map.prev:void 0,i=this.loadMap(r.from,n);!this.mapFile&&r.from&&(this.mapFile=r.from),this.mapFile&&(this.root=nF(this.mapFile)),i&&(this.text=i)}}return td(e,[{key:"consumer",value:function(){return this.consumerCache||(this.consumerCache=new n$(this.text)),this.consumerCache}},{key:"decodeInline",value:function(e){var t,r=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(r)return decodeURIComponent(e.substr(r[0].length));var n=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(n)return t=e.substr(n[0].length),no?no.from(t,"base64").toString():window.atob(t);throw Error("Unsupported source map encoding "+e.match(/data:application\/json;([^,]+),/)[1])}},{key:"getAnnotationURL",value:function(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}},{key:"isMap",value:function(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}},{key:"loadAnnotation",value:function(e){var t=e.match(/\/\*\s*# sourceMappingURL=/g);if(t){var r=e.lastIndexOf(t.pop()),n=e.indexOf("*/",r);r>-1&&n>-1&&(this.annotation=this.getAnnotationURL(e.substring(r,n)))}}},{key:"loadFile",value:function(e){if(this.root=nF(e),nU(e))return this.mapFile=e,nj(e,"utf-8").toString().trim()}},{key:"loadMap",value:function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var r=t(e);if(r){var n=this.loadFile(r);if(!n)throw Error("Unable to load previous source map: "+r.toString());return n}}else if(t instanceof n$)return nH.fromSourceMap(t).toString();else if(t instanceof nH)return t.toString();else if(this.isMap(t))return JSON.stringify(t);else throw Error("Unsupported previous source map format: "+t.toString())}else if(this.inline)return this.decodeInline(this.annotation);else if(this.annotation){var i=this.annotation;return e&&(i=nV(nF(e),i)),this.loadFile(i)}}},{key:"startWith",value:function(e,t){return!!e&&e.substr(0,t.length)===t}},{key:"withContent",value:function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}]),e}();r6=nz,nz.default=nz;var nG=Symbol("fromOffsetCache"),nW=!!(r3&&r2),nY=!!(r1&&r0),nK=/*#__PURE__*/function(){function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(tl(this,e),null==t||"object"==typeof t&&!t.toString)throw Error("PostCSS received ".concat(t," instead of CSS string"));if(this.css=t.toString(),"\uFEFF"===this.css[0]||"￾"===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,r.from&&(!nY||/^\w+:\/\//.test(r.from)||r0(r.from)?this.file=r.from:this.file=r1(r.from)),nY&&nW){var n=new r6(this.css,r);if(n.text){this.map=n;var i=n.consumer().file;!this.file&&i&&(this.file=this.mapResolve(i))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}return td(e,[{key:"error",value:function(e,t,r){var n,i,o,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(t&&"object"==typeof t){var s=t,u=r;if("number"==typeof s.offset){var c=this.fromOffset(s.offset);t=c.line,r=c.col}else t=s.line,r=s.column;if("number"==typeof u.offset){var l=this.fromOffset(u.offset);i=l.line,n=l.col}else i=u.line,n=u.column}else if(!r){var f=this.fromOffset(t);t=f.line,r=f.col}var d=this.origin(t,r,i,n);return(o=d?new rC(e,void 0===d.endLine?d.line:{column:d.column,line:d.line},void 0===d.endLine?d.column:{column:d.endColumn,line:d.endLine},d.source,d.file,a.plugin):new rC(e,void 0===i?t:{column:r,line:t},void 0===i?r:{column:n,line:i},this.css,this.file,a.plugin)).input={column:r,endColumn:n,endLine:i,line:t,source:this.css},this.file&&(r8&&(o.input.url=r8(this.file).toString()),o.input.file=this.file),o}},{key:"fromOffset",value:function(e){if(this[nG])s=this[nG];else{var t=this.css.split("\n");s=Array(t.length);for(var r=0,n=0,i=t.length;n=a)o=s.length-1;else for(var a,s,u,c=s.length-2;o>1)])c=u-1;else if(e>=s[u+1])o=u+1;else{o=u;break}return{col:e-s[o]+1,line:o+1}}},{key:"mapResolve",value:function(e){return/^\w+:\/\//.test(e)?e:r1(this.map.consumer().sourceRoot||this.map.root||".",e)}},{key:"origin",value:function(e,t,r,n){if(!this.map)return!1;var i,o,a=this.map.consumer(),s=a.originalPositionFor({column:t,line:e});if(!s.source)return!1;"number"==typeof r&&(i=a.originalPositionFor({column:n,line:r})),o=r0(s.source)?r8(s.source):new URL(s.source,this.map.consumer().sourceRoot||r8(this.map.mapFile));var u={column:s.column,endColumn:i&&i.column,endLine:i&&i.line,line:s.line,url:o.toString()};if("file:"===o.protocol){if(r5)u.file=r5(o);else throw Error("file: protocol is not available in this PostCSS build")}var c=a.sourceContentFor(s.source);return c&&(u.source=c),u}},{key:"toJSON",value:function(){for(var e={},t=0,r=["hasBOM","css","file","id"];t1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)try{for(var u,c=i[Symbol.iterator]();!(o=(u=c.next()).done);o=!0)u.value.raws.before=t.raws.before}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}}return i}},{key:"removeChild",value:function(e,t){var n=this.index(e);return!t&&0===n&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[n].raws.before),rN(tK(r.prototype),"removeChild",this).call(this,e)}},{key:"toResult",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new eD(new eL,this,e).stringify()}}]),r}(rT);nJ.registerLazyResult=function(e){eD=e},nJ.registerProcessor=function(e){eL=e},nZ=nJ,nJ.default=nJ,rT.registerRoot(nJ);var nQ={},nX={},n0={comma:function(e){return n0.split(e,[","],!0)},space:function(e){return n0.split(e,[" ","\n"," "])},split:function(e,t,r){var n=[],i="",o=!1,a=0,s=!1,u="",c=!1,l=!0,f=!1,d=void 0;try{for(var h,p=e[Symbol.iterator]();!(l=(h=p.next()).done);l=!0){var m=h.value;c?c=!1:"\\"===m?c=!0:s?m===u&&(s=!1):'"'===m||"'"===m?(s=!0,u=m):"("===m?a+=1:")"===m?a>0&&(a-=1):0===a&&t.includes(m)&&(o=!0),o?(""!==i&&n.push(i.trim()),i="",o=!1):i+=m}}catch(e){f=!0,d=e}finally{try{l||null==p.return||p.return()}finally{if(f)throw d}}return(r||""!==i)&&n.push(i.trim()),n}};nX=n0,n0.default=n0;var n1=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="rule",n.nodes||(n.nodes=[]),n}return td(r,[{key:"selectors",get:function(){return nX.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}}]),r}(rT);function n3(e,t){if(Array.isArray(e))return e.map(function(e){return n3(e)});var r=e.inputs,n=rJ(e,["inputs"]);if(r){t=[];var i=!0,o=!1,a=void 0;try{for(var s,u=r[Symbol.iterator]();!(i=(s=u.next()).done);i=!0){var c=s.value,l=re(tG({},c),{__proto__:rQ.prototype});l.map&&(l.map=re(tG({},l.map),{__proto__:r6.prototype})),t.push(l)}}catch(e){o=!0,a=e}finally{try{i||null==u.return||u.return()}finally{if(o)throw a}}}if(n.nodes&&(n.nodes=e.nodes.map(function(e){return n3(e,t)})),n.source){var f=n.source,d=f.inputId,h=rJ(f,["inputId"]);n.source=h,null!=d&&(n.source.input=t[d])}if("root"===n.type)return new nZ(n);if("decl"===n.type)return new rH(n);if("rule"===n.type)return new nQ(n);if("comment"===n.type)return new rO(n);if("atrule"===n.type)return new rI(n);throw Error("Unknown node type: "+e.type)}nQ=n1,n1.default=n1,rT.registerRule(n1),rZ=n3,n3.default=n3;var n2={};function n5(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r,n,i=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=i){var o=[],a=!0,s=!1;try{for(i=i.call(e);!(a=(r=i.next()).done)&&(o.push(r.value),!t||o.length!==t);a=!0);}catch(e){s=!0,n=e}finally{try{a||null==i.return||i.return()}finally{if(s)throw n}}return o}}(e,t)||rk(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var eK=(eH("h7Cmf"),eH("h7Cmf")),n8={},n6=rR.dirname,n4=rR.relative,n9=rR.resolve,n7=rR.sep,ie=rR.SourceMapConsumer,it=rR.SourceMapGenerator,ir=rR.pathToFileURL,ii=!!(ie&&it),io=!!(n6&&n9&&n4&&n7);n8=/*#__PURE__*/function(){function e(t,r,n,i){tl(this,e),this.stringify=t,this.mapOpts=n.map||{},this.root=r,this.opts=n,this.css=i,this.originalCSS=i,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}return td(e,[{key:"addAnnotation",value:function(){e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";var e,t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}},{key:"applyPrevMaps",value:function(){var e=!0,t=!1,r=void 0;try{for(var n,i=this.previous()[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.toUrl(this.path(o.file)),s=o.root||n6(o.file),u=void 0;!1===this.mapOpts.sourcesContent?(u=new ie(o.text)).sourcesContent&&(u.sourcesContent=null):u=o.consumer(),this.map.applySourceMap(u,a,this.toUrl(this.path(s)))}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}}},{key:"clearAnnotation",value:function(){if(!1!==this.mapOpts.annotation){if(this.root)for(var e,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t);else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}}},{key:"generate",value:function(){if(this.clearAnnotation(),io&&ii&&this.isMap())return this.generateMap();var e="";return this.stringify(this.root,function(t){e+=t}),[e]}},{key:"generateMap",value:function(){if(this.root)this.generateString();else if(1===this.previous().length){var e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=it.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new it({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return(this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline())?[this.css]:[this.css,this.map]}},{key:"generateString",value:function(){var e,t,r=this;this.css="",this.map=new it({file:this.outputFile(),ignoreInvalidMapping:!0});var n=1,i=1,o="",a={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,function(s,u,c){if(r.css+=s,u&&"end"!==c&&(a.generated.line=n,a.generated.column=i-1,u.source&&u.source.start?(a.source=r.sourcePath(u),a.original.line=u.source.start.line,a.original.column=u.source.start.column-1):(a.source=o,a.original.line=1,a.original.column=0),r.map.addMapping(a)),(t=s.match(/\n/g))?(n+=t.length,e=s.lastIndexOf("\n"),i=s.length-e):i+=s.length,u&&"start"!==c){var l=u.parent||{raws:{}};(!("decl"===u.type||"atrule"===u.type&&!u.nodes)||u!==l.last||l.raws.semicolon)&&(u.source&&u.source.end?(a.source=r.sourcePath(u),a.original.line=u.source.end.line,a.original.column=u.source.end.column-1,a.generated.line=n,a.generated.column=i-2):(a.source=o,a.original.line=1,a.original.column=0,a.generated.line=n,a.generated.column=i-1),r.map.addMapping(a))}})}},{key:"isAnnotation",value:function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some(function(e){return e.annotation}))}},{key:"isInline",value:function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some(function(e){return e.inline}))}},{key:"isMap",value:function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}},{key:"isSourcesContent",value:function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some(function(e){return e.withContent()})}},{key:"outputFile",value:function(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}},{key:"path",value:function(e){if(this.mapOpts.absolute||60===e.charCodeAt(0)||/^\w+:\/\//.test(e))return e;var t=this.memoizedPaths.get(e);if(t)return t;var r=this.opts.to?n6(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(r=n6(n9(r,this.mapOpts.annotation)));var n=n4(r,e);return this.memoizedPaths.set(e,n),n}},{key:"previous",value:function(){var e=this;if(!this.previousMaps){if(this.previousMaps=[],this.root)this.root.walk(function(t){if(t.source&&t.source.input.map){var r=t.source.input.map;e.previousMaps.includes(r)||e.previousMaps.push(r)}});else{var t=new rQ(this.originalCSS,this.opts);t.map&&this.previousMaps.push(t.map)}}return this.previousMaps}},{key:"setSourcesContent",value:function(){var e=this,t={};if(this.root)this.root.walk(function(r){if(r.source){var n=r.source.input.from;if(n&&!t[n]){t[n]=!0;var i=e.usesFileUrls?e.toFileUrl(n):e.toUrl(e.path(n));e.map.setSourceContent(i,r.source.input.css)}}});else if(this.css){var r=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(r,this.css)}}},{key:"sourcePath",value:function(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}},{key:"toBase64",value:function(e){return no?no.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}},{key:"toFileUrl",value:function(e){var t=this.memoizedFileURLs.get(e);if(t)return t;if(ir){var r=ir(e).toString();return this.memoizedFileURLs.set(e,r),r}throw Error("`map.absolute` option is not available in this PostCSS build")}},{key:"toUrl",value:function(e){var t=this.memoizedURLs.get(e);if(t)return t;"\\"===n7&&(e=e.replace(/\\/g,"/"));var r=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,r),r}}]),e}();var ia={},is={},iu={},ic=/[\t\n\f\r "#'()/;[\\\]{}]/g,il=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,id=/.[\r\n"'(/\\]/,ih=/[\da-f]/i;iu=function(e){var t,r,n,i,o,a,s,u,c,l,f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},d=e.css.valueOf(),h=f.ignoreErrors,p=d.length,m=0,v=[],g=[];function y(t){throw e.error("Unclosed "+t,m)}return{back:function(e){g.push(e)},endOfFile:function(){return 0===g.length&&m>=p},nextToken:function(e){if(g.length)return g.pop();if(!(m>=p)){var f=!!e&&e.ignoreUnclosed;switch(t=d.charCodeAt(m)){case 10:case 32:case 9:case 13:case 12:i=m;do i+=1,t=d.charCodeAt(i);while(32===t||10===t||9===t||13===t||12===t)a=["space",d.slice(m,i)],m=i-1;break;case 91:case 93:case 123:case 125:case 58:case 59:case 41:var b=String.fromCharCode(t);a=[b,b,m];break;case 40:if(l=v.length?v.pop()[1]:"",c=d.charCodeAt(m+1),"url"===l&&39!==c&&34!==c&&32!==c&&10!==c&&9!==c&&12!==c&&13!==c){i=m;do{if(s=!1,-1===(i=d.indexOf(")",i+1))){if(h||f){i=m;break}y("bracket")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["brackets",d.slice(m,i+1),m,i],m=i}else i=d.indexOf(")",m+1),r=d.slice(m,i+1),-1===i||id.test(r)?a=["(","(",m]:(a=["brackets",r,m,i],m=i);break;case 39:case 34:o=39===t?"'":'"',i=m;do{if(s=!1,-1===(i=d.indexOf(o,i+1))){if(h||f){i=m+1;break}y("string")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["string",d.slice(m,i+1),m,i],m=i;break;case 64:ic.lastIndex=m+1,ic.test(d),i=0===ic.lastIndex?d.length-1:ic.lastIndex-2,a=["at-word",d.slice(m,i+1),m,i],m=i;break;case 92:for(i=m,n=!0;92===d.charCodeAt(i+1);)i+=1,n=!n;if(t=d.charCodeAt(i+1),n&&47!==t&&32!==t&&10!==t&&9!==t&&13!==t&&12!==t&&(i+=1,ih.test(d.charAt(i)))){for(;ih.test(d.charAt(i+1));)i+=1;32===d.charCodeAt(i+1)&&(i+=1)}a=["word",d.slice(m,i+1),m,i],m=i;break;default:47===t&&42===d.charCodeAt(m+1)?(0===(i=d.indexOf("*/",m+2)+1)&&(h||f?i=d.length:y("comment")),a=["comment",d.slice(m,i+1),m,i]):(il.lastIndex=m+1,il.test(d),i=0===il.lastIndex?d.length-1:il.lastIndex-2,a=["word",d.slice(m,i+1),m,i],v.push(a)),m=i}return m++,a}},position:function(){return m}}};var ip={empty:!0,space:!0};function im(e,t){var r=new rQ(e,t),n=new is(r);try{n.parse()}catch(e){throw e}return n.root}is=/*#__PURE__*/function(){function e(t){tl(this,e),this.input=t,this.root=new nZ,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{column:1,line:1,offset:0}}}return td(e,[{key:"atrule",value:function(e){var t,r,n,i=new rI;i.name=e[1].slice(1),""===i.name&&this.unnamedAtrule(i,e),this.init(i,e[2]);for(var o=!1,a=!1,s=[],u=[];!this.tokenizer.endOfFile();){if("("===(t=(e=this.tokenizer.nextToken())[0])||"["===t?u.push("("===t?")":"]"):"{"===t&&u.length>0?u.push("}"):t===u[u.length-1]&&u.pop(),0===u.length){if(";"===t){i.source.end=this.getPosition(e[2]),i.source.end.offset++,this.semicolon=!0;break}if("{"===t){a=!0;break}if("}"===t){if(s.length>0){for(n=s.length-1,r=s[n];r&&"space"===r[0];)r=s[--n];r&&(i.source.end=this.getPosition(r[3]||r[2]),i.source.end.offset++)}this.end(e);break}s.push(e)}else s.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}i.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(i.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(i,"params",s),o&&(e=s[s.length-1],i.source.end=this.getPosition(e[3]||e[2]),i.source.end.offset++,this.spaces=i.raws.between,i.raws.between="")):(i.raws.afterName="",i.params=""),a&&(i.nodes=[],this.current=i)}},{key:"checkMissedSemicolon",value:function(e){var t,r=this.colon(e);if(!1!==r){for(var n=0,i=r-1;i>=0&&("space"===(t=e[i])[0]||2!==(n+=1));i--);throw this.input.error("Missed semicolon","word"===t[0]?t[3]+1:t[2])}}},{key:"colon",value:function(e){var t=0,r=!0,n=!1,i=void 0;try{for(var o,a,s,u=e.entries()[Symbol.iterator]();!(r=(s=u.next()).done);r=!0){var c=n5(s.value,2),l=c[0],f=c[1];if(a=f[0],"("===a&&(t+=1),")"===a&&(t-=1),0===t&&":"===a){if(o){if("word"===o[0]&&"progid"===o[1])continue;return l}this.doubleColon(f)}o=f}}catch(e){n=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(n)throw i}}return!1}},{key:"comment",value:function(e){var t=new rO;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;var r=e[1].slice(2,-2);if(/^\s*$/.test(r))t.text="",t.raws.left=r,t.raws.right="";else{var n=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=n[2],t.raws.left=n[1],t.raws.right=n[3]}}},{key:"createTokenizer",value:function(){this.tokenizer=iu(this.input)}},{key:"decl",value:function(e,t){var r,n,i=new rH;this.init(i,e[0][2]);var o=e[e.length-1];for(";"===o[0]&&(this.semicolon=!0,e.pop()),i.source.end=this.getPosition(o[3]||o[2]||function(e){for(var t=e.length-1;t>=0;t--){var r=e[t],n=r[3]||r[2];if(n)return n}}(e)),i.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),i.raws.before+=e.shift()[1];for(i.source.start=this.getPosition(e[0][2]),i.prop="";e.length;){var a=e[0][0];if(":"===a||"space"===a||"comment"===a)break;i.prop+=e.shift()[1]}for(i.raws.between="";e.length;){if(":"===(r=e.shift())[0]){i.raws.between+=r[1];break}"word"===r[0]&&/\w/.test(r[1])&&this.unknownWord([r]),i.raws.between+=r[1]}("_"===i.prop[0]||"*"===i.prop[0])&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1));for(var s=[];e.length&&("space"===(n=e[0][0])||"comment"===n);)s.push(e.shift());this.precheckMissedSemicolon(e);for(var u=e.length-1;u>=0;u--){if("!important"===(r=e[u])[1].toLowerCase()){i.important=!0;var c=this.stringFrom(e,u);" !important"!==(c=this.spacesFromEnd(e)+c)&&(i.raws.important=c);break}if("important"===r[1].toLowerCase()){for(var l=e.slice(0),f="",d=u;d>0;d--){var h=l[d][0];if(f.trim().startsWith("!")&&"space"!==h)break;f=l.pop()[1]+f}f.trim().startsWith("!")&&(i.important=!0,i.raws.important=f,e=l)}if("space"!==r[0]&&"comment"!==r[0])break}e.some(function(e){return"space"!==e[0]&&"comment"!==e[0]})&&(i.raws.between+=s.map(function(e){return e[1]}).join(""),s=[]),this.raw(i,"value",s.concat(e),t),i.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}},{key:"doubleColon",value:function(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}},{key:"emptyRule",value:function(e){var t=new nQ;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}},{key:"end",value:function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}},{key:"endFile",value:function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}},{key:"freeSemicolon",value:function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}},{key:"getPosition",value:function(e){var t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}},{key:"init",value:function(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}},{key:"other",value:function(e){for(var t=!1,r=null,n=!1,i=null,o=[],a=e[1].startsWith("--"),s=[],u=e;u;){if(r=u[0],s.push(u),"("===r||"["===r)i||(i=u),o.push("("===r?")":"]");else if(a&&n&&"{"===r)i||(i=u),o.push("}");else if(0===o.length){if(";"===r){if(n){this.decl(s,a);return}break}if("{"===r){this.rule(s);return}if("}"===r){this.tokenizer.back(s.pop()),t=!0;break}":"===r&&(n=!0)}else r===o[o.length-1]&&(o.pop(),0===o.length&&(i=null));u=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),o.length>0&&this.unclosedBracket(i),t&&n){if(!a)for(;s.length&&("space"===(u=s[s.length-1][0])||"comment"===u);)this.tokenizer.back(s.pop());this.decl(s,a)}else this.unknownWord(s)}},{key:"parse",value:function(){for(var e;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}},{key:"precheckMissedSemicolon",value:function(){}},{key:"raw",value:function(e,t,r,n){for(var i,o,a,s,u=r.length,c="",l=!0,f=0;f1&&void 0!==arguments[1]?arguments[1]:{};if(tl(this,e),this.type="warning",this.text=t,r.node&&r.node.source){var n=r.node.rangeBy(r);this.line=n.start.line,this.column=n.start.column,this.endLine=n.end.line,this.endColumn=n.end.column}for(var i in r)this[i]=r[i]}return td(e,[{key:"toString",value:function(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}]),e}();ig=iy,iy.default=iy;var ib=/*#__PURE__*/function(){function e(t,r,n){tl(this,e),this.processor=t,this.messages=[],this.root=r,this.opts=n,this.css=void 0,this.map=void 0}return td(e,[{key:"toString",value:function(){return this.css}},{key:"warn",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!t.plugin&&this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var r=new ig(e,t);return this.messages.push(r),r}},{key:"warnings",value:function(){return this.messages.filter(function(e){return"warning"===e.type})}},{key:"content",get:function(){return this.css}}]),e}();iv=ib,ib.default=ib;var iw={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},ix={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},iE={Once:!0,postcssPlugin:!0,prepare:!0};function iS(e){return"object"==typeof e&&"function"==typeof e.then}function ik(e){var t=!1,r=iw[e.type];return("decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append)?[r,r+"-"+t,0,r+"Exit",r+"Exit-"+t]:t?[r,r+"-"+t,r+"Exit",r+"Exit-"+t]:e.append?[r,0,r+"Exit"]:[r,r+"Exit"]}function iA(e){return{eventIndex:0,events:"document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:ik(e),iterator:0,node:e,visitorIndex:0,visitors:[]}}function iI(e){return e[ex]=!1,e.nodes&&e.nodes.forEach(function(e){return iI(e)}),e}var iN={},iT=/*#__PURE__*/function(){function e(t,r,n){var i,o=this;if(tl(this,e),this.stringified=!1,this.processed=!1,"object"==typeof r&&null!==r&&("root"===r.type||"document"===r.type))i=iI(r);else if(r instanceof e||r instanceof iv)i=iI(r.root),r.map&&(void 0===n.map&&(n.map={}),n.map.inline||(n.map.inline=!1),n.map.prev=r.map);else{var a=ia;n.syntax&&(a=n.syntax.parse),n.parser&&(a=n.parser),a.parse&&(a=a.parse);try{i=a(r,n)}catch(e){this.processed=!0,this.error=e}i&&!i[eE]&&rT.rebuild(i)}this.result=new iv(t,i,n),this.helpers=re(tG({},iN),{postcss:iN,result:this.result}),this.plugins=this.processor.plugins.map(function(e){return"object"==typeof e&&e.prepare?tG({},e,e.prepare(o.result)):e})}return td(e,[{key:"async",value:function(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}},{key:"catch",value:function(e){return this.async().catch(e)}},{key:"finally",value:function(e){return this.async().then(e,e)}},{key:"getAsyncError",value:function(){throw Error("Use process(css).then(cb) to work with async plugins")}},{key:"handleError",value:function(e,t){var r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?r.postcssVersion:(e.plugin=r.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}},{key:"prepareVisitors",value:function(){var e=this;this.listeners={};var t=function(t,r,n){e.listeners[r]||(e.listeners[r]=[]),e.listeners[r].push([t,n])},r=!0,n=!1,i=void 0;try{for(var o,a=this.plugins[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("object"==typeof s)for(var u in s){if(!ix[u]&&/^[A-Z]/.test(u))throw Error("Unknown event ".concat(u," in ").concat(s.postcssPlugin,". ")+"Try to update PostCSS (".concat(this.processor.version," now)."));if(!iE[u]){if("object"==typeof s[u])for(var c in s[u])t(s,"*"===c?u:u+"-"+c.toLowerCase(),s[u][c]);else"function"==typeof s[u]&&t(s,u,s[u])}}}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}this.hasListener=Object.keys(this.listeners).length>0}},{key:"runAsync",value:function(){var e=this;return eW(function(){var t,r,n,i,o,a,s,u,c,l,f,d,h,p,m,v;return(0,eK.__generator)(this,function(g){switch(g.label){case 0:e.plugin=0,t=0,g.label=1;case 1:if(!(t0))return[3,13];if(!iS(s=e.visitTick(a)))return[3,12];g.label=9;case 9:return g.trys.push([9,11,,12]),[4,s];case 10:return g.sent(),[3,12];case 11:throw u=g.sent(),c=a[a.length-1].node,e.handleError(u,c);case 12:return[3,8];case 13:return[3,7];case 14:if(l=!0,f=!1,d=void 0,!e.listeners.OnceExit)return[3,22];g.label=15;case 15:g.trys.push([15,20,21,22]),h=function(){var t,r,n,i;return(0,eK.__generator)(this,function(a){switch(a.label){case 0:r=(t=n5(m.value,2))[0],n=t[1],e.result.lastPlugin=r,a.label=1;case 1:if(a.trys.push([1,6,,7]),"document"!==o.type)return[3,3];return[4,Promise.all(o.nodes.map(function(t){return n(t,e.helpers)}))];case 2:return a.sent(),[3,5];case 3:return[4,n(o,e.helpers)];case 4:a.sent(),a.label=5;case 5:return[3,7];case 6:throw i=a.sent(),e.handleError(i);case 7:return[2]}})},p=e.listeners.OnceExit[Symbol.iterator](),g.label=16;case 16:if(l=(m=p.next()).done)return[3,19];return[5,(0,eK.__values)(h())];case 17:g.sent(),g.label=18;case 18:return l=!0,[3,16];case 19:return[3,22];case 20:return v=g.sent(),f=!0,d=v,[3,22];case 21:try{l||null==p.return||p.return()}finally{if(f)throw d}return[7];case 22:return e.processed=!0,[2,e.stringify()]}})})()}},{key:"runOnRoot",value:function(e){var t=this;this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){var r=this.result.root.nodes.map(function(r){return e.Once(r,t.helpers)});if(iS(r[0]))return Promise.all(r);return r}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}},{key:"stringify",value:function(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=rj;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var r=new n8(t,this.result.root,this.result.opts).generate();return this.result.css=r[0],this.result.map=r[1],this.result}},{key:"sync",value:function(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();var e=!0,t=!1,r=void 0;try{for(var n,i=this.plugins[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.runOnRoot(o);if(iS(a))throw this.getAsyncError()}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}if(this.prepareVisitors(),this.hasListener){for(var s=this.result.root;!s[ex];)s[ex]=!0,this.walkSync(s);if(this.listeners.OnceExit){var u=!0,c=!1,l=void 0;if("document"===s.type)try{for(var f,d=s.nodes[Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var h=f.value;this.visitSync(this.listeners.OnceExit,h)}}catch(e){c=!0,l=e}finally{try{u||null==d.return||d.return()}finally{if(c)throw l}}else this.visitSync(this.listeners.OnceExit,s)}}return this.result}},{key:"then",value:function(e,t){return this.async().then(e,t)}},{key:"toString",value:function(){return this.css}},{key:"visitSync",value:function(e,t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=n5(o.value,2),u=s[0],c=s[1];this.result.lastPlugin=u;var l=void 0;try{l=c(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(iS(l))throw this.getAsyncError()}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}},{key:"visitTick",value:function(e){var t=e[e.length-1],r=t.node,n=t.visitors;if("root"!==r.type&&"document"!==r.type&&!r.parent){e.pop();return}if(n.length>0&&t.visitorIndex0&&void 0!==arguments[0]?arguments[0]:[];tl(this,e),this.version="8.4.47",this.plugins=this.normalize(t)}return td(e,[{key:"normalize",value:function(e){var t=[],r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if(!0===s.postcss?s=s():s.postcss&&(s=s.postcss),"object"==typeof s&&Array.isArray(s.plugins))t=t.concat(s.plugins);else if("object"==typeof s&&s.postcssPlugin)t.push(s);else if("function"==typeof s)t.push(s);else if("object"==typeof s&&(s.parse||s.stringify));else throw Error(s+" is not a PostCSS plugin")}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}return t}},{key:"process",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.plugins.length||t.parser||t.stringifier||t.syntax?new n2(this,e,t):new i_(this,e,t)}},{key:"use",value:function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}]),e}();function iD(){for(var e=arguments.length,t=Array(e),r=0;r]+$/;function iF(e,t,r){if(null==e)return"";"number"==typeof e&&(e=e.toString());var n,i,o,a,s,u,c,l,f,d="",h="";function p(e,t){var r=this;this.tag=e,this.attribs=t||{},this.tagPosition=d.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(s.length){var e=s[s.length-1];e.text+=r.text}},this.updateParentNodeMediaChildren=function(){s.length&&iR.includes(this.tag)&&s[s.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},iF.defaults,t)).parser=Object.assign({},iV,t.parser);var m=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};iB.forEach(function(e){m(e)&&!t.allowVulnerableTags&&console.warn("\n\n⚠️ Your `allowedTags` option includes, `".concat(e,"`, which is inherently\nvulnerable to XSS attacks. Please remove it from `allowedTags`.\nOr, to disable this warning, add the `allowVulnerableTags` option\nand ensure you are accounting for this risk.\n\n"))});var v=t.nonTextTags||["script","style","textarea","option"];t.allowedAttributes&&(n={},i={},iq(t.allowedAttributes,function(e,t){n[t]=[];var r=[];e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rl(e).replace(/\\\*/g,".*")):n[t].push(e)}),r.length&&(i[t]=RegExp("^("+r.join("|")+")$"))}));var g={},y={},b={};iq(t.allowedClasses,function(e,t){if(n&&(iM(n,t)||(n[t]=[]),n[t].push("class")),g[t]=e,Array.isArray(e)){var r=[];g[t]=[],b[t]=[],e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rl(e).replace(/\\\*/g,".*")):e instanceof RegExp?b[t].push(e):g[t].push(e)}),r.length&&(y[t]=RegExp("^("+r.join("|")+")$"))}});var w={};iq(t.transformTags,function(e,t){var r;"function"==typeof e?r=e:"string"==typeof e&&(r=iF.simpleTransform(e)),"*"===t?o=r:w[t]=r});var x=!1;S();var E=new tV({onopentag:function(e,r){if(t.enforceHtmlBoundary&&"html"===e&&S(),l){f++;return}var E,T=new p(e,r);s.push(T);var O=!1,_=!!T.text;if(iM(w,e)&&(E=w[e](e,r),T.attribs=r=E.attribs,void 0!==E.text&&(T.innerText=E.text),e!==E.tagName&&(T.name=e=E.tagName,c[a]=E.tagName)),o&&(E=o(e,r),T.attribs=r=E.attribs,e!==E.tagName&&(T.name=e=E.tagName,c[a]=E.tagName)),(!m(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(var t in e)if(iM(e,t))return!1;return!0}(u)||null!=t.nestingLimit&&a>=t.nestingLimit)&&(O=!0,u[a]=!0,("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&-1!==v.indexOf(e)&&(l=!0,f=1),u[a]=!0),a++,O){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return;h=d,d=""}d+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(T.innerText=""),(!n||iM(n,e)||n["*"])&&iq(r,function(r,o){if(!ij.test(o)||""===r&&!t.allowedEmptyAttributes.includes(o)&&(t.nonBooleanAttributes.includes(o)||t.nonBooleanAttributes.includes("*"))){delete T.attribs[o];return}var a=!1;if(!n||iM(n,e)&&-1!==n[e].indexOf(o)||n["*"]&&-1!==n["*"].indexOf(o)||iM(i,e)&&i[e].test(o)||i["*"]&&i["*"].test(o))a=!0;else if(n&&n[e]){var s=!0,u=!1,c=void 0;try{for(var l,f=n[e][Symbol.iterator]();!(s=(l=f.next()).done);s=!0){var h=l.value;if(rd(h)&&h.name&&h.name===o){a=!0;var p="";if(!0===h.multiple){var m=r.split(" "),v=!0,w=!1,x=void 0;try{for(var E,S=m[Symbol.iterator]();!(v=(E=S.next()).done);v=!0){var O=E.value;-1!==h.values.indexOf(O)&&(""===p?p=O:p+=" "+O)}}catch(e){w=!0,x=e}finally{try{v||null==S.return||S.return()}finally{if(w)throw x}}}else h.values.indexOf(r)>=0&&(p=r);r=p}}}catch(e){u=!0,c=e}finally{try{s||null==f.return||f.return()}finally{if(u)throw c}}}if(a){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(o)&&A(e,r)){delete T.attribs[o];return}if("script"===e&&"src"===o){var _=!0;try{var C=I(r);if(t.allowedScriptHostnames||t.allowedScriptDomains){var P=(t.allowedScriptHostnames||[]).find(function(e){return e===C.url.hostname}),D=(t.allowedScriptDomains||[]).find(function(e){return C.url.hostname===e||C.url.hostname.endsWith(".".concat(e))});_=P||D}}catch(e){_=!1}if(!_){delete T.attribs[o];return}}if("iframe"===e&&"src"===o){var L=!0;try{var R=I(r);if(R.isRelativeUrl)L=iM(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){var B=(t.allowedIframeHostnames||[]).find(function(e){return e===R.url.hostname}),q=(t.allowedIframeDomains||[]).find(function(e){return R.url.hostname===e||R.url.hostname.endsWith(".".concat(e))});L=B||q}}catch(e){L=!1}if(!L){delete T.attribs[o];return}}if("srcset"===o)try{var M=rx(r);if(M.forEach(function(e){A("srcset",e.url)&&(e.evil=!0)}),(M=iU(M,function(e){return!e.evil})).length)r=iU(M,function(e){return!e.evil}).map(function(e){if(!e.url)throw Error("URL missing");return e.url+(e.w?" ".concat(e.w,"w"):"")+(e.h?" ".concat(e.h,"h"):"")+(e.d?" ".concat(e.d,"x"):"")}).join(", "),T.attribs[o]=r;else{delete T.attribs[o];return}}catch(e){delete T.attribs[o];return}if("class"===o){var U=g[e],j=g["*"],F=y[e],V=b[e],$=b["*"],H=[F,y["*"]].concat(V,$).filter(function(e){return e});if(!(r=U&&j?N(r,rh(U,j),H):N(r,U||j,H)).length){delete T.attribs[o];return}}if("style"===o){if(t.parseStyleAttributes)try{var z=iL(e+" {"+r+"}",{map:!1});if(r=(function(e,t){if(!t)return e;var r,n=e.nodes[0];return(r=t[n.selector]&&t["*"]?rh(t[n.selector],t["*"]):t[n.selector]||t["*"])&&(e.nodes[0].nodes=n.nodes.reduce(function(e,t){return iM(r,t.prop)&&r[t.prop].some(function(e){return e.test(t.value)})&&e.push(t),e},[])),e})(z,t.allowedStyles).nodes[0].nodes.reduce(function(e,t){return e.push("".concat(t.prop,":").concat(t.value).concat(t.important?" !important":"")),e},[]).join(";"),0===r.length){delete T.attribs[o];return}}catch(t){"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+r+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),delete T.attribs[o];return}else if(t.allowedStyles)throw Error("allowedStyles option cannot be used together with parseStyleAttributes: false.")}d+=" "+o,r&&r.length?d+='="'+k(r,!0)+'"':t.allowedEmptyAttributes.includes(o)&&(d+='=""')}else delete T.attribs[o]}),-1!==t.selfClosing.indexOf(e)?d+=" />":(d+=">",!T.innerText||_||t.textFilter||(d+=k(T.innerText),x=!0)),O&&(d=h+k(d),h="")},ontext:function(e){if(!l){var r,n=s[s.length-1];if(n&&(r=n.tag,e=void 0!==n.innerText?n.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||m(r)){if(("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&("script"===r||"style"===r))d+=e;else{var i=k(e,!1);t.textFilter&&!x?d+=t.textFilter(i,r):x||(d+=i)}}else e="";if(s.length){var o=s[s.length-1];o.text+=e}}},onclosetag:function(e,r){if(l){if(--f)return;l=!1}var n=s.pop();if(n){if(n.tag!==e){s.push(n);return}l=!!t.enforceHtmlBoundary&&"html"===e;var i=u[--a];if(i){if(delete u[a],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){n.updateParentNodeText();return}h=d,d=""}if(c[a]&&(e=c[a],delete c[a]),t.exclusiveFilter&&t.exclusiveFilter(n)){d=d.substr(0,n.tagPosition);return}if(n.updateParentNodeMediaChildren(),n.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||r&&!m(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0){i&&(d=h,h="");return}d+="",i&&(d=h+k(d),h=""),x=!1}}},t.parser);return E.write(e),E.end(),d;function S(){d="",a=0,s=[],u={},c={},l=!1,f=0}function k(e,r){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,""")),e}function A(e,r){for(r=r.replace(/[\x00-\x20]+/g,"");;){var n=r.indexOf("",n+4);if(-1===i)break;r=r.substring(0,n)+r.substring(i+3)}var o=r.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!o)return!!r.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;var a=o[1].toLowerCase();return iM(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(a):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(a)}function I(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw Error("relative: exploit attempt");for(var t="relative://relative-site",r=0;r<100;r++)t+="/".concat(r);var n=new URL(e,t);return{isRelativeUrl:n&&"relative-site"===n.hostname&&"relative:"===n.protocol,url:n}}function N(e,t,r){return t?(e=e.split(/\s+/)).filter(function(e){return -1!==t.indexOf(e)||r.some(function(t){return t.test(e)})}).join(" "):e}}var iV={decodeEntities:!0};iF.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},iF.simpleTransform=function(e,t,r){return r=void 0===r||r,t=t||{},function(n,i){var o;if(r)for(o in t)i[o]=t[o];else i=t;return{tagName:e,attribs:i}}};var i$={};r="millisecond",n="second",i="minute",o="hour",a="week",s="month",u="quarter",c="year",l="date",f="Invalid Date",d=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,p=function(e,t,r){var n=String(e);return!n||n.length>=t?e:""+Array(t+1-n.length).join(r)+e},(v={})[m="en"]={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],r=e%100;return"["+e+(t[(r-20)%10]||t[r]||"th")+"]"}},g="$isDayjsObject",y=function(e){return e instanceof E||!(!e||!e[g])},b=function e(t,r,n){var i;if(!t)return m;if("string"==typeof t){var o=t.toLowerCase();v[o]&&(i=o),r&&(v[o]=r,i=o);var a=t.split("-");if(!i&&a.length>1)return e(a[0])}else{var s=t.name;v[s]=t,i=s}return!n&&i&&(m=i),i||!n&&m},w=function(e,t){if(y(e))return e.clone();var r="object"==typeof t?t:{};return r.date=e,r.args=arguments,new E(r)},(x={s:p,z:function(e){var t=-e.utcOffset(),r=Math.abs(t);return(t<=0?"+":"-")+p(Math.floor(r/60),2,"0")+":"+p(r%60,2,"0")},m:function e(t,r){if(t.date()=u)return v;n=r(f),i=[],","===n.slice(-1)?(n=n.replace(d,""),g()):function(){for(r(c),o="",a="in descriptor";;){if(s=e.charAt(m),"in descriptor"===a){if(t(s))o&&(i.push(o),o="",a="after descriptor");else if(","===s){m+=1,o&&i.push(o),g();return}else if("("===s)o+=s,a="in parens";else if(""===s){o&&i.push(o),g();return}else o+=s}else if("in parens"===a){if(")"===s)o+=s,a="in descriptor";else if(""===s){i.push(o),g();return}else o+=s}else if("after descriptor"===a){if(t(s));else if(""===s){g();return}else a="in descriptor",m-=1}m+=1}}()}function g(){var t,r,o,a,s,u,c,l,f,d=!1,m={};for(a=0;ae.length)&&(t=e.length);for(var r=0,n=Array(t);r",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}},{key:"showSourceCode",value:function(e){var t=this;if(!this.source)return"";var r=this.source;null==e&&(e=rP.isColorSupported);var n=function(e){return e},i=function(e){return e},o=function(e){return e};if(e){var a=rP.createColors(!0),s=a.bold,u=a.gray,c=a.red;i=function(e){return s(c(e))},n=function(e){return u(e)},rB&&(o=function(e){return rB(e)})}var l=r.split(/\r?\n/),f=Math.max(this.line-3,0),d=Math.min(this.line+2,l.length),h=String(d).length;return l.slice(f,d).map(function(e,r){var a=f+1+r,s=" "+(" "+a).slice(-h)+" | ";if(a===t.line){if(e.length>160){var u=Math.max(0,t.column-20),c=Math.max(t.column+20,t.endColumn+20),l=e.slice(u,c),d=n(s.replace(/\d/g," "))+e.slice(0,Math.min(t.column-1,19)).replace(/[^\t]/g," ");return i(">")+n(s)+o(l)+"\n "+d+i("^")}var p=n(s.replace(/\d/g," "))+e.slice(0,t.column-1).replace(/[^\t]/g," ");return i(">")+n(s)+o(e)+"\n "+p+i("^")}return" "+n(s)+o(e)}).join("\n")}},{key:"toString",value:function(){var e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}]),r}(tJ(Error));rC=rR,rR.default=rR;var rM={},rq={after:"\n",beforeClose:"\n",beforeComment:"\n",beforeDecl:"\n",beforeOpen:" ",beforeRule:"\n",colon:": ",commentLeft:" ",commentRight:" ",emptyBody:"",indent:" ",semicolon:!1},rU=/*#__PURE__*/function(){function e(t){tl(this,e),this.builder=t}return td(e,[{key:"atrule",value:function(e,t){var r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{var i=(e.raws.between||"")+(t?";":"");this.builder(r+n+i,e)}}},{key:"beforeAfter",value:function(e,t){r="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");for(var r,n=e.parent,i=0;n&&"root"!==n.type;)i+=1,n=n.parent;if(r.includes("\n")){var o=this.raw(e,null,"indent");if(o.length)for(var a=0;a0&&"comment"===e.nodes[t].type;)t-=1;for(var r=this.raw(e,"semicolon"),n=0;n0&&void 0!==e.raws.after)return(t=e.raws.after).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawBeforeComment",value:function(e,t){var r;return e.walkComments(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeDecl",value:function(e,t){var r;return e.walkDecls(function(e){if(void 0!==e.raws.before)return(r=e.raws.before).includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1}),void 0===r?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}},{key:"rawBeforeOpen",value:function(e){var t;return e.walk(function(e){if("decl"!==e.type&&void 0!==(t=e.raws.between))return!1}),t}},{key:"rawBeforeRule",value:function(e){var t;return e.walk(function(r){if(r.nodes&&(r.parent!==e||e.first!==r)&&void 0!==r.raws.before)return(t=r.raws.before).includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}},{key:"rawColon",value:function(e){var t;return e.walkDecls(function(e){if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1}),t}},{key:"rawEmptyBody",value:function(e){var t;return e.walk(function(e){if(e.nodes&&0===e.nodes.length&&void 0!==(t=e.raws.after))return!1}),t}},{key:"rawIndent",value:function(e){var t;return e.raws.indent?e.raws.indent:(e.walk(function(r){var n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&void 0!==r.raws.before){var i=r.raws.before.split("\n");return t=(t=i[i.length-1]).replace(/\S/g,""),!1}}),t)}},{key:"rawSemicolon",value:function(e){var t;return e.walk(function(e){if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&void 0!==(t=e.raws.semicolon))return!1}),t}},{key:"rawValue",value:function(e,t){var r=e[t],n=e.raws[t];return n&&n.value===r?n.raw:r}},{key:"root",value:function(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}},{key:"rule",value:function(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}},{key:"stringify",value:function(e,t){if(!this[e.type])throw Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}}]),e}();rM=rU,rU.default=rU;var rj={};function rF(e,t){new rM(t).stringify(e)}rj=rF,rF.default=rF,ex=Symbol("isClean"),eE=Symbol("my");var rV=/*#__PURE__*/function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var r in tl(this,e),this.raws={},this[ex]=!1,this[eE]=!0,t)if("nodes"===r){this.nodes=[];var n=!0,i=!1,o=void 0;try{for(var a,s=t[r][Symbol.iterator]();!(n=(a=s.next()).done);n=!0){var u=a.value;"function"==typeof u.clone?this.append(u.clone()):this.append(u)}}catch(e){i=!0,o=e}finally{try{n||null==s.return||s.return()}finally{if(i)throw o}}}else this[r]=t[r]}return td(e,[{key:"addToError",value:function(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){var t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,"$&".concat(t.input.from,":").concat(t.start.line,":").concat(t.start.column,"$&"))}return e}},{key:"after",value:function(e){return this.parent.insertAfter(this,e),this}},{key:"assign",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};for(var t in e)this[t]=e[t];return this}},{key:"before",value:function(e){return this.parent.insertBefore(this,e),this}},{key:"cleanRaws",value:function(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}},{key:"clone",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=function e(t,r){var n=new t.constructor;for(var i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&"proxyCache"!==i){var o=t[i],a=void 0===o?"undefined":(0,tt._)(o);"parent"===i&&"object"===a?r&&(n[i]=r):"source"===i?n[i]=o:Array.isArray(o)?n[i]=o.map(function(t){return e(t,n)}):("object"===a&&null!==o&&(o=e(o)),n[i]=o)}return n}(this);for(var r in e)t[r]=e[r];return t}},{key:"cloneAfter",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertAfter(this,t),t}},{key:"cloneBefore",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this.clone(e);return this.parent.insertBefore(this,t),t}},{key:"error",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.source){var r=this.rangeBy(t),n=r.end,i=r.start;return this.source.input.error(e,{column:i.column,line:i.line},{column:n.column,line:n.line},t)}return new rC(e)}},{key:"getProxyProcessor",value:function(){return{get:function(e,t){return"proxyOf"===t?e:"root"===t?function(){return e.root().toProxy()}:e[t]},set:function(e,t,r){return e[t]===r||(e[t]=r,("prop"===t||"value"===t||"name"===t||"params"===t||"important"===t||"text"===t)&&e.markDirty(),!0)}}}},{key:"markClean",value:function(){this[ex]=!0}},{key:"markDirty",value:function(){if(this[ex]){this[ex]=!1;for(var e=this;e=e.parent;)e[ex]=!1}}},{key:"next",value:function(){if(this.parent){var e=this.parent.index(this);return this.parent.nodes[e+1]}}},{key:"positionBy",value:function(e,t){var r=this.source.start;if(e.index)r=this.positionInside(e.index,t);else if(e.word){var n=(t=this.toString()).indexOf(e.word);-1!==n&&(r=this.positionInside(n,t))}return r}},{key:"positionInside",value:function(e,t){for(var r=t||this.toString(),n=this.source.start.column,i=this.source.start.line,o=0;o0&&void 0!==arguments[0]?arguments[0]:rj;e.stringify&&(e=e.stringify);var t="";return e(this,function(e){t+=e}),t}},{key:"warn",value:function(e,t,r){var n={node:this};for(var i in r)n[i]=r[i];return e.warn(t,n)}},{key:"proxyOf",get:function(){return this}}]),e}();r_=rV,rV.default=rV;var r$=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="comment",n}return r}(tJ(r_));rO=r$,r$.default=r$;var rH={},rz=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),e&&void 0!==e.value&&"string"!=typeof e.value&&(e=re(tW({},e),{value:String(e.value)})),(n=t.call(this,e)).type="decl",n}return td(r,[{key:"variable",get:function(){return this.prop.startsWith("--")||"$"===this.prop[0]}}]),r}(tJ(r_));rH=rz,rz.default=rz;var rW=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(){return tl(this,r),t.apply(this,arguments)}return td(r,[{key:"append",value:function(){for(var e=arguments.length,t=Array(e),r=0;r1?t-1:0),i=1;i=e&&(this.indexes[r]=t-1);return this.markDirty(),this}},{key:"replaceValues",value:function(e,t,r){return r||(r=t,t={}),this.walkDecls(function(n){(!t.props||t.props.includes(n.prop))&&(!t.fast||n.value.includes(t.fast))&&(n.value=n.value.replace(e,r))}),this.markDirty(),this}},{key:"some",value:function(e){return this.nodes.some(e)}},{key:"walk",value:function(e){return this.each(function(t,r){var n;try{n=e(t,r)}catch(e){throw t.addToError(e)}return!1!==n&&t.walk&&(n=t.walk(e)),n})}},{key:"walkAtRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("atrule"===r.type&&e.test(r.name))return t(r,n)}):this.walk(function(r,n){if("atrule"===r.type&&r.name===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("atrule"===e.type)return t(e,r)}))}},{key:"walkComments",value:function(e){return this.walk(function(t,r){if("comment"===t.type)return e(t,r)})}},{key:"walkDecls",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("decl"===r.type&&e.test(r.prop))return t(r,n)}):this.walk(function(r,n){if("decl"===r.type&&r.prop===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("decl"===e.type)return t(e,r)}))}},{key:"walkRules",value:function(e,t){return t?e instanceof RegExp?this.walk(function(r,n){if("rule"===r.type&&e.test(r.selector))return t(r,n)}):this.walk(function(r,n){if("rule"===r.type&&r.selector===e)return t(r,n)}):(t=e,this.walk(function(e,r){if("rule"===e.type)return t(e,r)}))}},{key:"first",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}},{key:"last",get:function(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}}]),r}(tJ(r_));rW.registerParse=function(e){ek=e},rW.registerRule=function(e){eI=e},rW.registerAtRule=function(e){eS=e},rW.registerRoot=function(e){eA=e},rN=rW,rW.default=rW,rW.rebuild=function(e){"atrule"===e.type?Object.setPrototypeOf(e,eS.prototype):"rule"===e.type?Object.setPrototypeOf(e,eI.prototype):"decl"===e.type?Object.setPrototypeOf(e,rH.prototype):"comment"===e.type?Object.setPrototypeOf(e,rO.prototype):"root"===e.type&&Object.setPrototypeOf(e,eA.prototype),e[eE]=!0,e.nodes&&e.nodes.forEach(function(e){rW.rebuild(e)})};var rG=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="atrule",n}return td(r,[{key:"append",value:function(){for(var e,t=arguments.length,n=Array(t),i=0;i0&&void 0!==arguments[0]?arguments[0]:{};return new eT(new eN,this,e).stringify()}}]),r}(rN);rK.registerLazyResult=function(e){eT=e},rK.registerProcessor=function(e){eN=e},rY=rK,rK.default=rK;var rJ={};function rZ(e,t){if(null==e)return{};var r,n,i=function(e,t){if(null==e)return{};var r,n,i={},o=Object.keys(e);for(n=0;n=0||(i[r]=e[r]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n=0)&&Object.prototype.propertyIsEnumerable.call(e,r)&&(i[r]=e[r])}return i}var rQ={},rX=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:21,t="",r=e;r--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},r0=rB.isAbsolute,r1=rB.resolve,r3=rB.SourceMapConsumer,r2=rB.SourceMapGenerator,r5=rB.fileURLToPath,r8=rB.pathToFileURL,r6={},tt=eH("bbrsO");eO=function(e){var t,r,n=function(e){var t=e.length;if(t%4>0)throw Error("Invalid string. Length must be a multiple of 4");var r=e.indexOf("=");-1===r&&(r=t);var n=r===t?0:4-r%4;return[r,n]}(e),i=n[0],o=n[1],a=new r7((i+o)*3/4-o),s=0,u=o>0?i-4:i;for(r=0;r>16&255,a[s++]=t>>8&255,a[s++]=255&t;return 2===o&&(t=r9[e.charCodeAt(r)]<<2|r9[e.charCodeAt(r+1)]>>4,a[s++]=255&t),1===o&&(t=r9[e.charCodeAt(r)]<<10|r9[e.charCodeAt(r+1)]<<4|r9[e.charCodeAt(r+2)]>>2,a[s++]=t>>8&255,a[s++]=255&t),a},e_=function(e){for(var t,r=e.length,n=r%3,i=[],o=0,a=r-n;o>18&63]+r4[n>>12&63]+r4[n>>6&63]+r4[63&n]);return i.join("")}(e,o,o+16383>a?a:o+16383));return 1===n?i.push(r4[(t=e[r-1])>>2]+r4[t<<4&63]+"=="):2===n&&i.push(r4[(t=(e[r-2]<<8)+e[r-1])>>10]+r4[t>>4&63]+r4[t<<2&63]+"="),i.join("")};for(var r4=[],r9=[],r7="undefined"!=typeof Uint8Array?Uint8Array:Array,ne="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",nt=0,nr=ne.length;nt>1,l=-7,f=r?i-1:0,d=r?-1:1,h=e[t+f];for(f+=d,o=h&(1<<-l)-1,h>>=-l,l+=s;l>0;o=256*o+e[t+f],f+=d,l-=8);for(a=o&(1<<-l)-1,o>>=-l,l+=n;l>0;a=256*a+e[t+f],f+=d,l-=8);if(0===o)o=1-c;else{if(o===u)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,n),o-=c}return(h?-1:1)*a*Math.pow(2,o-n)},eP=function(e,t,r,n,i,o){var a,s,u,c=8*o-i-1,l=(1<>1,d=23===i?5960464477539062e-23:0,h=n?0:o-1,p=n?1:-1,m=t<0||0===t&&1/t<0?1:0;for(isNaN(t=Math.abs(t))||t===1/0?(s=isNaN(t)?1:0,a=l):(a=Math.floor(Math.log(t)/Math.LN2),t*(u=Math.pow(2,-a))<1&&(a--,u*=2),a+f>=1?t+=d/u:t+=d*Math.pow(2,1-f),t*u>=2&&(a++,u/=2),a+f>=l?(s=0,a=l):a+f>=1?(s=(t*u-1)*Math.pow(2,i),a+=f):(s=t*Math.pow(2,f-1)*Math.pow(2,i),a=0));i>=8;e[r+h]=255&s,h+=p,s/=256,i-=8);for(a=a<0;e[r+h]=255&a,h+=p,a/=256,c-=8);e[r+h-p]|=128*m};var nn="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;function ni(e){if(e>0x7fffffff)throw RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,no.prototype),t}function no(e,t,r){if("number"==typeof e){if("string"==typeof t)throw TypeError('The "string" argument must be of type string. Received type number');return nu(e)}return na(e,t,r)}function na(e,t,r){if("string"==typeof e)return function(e,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!no.isEncoding(t))throw TypeError("Unknown encoding: "+t);var r=0|nd(e,t),n=ni(r),i=n.write(e,t);return i!==r&&(n=n.slice(0,i)),n}(e,t);if(ArrayBuffer.isView(e))return function(e){if(nB(e,Uint8Array)){var t=new Uint8Array(e);return nl(t.buffer,t.byteOffset,t.byteLength)}return nc(e)}(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tt._)(e)));if(nB(e,ArrayBuffer)||e&&nB(e.buffer,ArrayBuffer)||"undefined"!=typeof SharedArrayBuffer&&(nB(e,SharedArrayBuffer)||e&&nB(e.buffer,SharedArrayBuffer)))return nl(e,t,r);if("number"==typeof e)throw TypeError('The "value" argument must not be of type number. Received type number');var n=e.valueOf&&e.valueOf();if(null!=n&&n!==e)return no.from(n,t,r);var i=function(e){if(no.isBuffer(e)){var t,r=0|nf(e.length),n=ni(r);return 0===n.length||e.copy(n,0,0,r),n}return void 0!==e.length?"number"!=typeof e.length||(t=e.length)!=t?ni(0):nc(e):"Buffer"===e.type&&Array.isArray(e.data)?nc(e.data):void 0}(e);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return no.from(e[Symbol.toPrimitive]("string"),t,r);throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+(void 0===e?"undefined":(0,tt._)(e)))}function ns(e){if("number"!=typeof e)throw TypeError('"size" argument must be of type number');if(e<0)throw RangeError('The value "'+e+'" is invalid for option "size"')}function nu(e){return ns(e),ni(e<0?0:0|nf(e))}function nc(e){for(var t=e.length<0?0:0|nf(e.length),r=ni(t),n=0;n=0x7fffffff)throw RangeError("Attempt to allocate Buffer larger than maximum size: 0x7fffffff bytes");return 0|e}function nd(e,t){if(no.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||nB(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+(void 0===e?"undefined":(0,tt._)(e)));var r=e.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return nP(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return nL(e).length;default:if(i)return n?-1:nP(e).length;t=(""+t).toLowerCase(),i=!0}}function nh(e,t,r){var n,i,o=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===r||r>this.length)&&(r=this.length),r<=0||(r>>>=0)<=(t>>>=0)))return"";for(e||(e="utf8");;)switch(e){case"hex":return function(e,t,r){var n=e.length;(!t||t<0)&&(t=0),(!r||r<0||r>n)&&(r=n);for(var i="",o=t;o0x7fffffff?r=0x7fffffff:r<-0x80000000&&(r=-0x80000000),(o=r=+r)!=o&&(r=i?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(i)return -1;r=e.length-1}else if(r<0){if(!i)return -1;r=0}if("string"==typeof t&&(t=no.from(t,n)),no.isBuffer(t))return 0===t.length?-1:nv(e,t,r,n,i);if("number"==typeof t)return(t&=255,"function"==typeof Uint8Array.prototype.indexOf)?i?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):nv(e,[t],r,n,i);throw TypeError("val must be string, number or Buffer")}function nv(e,t,r,n,i){var o,a=1,s=e.length,u=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return -1;a=2,s/=2,u/=2,r/=2}function c(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var l=-1;for(o=r;os&&(r=s-u),o=r;o>=0;o--){for(var f=!0,d=0;d239?4:o>223?3:o>191?2:1;if(i+s<=r){var u=void 0,c=void 0,l=void 0,f=void 0;switch(s){case 1:o<128&&(a=o);break;case 2:(192&(u=e[i+1]))==128&&(f=(31&o)<<6|63&u)>127&&(a=f);break;case 3:u=e[i+1],c=e[i+2],(192&u)==128&&(192&c)==128&&(f=(15&o)<<12|(63&u)<<6|63&c)>2047&&(f<55296||f>57343)&&(a=f);break;case 4:u=e[i+1],c=e[i+2],l=e[i+3],(192&u)==128&&(192&c)==128&&(192&l)==128&&(f=(15&o)<<18|(63&u)<<12|(63&c)<<6|63&l)>65535&&f<1114112&&(a=f)}}null===a?(a=65533,s=1):a>65535&&(a-=65536,n.push(a>>>10&1023|55296),a=56320|1023&a),n.push(a),i+=s}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);for(var r="",n=0;nr)throw RangeError("Trying to access beyond buffer length")}function nb(e,t,r,n,i,o){if(!no.isBuffer(e))throw TypeError('"buffer" argument must be a Buffer instance');if(t>i||te.length)throw RangeError("Index out of range")}function nw(e,t,r,n,i){nN(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o,o>>=8,e[r++]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,a>>=8,e[r++]=a,r}function nx(e,t,r,n,i){nN(t,n,i,e,r,7);var o=Number(t&BigInt(0xffffffff));e[r+7]=o,o>>=8,e[r+6]=o,o>>=8,e[r+5]=o,o>>=8,e[r+4]=o;var a=Number(t>>BigInt(32)&BigInt(0xffffffff));return e[r+3]=a,a>>=8,e[r+2]=a,a>>=8,e[r+1]=a,a>>=8,e[r]=a,r+8}function nE(e,t,r,n,i,o){if(r+n>e.length||r<0)throw RangeError("Index out of range")}function nS(e,t,r,n,i){return t=+t,r>>>=0,i||nE(e,t,r,4,34028234663852886e22,-34028234663852886e22),eP(e,t,r,n,23,4),r+4}function nk(e,t,r,n,i){return t=+t,r>>>=0,i||nE(e,t,r,8,17976931348623157e292,-17976931348623157e292),eP(e,t,r,n,52,8),r+8}no.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),no.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(no.prototype,"parent",{enumerable:!0,get:function(){if(no.isBuffer(this))return this.buffer}}),Object.defineProperty(no.prototype,"offset",{enumerable:!0,get:function(){if(no.isBuffer(this))return this.byteOffset}}),no.poolSize=8192,no.from=function(e,t,r){return na(e,t,r)},Object.setPrototypeOf(no.prototype,Uint8Array.prototype),Object.setPrototypeOf(no,Uint8Array),no.alloc=function(e,t,r){return(ns(e),e<=0)?ni(e):void 0!==t?"string"==typeof r?ni(e).fill(t,r):ni(e).fill(t):ni(e)},no.allocUnsafe=function(e){return nu(e)},no.allocUnsafeSlow=function(e){return nu(e)},no.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==no.prototype},no.compare=function(e,t){if(nB(e,Uint8Array)&&(e=no.from(e,e.offset,e.byteLength)),nB(t,Uint8Array)&&(t=no.from(t,t.offset,t.byteLength)),!no.isBuffer(e)||!no.isBuffer(t))throw TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var r=e.length,n=t.length,i=0,o=Math.min(r,n);in.length?(no.isBuffer(o)||(o=no.from(o)),o.copy(n,i)):Uint8Array.prototype.set.call(n,o,i);else if(no.isBuffer(o))o.copy(n,i);else throw TypeError('"list" argument must be an Array of Buffers');i+=o.length}return n},no.byteLength=nd,no.prototype._isBuffer=!0,no.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t50&&(e+=" ... "),""},nn&&(no.prototype[nn]=no.prototype.inspect),no.prototype.compare=function(e,t,r,n,i){if(nB(e,Uint8Array)&&(e=no.from(e,e.offset,e.byteLength)),!no.isBuffer(e))throw TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+(void 0===e?"undefined":(0,tt._)(e)));if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),t<0||r>e.length||n<0||i>this.length)throw RangeError("out of range index");if(n>=i&&t>=r)return 0;if(n>=i)return -1;if(t>=r)return 1;if(t>>>=0,r>>>=0,n>>>=0,i>>>=0,this===e)return 0;for(var o=i-n,a=r-t,s=Math.min(o,a),u=this.slice(n,i),c=e.slice(t,r),l=0;l>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0);else throw Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var i,o,a,s,u,c,l,f,d=this.length-t;if((void 0===r||r>d)&&(r=d),e.length>0&&(r<0||t<0)||t>this.length)throw RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var h=!1;;)switch(n){case"hex":return function(e,t,r,n){r=Number(r)||0;var i,o=e.length-r;n?(n=Number(n))>o&&(n=o):n=o;var a=t.length;for(n>a/2&&(n=a/2),i=0;i>8,i.push(r%256),i.push(n);return i}(e,this.length-l),this,l,f);default:if(h)throw TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),h=!0}},no.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},no.prototype.slice=function(e,t){var r=this.length;e=~~e,t=void 0===t?r:~~t,e<0?(e+=r)<0&&(e=0):e>r&&(e=r),t<0?(t+=r)<0&&(t=0):t>r&&(t=r),t>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e],i=1,o=0;++o>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e+--t],i=1;t>0&&(i*=256);)n+=this[e+--t]*i;return n},no.prototype.readUint8=no.prototype.readUInt8=function(e,t){return e>>>=0,t||ny(e,1,this.length),this[e]},no.prototype.readUint16LE=no.prototype.readUInt16LE=function(e,t){return e>>>=0,t||ny(e,2,this.length),this[e]|this[e+1]<<8},no.prototype.readUint16BE=no.prototype.readUInt16BE=function(e,t){return e>>>=0,t||ny(e,2,this.length),this[e]<<8|this[e+1]},no.prototype.readUint32LE=no.prototype.readUInt32LE=function(e,t){return e>>>=0,t||ny(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+0x1000000*this[e+3]},no.prototype.readUint32BE=no.prototype.readUInt32BE=function(e,t){return e>>>=0,t||ny(e,4,this.length),0x1000000*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},no.prototype.readBigUInt64LE=nM(function(e){nO(e>>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&n_(e,this.length-8);var n=t+256*this[++e]+65536*this[++e]+0x1000000*this[++e],i=this[++e]+256*this[++e]+65536*this[++e]+0x1000000*r;return BigInt(n)+(BigInt(i)<>>=0,"offset");var t=this[e],r=this[e+7];(void 0===t||void 0===r)&&n_(e,this.length-8);var n=0x1000000*t+65536*this[++e]+256*this[++e]+this[++e],i=0x1000000*this[++e]+65536*this[++e]+256*this[++e]+r;return(BigInt(n)<>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=this[e],i=1,o=0;++o=(i*=128)&&(n-=Math.pow(2,8*t)),n},no.prototype.readIntBE=function(e,t,r){e>>>=0,t>>>=0,r||ny(e,t,this.length);for(var n=t,i=1,o=this[e+--n];n>0&&(i*=256);)o+=this[e+--n]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},no.prototype.readInt8=function(e,t){return(e>>>=0,t||ny(e,1,this.length),128&this[e])?-((255-this[e]+1)*1):this[e]},no.prototype.readInt16LE=function(e,t){e>>>=0,t||ny(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?0xffff0000|r:r},no.prototype.readInt16BE=function(e,t){e>>>=0,t||ny(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?0xffff0000|r:r},no.prototype.readInt32LE=function(e,t){return e>>>=0,t||ny(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},no.prototype.readInt32BE=function(e,t){return e>>>=0,t||ny(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},no.prototype.readBigInt64LE=nM(function(e){nO(e>>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&n_(e,this.length-8),(BigInt(this[e+4]+256*this[e+5]+65536*this[e+6]+(r<<24))<>>=0,"offset");var t=this[e],r=this[e+7];return(void 0===t||void 0===r)&&n_(e,this.length-8),(BigInt((t<<24)+65536*this[++e]+256*this[++e]+this[++e])<>>=0,t||ny(e,4,this.length),eC(this,e,!0,23,4)},no.prototype.readFloatBE=function(e,t){return e>>>=0,t||ny(e,4,this.length),eC(this,e,!1,23,4)},no.prototype.readDoubleLE=function(e,t){return e>>>=0,t||ny(e,8,this.length),eC(this,e,!0,52,8)},no.prototype.readDoubleBE=function(e,t){return e>>>=0,t||ny(e,8,this.length),eC(this,e,!1,52,8)},no.prototype.writeUintLE=no.prototype.writeUIntLE=function(e,t,r,n){if(e=+e,t>>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nb(this,e,t,r,i,0)}var o=1,a=0;for(this[t]=255&e;++a>>=0,r>>>=0,!n){var i=Math.pow(2,8*r)-1;nb(this,e,t,r,i,0)}var o=r-1,a=1;for(this[t+o]=255&e;--o>=0&&(a*=256);)this[t+o]=e/a&255;return t+r},no.prototype.writeUint8=no.prototype.writeUInt8=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,1,255,0),this[t]=255&e,t+1},no.prototype.writeUint16LE=no.prototype.writeUInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},no.prototype.writeUint16BE=no.prototype.writeUInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},no.prototype.writeUint32LE=no.prototype.writeUInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0xffffffff,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},no.prototype.writeUint32BE=no.prototype.writeUInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0xffffffff,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},no.prototype.writeBigUInt64LE=nM(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nw(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),no.prototype.writeBigUInt64BE=nM(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),no.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nb(this,e,t,r,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o>0)-s&255;return t+r},no.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var i=Math.pow(2,8*r-1);nb(this,e,t,r,i-1,-i)}var o=r-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+r},no.prototype.writeInt8=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},no.prototype.writeInt16LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},no.prototype.writeInt16BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},no.prototype.writeInt32LE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0x7fffffff,-0x80000000),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},no.prototype.writeInt32BE=function(e,t,r){return e=+e,t>>>=0,r||nb(this,e,t,4,0x7fffffff,-0x80000000),e<0&&(e=0xffffffff+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},no.prototype.writeBigInt64LE=nM(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nw(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),no.prototype.writeBigInt64BE=nM(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return nx(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),no.prototype.writeFloatLE=function(e,t,r){return nS(this,e,t,!0,r)},no.prototype.writeFloatBE=function(e,t,r){return nS(this,e,t,!1,r)},no.prototype.writeDoubleLE=function(e,t,r){return nk(this,e,t,!0,r)},no.prototype.writeDoubleBE=function(e,t,r){return nk(this,e,t,!1,r)},no.prototype.copy=function(e,t,r,n){if(!no.isBuffer(e))throw TypeError("argument should be a Buffer");if(r||(r=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n=this.length)throw RangeError("Index out of range");if(n<0)throw RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t>>=0,r=void 0===r?this.length:r>>>0,e||(e=0),"number"==typeof e)for(i=t;i=n+4;r-=3)t="_".concat(e.slice(r-3,r)).concat(t);return"".concat(e.slice(0,r)).concat(t)}function nN(e,t,r,n,i,o){if(e>r||e3?0===t||t===BigInt(0)?">= 0".concat(s," and < 2").concat(s," ** ").concat((o+1)*8).concat(s):">= -(2".concat(s," ** ").concat((o+1)*8-1).concat(s,") and < 2 ** ")+"".concat((o+1)*8-1).concat(s):">= ".concat(t).concat(s," and <= ").concat(r).concat(s),new nA.ERR_OUT_OF_RANGE("value",a,e)}nO(i,"offset"),(void 0===n[i]||void 0===n[i+o])&&n_(i,n.length-(o+1))}function nO(e,t){if("number"!=typeof e)throw new nA.ERR_INVALID_ARG_TYPE(t,"number",e)}function n_(e,t,r){if(Math.floor(e)!==e)throw nO(e,r),new nA.ERR_OUT_OF_RANGE(r||"offset","an integer",e);if(t<0)throw new nA.ERR_BUFFER_OUT_OF_BOUNDS;throw new nA.ERR_OUT_OF_RANGE(r||"offset",">= ".concat(r?1:0," and <= ").concat(t),e)}nI("ERR_BUFFER_OUT_OF_BOUNDS",function(e){return e?"".concat(e," is outside of buffer bounds"):"Attempt to access memory outside buffer bounds"},RangeError),nI("ERR_INVALID_ARG_TYPE",function(e,t){return'The "'.concat(e,'" argument must be of type number. Received type ').concat(void 0===t?"undefined":(0,tt._)(t))},TypeError),nI("ERR_OUT_OF_RANGE",function(e,t,r){var n='The value of "'.concat(e,'" is out of range.'),i=r;return Number.isInteger(r)&&Math.abs(r)>0x100000000?i=nT(String(r)):(void 0===r?"undefined":(0,tt._)(r))==="bigint"&&(i=String(r),(r>Math.pow(BigInt(2),BigInt(32))||r<-Math.pow(BigInt(2),BigInt(32)))&&(i=nT(i)),i+="n"),n+=" It must be ".concat(t,". Received ").concat(i)},RangeError);var nC=/[^+/0-9A-Za-z-_]/g;function nP(e,t){t=t||1/0;for(var r,n=e.length,i=null,o=[],a=0;a55295&&r<57344){if(!i){if(r>56319||a+1===n){(t-=3)>-1&&o.push(239,191,189);continue}i=r;continue}if(r<56320){(t-=3)>-1&&o.push(239,191,189),i=r;continue}r=(i-55296<<10|r-56320)+65536}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,r<128){if((t-=1)<0)break;o.push(r)}else if(r<2048){if((t-=2)<0)break;o.push(r>>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;o.push(r>>12|224,r>>6&63|128,63&r|128)}else if(r<1114112){if((t-=4)<0)break;o.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}else throw Error("Invalid code point")}return o}function nL(e){return eO(function(e){if((e=(e=e.split("=")[0]).trim().replace(nC,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function nD(e,t,r,n){var i;for(i=0;i=t.length)&&!(i>=e.length);++i)t[i+r]=e[i];return i}function nB(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}var nR=function(){for(var e="0123456789abcdef",t=Array(256),r=0;r<16;++r)for(var n=16*r,i=0;i<16;++i)t[n+i]=e[r]+e[i];return t}();function nM(e){return"undefined"==typeof BigInt?nq:e}function nq(){throw Error("BigInt not supported")}var nU=rB.existsSync,nj=rB.readFileSync,nF=rB.dirname,nV=rB.join,n$=rB.SourceMapConsumer,nH=rB.SourceMapGenerator,nz=/*#__PURE__*/function(){function e(t,r){if(tl(this,e),!1!==r.map){this.loadAnnotation(t),this.inline=this.startWith(this.annotation,"data:");var n=r.map?r.map.prev:void 0,i=this.loadMap(r.from,n);!this.mapFile&&r.from&&(this.mapFile=r.from),this.mapFile&&(this.root=nF(this.mapFile)),i&&(this.text=i)}}return td(e,[{key:"consumer",value:function(){return this.consumerCache||(this.consumerCache=new n$(this.text)),this.consumerCache}},{key:"decodeInline",value:function(e){var t,r=e.match(/^data:application\/json;charset=utf-?8,/)||e.match(/^data:application\/json,/);if(r)return decodeURIComponent(e.substr(r[0].length));var n=e.match(/^data:application\/json;charset=utf-?8;base64,/)||e.match(/^data:application\/json;base64,/);if(n)return t=e.substr(n[0].length),no?no.from(t,"base64").toString():window.atob(t);throw Error("Unsupported source map encoding "+e.match(/data:application\/json;([^,]+),/)[1])}},{key:"getAnnotationURL",value:function(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}},{key:"isMap",value:function(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}},{key:"loadAnnotation",value:function(e){var t=e.match(/\/\*\s*# sourceMappingURL=/g);if(t){var r=e.lastIndexOf(t.pop()),n=e.indexOf("*/",r);r>-1&&n>-1&&(this.annotation=this.getAnnotationURL(e.substring(r,n)))}}},{key:"loadFile",value:function(e){if(this.root=nF(e),nU(e))return this.mapFile=e,nj(e,"utf-8").toString().trim()}},{key:"loadMap",value:function(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"==typeof t){var r=t(e);if(r){var n=this.loadFile(r);if(!n)throw Error("Unable to load previous source map: "+r.toString());return n}}else if(t instanceof n$)return nH.fromSourceMap(t).toString();else if(t instanceof nH)return t.toString();else if(this.isMap(t))return JSON.stringify(t);else throw Error("Unsupported previous source map format: "+t.toString())}else if(this.inline)return this.decodeInline(this.annotation);else if(this.annotation){var i=this.annotation;return e&&(i=nV(nF(e),i)),this.loadFile(i)}}},{key:"startWith",value:function(e,t){return!!e&&e.substr(0,t.length)===t}},{key:"withContent",value:function(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}}]),e}();r6=nz,nz.default=nz;var nW=Symbol("fromOffsetCache"),nG=!!(r3&&r2),nY=!!(r1&&r0),nK=/*#__PURE__*/function(){function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(tl(this,e),null==t||"object"==typeof t&&!t.toString)throw Error("PostCSS received ".concat(t," instead of CSS string"));if(this.css=t.toString(),"\uFEFF"===this.css[0]||"￾"===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,r.from&&(!nY||/^\w+:\/\//.test(r.from)||r0(r.from)?this.file=r.from:this.file=r1(r.from)),nY&&nG){var n=new r6(this.css,r);if(n.text){this.map=n;var i=n.consumer().file;!this.file&&i&&(this.file=this.mapResolve(i))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}return td(e,[{key:"error",value:function(e,t,r){var n,i,o,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(t&&"object"==typeof t){var s=t,u=r;if("number"==typeof s.offset){var c=this.fromOffset(s.offset);t=c.line,r=c.col}else t=s.line,r=s.column;if("number"==typeof u.offset){var l=this.fromOffset(u.offset);i=l.line,n=l.col}else i=u.line,n=u.column}else if(!r){var f=this.fromOffset(t);t=f.line,r=f.col}var d=this.origin(t,r,i,n);return(o=d?new rC(e,void 0===d.endLine?d.line:{column:d.column,line:d.line},void 0===d.endLine?d.column:{column:d.endColumn,line:d.endLine},d.source,d.file,a.plugin):new rC(e,void 0===i?t:{column:r,line:t},void 0===i?r:{column:n,line:i},this.css,this.file,a.plugin)).input={column:r,endColumn:n,endLine:i,line:t,source:this.css},this.file&&(r8&&(o.input.url=r8(this.file).toString()),o.input.file=this.file),o}},{key:"fromOffset",value:function(e){if(this[nW])s=this[nW];else{var t=this.css.split("\n");s=Array(t.length);for(var r=0,n=0,i=t.length;n=a)o=s.length-1;else for(var a,s,u,c=s.length-2;o>1)])c=u-1;else if(e>=s[u+1])o=u+1;else{o=u;break}return{col:e-s[o]+1,line:o+1}}},{key:"mapResolve",value:function(e){return/^\w+:\/\//.test(e)?e:r1(this.map.consumer().sourceRoot||this.map.root||".",e)}},{key:"origin",value:function(e,t,r,n){if(!this.map)return!1;var i,o,a=this.map.consumer(),s=a.originalPositionFor({column:t,line:e});if(!s.source)return!1;"number"==typeof r&&(i=a.originalPositionFor({column:n,line:r})),o=r0(s.source)?r8(s.source):new URL(s.source,this.map.consumer().sourceRoot||r8(this.map.mapFile));var u={column:s.column,endColumn:i&&i.column,endLine:i&&i.line,line:s.line,url:o.toString()};if("file:"===o.protocol){if(r5)u.file=r5(o);else throw Error("file: protocol is not available in this PostCSS build")}var c=a.sourceContentFor(s.source);return c&&(u.source=c),u}},{key:"toJSON",value:function(){for(var e={},t=0,r=["hasBOM","css","file","id"];t1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)try{for(var u,c=i[Symbol.iterator]();!(o=(u=c.next()).done);o=!0)u.value.raws.before=t.raws.before}catch(e){a=!0,s=e}finally{try{o||null==c.return||c.return()}finally{if(a)throw s}}}return i}},{key:"removeChild",value:function(e,t){var n=this.index(e);return!t&&0===n&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[n].raws.before),rT(tK(r.prototype),"removeChild",this).call(this,e)}},{key:"toResult",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new eL(new eD,this,e).stringify()}}]),r}(rN);nZ.registerLazyResult=function(e){eL=e},nZ.registerProcessor=function(e){eD=e},nJ=nZ,nZ.default=nZ,rN.registerRoot(nZ);var nQ={},nX={},n0={comma:function(e){return n0.split(e,[","],!0)},space:function(e){return n0.split(e,[" ","\n"," "])},split:function(e,t,r){var n=[],i="",o=!1,a=0,s=!1,u="",c=!1,l=!0,f=!1,d=void 0;try{for(var h,p=e[Symbol.iterator]();!(l=(h=p.next()).done);l=!0){var m=h.value;c?c=!1:"\\"===m?c=!0:s?m===u&&(s=!1):'"'===m||"'"===m?(s=!0,u=m):"("===m?a+=1:")"===m?a>0&&(a-=1):0===a&&t.includes(m)&&(o=!0),o?(""!==i&&n.push(i.trim()),i="",o=!1):i+=m}}catch(e){f=!0,d=e}finally{try{l||null==p.return||p.return()}finally{if(f)throw d}}return(r||""!==i)&&n.push(i.trim()),n}};nX=n0,n0.default=n0;var n1=/*#__PURE__*/function(e){tH(r,e);var t=tQ(r);function r(e){var n;return tl(this,r),(n=t.call(this,e)).type="rule",n.nodes||(n.nodes=[]),n}return td(r,[{key:"selectors",get:function(){return nX.comma(this.selector)},set:function(e){var t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}}]),r}(rN);function n3(e,t){if(Array.isArray(e))return e.map(function(e){return n3(e)});var r=e.inputs,n=rZ(e,["inputs"]);if(r){t=[];var i=!0,o=!1,a=void 0;try{for(var s,u=r[Symbol.iterator]();!(i=(s=u.next()).done);i=!0){var c=s.value,l=re(tW({},c),{__proto__:rQ.prototype});l.map&&(l.map=re(tW({},l.map),{__proto__:r6.prototype})),t.push(l)}}catch(e){o=!0,a=e}finally{try{i||null==u.return||u.return()}finally{if(o)throw a}}}if(n.nodes&&(n.nodes=e.nodes.map(function(e){return n3(e,t)})),n.source){var f=n.source,d=f.inputId,h=rZ(f,["inputId"]);n.source=h,null!=d&&(n.source.input=t[d])}if("root"===n.type)return new nJ(n);if("decl"===n.type)return new rH(n);if("rule"===n.type)return new nQ(n);if("comment"===n.type)return new rO(n);if("atrule"===n.type)return new rI(n);throw Error("Unknown node type: "+e.type)}nQ=n1,n1.default=n1,rN.registerRule(n1),rJ=n3,n3.default=n3;var n2={};function n5(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r,n,i=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=i){var o=[],a=!0,s=!1;try{for(i=i.call(e);!(a=(r=i.next()).done)&&(o.push(r.value),!t||o.length!==t);a=!0);}catch(e){s=!0,n=e}finally{try{a||null==i.return||i.return()}finally{if(s)throw n}}return o}}(e,t)||rk(e,t)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var eK=(eH("h7Cmf"),eH("h7Cmf")),n8={},n6=rB.dirname,n4=rB.relative,n9=rB.resolve,n7=rB.sep,ie=rB.SourceMapConsumer,it=rB.SourceMapGenerator,ir=rB.pathToFileURL,ii=!!(ie&&it),io=!!(n6&&n9&&n4&&n7);n8=/*#__PURE__*/function(){function e(t,r,n,i){tl(this,e),this.stringify=t,this.mapOpts=n.map||{},this.root=r,this.opts=n,this.css=i,this.originalCSS=i,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute,this.memoizedFileURLs=new Map,this.memoizedPaths=new Map,this.memoizedURLs=new Map}return td(e,[{key:"addAnnotation",value:function(){e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";var e,t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}},{key:"applyPrevMaps",value:function(){var e=!0,t=!1,r=void 0;try{for(var n,i=this.previous()[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.toUrl(this.path(o.file)),s=o.root||n6(o.file),u=void 0;!1===this.mapOpts.sourcesContent?(u=new ie(o.text)).sourcesContent&&(u.sourcesContent=null):u=o.consumer(),this.map.applySourceMap(u,a,this.toUrl(this.path(s)))}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}}},{key:"clearAnnotation",value:function(){if(!1!==this.mapOpts.annotation){if(this.root)for(var e,t=this.root.nodes.length-1;t>=0;t--)"comment"===(e=this.root.nodes[t]).type&&e.text.startsWith("# sourceMappingURL=")&&this.root.removeChild(t);else this.css&&(this.css=this.css.replace(/\n*\/\*#[\S\s]*?\*\/$/gm,""))}}},{key:"generate",value:function(){if(this.clearAnnotation(),io&&ii&&this.isMap())return this.generateMap();var e="";return this.stringify(this.root,function(t){e+=t}),[e]}},{key:"generateMap",value:function(){if(this.root)this.generateString();else if(1===this.previous().length){var e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=it.fromSourceMap(e,{ignoreInvalidMapping:!0})}else this.map=new it({file:this.outputFile(),ignoreInvalidMapping:!0}),this.map.addMapping({generated:{column:0,line:1},original:{column:0,line:1},source:this.opts.from?this.toUrl(this.path(this.opts.from)):""});return(this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline())?[this.css]:[this.css,this.map]}},{key:"generateString",value:function(){var e,t,r=this;this.css="",this.map=new it({file:this.outputFile(),ignoreInvalidMapping:!0});var n=1,i=1,o="",a={generated:{column:0,line:0},original:{column:0,line:0},source:""};this.stringify(this.root,function(s,u,c){if(r.css+=s,u&&"end"!==c&&(a.generated.line=n,a.generated.column=i-1,u.source&&u.source.start?(a.source=r.sourcePath(u),a.original.line=u.source.start.line,a.original.column=u.source.start.column-1):(a.source=o,a.original.line=1,a.original.column=0),r.map.addMapping(a)),(t=s.match(/\n/g))?(n+=t.length,e=s.lastIndexOf("\n"),i=s.length-e):i+=s.length,u&&"start"!==c){var l=u.parent||{raws:{}};(!("decl"===u.type||"atrule"===u.type&&!u.nodes)||u!==l.last||l.raws.semicolon)&&(u.source&&u.source.end?(a.source=r.sourcePath(u),a.original.line=u.source.end.line,a.original.column=u.source.end.column-1,a.generated.line=n,a.generated.column=i-2):(a.source=o,a.original.line=1,a.original.column=0,a.generated.line=n,a.generated.column=i-1),r.map.addMapping(a))}})}},{key:"isAnnotation",value:function(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some(function(e){return e.annotation}))}},{key:"isInline",value:function(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;var e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some(function(e){return e.inline}))}},{key:"isMap",value:function(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}},{key:"isSourcesContent",value:function(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some(function(e){return e.withContent()})}},{key:"outputFile",value:function(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}},{key:"path",value:function(e){if(this.mapOpts.absolute||60===e.charCodeAt(0)||/^\w+:\/\//.test(e))return e;var t=this.memoizedPaths.get(e);if(t)return t;var r=this.opts.to?n6(this.opts.to):".";"string"==typeof this.mapOpts.annotation&&(r=n6(n9(r,this.mapOpts.annotation)));var n=n4(r,e);return this.memoizedPaths.set(e,n),n}},{key:"previous",value:function(){var e=this;if(!this.previousMaps){if(this.previousMaps=[],this.root)this.root.walk(function(t){if(t.source&&t.source.input.map){var r=t.source.input.map;e.previousMaps.includes(r)||e.previousMaps.push(r)}});else{var t=new rQ(this.originalCSS,this.opts);t.map&&this.previousMaps.push(t.map)}}return this.previousMaps}},{key:"setSourcesContent",value:function(){var e=this,t={};if(this.root)this.root.walk(function(r){if(r.source){var n=r.source.input.from;if(n&&!t[n]){t[n]=!0;var i=e.usesFileUrls?e.toFileUrl(n):e.toUrl(e.path(n));e.map.setSourceContent(i,r.source.input.css)}}});else if(this.css){var r=this.opts.from?this.toUrl(this.path(this.opts.from)):"";this.map.setSourceContent(r,this.css)}}},{key:"sourcePath",value:function(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}},{key:"toBase64",value:function(e){return no?no.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}},{key:"toFileUrl",value:function(e){var t=this.memoizedFileURLs.get(e);if(t)return t;if(ir){var r=ir(e).toString();return this.memoizedFileURLs.set(e,r),r}throw Error("`map.absolute` option is not available in this PostCSS build")}},{key:"toUrl",value:function(e){var t=this.memoizedURLs.get(e);if(t)return t;"\\"===n7&&(e=e.replace(/\\/g,"/"));var r=encodeURI(e).replace(/[#?]/g,encodeURIComponent);return this.memoizedURLs.set(e,r),r}}]),e}();var ia={},is={},iu={},ic=/[\t\n\f\r "#'()/;[\\\]{}]/g,il=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,id=/.[\r\n"'(/\\]/,ih=/[\da-f]/i;iu=function(e){var t,r,n,i,o,a,s,u,c,l,f=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},d=e.css.valueOf(),h=f.ignoreErrors,p=d.length,m=0,v=[],g=[];function y(t){throw e.error("Unclosed "+t,m)}return{back:function(e){g.push(e)},endOfFile:function(){return 0===g.length&&m>=p},nextToken:function(e){if(g.length)return g.pop();if(!(m>=p)){var f=!!e&&e.ignoreUnclosed;switch(t=d.charCodeAt(m)){case 10:case 32:case 9:case 13:case 12:i=m;do i+=1,t=d.charCodeAt(i);while(32===t||10===t||9===t||13===t||12===t)a=["space",d.slice(m,i)],m=i-1;break;case 91:case 93:case 123:case 125:case 58:case 59:case 41:var b=String.fromCharCode(t);a=[b,b,m];break;case 40:if(l=v.length?v.pop()[1]:"",c=d.charCodeAt(m+1),"url"===l&&39!==c&&34!==c&&32!==c&&10!==c&&9!==c&&12!==c&&13!==c){i=m;do{if(s=!1,-1===(i=d.indexOf(")",i+1))){if(h||f){i=m;break}y("bracket")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["brackets",d.slice(m,i+1),m,i],m=i}else i=d.indexOf(")",m+1),r=d.slice(m,i+1),-1===i||id.test(r)?a=["(","(",m]:(a=["brackets",r,m,i],m=i);break;case 39:case 34:o=39===t?"'":'"',i=m;do{if(s=!1,-1===(i=d.indexOf(o,i+1))){if(h||f){i=m+1;break}y("string")}for(u=i;92===d.charCodeAt(u-1);)u-=1,s=!s}while(s)a=["string",d.slice(m,i+1),m,i],m=i;break;case 64:ic.lastIndex=m+1,ic.test(d),i=0===ic.lastIndex?d.length-1:ic.lastIndex-2,a=["at-word",d.slice(m,i+1),m,i],m=i;break;case 92:for(i=m,n=!0;92===d.charCodeAt(i+1);)i+=1,n=!n;if(t=d.charCodeAt(i+1),n&&47!==t&&32!==t&&10!==t&&9!==t&&13!==t&&12!==t&&(i+=1,ih.test(d.charAt(i)))){for(;ih.test(d.charAt(i+1));)i+=1;32===d.charCodeAt(i+1)&&(i+=1)}a=["word",d.slice(m,i+1),m,i],m=i;break;default:47===t&&42===d.charCodeAt(m+1)?(0===(i=d.indexOf("*/",m+2)+1)&&(h||f?i=d.length:y("comment")),a=["comment",d.slice(m,i+1),m,i]):(il.lastIndex=m+1,il.test(d),i=0===il.lastIndex?d.length-1:il.lastIndex-2,a=["word",d.slice(m,i+1),m,i],v.push(a)),m=i}return m++,a}},position:function(){return m}}};var ip={empty:!0,space:!0};function im(e,t){var r=new rQ(e,t),n=new is(r);try{n.parse()}catch(e){throw e}return n.root}is=/*#__PURE__*/function(){function e(t){tl(this,e),this.input=t,this.root=new nJ,this.current=this.root,this.spaces="",this.semicolon=!1,this.createTokenizer(),this.root.source={input:t,start:{column:1,line:1,offset:0}}}return td(e,[{key:"atrule",value:function(e){var t,r,n,i=new rI;i.name=e[1].slice(1),""===i.name&&this.unnamedAtrule(i,e),this.init(i,e[2]);for(var o=!1,a=!1,s=[],u=[];!this.tokenizer.endOfFile();){if("("===(t=(e=this.tokenizer.nextToken())[0])||"["===t?u.push("("===t?")":"]"):"{"===t&&u.length>0?u.push("}"):t===u[u.length-1]&&u.pop(),0===u.length){if(";"===t){i.source.end=this.getPosition(e[2]),i.source.end.offset++,this.semicolon=!0;break}if("{"===t){a=!0;break}if("}"===t){if(s.length>0){for(n=s.length-1,r=s[n];r&&"space"===r[0];)r=s[--n];r&&(i.source.end=this.getPosition(r[3]||r[2]),i.source.end.offset++)}this.end(e);break}s.push(e)}else s.push(e);if(this.tokenizer.endOfFile()){o=!0;break}}i.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(i.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(i,"params",s),o&&(e=s[s.length-1],i.source.end=this.getPosition(e[3]||e[2]),i.source.end.offset++,this.spaces=i.raws.between,i.raws.between="")):(i.raws.afterName="",i.params=""),a&&(i.nodes=[],this.current=i)}},{key:"checkMissedSemicolon",value:function(e){var t,r=this.colon(e);if(!1!==r){for(var n=0,i=r-1;i>=0&&("space"===(t=e[i])[0]||2!==(n+=1));i--);throw this.input.error("Missed semicolon","word"===t[0]?t[3]+1:t[2])}}},{key:"colon",value:function(e){var t=0,r=!0,n=!1,i=void 0;try{for(var o,a,s,u=e.entries()[Symbol.iterator]();!(r=(s=u.next()).done);r=!0){var c=n5(s.value,2),l=c[0],f=c[1];if(a=f[0],"("===a&&(t+=1),")"===a&&(t-=1),0===t&&":"===a){if(o){if("word"===o[0]&&"progid"===o[1])continue;return l}this.doubleColon(f)}o=f}}catch(e){n=!0,i=e}finally{try{r||null==u.return||u.return()}finally{if(n)throw i}}return!1}},{key:"comment",value:function(e){var t=new rO;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]),t.source.end.offset++;var r=e[1].slice(2,-2);if(/^\s*$/.test(r))t.text="",t.raws.left=r,t.raws.right="";else{var n=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=n[2],t.raws.left=n[1],t.raws.right=n[3]}}},{key:"createTokenizer",value:function(){this.tokenizer=iu(this.input)}},{key:"decl",value:function(e,t){var r,n,i=new rH;this.init(i,e[0][2]);var o=e[e.length-1];for(";"===o[0]&&(this.semicolon=!0,e.pop()),i.source.end=this.getPosition(o[3]||o[2]||function(e){for(var t=e.length-1;t>=0;t--){var r=e[t],n=r[3]||r[2];if(n)return n}}(e)),i.source.end.offset++;"word"!==e[0][0];)1===e.length&&this.unknownWord(e),i.raws.before+=e.shift()[1];for(i.source.start=this.getPosition(e[0][2]),i.prop="";e.length;){var a=e[0][0];if(":"===a||"space"===a||"comment"===a)break;i.prop+=e.shift()[1]}for(i.raws.between="";e.length;){if(":"===(r=e.shift())[0]){i.raws.between+=r[1];break}"word"===r[0]&&/\w/.test(r[1])&&this.unknownWord([r]),i.raws.between+=r[1]}("_"===i.prop[0]||"*"===i.prop[0])&&(i.raws.before+=i.prop[0],i.prop=i.prop.slice(1));for(var s=[];e.length&&("space"===(n=e[0][0])||"comment"===n);)s.push(e.shift());this.precheckMissedSemicolon(e);for(var u=e.length-1;u>=0;u--){if("!important"===(r=e[u])[1].toLowerCase()){i.important=!0;var c=this.stringFrom(e,u);" !important"!==(c=this.spacesFromEnd(e)+c)&&(i.raws.important=c);break}if("important"===r[1].toLowerCase()){for(var l=e.slice(0),f="",d=u;d>0;d--){var h=l[d][0];if(f.trim().startsWith("!")&&"space"!==h)break;f=l.pop()[1]+f}f.trim().startsWith("!")&&(i.important=!0,i.raws.important=f,e=l)}if("space"!==r[0]&&"comment"!==r[0])break}e.some(function(e){return"space"!==e[0]&&"comment"!==e[0]})&&(i.raws.between+=s.map(function(e){return e[1]}).join(""),s=[]),this.raw(i,"value",s.concat(e),t),i.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}},{key:"doubleColon",value:function(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}},{key:"emptyRule",value:function(e){var t=new nQ;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}},{key:"end",value:function(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current.source.end.offset++,this.current=this.current.parent):this.unexpectedClose(e)}},{key:"endFile",value:function(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.root.source.end=this.getPosition(this.tokenizer.position())}},{key:"freeSemicolon",value:function(e){if(this.spaces+=e[1],this.current.nodes){var t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}},{key:"getPosition",value:function(e){var t=this.input.fromOffset(e);return{column:t.col,line:t.line,offset:e}}},{key:"init",value:function(e,t){this.current.push(e),e.source={input:this.input,start:this.getPosition(t)},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}},{key:"other",value:function(e){for(var t=!1,r=null,n=!1,i=null,o=[],a=e[1].startsWith("--"),s=[],u=e;u;){if(r=u[0],s.push(u),"("===r||"["===r)i||(i=u),o.push("("===r?")":"]");else if(a&&n&&"{"===r)i||(i=u),o.push("}");else if(0===o.length){if(";"===r){if(n){this.decl(s,a);return}break}if("{"===r){this.rule(s);return}if("}"===r){this.tokenizer.back(s.pop()),t=!0;break}":"===r&&(n=!0)}else r===o[o.length-1]&&(o.pop(),0===o.length&&(i=null));u=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),o.length>0&&this.unclosedBracket(i),t&&n){if(!a)for(;s.length&&("space"===(u=s[s.length-1][0])||"comment"===u);)this.tokenizer.back(s.pop());this.decl(s,a)}else this.unknownWord(s)}},{key:"parse",value:function(){for(var e;!this.tokenizer.endOfFile();)switch((e=this.tokenizer.nextToken())[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}},{key:"precheckMissedSemicolon",value:function(){}},{key:"raw",value:function(e,t,r,n){for(var i,o,a,s,u=r.length,c="",l=!0,f=0;f1&&void 0!==arguments[1]?arguments[1]:{};if(tl(this,e),this.type="warning",this.text=t,r.node&&r.node.source){var n=r.node.rangeBy(r);this.line=n.start.line,this.column=n.start.column,this.endLine=n.end.line,this.endColumn=n.end.column}for(var i in r)this[i]=r[i]}return td(e,[{key:"toString",value:function(){return this.node?this.node.error(this.text,{index:this.index,plugin:this.plugin,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}]),e}();ig=iy,iy.default=iy;var ib=/*#__PURE__*/function(){function e(t,r,n){tl(this,e),this.processor=t,this.messages=[],this.root=r,this.opts=n,this.css=void 0,this.map=void 0}return td(e,[{key:"toString",value:function(){return this.css}},{key:"warn",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!t.plugin&&this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);var r=new ig(e,t);return this.messages.push(r),r}},{key:"warnings",value:function(){return this.messages.filter(function(e){return"warning"===e.type})}},{key:"content",get:function(){return this.css}}]),e}();iv=ib,ib.default=ib;var iw={atrule:"AtRule",comment:"Comment",decl:"Declaration",document:"Document",root:"Root",rule:"Rule"},ix={AtRule:!0,AtRuleExit:!0,Comment:!0,CommentExit:!0,Declaration:!0,DeclarationExit:!0,Document:!0,DocumentExit:!0,Once:!0,OnceExit:!0,postcssPlugin:!0,prepare:!0,Root:!0,RootExit:!0,Rule:!0,RuleExit:!0},iE={Once:!0,postcssPlugin:!0,prepare:!0};function iS(e){return"object"==typeof e&&"function"==typeof e.then}function ik(e){var t=!1,r=iw[e.type];return("decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append)?[r,r+"-"+t,0,r+"Exit",r+"Exit-"+t]:t?[r,r+"-"+t,r+"Exit",r+"Exit-"+t]:e.append?[r,0,r+"Exit"]:[r,r+"Exit"]}function iA(e){return{eventIndex:0,events:"document"===e.type?["Document",0,"DocumentExit"]:"root"===e.type?["Root",0,"RootExit"]:ik(e),iterator:0,node:e,visitorIndex:0,visitors:[]}}function iI(e){return e[ex]=!1,e.nodes&&e.nodes.forEach(function(e){return iI(e)}),e}var iT={},iN=/*#__PURE__*/function(){function e(t,r,n){var i,o=this;if(tl(this,e),this.stringified=!1,this.processed=!1,"object"==typeof r&&null!==r&&("root"===r.type||"document"===r.type))i=iI(r);else if(r instanceof e||r instanceof iv)i=iI(r.root),r.map&&(void 0===n.map&&(n.map={}),n.map.inline||(n.map.inline=!1),n.map.prev=r.map);else{var a=ia;n.syntax&&(a=n.syntax.parse),n.parser&&(a=n.parser),a.parse&&(a=a.parse);try{i=a(r,n)}catch(e){this.processed=!0,this.error=e}i&&!i[eE]&&rN.rebuild(i)}this.result=new iv(t,i,n),this.helpers=re(tW({},iT),{postcss:iT,result:this.result}),this.plugins=this.processor.plugins.map(function(e){return"object"==typeof e&&e.prepare?tW({},e,e.prepare(o.result)):e})}return td(e,[{key:"async",value:function(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}},{key:"catch",value:function(e){return this.async().catch(e)}},{key:"finally",value:function(e){return this.async().then(e,e)}},{key:"getAsyncError",value:function(){throw Error("Use process(css).then(cb) to work with async plugins")}},{key:"handleError",value:function(e,t){var r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?r.postcssVersion:(e.plugin=r.postcssPlugin,e.setMessage())}catch(e){console&&console.error&&console.error(e)}return e}},{key:"prepareVisitors",value:function(){var e=this;this.listeners={};var t=function(t,r,n){e.listeners[r]||(e.listeners[r]=[]),e.listeners[r].push([t,n])},r=!0,n=!1,i=void 0;try{for(var o,a=this.plugins[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("object"==typeof s)for(var u in s){if(!ix[u]&&/^[A-Z]/.test(u))throw Error("Unknown event ".concat(u," in ").concat(s.postcssPlugin,". ")+"Try to update PostCSS (".concat(this.processor.version," now)."));if(!iE[u]){if("object"==typeof s[u])for(var c in s[u])t(s,"*"===c?u:u+"-"+c.toLowerCase(),s[u][c]);else"function"==typeof s[u]&&t(s,u,s[u])}}}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}this.hasListener=Object.keys(this.listeners).length>0}},{key:"runAsync",value:function(){var e=this;return eG(function(){var t,r,n,i,o,a,s,u,c,l,f,d,h,p,m,v;return(0,eK.__generator)(this,function(g){switch(g.label){case 0:e.plugin=0,t=0,g.label=1;case 1:if(!(t0))return[3,13];if(!iS(s=e.visitTick(a)))return[3,12];g.label=9;case 9:return g.trys.push([9,11,,12]),[4,s];case 10:return g.sent(),[3,12];case 11:throw u=g.sent(),c=a[a.length-1].node,e.handleError(u,c);case 12:return[3,8];case 13:return[3,7];case 14:if(l=!0,f=!1,d=void 0,!e.listeners.OnceExit)return[3,22];g.label=15;case 15:g.trys.push([15,20,21,22]),h=function(){var t,r,n,i;return(0,eK.__generator)(this,function(a){switch(a.label){case 0:r=(t=n5(m.value,2))[0],n=t[1],e.result.lastPlugin=r,a.label=1;case 1:if(a.trys.push([1,6,,7]),"document"!==o.type)return[3,3];return[4,Promise.all(o.nodes.map(function(t){return n(t,e.helpers)}))];case 2:return a.sent(),[3,5];case 3:return[4,n(o,e.helpers)];case 4:a.sent(),a.label=5;case 5:return[3,7];case 6:throw i=a.sent(),e.handleError(i);case 7:return[2]}})},p=e.listeners.OnceExit[Symbol.iterator](),g.label=16;case 16:if(l=(m=p.next()).done)return[3,19];return[5,(0,eK.__values)(h())];case 17:g.sent(),g.label=18;case 18:return l=!0,[3,16];case 19:return[3,22];case 20:return v=g.sent(),f=!0,d=v,[3,22];case 21:try{l||null==p.return||p.return()}finally{if(f)throw d}return[7];case 22:return e.processed=!0,[2,e.stringify()]}})})()}},{key:"runOnRoot",value:function(e){var t=this;this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){var r=this.result.root.nodes.map(function(r){return e.Once(r,t.helpers)});if(iS(r[0]))return Promise.all(r);return r}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}},{key:"stringify",value:function(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();var e=this.result.opts,t=rj;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);var r=new n8(t,this.result.root,this.result.opts).generate();return this.result.css=r[0],this.result.map=r[1],this.result}},{key:"sync",value:function(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();var e=!0,t=!1,r=void 0;try{for(var n,i=this.plugins[Symbol.iterator]();!(e=(n=i.next()).done);e=!0){var o=n.value,a=this.runOnRoot(o);if(iS(a))throw this.getAsyncError()}}catch(e){t=!0,r=e}finally{try{e||null==i.return||i.return()}finally{if(t)throw r}}if(this.prepareVisitors(),this.hasListener){for(var s=this.result.root;!s[ex];)s[ex]=!0,this.walkSync(s);if(this.listeners.OnceExit){var u=!0,c=!1,l=void 0;if("document"===s.type)try{for(var f,d=s.nodes[Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var h=f.value;this.visitSync(this.listeners.OnceExit,h)}}catch(e){c=!0,l=e}finally{try{u||null==d.return||d.return()}finally{if(c)throw l}}else this.visitSync(this.listeners.OnceExit,s)}}return this.result}},{key:"then",value:function(e,t){return this.async().then(e,t)}},{key:"toString",value:function(){return this.css}},{key:"visitSync",value:function(e,t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=n5(o.value,2),u=s[0],c=s[1];this.result.lastPlugin=u;var l=void 0;try{l=c(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(iS(l))throw this.getAsyncError()}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}},{key:"visitTick",value:function(e){var t=e[e.length-1],r=t.node,n=t.visitors;if("root"!==r.type&&"document"!==r.type&&!r.parent){e.pop();return}if(n.length>0&&t.visitorIndex0&&void 0!==arguments[0]?arguments[0]:[];tl(this,e),this.version="8.4.47",this.plugins=this.normalize(t)}return td(e,[{key:"normalize",value:function(e){var t=[],r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if(!0===s.postcss?s=s():s.postcss&&(s=s.postcss),"object"==typeof s&&Array.isArray(s.plugins))t=t.concat(s.plugins);else if("object"==typeof s&&s.postcssPlugin)t.push(s);else if("function"==typeof s)t.push(s);else if("object"==typeof s&&(s.parse||s.stringify));else throw Error(s+" is not a PostCSS plugin")}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}return t}},{key:"process",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.plugins.length||t.parser||t.stringifier||t.syntax?new n2(this,e,t):new i_(this,e,t)}},{key:"use",value:function(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}}]),e}();function iL(){for(var e=arguments.length,t=Array(e),r=0;r]+$/;function iF(e,t,r){if(null==e)return"";"number"==typeof e&&(e=e.toString());var n,i,o,a,s,u,c,l,f,d="",h="";function p(e,t){var r=this;this.tag=e,this.attribs=t||{},this.tagPosition=d.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(s.length){var e=s[s.length-1];e.text+=r.text}},this.updateParentNodeMediaChildren=function(){s.length&&iB.includes(this.tag)&&s[s.length-1].mediaChildren.push(this.tag)}}(t=Object.assign({},iF.defaults,t)).parser=Object.assign({},iV,t.parser);var m=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};iR.forEach(function(e){m(e)&&!t.allowVulnerableTags&&console.warn("\n\n⚠️ Your `allowedTags` option includes, `".concat(e,"`, which is inherently\nvulnerable to XSS attacks. Please remove it from `allowedTags`.\nOr, to disable this warning, add the `allowVulnerableTags` option\nand ensure you are accounting for this risk.\n\n"))});var v=t.nonTextTags||["script","style","textarea","option"];t.allowedAttributes&&(n={},i={},iM(t.allowedAttributes,function(e,t){n[t]=[];var r=[];e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rl(e).replace(/\\\*/g,".*")):n[t].push(e)}),r.length&&(i[t]=RegExp("^("+r.join("|")+")$"))}));var g={},y={},b={};iM(t.allowedClasses,function(e,t){if(n&&(iq(n,t)||(n[t]=[]),n[t].push("class")),g[t]=e,Array.isArray(e)){var r=[];g[t]=[],b[t]=[],e.forEach(function(e){"string"==typeof e&&e.indexOf("*")>=0?r.push(rl(e).replace(/\\\*/g,".*")):e instanceof RegExp?b[t].push(e):g[t].push(e)}),r.length&&(y[t]=RegExp("^("+r.join("|")+")$"))}});var w={};iM(t.transformTags,function(e,t){var r;"function"==typeof e?r=e:"string"==typeof e&&(r=iF.simpleTransform(e)),"*"===t?o=r:w[t]=r});var x=!1;S();var E=new tV({onopentag:function(e,r){if(t.enforceHtmlBoundary&&"html"===e&&S(),l){f++;return}var E,N=new p(e,r);s.push(N);var O=!1,_=!!N.text;if(iq(w,e)&&(E=w[e](e,r),N.attribs=r=E.attribs,void 0!==E.text&&(N.innerText=E.text),e!==E.tagName&&(N.name=e=E.tagName,c[a]=E.tagName)),o&&(E=o(e,r),N.attribs=r=E.attribs,e!==E.tagName&&(N.name=e=E.tagName,c[a]=E.tagName)),(!m(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(var t in e)if(iq(e,t))return!1;return!0}(u)||null!=t.nestingLimit&&a>=t.nestingLimit)&&(O=!0,u[a]=!0,("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&-1!==v.indexOf(e)&&(l=!0,f=1),u[a]=!0),a++,O){if("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)return;h=d,d=""}d+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(N.innerText=""),(!n||iq(n,e)||n["*"])&&iM(r,function(r,o){if(!ij.test(o)||""===r&&!t.allowedEmptyAttributes.includes(o)&&(t.nonBooleanAttributes.includes(o)||t.nonBooleanAttributes.includes("*"))){delete N.attribs[o];return}var a=!1;if(!n||iq(n,e)&&-1!==n[e].indexOf(o)||n["*"]&&-1!==n["*"].indexOf(o)||iq(i,e)&&i[e].test(o)||i["*"]&&i["*"].test(o))a=!0;else if(n&&n[e]){var s=!0,u=!1,c=void 0;try{for(var l,f=n[e][Symbol.iterator]();!(s=(l=f.next()).done);s=!0){var h=l.value;if(rd(h)&&h.name&&h.name===o){a=!0;var p="";if(!0===h.multiple){var m=r.split(" "),v=!0,w=!1,x=void 0;try{for(var E,S=m[Symbol.iterator]();!(v=(E=S.next()).done);v=!0){var O=E.value;-1!==h.values.indexOf(O)&&(""===p?p=O:p+=" "+O)}}catch(e){w=!0,x=e}finally{try{v||null==S.return||S.return()}finally{if(w)throw x}}}else h.values.indexOf(r)>=0&&(p=r);r=p}}}catch(e){u=!0,c=e}finally{try{s||null==f.return||f.return()}finally{if(u)throw c}}}if(a){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(o)&&A(e,r)){delete N.attribs[o];return}if("script"===e&&"src"===o){var _=!0;try{var C=I(r);if(t.allowedScriptHostnames||t.allowedScriptDomains){var P=(t.allowedScriptHostnames||[]).find(function(e){return e===C.url.hostname}),L=(t.allowedScriptDomains||[]).find(function(e){return C.url.hostname===e||C.url.hostname.endsWith(".".concat(e))});_=P||L}}catch(e){_=!1}if(!_){delete N.attribs[o];return}}if("iframe"===e&&"src"===o){var D=!0;try{var B=I(r);if(B.isRelativeUrl)D=iq(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){var R=(t.allowedIframeHostnames||[]).find(function(e){return e===B.url.hostname}),M=(t.allowedIframeDomains||[]).find(function(e){return B.url.hostname===e||B.url.hostname.endsWith(".".concat(e))});D=R||M}}catch(e){D=!1}if(!D){delete N.attribs[o];return}}if("srcset"===o)try{var q=rx(r);if(q.forEach(function(e){A("srcset",e.url)&&(e.evil=!0)}),(q=iU(q,function(e){return!e.evil})).length)r=iU(q,function(e){return!e.evil}).map(function(e){if(!e.url)throw Error("URL missing");return e.url+(e.w?" ".concat(e.w,"w"):"")+(e.h?" ".concat(e.h,"h"):"")+(e.d?" ".concat(e.d,"x"):"")}).join(", "),N.attribs[o]=r;else{delete N.attribs[o];return}}catch(e){delete N.attribs[o];return}if("class"===o){var U=g[e],j=g["*"],F=y[e],V=b[e],$=b["*"],H=[F,y["*"]].concat(V,$).filter(function(e){return e});if(!(r=U&&j?T(r,rh(U,j),H):T(r,U||j,H)).length){delete N.attribs[o];return}}if("style"===o){if(t.parseStyleAttributes)try{var z=iD(e+" {"+r+"}",{map:!1});if(r=(function(e,t){if(!t)return e;var r,n=e.nodes[0];return(r=t[n.selector]&&t["*"]?rh(t[n.selector],t["*"]):t[n.selector]||t["*"])&&(e.nodes[0].nodes=n.nodes.reduce(function(e,t){return iq(r,t.prop)&&r[t.prop].some(function(e){return e.test(t.value)})&&e.push(t),e},[])),e})(z,t.allowedStyles).nodes[0].nodes.reduce(function(e,t){return e.push("".concat(t.prop,":").concat(t.value).concat(t.important?" !important":"")),e},[]).join(";"),0===r.length){delete N.attribs[o];return}}catch(t){"undefined"!=typeof window&&console.warn('Failed to parse "'+e+" {"+r+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),delete N.attribs[o];return}else if(t.allowedStyles)throw Error("allowedStyles option cannot be used together with parseStyleAttributes: false.")}d+=" "+o,r&&r.length?d+='="'+k(r,!0)+'"':t.allowedEmptyAttributes.includes(o)&&(d+='=""')}else delete N.attribs[o]}),-1!==t.selfClosing.indexOf(e)?d+=" />":(d+=">",!N.innerText||_||t.textFilter||(d+=k(N.innerText),x=!0)),O&&(d=h+k(d),h="")},ontext:function(e){if(!l){var r,n=s[s.length-1];if(n&&(r=n.tag,e=void 0!==n.innerText?n.innerText:e),"completelyDiscard"!==t.disallowedTagsMode||m(r)){if(("discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode)&&("script"===r||"style"===r))d+=e;else{var i=k(e,!1);t.textFilter&&!x?d+=t.textFilter(i,r):x||(d+=i)}}else e="";if(s.length){var o=s[s.length-1];o.text+=e}}},onclosetag:function(e,r){if(l){if(--f)return;l=!1}var n=s.pop();if(n){if(n.tag!==e){s.push(n);return}l=!!t.enforceHtmlBoundary&&"html"===e;var i=u[--a];if(i){if(delete u[a],"discard"===t.disallowedTagsMode||"completelyDiscard"===t.disallowedTagsMode){n.updateParentNodeText();return}h=d,d=""}if(c[a]&&(e=c[a],delete c[a]),t.exclusiveFilter&&t.exclusiveFilter(n)){d=d.substr(0,n.tagPosition);return}if(n.updateParentNodeMediaChildren(),n.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||r&&!m(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0){i&&(d=h,h="");return}d+="",i&&(d=h+k(d),h=""),x=!1}}},t.parser);return E.write(e),E.end(),d;function S(){d="",a=0,s=[],u={},c={},l=!1,f=0}function k(e,r){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(//g,">"),r&&(e=e.replace(/"/g,""")),e}function A(e,r){for(r=r.replace(/[\x00-\x20]+/g,"");;){var n=r.indexOf("",n+4);if(-1===i)break;r=r.substring(0,n)+r.substring(i+3)}var o=r.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!o)return!!r.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;var a=o[1].toLowerCase();return iq(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(a):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(a)}function I(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw Error("relative: exploit attempt");for(var t="relative://relative-site",r=0;r<100;r++)t+="/".concat(r);var n=new URL(e,t);return{isRelativeUrl:n&&"relative-site"===n.hostname&&"relative:"===n.protocol,url:n}}function T(e,t,r){return t?(e=e.split(/\s+/)).filter(function(e){return -1!==t.indexOf(e)||r.some(function(t){return t.test(e)})}).join(" "):e}}var iV={decodeEntities:!0};iF.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],nonBooleanAttributes:["abbr","accept","accept-charset","accesskey","action","allow","alt","as","autocapitalize","autocomplete","blocking","charset","cite","class","color","cols","colspan","content","contenteditable","coords","crossorigin","data","datetime","decoding","dir","dirname","download","draggable","enctype","enterkeyhint","fetchpriority","for","form","formaction","formenctype","formmethod","formtarget","headers","height","hidden","high","href","hreflang","http-equiv","id","imagesizes","imagesrcset","inputmode","integrity","is","itemid","itemprop","itemref","itemtype","kind","label","lang","list","loading","low","max","maxlength","media","method","min","minlength","name","nonce","optimum","pattern","ping","placeholder","popover","popovertarget","popovertargetaction","poster","preload","referrerpolicy","rel","rows","rowspan","sandbox","scope","shape","size","sizes","slot","span","spellcheck","src","srcdoc","srclang","srcset","start","step","style","tabindex","target","title","translate","type","usemap","value","width","wrap","onauxclick","onafterprint","onbeforematch","onbeforeprint","onbeforeunload","onbeforetoggle","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextlost","oncontextmenu","oncontextrestored","oncopy","oncuechange","oncut","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","onformdata","onhashchange","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onlanguagechange","onload","onloadeddata","onloadedmetadata","onloadstart","onmessage","onmessageerror","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onoffline","ononline","onpagehide","onpageshow","onpaste","onpause","onplay","onplaying","onpopstate","onprogress","onratechange","onreset","onresize","onrejectionhandled","onscroll","onscrollend","onsecuritypolicyviolation","onseeked","onseeking","onselect","onslotchange","onstalled","onstorage","onsubmit","onsuspend","ontimeupdate","ontoggle","onunhandledrejection","onunload","onvolumechange","onwaiting","onwheel"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},allowedEmptyAttributes:["alt"],selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},iF.simpleTransform=function(e,t,r){return r=void 0===r||r,t=t||{},function(n,i){var o;if(r)for(o in t)i[o]=t[o];else i=t;return{tagName:e,attribs:i}}};var i$={};r="millisecond",n="second",i="minute",o="hour",a="week",s="month",u="quarter",c="year",l="date",f="Invalid Date",d=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,h=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,p=function(e,t,r){var n=String(e);return!n||n.length>=t?e:""+Array(t+1-n.length).join(r)+e},(v={})[m="en"]={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],r=e%100;return"["+e+(t[(r-20)%10]||t[r]||"th")+"]"}},g="$isDayjsObject",y=function(e){return e instanceof E||!(!e||!e[g])},b=function e(t,r,n){var i;if(!t)return m;if("string"==typeof t){var o=t.toLowerCase();v[o]&&(i=o),r&&(v[o]=r,i=o);var a=t.split("-");if(!i&&a.length>1)return e(a[0])}else{var s=t.name;v[s]=t,i=s}return!n&&i&&(m=i),i||!n&&m},w=function(e,t){if(y(e))return e.clone();var r="object"==typeof t?t:{};return r.date=e,r.args=arguments,new E(r)},(x={s:p,z:function(e){var t=-e.utcOffset(),r=Math.abs(t);return(t<=0?"+":"-")+p(Math.floor(r/60),2,"0")+":"+p(r%60,2,"0")},m:function e(t,r){if(t.date() * @license MIT - */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iz={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iW=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iY=RegExp("^"+("["+iW+"][")+iW+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eB=function(e){return void 0!==e},eq=function(e){return null!=iY.exec(e)},eM=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i1("InvalidXml","XML declaration allowed only at the start of the document.",i3(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iQ(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iK,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eq(u))return i1("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i3(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i1("InvalidAttr","Attributes for '"+u+"' have open quote.",i3(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i0(l=l.substring(0,l.length-1),t);if(!0!==d)return i1(d.err.code,d.err.msg,i3(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i1("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i3(e,o));if(l.trim().length>0)return i1("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i3(e,a));if(0===r.length)return i1("InvalidTag","Closing tag '"+u+"' has not been opened.",i3(e,a));var h=r.pop();if(u!==h.tagName){var p=i3(e,h.tagStartPos);return i1("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i3(e,a))}0==r.length&&(i=!0)}else{var m=i0(l,t);if(!0!==m)return i1(m.err.code,m.err.msg,i3(e,o-l.length+m.err.line));if(!0===i)return i1("InvalidXml","Multiple possible root nodes found.",i3(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i1("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i1("InvalidXml","Start tag expected.",1)};var iX=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i0(e,t){for(var r=eM(e,iX),n={},i=0;i0?this.child.push((tz(t={},e.tagname,e.child),tz(t,":@",e[":@"]),t)):this.child.push(tz({},e.tagname,e.child))}}]),e}();var i9={};function i7(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i9=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n5(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},on,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&ot.test(n))return Number.parseInt(n,16);var i=or.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oi={};function oo(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tt._)(s))!==(void 0===e?"undefined":(0,tt._)(e))||s!==e?s:this.options.trimValues?oy(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?oy(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function os(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oi=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var ou=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function oc(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eM(e,ou),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=ov(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i4(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=om(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tz({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i9(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=om(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tz({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=ov(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var N=this.readStopNodeData(e,x,k+1);if(!N)throw Error("Unexpected end of ".concat(x));o=N.i,I=N.tagContent}var T=new i4(w);w!==E&&S&&(T[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),T.add(this.options.textNodeName,I),this.addChild(r,T,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i4(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i4(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function of(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var od=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function oh(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function op(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function om(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function ov(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=om(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=om(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=om(e,"]]>",r,"StopNode is not closed.")-2;else{var a=ov(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function oy(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&oe(e,r)}return eB(e)?e:""}i6=function e(t){tl(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oo,this.parseXml=ol,this.parseTextData=oa,this.resolveNameSpace=os,this.buildAttributesMap=oc,this.isItStopNode=op,this.replaceEntitiesValue=od,this.readStopNodeData=og,this.saveTextToParentTag=oh,this.addChild=of,this.ignoreAttributesFn=oi(this.options.ignoreAttributes)},ej=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i5=/*#__PURE__*/function(){function e(t){tl(this,e),this.externalEntities={},this.options=eU(t)}return td(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eR(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i6(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:ej(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ob={};function ow(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=ox(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function ox(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ow(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ow(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oE={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function oS(e){this.options=Object.assign({},oE,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oi(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oI),this.processTextOrObjNode=ok,this.options.format?(this.indentate=oA,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function ok(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oA(e){return this.options.indentBy.repeat(e)}function oI(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}oS.prototype.build=function(e){return this.options.preserveOrder?ob(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tz({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},oS.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},oS.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t300;else{var oO=navigator.userAgent||"";oT.notKaiOS=!oO.includes("KaiOS")}var o_="",oC="https://corsproxy.io/?",oP={opml_url:"https://raw.githubusercontent.com/strukturart/feedolin/master/example.opml",opml_local:"",proxy_url:"https://corsproxy.io/?",cache_time:1e3},oD={},oL=[],oR=[];/*@__PURE__*/t(te).getItem("read_articles").then(function(e){if(null===e)return oR=[],/*@__PURE__*/t(te).setItem("read_articles",oR).then(function(){});oR=e}).catch(function(e){console.error("Error accessing localForage:",e)});var oB=function(){oU=[],e5("reload data",3e3),localStorage.setItem("last_channel_filter",oQ),setTimeout(function(){oK()},3e3)};function oq(e){var r=[];oU.map(function(e,t){r.push(e.id)}),(oR=oR.filter(function(t){return r.includes(e)})).push(e),/*@__PURE__*/t(te).setItem("read_articles",oR).then(function(){}).catch(function(e){console.error("Error updating localForage:",e)})}var oM=new DOMParser;("b2g"in navigator||"navigator.mozApps"in navigator)&&(oT.notKaiOS=!1),oT.notKaiOS||["http://127.0.0.1/api/v1/shared/core.js","http://127.0.0.1/api/v1/shared/session.js","http://127.0.0.1/api/v1/apps/service.js","http://127.0.0.1/api/v1/audiovolumemanager/service.js","./assets/js/kaiads.v5.min.js"].forEach(function(e){var t=document.createElement("script");t.type="text/javascript",t.src=e,document.head.appendChild(t)});var oU=[];new BroadcastChannel("sw-messages"),oT.debug&&(window.onerror=function(e,t,r){return alert("Error message: "+e+"\nURL: "+t+"\nLine Number: "+r),!0});var oj=function(){/*@__PURE__*/t(te).getItem("settings").then(function(e){oD=e;var r=new URLSearchParams(window.location.href.split("?")[1]).get("code");if(r){var n=r.split("#")[0];if(r){/*@__PURE__*/t(te).setItem("mastodon_code",n);var i=new Headers;i.append("Content-Type","application/x-www-form-urlencoded");var o=new URLSearchParams;o.append("code",n),o.append("scope","read"),o.append("grant_type","authorization_code"),o.append("redirect_uri","https://feedolin.strukturart.com"),o.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),o.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oD.mastodon_server_url+"/oauth/token",{method:"POST",headers:i,body:o,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oD.mastodon_token=e.access_token,/*@__PURE__*/t(te).setItem("settings",oD),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e5("Connection failed")})}}})};function oF(e){for(var t=0,r=0;r0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,oW(r)];case 2:return i.sent(),oD.last_update=new Date,/*@__PURE__*/t(te).setItem("settings",oD),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),oG=function(e){var t=oM.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},oW=(ei=eW(function(e){var r,n,i,o,a;return(0,eK.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){oQ=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(te).setItem("articles",oU).then(function(){console.log("feeds cached"),oU.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oU.forEach(function(e){-1===oL.indexOf(e.channel)&&e.channel&&oL.push(e.channel)}),oL.length>0&&!i&&(oQ=localStorage.getItem("last_channel_filter")||oL[0],i=!0),/*@__PURE__*/t(tr).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oU.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oC+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oN.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){alert(e)}oU.push(r)}}),oL.push("Mastodon")})},oK=function(){oH(oC+oD.opml_url+"?time="+new Date),oD.opml_local&&oz(oD.opml_local),oD.mastodon_token&&e7(oD.mastodon_server_url,oD.mastodon_token).then(function(e){oT.mastodon_logged=e.display_name,oY()}),oQ=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(te).getItem("settings").then(function(e){null==e&&(oD=oP,/*@__PURE__*/t(te).setItem("settings",oD).then(function(e){}).catch(function(e){console.log(e)})),(oD=e).cache_time=oD.cache_time||1e3,oD.last_update?oT.last_update_duration=new Date/1e3-oD.last_update/1e3:oT.last_update_duration=3600,oD.opml_url||oD.opml_local_filename||e5("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oT.last_update_duration>oD.cache_time?(oK(),e5("Load feeds",4e3)):/*@__PURE__*/t(te).getItem("articles").then(function(e){(oU=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oU.forEach(function(e){-1===oL.indexOf(e.channel)&&e.channel&&oL.push(e.channel)}),oL.length&&(oQ=localStorage.getItem("last_channel_filter")||oL[0]),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Cached feeds loaded",4e3)}).catch(function(e){})})}).catch(function(e){e5("The default settings was loaded",3e3),oH(oC+(oD=oP).opml_url),/*@__PURE__*/t(te).setItem("settings",oD).then(function(e){}).catch(function(e){console.log(e)})});var oZ=document.getElementById("app"),oJ=-1,oQ=localStorage.getItem("last_channel_filter")||"",oX=0,o0=function(e){return /*@__PURE__*/t(i$).duration(e,"seconds").format("mm:ss")},o1={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oT.notKaiOS&&e4("","",""),o1.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(o1.videoElement);var n=r.url;n&&(o1.videoElement.src=n,o1.videoElement.play(),o1.isPlaying=!0),o1.videoElement.onloadedmetadata=function(){o1.videoDuration=o1.videoElement.duration,/*@__PURE__*/t(tr).redraw()},o1.videoElement.ontimeupdate=function(){o1.currentTime=o1.videoElement.currentTime,/*@__PURE__*/t(tr).redraw()},document.addEventListener("keydown",o1.handleKeydown)},onremove:function(){document.removeEventListener("keydown",o1.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?o1.togglePlayPause():"ArrowLeft"===e.key?o1.seek("left"):"ArrowRight"===e.key&&o1.seek("right")},togglePlayPause:function(){o1.isPlaying?o1.videoElement.pause():o1.videoElement.play(),o1.isPlaying=!o1.isPlaying},seek:function(e){var t=o1.videoElement.currentTime;"left"===e?o1.videoElement.currentTime=Math.max(0,t-o1.seekAmount):"right"===e&&(o1.videoElement.currentTime=Math.min(o1.videoDuration,t+o1.seekAmount))},view:function(e){e.attrs;var r=o1.videoDuration>0?o1.currentTime/o1.videoDuration*100:0;return /*@__PURE__*/t(tr)("div",{class:"video-player"},[/*@__PURE__*/t(tr)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tr)("div",{class:"video-info"},[" ".concat(o0(o1.currentTime)," / ").concat(o0(o1.videoDuration))]),/*@__PURE__*/t(tr)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tr)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},o3={player:null,oncreate:function(e){var t=e.attrs;oT.notKaiOS&&e4("","",""),e6("","",""),YT?o3.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:o3.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",o3.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?o3.togglePlayPause():"ArrowLeft"===e.key?o3.seek("left"):"ArrowRight"===e.key&&o3.seek("right")},togglePlayPause:function(){1===o3.player.getPlayerState()?o3.player.pauseVideo():o3.player.playVideo()},seek:function(e){var t=o3.player.getCurrentTime();"left"===e?o3.player.seekTo(Math.max(0,t-5),!0):"right"===e&&o3.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tr)("div",{class:"youtube-player"},[/*@__PURE__*/t(tr)("div",{id:"video-container",class:"video-container"})])}},o2=document.createElement("audio");if(o2.preload="auto","b2g"in navigator)try{o2.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var o5={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&o2.src!==r.url&&(o2.src=r.url,o2.play().catch(function(){}),o5.isPlaying=!0),o2.onloadedmetadata=function(){o5.audioDuration=o2.duration,/*@__PURE__*/t(tr).redraw()},o2.ontimeupdate=function(){o5.currentTime=o2.currentTime,/*@__PURE__*/t(tr).redraw()},o5.isPlaying=!o2.paused,document.addEventListener("keydown",o5.handleKeydown)},oncreate:function(){oT.player=!0,e4("","",""),e6("","",""),oT.notKaiOS&&e4("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){o5.togglePlayPause()}),document.addEventListener("swiped-left",function(){o5.seek("left")}),document.addEventListener("swiped-right",function(){o5.seek("right")})},onremove:function(){document.removeEventListener("keydown",o5.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?o5.togglePlayPause():"ArrowLeft"===e.key?o5.seek("left"):"ArrowRight"===e.key&&o5.seek("right")},togglePlayPause:function(){o5.isPlaying?o2.pause():o2.play().catch(function(){}),o5.isPlaying=!o5.isPlaying},seek:function(e){var t=o2.currentTime;"left"===e?o2.currentTime=Math.max(0,t-o5.seekAmount):"right"===e&&(o2.currentTime=Math.min(o5.audioDuration,t+o5.seekAmount))},view:function(e){e.attrs;var r=o5.audioDuration>0?o5.currentTime/o5.audioDuration*100:0;return /*@__PURE__*/t(tr)("div",{class:"audio-player"},[/*@__PURE__*/t(tr)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tr)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(o_.cover,")")}}),/*@__PURE__*/t(tr)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(o0(o5.currentTime)," / ").concat(o0(o5.audioDuration))]),/*@__PURE__*/t(tr)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tr)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function o8(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tr).route(oZ,"/intro",{"/article":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"article",oncreate:function(){oT.notKaiOS&&e4("","",""),e6("","","")}},oU.map(function(e,r){if(/*@__PURE__*/t(tr).route.param("index")==e.id)return o_=e,console.log(e),/*@__PURE__*/t(tr)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),"audio"==e.type&&(e.type="audio",e6("","","")),"video"==e.type&&(e.type="video",e6("","","")),"youtube"==e.type&&(e.type="youtube",e6("","",""))}},[/*@__PURE__*/t(tr)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(i$)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tr)("h2",{oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tr)("div",{class:"text"},[/*@__PURE__*/t(tr).trust(o$(e.content))]),e.reblog?/*@__PURE__*/t(tr)("div",{class:"text"},"reblogged from:"+e.reblogUser):""])}))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oT.notKaiOS||(oT.local_opml=[],eQ("opml",function(e){oT.local_opml.push(e)})),e6("","",""),oT.notKaiOS&&e6("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oT.notKaiOS&&e4("","",""),oT.notKaiOS&&e6("","","")}},[/*@__PURE__*/t(tr)("div",{class:"item input-parent flex"},[/*@__PURE__*/t(tr)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tr)("input",{id:"url-opml",placeholder:"",value:oD.opml_url||"",type:"url"})]),/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){oD.opml_local_filename?(oD.opml_local="",oD.opml_local_filename="",/*@__PURE__*/t(te).setItem("settings",oD).then(function(){e5("OPML file removed",4e3),/*@__PURE__*/t(tr).redraw()})):oT.notKaiOS?e9(function(e){var r=new FileReader;r.onload=function(){oG(r.result).error?e5("OPML file not valid",4e3):(oD.opml_local=r.result,oD.opml_local_filename=e.filename,/*@__PURE__*/t(te).setItem("settings",oD).then(function(){e5("OPML file added",4e3)}))},r.onerror=function(){e5("OPML file not valid",4e3)},r.readAsText(e.blob)}):oT.local_opml.length>0?/*@__PURE__*/t(tr).route.set("/localOPML"):e5("not enough",3e3)}},oD.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tr)("div",oD.opml_local_filename),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("div",{tabindex:1,class:"item input-parent flex "},[/*@__PURE__*/t(tr)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tr)("input",{id:"url-proxy",placeholder:"",value:oD.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oT.mastodon_logged?/*@__PURE__*/t(tr)("div",{id:"account_info"},"You have successfully logged in as ".concat(oT.mastodon_logged," and the data is being loaded from server ").concat(oD.mastodon_server_url,".")):null,oT.mastodon_logged?/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){oD.mastodon_server_url="",oD.mastodon_token="",/*@__PURE__*/t(te).setItem("settings",oD),oT.mastodon_logged="",/*@__PURE__*/t(tr).route.set("/settingsView")}},"Disconnect"):null,oT.mastodon_logged?null:/*@__PURE__*/t(tr)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tr)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tr)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:oD.mastodon_server_url})]),oT.mastodon_logged?null:/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){/*@__PURE__*/t(te).setItem("settings",oD),oD.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=oD.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tr)("button",{class:"item",id:"button-save-settings",onclick:function(){var e;e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e5("URL not valid"),oD.opml_url=document.getElementById("url-opml").value,oD.proxy_url=document.getElementById("url-proxy").value,oT.mastodon_logged||(oD.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(te).setItem("settings",oD).then(function(e){e5("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oj()},onremove:function(){localStorage.setItem("version",oT.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tr)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e1(function(e){try{oT.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oT.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oT.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tr)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tr)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oU.filter(function(e){return""===oQ||oQ===e.channel});return /*@__PURE__*/t(tr)("div",{id:"start",oncreate:function(){oX=/*@__PURE__*/t(tr).route.param("index")||0,e6("","",""),oT.notKaiOS&&e6("","",""),oT.notKaiOS&&e4("","",""),oT.notKaiOS&&oT.player&&e4("","","")}},/*@__PURE__*/t(tr)("span",{class:"channel",oncreate:function(){}},oQ),e.map(function(r,n){var i=oR.includes(r.id)?"read":"";return /*@__PURE__*/t(tr)("article",{class:"item ".concat(i),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==oX&&0==n?setTimeout(function(){t.dom.focus()},2e3):r.id==oX&&setTimeout(function(){t.dom.focus(),o8()},1100),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tr).route.set("/article?index="+r.id),oq(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tr).route.set("/article?index="+r.id),oq(r.id))}},[/*@__PURE__*/t(tr)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tr)("time",/*@__PURE__*/t(i$)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tr)("h2",{oncreate:function(e){var t=e.dom;r.reblog&&t.classList.add("reblog")}},o$(r.feed_title)),/*@__PURE__*/t(tr)("h3",o$(r.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"optionsView",class:"flex",oncreate:function(){e4("","",""),oT.notKaiOS&&e4("","",""),e6("","",""),oT.notKaiOS&&e6("","","")}},[/*@__PURE__*/t(tr)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus()},onclick:function(){/*@__PURE__*/t(tr).route.set("/about")}},"About"),/*@__PURE__*/t(tr)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tr).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tr)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tr).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tr)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oT.notKaiOS&&eJ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"page"},/*@__PURE__*/t(tr)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tr)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tr)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tr)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tr)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tr)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tr)("ul",[/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oT.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use Alt to access various options.")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oT.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use # Volume")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oT.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use * Audioplayer

")),/*@__PURE__*/t(tr)("li","Version: "+oT.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tr)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tr)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tr)("h2","Data Storage and Collection"),/*@__PURE__*/t(tr)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tr)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tr)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tr)("ul",[/*@__PURE__*/t(tr)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tr)("li","OPML files you upload or manage."),/*@__PURE__*/t(tr)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tr)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tr)("h2","KaiOS Users"),/*@__PURE__*/t(tr)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tr)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tr)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tr)("p",["For users on all other platforms, ",/*@__PURE__*/t(tr)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tr)("h2","External Sources Responsibility"),/*@__PURE__*/t(tr)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tr)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tr)("h2","Third-Party Services"),/*@__PURE__*/t(tr)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tr)("h2","Policy Updates"),/*@__PURE__*/t(tr)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tr)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"flex",id:"index",oncreate:function(){oT.notKaiOS&&e4("","",""),e6("","","")}},oT.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tr)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){oG(e.result).error?e5("OPML file not valid",4e3):(oD.opml_local=e.result,oD.opml_local_filename=n,/*@__PURE__*/t(te).setItem("settings",oD).then(function(){e5("OPML file added",4e3),/*@__PURE__*/t(tr).route.set("/settingsView")}))},e.onerror=function(){e5("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":o5,"/VideoPlayerView":o1,"/YouTubePlayerView":o3}),document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oT.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),o8()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var t=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);document.querySelector("body").style.opacity=t},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oU=[],oB()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oT.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tr).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--oJ<1&&(oJ=oL.length-1),oQ=oL[oJ],/*@__PURE__*/t(tr).redraw();var i=/*@__PURE__*/t(tr).route.param();i.index=0,/*@__PURE__*/t(tr).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++oJ>oL.length-1&&(oJ=0),oQ=oL[oJ],/*@__PURE__*/t(tr).redraw();var o=/*@__PURE__*/t(tr).route.param();o.index=0,/*@__PURE__*/t(tr).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tr).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++oJ>oL.length-1&&(oJ=0),oQ=oL[oJ],/*@__PURE__*/t(tr).redraw();var n=/*@__PURE__*/t(tr).route.param();n.index=0,/*@__PURE__*/t(tr).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),o8()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--oJ<0&&(oJ=oL.length-1),oQ=oL[oJ],/*@__PURE__*/t(tr).redraw();var o=/*@__PURE__*/t(tr).route.param();o.index=0,/*@__PURE__*/t(tr).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),o8()},500)}break;case"ArrowUp":i(-1),"volume"==oT.window_status&&(navigator.volumeManager.requestVolumeUp(),oT.window_status="volume",setTimeout(function(){oT.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oT.window_status&&(navigator.volumeManager.requestVolumeDown(),oT.window_status="volume",setTimeout(function(){oT.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/article")&&("audio"==o_.type&&/*@__PURE__*/t(tr).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(o_.enclosure["@_url"]))),"video"==o_.type&&/*@__PURE__*/t(tr).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(o_.enclosure["@_url"]))),"youtube"==o_.type&&/*@__PURE__*/t(tr).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(o_.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oB(),r.startsWith("/article")&&window.open(o_.url);break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tr).route.set("/AudioPlayerView");break;case"#":eX();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tr).route.param("index");/*@__PURE__*/t(tr).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tr).route.param("index");/*@__PURE__*/t(tr).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tr).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tr).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tr).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&oD.last_update?(oT.visibility=!0,new Date/1e3-oD.last_update/1e3>oD.cache_time&&(oU=[],e5("load new content",4e3),oK())):oT.visibility=!1})}),window.addEventListener("online",function(){oT.deviceOnline=!0}),window.addEventListener("offline",function(){oT.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oU=[],e5("load new content",4e3),oK(),/*@__PURE__*/t(tr).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var o6={};o6=eH("e6gnT").getBundleURL("3BHab")+"sw.js","serviceWorker"in navigator&&navigator.serviceWorker.getRegistration().then(function(e){if(!e)try{navigator.serviceWorker.register(o6).then(function(e){e.waiting,e.systemMessageManager.subscribe("activity").then(function(e){console.log(e)},function(e){console.log(e)})})}catch(e){console.log(e)}}),new BroadcastChannel("sw-messages").addEventListener("message",function(e){var r=e.data.oauth_success.data;if(r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oD.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){console.log(e),oD.mastodon_token=e.access_token,/*@__PURE__*/t(te).setItem("settings",oD),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e5("Connection failed")})}}); \ No newline at end of file + */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iz={},iW={};e(iW,"validate",function(){return eB},function(e){return eB=e});var iG=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iY=RegExp("^"+("["+iG+"][")+iG+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eR=function(e){return void 0!==e},eM=function(e){return null!=iY.exec(e)},eq=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i1("InvalidXml","XML declaration allowed only at the start of the document.",i3(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iQ(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eB=function(e,t){t=Object.assign({},iK,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eM(u))return i1("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i3(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i1("InvalidAttr","Attributes for '"+u+"' have open quote.",i3(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i0(l=l.substring(0,l.length-1),t);if(!0!==d)return i1(d.err.code,d.err.msg,i3(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i1("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i3(e,o));if(l.trim().length>0)return i1("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i3(e,a));if(0===r.length)return i1("InvalidTag","Closing tag '"+u+"' has not been opened.",i3(e,a));var h=r.pop();if(u!==h.tagName){var p=i3(e,h.tagStartPos);return i1("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i3(e,a))}0==r.length&&(i=!0)}else{var m=i0(l,t);if(!0!==m)return i1(m.err.code,m.err.msg,i3(e,o-l.length+m.err.line));if(!0===i)return i1("InvalidXml","Multiple possible root nodes found.",i3(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i1("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i1("InvalidXml","Start tag expected.",1)};var iX=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i0(e,t){for(var r=eq(e,iX),n={},i=0;i0?this.child.push((tz(t={},e.tagname,e.child),tz(t,":@",e[":@"]),t)):this.child.push(tz({},e.tagname,e.child))}}]),e}();var i9={};function i7(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i9=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n5(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},on,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&ot.test(n))return Number.parseInt(n,16);var i=or.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oi={};function oo(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tt._)(s))!==(void 0===e?"undefined":(0,tt._)(e))||s!==e?s:this.options.trimValues?oy(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?oy(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function os(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oi=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var ou=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function oc(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eq(e,ou),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=ov(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i4(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=om(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tz({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i9(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=om(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tz({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=ov(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var T=this.readStopNodeData(e,x,k+1);if(!T)throw Error("Unexpected end of ".concat(x));o=T.i,I=T.tagContent}var N=new i4(w);w!==E&&S&&(N[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),N.add(this.options.textNodeName,I),this.addChild(r,N,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i4(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i4(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function of(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var od=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function oh(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function op(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function om(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function ov(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=om(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=om(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=om(e,"]]>",r,"StopNode is not closed.")-2;else{var a=ov(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function oy(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&oe(e,r)}return eR(e)?e:""}i6=function e(t){tl(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oo,this.parseXml=ol,this.parseTextData=oa,this.resolveNameSpace=os,this.buildAttributesMap=oc,this.isItStopNode=op,this.replaceEntitiesValue=od,this.readStopNodeData=og,this.saveTextToParentTag=oh,this.addChild=of,this.ignoreAttributesFn=oi(this.options.ignoreAttributes)},ej=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i5=/*#__PURE__*/function(){function e(t){tl(this,e),this.externalEntities={},this.options=eU(t)}return td(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eB(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i6(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:ej(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ob={};function ow(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=ox(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function ox(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ow(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ow(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oE={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function oS(e){this.options=Object.assign({},oE,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oi(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oI),this.processTextOrObjNode=ok,this.options.format?(this.indentate=oA,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function ok(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oA(e){return this.options.indentBy.repeat(e)}function oI(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}oS.prototype.build=function(e){return this.options.preserveOrder?ob(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tz({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},oS.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},oS.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t300;else{var oq=navigator.userAgent||"";oM.notKaiOS=!oq.includes("KaiOS")}var oU="",oj="https://corsproxy.io/?",oF={opml_url:"https://raw.githubusercontent.com/strukturart/feedolin/master/example.opml",opml_local:"",proxy_url:"https://corsproxy.io/?",cache_time:1e3},oV={},o$=[],oH=[];/*@__PURE__*/t(te).getItem("read_articles").then(function(e){if(null===e)return oH=[],/*@__PURE__*/t(te).setItem("read_articles",oH).then(function(){});oH=e}).catch(function(e){console.error("Error accessing localForage:",e)});var oz=function(){oY=[],e5("reload data",3e3),localStorage.setItem("last_channel_filter",o4),setTimeout(function(){o5()},3e3)};function oW(e){var r=[];oY.map(function(e,t){r.push(e.id)}),(oH=oH.filter(function(t){return r.includes(e)})).push(e),/*@__PURE__*/t(te).setItem("read_articles",oH).then(function(){}).catch(function(e){console.error("Error updating localForage:",e)})}var oG=new DOMParser;("b2g"in navigator||"navigator.mozApps"in navigator)&&(oM.notKaiOS=!1),oM.notKaiOS||["http://127.0.0.1/api/v1/shared/core.js","http://127.0.0.1/api/v1/shared/session.js","http://127.0.0.1/api/v1/apps/service.js","http://127.0.0.1/api/v1/audiovolumemanager/service.js","./assets/js/kaiads.v5.min.js"].forEach(function(e){var t=document.createElement("script");t.type="text/javascript",t.src=e,document.head.appendChild(t)});var oY=[];oM.debug&&(window.onerror=function(e,t,r){return alert("Error message: "+e+"\nURL: "+t+"\nLine Number: "+r),!0});var oK=function(){/*@__PURE__*/t(te).getItem("settings").then(function(e){oV=e;var r=new URLSearchParams(window.location.href.split("?")[1]).get("code");if(r){var n=r.split("#")[0];if(r){/*@__PURE__*/t(te).setItem("mastodon_code",n);var i=new Headers;i.append("Content-Type","application/x-www-form-urlencoded");var o=new URLSearchParams;o.append("code",n),o.append("scope","read"),o.append("grant_type","authorization_code"),o.append("redirect_uri","https://feedolin.strukturart.com"),o.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),o.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oV.mastodon_server_url+"/oauth/token",{method:"POST",headers:i,body:o,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oV.mastodon_token=e.access_token,/*@__PURE__*/t(te).setItem("settings",oV),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e5("Connection failed")})}}})};function oJ(e){for(var t=0,r=0;r0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o3(r)];case 2:return i.sent(),oV.last_update=new Date,/*@__PURE__*/t(te).setItem("settings",oV),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),o1=function(e){var t=oG.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},o3=(ei=eG(function(e){var r,n,i,o,a;return(0,eK.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){o4=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(te).setItem("articles",oY).then(function(){console.log("feeds cached"),oY.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length>0&&!i&&(o4=localStorage.getItem("last_channel_filter")||o$[0],i=!0),/*@__PURE__*/t(tr).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oY.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oj+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oR.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oY.push(r)}}),o$.push("Mastodon")})},o5=function(){oX(oj+oV.opml_url+"?time="+new Date),oV.opml_local&&o0(oV.opml_local),oV.mastodon_token&&e7(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oM.mastodon_logged=e.display_name,o2()}).catch(function(e){alert(e)}),o4=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(te).getItem("settings").then(function(e){null==e&&(oV=oF,/*@__PURE__*/t(te).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})),(oV=e).cache_time=oV.cache_time||1e3,oV.last_update?oM.last_update_duration=new Date/1e3-oV.last_update/1e3:oM.last_update_duration=3600,oV.opml_url||oV.opml_local_filename||e5("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oM.last_update_duration>oV.cache_time?(o5(),e5("Load feeds",4e3)):/*@__PURE__*/t(te).getItem("articles").then(function(e){(oY=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length&&(o4=localStorage.getItem("last_channel_filter")||o$[0]),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Cached feeds loaded",4e3),oV.mastodon_token&&e7(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oM.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e5("The default settings was loaded",3e3),oX(oj+(oV=oF).opml_url),/*@__PURE__*/t(te).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})});var o8=document.getElementById("app"),o6=-1,o4=localStorage.getItem("last_channel_filter")||"",o9=0,o7=function(e){return /*@__PURE__*/t(i$).duration(e,"seconds").format("mm:ss")},ae={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oM.notKaiOS&&e4("","",""),ae.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(ae.videoElement);var n=r.url;n&&(ae.videoElement.src=n,ae.videoElement.play(),ae.isPlaying=!0),ae.videoElement.onloadedmetadata=function(){ae.videoDuration=ae.videoElement.duration,/*@__PURE__*/t(tr).redraw()},ae.videoElement.ontimeupdate=function(){ae.currentTime=ae.videoElement.currentTime,/*@__PURE__*/t(tr).redraw()},document.addEventListener("keydown",ae.handleKeydown)},onremove:function(){document.removeEventListener("keydown",ae.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ae.togglePlayPause():"ArrowLeft"===e.key?ae.seek("left"):"ArrowRight"===e.key&&ae.seek("right")},togglePlayPause:function(){ae.isPlaying?ae.videoElement.pause():ae.videoElement.play(),ae.isPlaying=!ae.isPlaying},seek:function(e){var t=ae.videoElement.currentTime;"left"===e?ae.videoElement.currentTime=Math.max(0,t-ae.seekAmount):"right"===e&&(ae.videoElement.currentTime=Math.min(ae.videoDuration,t+ae.seekAmount))},view:function(e){e.attrs;var r=ae.videoDuration>0?ae.currentTime/ae.videoDuration*100:0;return /*@__PURE__*/t(tr)("div",{class:"video-player"},[/*@__PURE__*/t(tr)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tr)("div",{class:"video-info"},[" ".concat(o7(ae.currentTime)," / ").concat(o7(ae.videoDuration))]),/*@__PURE__*/t(tr)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tr)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},at={player:null,oncreate:function(e){var t=e.attrs;oM.notKaiOS&&e4("","",""),e6("","",""),YT?at.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:at.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",at.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){1===at.player.getPlayerState()?at.player.pauseVideo():at.player.playVideo()},seek:function(e){var t=at.player.getCurrentTime();"left"===e?at.player.seekTo(Math.max(0,t-5),!0):"right"===e&&at.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tr)("div",{class:"youtube-player"},[/*@__PURE__*/t(tr)("div",{id:"video-container",class:"video-container"})])}},ar=document.createElement("audio");if(ar.preload="auto","b2g"in navigator)try{ar.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var an={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&ar.src!==r.url&&(ar.src=r.url,ar.play().catch(function(){}),an.isPlaying=!0),ar.onloadedmetadata=function(){an.audioDuration=ar.duration,/*@__PURE__*/t(tr).redraw()},ar.ontimeupdate=function(){an.currentTime=ar.currentTime,/*@__PURE__*/t(tr).redraw()},an.isPlaying=!ar.paused,document.addEventListener("keydown",an.handleKeydown)},oncreate:function(){oM.player=!0,e4("","",""),e6("","",""),oV.sleepTimer&&(e6("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oM.sleepTimer?oB():oD(6e4*oV.sleepTimer)})),oM.notKaiOS&&e4("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){an.togglePlayPause()}),document.addEventListener("swiped-left",function(){an.seek("left")}),document.addEventListener("swiped-right",function(){an.seek("right")})},onremove:function(){document.removeEventListener("keydown",an.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?an.togglePlayPause():"ArrowLeft"===e.key?an.seek("left"):"ArrowRight"===e.key&&an.seek("right")},togglePlayPause:function(){an.isPlaying?ar.pause():ar.play().catch(function(){}),an.isPlaying=!an.isPlaying},seek:function(e){var t=ar.currentTime;"left"===e?ar.currentTime=Math.max(0,t-an.seekAmount):"right"===e&&(ar.currentTime=Math.min(an.audioDuration,t+an.seekAmount))},view:function(e){e.attrs;var r=an.audioDuration>0?an.currentTime/an.audioDuration*100:0;return /*@__PURE__*/t(tr)("div",{class:"audio-player"},[/*@__PURE__*/t(tr)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tr)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oU.cover,")")}}),/*@__PURE__*/t(tr)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(o7(an.currentTime)," / ").concat(o7(an.audioDuration))]),/*@__PURE__*/t(tr)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tr)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function ai(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tr).route(o8,"/intro",{"/article":{view:function(){var e=oY.find(function(e){return /*@__PURE__*/t(tr).route.param("index")==e.id&&(oU=e,!0)});return /*@__PURE__*/t(tr)("div",{id:"article",oncreate:function(){oM.notKaiOS&&e4("","",""),e6("","","")}},e?/*@__PURE__*/t(tr)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e6("","","")}},[/*@__PURE__*/t(tr)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(i$)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tr)("h2",{oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tr)("div",{class:"text"},[/*@__PURE__*/t(tr).trust(oQ(e.content))]),e.reblog?/*@__PURE__*/t(tr)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tr)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oM.notKaiOS||(oM.local_opml=[],eQ("opml",function(e){oM.local_opml.push(e)})),e6("","",""),oM.notKaiOS&&e6("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oM.notKaiOS&&e4("","",""),oM.notKaiOS&&e6("","","")}},[/*@__PURE__*/t(tr)("div",{class:"item input-parent flex"},[/*@__PURE__*/t(tr)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tr)("input",{id:"url-opml",placeholder:"",value:oV.opml_url||"",type:"url"})]),/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){oV.opml_local_filename?(oV.opml_local="",oV.opml_local_filename="",/*@__PURE__*/t(te).setItem("settings",oV).then(function(){e5("OPML file removed",4e3),/*@__PURE__*/t(tr).redraw()})):oM.notKaiOS?e9(function(e){var r=new FileReader;r.onload=function(){o1(r.result).error?e5("OPML file not valid",4e3):(oV.opml_local=r.result,oV.opml_local_filename=e.filename,/*@__PURE__*/t(te).setItem("settings",oV).then(function(){e5("OPML file added",4e3)}))},r.onerror=function(){e5("OPML file not valid",4e3)},r.readAsText(e.blob)}):oM.local_opml.length>0?/*@__PURE__*/t(tr).route.set("/localOPML"):e5("not enough",3e3)}},oV.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tr)("div",oV.opml_local_filename),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tr)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tr)("input",{id:"url-proxy",placeholder:"",value:oV.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oM.mastodon_logged?/*@__PURE__*/t(tr)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oM.mastodon_logged," and the data is being loaded from server ").concat(oV.mastodon_server_url,".")):null,oM.mastodon_logged?/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){oV.mastodon_server_url="",oV.mastodon_token="",/*@__PURE__*/t(te).setItem("settings",oV),oM.mastodon_logged="",/*@__PURE__*/t(tr).route.set("/settingsView")}},"Disconnect"):null,oM.mastodon_logged?null:/*@__PURE__*/t(tr)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tr)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tr)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:oV.mastodon_server_url})]),oM.mastodon_logged?null:/*@__PURE__*/t(tr)("button",{class:"item",onclick:function(){/*@__PURE__*/t(te).setItem("settings",oV),oV.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=oV.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tr)("div",{class:"seperation"}),/*@__PURE__*/t(tr)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tr)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tr)("input",{id:"sleep-timer",placeholder:"",value:oV.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tr)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e5("URL not valid"),oV.opml_url=document.getElementById("url-opml").value,oV.proxy_url=document.getElementById("url-proxy").value;var e,r=document.getElementById("sleep-timer").value;r&&!isNaN(r)&&Number(r)>0?oV.sleepTimer=parseInt(r,10):oV.sleepTimer="",oM.mastodon_logged||(oV.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(te).setItem("settings",oV).then(function(e){e5("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oM.notKaiOS&&oK()},onremove:function(){localStorage.setItem("version",oM.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tr)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e1(function(e){try{oM.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oM.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oM.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tr)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tr)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oY.filter(function(e){return""===o4||o4===e.channel});return /*@__PURE__*/t(tr)("div",{id:"start",oncreate:function(){o9=/*@__PURE__*/t(tr).route.param("index")||0,e6("","",""),oM.notKaiOS&&e6("","",""),oM.notKaiOS&&e4("","",""),oM.notKaiOS&&oM.player&&e4("","","")}},/*@__PURE__*/t(tr)("span",{class:"channel",oncreate:function(){}},o4),e.map(function(r,n){var i=oH.includes(r.id)?"read":"";return /*@__PURE__*/t(tr)("article",{class:"item ".concat(i),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==o9&&0==n?setTimeout(function(){t.dom.focus()},1200):r.id==o9&&setTimeout(function(){t.dom.focus(),ai()},1200),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tr).route.set("/article?index="+r.id),oW(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tr).route.set("/article?index="+r.id),oW(r.id))}},[/*@__PURE__*/t(tr)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tr)("time",/*@__PURE__*/t(i$)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tr)("h2",{oncreate:function(e){var t=e.dom;!0===r.reblog&&t.classList.add("reblog")}},oQ(r.feed_title)),/*@__PURE__*/t(tr)("h3",oQ(r.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"optionsView",class:"flex",oncreate:function(){e4("","",""),oM.notKaiOS&&e4("","",""),e6("","",""),oM.notKaiOS&&e6("","","")}},[/*@__PURE__*/t(tr)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ai()},onclick:function(){/*@__PURE__*/t(tr).route.set("/about")}},"About"),/*@__PURE__*/t(tr)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tr).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tr)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tr).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tr)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oM.notKaiOS&&eZ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"page"},/*@__PURE__*/t(tr)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tr)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tr)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tr)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tr)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tr)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tr)("ul",[/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tr)("li",/*@__PURE__*/t(tr).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oM.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use Alt to access various options.")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oM.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use # Volume")),/*@__PURE__*/t(tr)("li",{oncreate:function(e){oM.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tr).trust("Use * Audioplayer

")),/*@__PURE__*/t(tr)("li","Version: "+oM.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tr)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tr)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tr)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tr)("h2","Data Storage and Collection"),/*@__PURE__*/t(tr)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tr)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tr)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tr)("ul",[/*@__PURE__*/t(tr)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tr)("li","OPML files you upload or manage."),/*@__PURE__*/t(tr)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tr)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tr)("h2","KaiOS Users"),/*@__PURE__*/t(tr)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tr)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tr)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tr)("p",["For users on all other platforms, ",/*@__PURE__*/t(tr)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tr)("h2","External Sources Responsibility"),/*@__PURE__*/t(tr)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tr)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tr)("h2","Third-Party Services"),/*@__PURE__*/t(tr)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tr)("h2","Policy Updates"),/*@__PURE__*/t(tr)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tr)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tr)("div",{class:"flex",id:"index",oncreate:function(){oM.notKaiOS&&e4("","",""),e6("","","")}},oM.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tr)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){o1(e.result).error?e5("OPML file not valid",4e3):(oV.opml_local=e.result,oV.opml_local_filename=n,/*@__PURE__*/t(te).setItem("settings",oV).then(function(){e5("OPML file added",4e3),/*@__PURE__*/t(tr).route.set("/settingsView")}))},e.onerror=function(){e5("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":an,"/VideoPlayerView":ae,"/YouTubePlayerView":at}),document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oM.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),ai()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var t=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);document.querySelector("body").style.opacity=t},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oY=[],oz()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oM.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tr).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--o6<1&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tr).redraw();var i=/*@__PURE__*/t(tr).route.param();i.index=0,/*@__PURE__*/t(tr).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tr).redraw();var o=/*@__PURE__*/t(tr).route.param();o.index=0,/*@__PURE__*/t(tr).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tr).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tr).redraw();var n=/*@__PURE__*/t(tr).route.param();n.index=0,/*@__PURE__*/t(tr).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ai()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--o6<0&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tr).redraw();var o=/*@__PURE__*/t(tr).route.param();o.index=0,/*@__PURE__*/t(tr).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ai()},500)}break;case"ArrowUp":i(-1),"volume"==oM.window_status&&(navigator.volumeManager.requestVolumeUp(),oM.window_status="volume",setTimeout(function(){oM.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oM.window_status&&(navigator.volumeManager.requestVolumeDown(),oM.window_status="volume",setTimeout(function(){oM.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/article")&&("audio"==oU.type&&/*@__PURE__*/t(tr).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"video"==oU.type&&/*@__PURE__*/t(tr).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"youtube"==oU.type&&/*@__PURE__*/t(tr).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oU.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oz(),r.startsWith("/article")&&window.open(oU.url),r.startsWith("/AudioPlayerView")&&(oM.sleepTimer?oB():oD(6e4*oV.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tr).route.set("/AudioPlayerView");break;case"#":eX();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tr).route.param("index");/*@__PURE__*/t(tr).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tr).route.param("index");/*@__PURE__*/t(tr).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tr).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tr).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tr).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tr).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&oV.last_update?(oM.visibility=!0,new Date/1e3-oV.last_update/1e3>oV.cache_time&&(oY=[],e5("load new content",4e3),o5())):oM.visibility=!1})}),window.addEventListener("online",function(){oM.deviceOnline=!0}),window.addEventListener("offline",function(){oM.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oY=[],e5("load new content",4e3),o5(),/*@__PURE__*/t(tr).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var ao={};ao=eH("e6gnT").getBundleURL("3BHab")+"sw.js";try{navigator.serviceWorker.register(ao).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oL.addEventListener("message",function(e){var r=e.data.oauth_success;if(r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oV.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oV.mastodon_token=e.access_token,/*@__PURE__*/t(te).setItem("settings",oV),/*@__PURE__*/t(tr).route.set("/start?index=0"),e5("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e5("Connection failed")})}}); \ No newline at end of file diff --git a/docs/index.runtime.8c6e9fd2.js b/docs/index.runtime.8c6e9fd2.js index 2137155..0b026f1 100644 --- a/docs/index.runtime.8c6e9fd2.js +++ b/docs/index.runtime.8c6e9fd2.js @@ -1 +1 @@ -function e(e,r,n,t){Object.defineProperty(e,r,{get:n,set:t,enumerable:!0,configurable:!0})}var r="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},n={},t={},o=r.parcelRequire5393;null==o&&((o=function(e){if(e in n)return n[e].exports;if(e in t){var r=t[e];delete t[e];var o={id:e,exports:{}};return n[e]=o,r.call(o.exports,o,o.exports),o.exports}var i=Error("Cannot find module '"+e+"'");throw i.code="MODULE_NOT_FOUND",i}).register=function(e,r){t[e]=r},r.parcelRequire5393=o);var i=o.register;i("5zZPL",function(r,n){e(r.exports,"register",function(){return t},function(e){return t=e});var t,o=new Map;t=function(e,r){for(var n=0;n0&&a[a.length-1])&&(6===c[0]||2===c[0])){o=0;continue}if(3===c[0]&&(!a||c[1]>a[0]&&c[1]