devtools.js 1.1 MB

12345678910111213141516171819202122
  1. (function(t){var e={};function o(n){if(e[n])return e[n].exports;var i=e[n]={i:n,l:!1,exports:{}};return t[n].call(i.exports,i,i.exports,o),i.l=!0,i.exports}o.m=t,o.c=e,o.d=function(t,e,n){o.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},o.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},o.t=function(t,e){if(1&e&&(t=o(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)o.d(n,i,function(e){return t[e]}.bind(null,i));return n},o.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return o.d(e,"a",e),e},o.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},o.p="",o(o.s=162)})([function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"g",function(){return classify}),__webpack_require__.d(__webpack_exports__,"f",function(){return camelize}),__webpack_require__.d(__webpack_exports__,"l",function(){return getComponentDisplayName}),__webpack_require__.d(__webpack_exports__,"p",function(){return inDoc}),__webpack_require__.d(__webpack_exports__,"e",function(){return UNDEFINED}),__webpack_require__.d(__webpack_exports__,"a",function(){return INFINITY}),__webpack_require__.d(__webpack_exports__,"c",function(){return NEGATIVE_INFINITY}),__webpack_require__.d(__webpack_exports__,"b",function(){return NAN}),__webpack_require__.d(__webpack_exports__,"d",function(){return SPECIAL_TOKENS}),__webpack_require__.d(__webpack_exports__,"x",function(){return specialTokenToString}),__webpack_require__.d(__webpack_exports__,"y",function(){return stringify}),__webpack_require__.d(__webpack_exports__,"m",function(){return getComponentName}),__webpack_require__.d(__webpack_exports__,"n",function(){return getCustomRefDetails}),__webpack_require__.d(__webpack_exports__,"s",function(){return parse}),__webpack_require__.d(__webpack_exports__,"q",function(){return isPlainObject}),__webpack_require__.d(__webpack_exports__,"u",function(){return searchDeepInObject}),__webpack_require__.d(__webpack_exports__,"w",function(){return sortByKey}),__webpack_require__.d(__webpack_exports__,"v",function(){return set}),__webpack_require__.d(__webpack_exports__,"k",function(){return get}),__webpack_require__.d(__webpack_exports__,"o",function(){return has}),__webpack_require__.d(__webpack_exports__,"t",function(){return scrollIntoView}),__webpack_require__.d(__webpack_exports__,"j",function(){return focusInput}),__webpack_require__.d(__webpack_exports__,"r",function(){return openInEditor}),__webpack_require__.d(__webpack_exports__,"i",function(){return escape}),__webpack_require__.d(__webpack_exports__,"h",function(){return copyToClipboard});var path__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(22),path__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(path__WEBPACK_IMPORTED_MODULE_0__),_transfer__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(15),src_backend__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(14),src_backend_vuex__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(12),src_backend_router__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(13),src_shared_data__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(4),_devtools_env__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(2);function cached(t){var e=Object.create(null);return function(o){var n=e[o];return n||(e[o]=t(o))}}var classifyRE=/(?:^|[-_/])(\w)/g,classify=cached(t=>{return t&&t.replace(classifyRE,toUpper)}),camelizeRE=/-(\w)/g,camelize=cached(t=>{return t.replace(camelizeRE,toUpper)}),kebabizeRE=/([a-z0-9])([A-Z])/g,kebabize=cached(t=>{return t&&t.replace(kebabizeRE,(t,e,o)=>{return`${e}-${o}`}).toLowerCase()});function toUpper(t,e){return e?e.toUpperCase():""}function getComponentDisplayName(t,e="class"){switch(e){case"class":return classify(t);case"kebab":return kebabize(t);case"original":default:return t}}function inDoc(t){if(!t)return!1;var e=t.ownerDocument.documentElement,o=t.parentNode;return e===t||e===o||!(!o||1!==o.nodeType||!e.contains(o))}var UNDEFINED="__vue_devtool_undefined__",INFINITY="__vue_devtool_infinity__",NEGATIVE_INFINITY="__vue_devtool_negative_infinity__",NAN="__vue_devtool_nan__",SPECIAL_TOKENS={true:!0,false:!1,undefined:UNDEFINED,null:null,"-Infinity":NEGATIVE_INFINITY,Infinity:INFINITY,NaN:NAN},MAX_STRING_SIZE=1e4,MAX_ARRAY_SIZE=5e3;function specialTokenToString(t){return null===t?"null":t===UNDEFINED?"undefined":t===NAN?"NaN":t===INFINITY?"Infinity":t===NEGATIVE_INFINITY&&"-Infinity"}class EncodeCache{constructor(){this.map=new Map}cache(t,e){var o=this.map.get(t);if(o)return o;var n=e(t);return this.map.set(t,n),n}clear(){this.map.clear()}}var encodeCache=new EncodeCache;function stringify(t){return encodeCache.clear(),_transfer__WEBPACK_IMPORTED_MODULE_1__["b"](t,replacer)}function replacer(t){var e=this[t],o=typeof e;if(Array.isArray(e)){var n=e.length;return n>MAX_ARRAY_SIZE?{_isArray:!0,length:n,items:e.slice(0,MAX_ARRAY_SIZE)}:e}if("string"===typeof e)return e.length>MAX_STRING_SIZE?e.substr(0,MAX_STRING_SIZE)+`... (${e.length} total length)`:e;if("undefined"===o)return UNDEFINED;if(e===1/0)return INFINITY;if(e===-1/0)return NEGATIVE_INFINITY;if("function"===o)return getCustomFunctionDetails(e);if("symbol"===o)return`[native Symbol ${Symbol.prototype.toString.call(e)}]`;if(null!==e&&"object"===o){var i=Object.prototype.toString.call(e);if("[object Map]"===i)return encodeCache.cache(e,()=>getCustomMapDetails(e));if("[object Set]"===i)return encodeCache.cache(e,()=>getCustomSetDetails(e));if("[object RegExp]"===i)return`[native RegExp ${RegExp.prototype.toString.call(e)}]`;if("[object Date]"===i)return`[native Date ${Date.prototype.toString.call(e)}]`;if(e.state&&e._vm)return encodeCache.cache(e,()=>Object(src_backend_vuex__WEBPACK_IMPORTED_MODULE_3__["a"])(e));if(e.constructor&&"VueRouter"===e.constructor.name)return encodeCache.cache(e,()=>Object(src_backend_router__WEBPACK_IMPORTED_MODULE_4__["a"])(e));if(e._isVue)return encodeCache.cache(e,()=>Object(src_backend__WEBPACK_IMPORTED_MODULE_2__["a"])(e));if("function"===typeof e.render)return encodeCache.cache(e,()=>getCustomComponentDefinitionDetails(e));if(e.constructor&&"VNode"===e.constructor.name)return`[native VNode <${e.tag}>]`}else if(Number.isNaN(e))return NAN;return sanitize(e)}function getCustomMapDetails(t){var e=[];return t.forEach((t,o)=>e.push({key:o,value:t})),{_custom:{type:"map",display:"Map",value:e,readOnly:!0,fields:{abstract:!0}}}}function reviveMap(t){for(var e=new Map,o=t._custom.value,n=0;n<o.length;n++){var{key:i,value:r}=o[n];e.set(i,reviver(null,r))}return e}function getCustomSetDetails(t){var e=Array.from(t);return{_custom:{type:"set",display:`Set[${e.length}]`,value:e,readOnly:!0}}}function reviveSet(t){for(var e=new Set,o=t._custom.value,n=0;n<o.length;n++){var i=o[n];e.add(reviver(null,i))}return e}function basename(t,e){return path__WEBPACK_IMPORTED_MODULE_0___default.a.basename(t.replace(/^[a-zA-Z]:/,"").replace(/\\/g,"/"),e)}function getComponentName(t){var e=t.name||t._componentTag;if(e)return e;var o=t.__file;return o?classify(basename(o,".vue")):void 0}function getCustomComponentDefinitionDetails(t){var e=getComponentName(t);return e?t.name&&t.__file&&(e+=` <span>(${t.__file})</span>`):e="<i>Unknown Component</i>",{_custom:Object.assign({},{type:"component-definition",display:e,tooltip:"Component definition"},t.__file?{file:t.__file}:{})}}function getCustomFunctionDetails(t){var e="",o=null;try{e=Function.prototype.toString.call(t),o=String.prototype.match.call(e,/\([\s\S]*?\)/)}catch(t){}var n=o&&o[0],i="string"===typeof n?`(${n.substr(1,n.length-2).split(",").map(t=>t.trim()).join(", ")})`:"(?)",r="string"===typeof t.name?t.name:"";return{_custom:{type:"function",display:`<span>ƒ</span> ${escape(r)}${i}`}}}function getCustomRefDetails(t,e,o){var n,i;Array.isArray(o)?n=o.map(o=>getCustomRefDetails(t,e,o)).map(t=>t.value):(i=o._isVue?getComponentName(o.$options):o.tagName.toLowerCase(),n={_custom:{display:`&lt;${i}`+(o.id?` <span class="attr-title">id</span>="${o.id}"`:"")+(o.className?` <span class="attr-title">class</span>="${o.className}"`:"")+"&gt;",uid:t.__VUE_DEVTOOLS_UID__,type:"reference"}});return{type:"$refs",key:e,value:n,editable:!1}}function parse(t,e){return e?_transfer__WEBPACK_IMPORTED_MODULE_1__["a"](t,reviver):_transfer__WEBPACK_IMPORTED_MODULE_1__["a"](t)}var specialTypeRE=/^\[native (\w+) (.*)\]$/,symbolRE=/^\[native Symbol Symbol\((.*)\)\]$/;function reviver(t,e){if(e!==UNDEFINED){if(e===INFINITY)return 1/0;if(e===NEGATIVE_INFINITY)return-1/0;if(e===NAN)return NaN;if(!e||!e._custom){if(symbolRE.test(e)){var[,o]=symbolRE.exec(e);return Symbol.for(o)}if(specialTypeRE.test(e)){var[,n,i]=specialTypeRE.exec(e);return new window[n](i)}return e}return"component"===e._custom.type?src_backend__WEBPACK_IMPORTED_MODULE_2__["d"].get(e._custom.id):"map"===e._custom.type?reviveMap(e):"set"===e._custom.type?reviveSet(e):void 0}}function sanitize(t){return isPrimitive(t)||Array.isArray(t)||isPlainObject(t)?t:Object.prototype.toString.call(t)}function isPlainObject(t){return"[object Object]"===Object.prototype.toString.call(t)}function isPrimitive(t){if(null==t)return!0;var e=typeof t;return"string"===e||"number"===e||"boolean"===e}function searchDeepInObject(t,e){var o=new Map,n=internalSearchObject(t,e.toLowerCase(),o,0);return o.clear(),n}var SEARCH_MAX_DEPTH=10;function internalSearchObject(t,e,o,n){if(n>SEARCH_MAX_DEPTH)return!1;for(var i,r,a=!1,u=Object.keys(t),s=0;s<u.length;s++)if(i=u[s],r=t[i],a=internalSearchCheck(e,i,r,o,n+1),a)break;return a}function internalSearchArray(t,e,o,n){if(n>SEARCH_MAX_DEPTH)return!1;for(var i,r=!1,a=0;a<t.length;a++)if(i=t[a],r=internalSearchCheck(e,null,i,o,n+1),r)break;return r}function internalSearchCheck(t,e,o,n,i){var r,a=!1;return"_custom"===e&&(e=o.display,o=o.value),(r=specialTokenToString(o))&&(o=r),e&&compare(e,t)?(a=!0,n.set(o,!0)):n.has(o)?a=n.get(o):Array.isArray(o)?(n.set(o,null),a=internalSearchArray(o,t,n,i),n.set(o,a)):isPlainObject(o)?(n.set(o,null),a=internalSearchObject(o,t,n,i),n.set(o,a)):compare(o,t)&&(a=!0,n.set(o,!0)),a}function compare(t,e){return-1!==(""+t).toLowerCase().indexOf(e)}function sortByKey(t){return t&&t.slice().sort((t,e)=>{return t.key<e.key?-1:t.key>e.key?1:0})}function set(t,e,o,n=null){var i=Array.isArray(e)?e:e.split(".");while(i.length>1)t=t[i.shift()];var r=i[0];n?n(t,r,o):t[r]=o}function get(t,e){for(var o=Array.isArray(e)?e:e.split("."),n=0;n<o.length;n++)if(t=t[o[n]],!t)return;return t}function has(t,e,o=!1){if("undefined"===typeof t)return!1;var n=Array.isArray(e)?e:e.split("."),i=o?2:1;while(t&&n.length>i)t=t[n.shift()];return null!=t&&t.hasOwnProperty(n[0])}function scrollIntoView(t,e,o=!0){var n=t.scrollTop,i=t.offsetHeight,r=e.getBoundingClientRect(),a=t.getBoundingClientRect(),u=r.top-a.top+t.scrollTop,s=e.offsetHeight;o?t.scrollTop=u+(s-i)/2:u<n?t.scrollTop=u:u+s>n+i&&(t.scrollTop=u-i+s)}function focusInput(t){t.focus(),t.setSelectionRange(0,t.value.length)}function openInEditor(file){var fileName=file.replace(/\\/g,"\\\\"),src=`fetch('${src_shared_data__WEBPACK_IMPORTED_MODULE_5__["a"].openInEditorHost}__open-in-editor?file=${encodeURI(file)}').then(response => {\n if (response.ok) {\n console.log('File ${fileName} opened in editor')\n } else {\n const msg = 'Opening component ${fileName} failed'\n const target = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : {}\n if (target.__VUE_DEVTOOLS_TOAST__) {\n target.__VUE_DEVTOOLS_TOAST__(msg, 'error')\n } else {\n console.log('%c' + msg, 'color:red')\n }\n console.log('Check the setup of your project, see https://github.com/vuejs/vue-devtools/blob/master/docs/open-in-editor.md')\n }\n })`;_devtools_env__WEBPACK_IMPORTED_MODULE_6__["c"]?chrome.devtools.inspectedWindow.eval(src):eval(src)}var ESC={"<":"&lt;",">":"&gt;",'"':"&quot;","&":"&amp;"};function escape(t){return t.replace(/[<>"&]/g,escapeChar)}function escapeChar(t){return ESC[t]||t}function copyToClipboard(t){if("undefined"!==typeof document){var e=document.createElement("textarea");e.textContent=stringify(t),document.body.appendChild(e),e.select(),document.execCommand("copy"),document.body.removeChild(e)}}},function(t,e,o){"use strict";o.d(e,"m",function(){return n}),o.d(e,"c",function(){return i}),o.d(e,"k",function(){return r}),o.d(e,"f",function(){return a}),o.d(e,"a",function(){return u}),o.d(e,"b",function(){return s}),o.d(e,"l",function(){return c}),o.d(e,"e",function(){return l}),o.d(e,"d",function(){return d}),o.d(e,"o",function(){return v}),o.d(e,"i",function(){return h}),o.d(e,"j",function(){return p}),o.d(e,"n",function(){return f}),o.d(e,"h",function(){return m}),o.d(e,"g",function(){return V});var n="top",i="bottom",r="right",a="left",u="auto",s=[n,i,r,a],c="start",l="end",d="clippingParents",v="viewport",h="popper",p="reference",f=s.reduce(function(t,e){return t.concat([e+"-"+c,e+"-"+l])},[]),m=[].concat(s,[u]).reduce(function(t,e){return t.concat([e,e+"-"+c,e+"-"+l])},[]),g="beforeRead",b="read",y="afterRead",w="beforeMain",x="main",_="afterMain",z="beforeWrite",k="write",M="afterWrite",V=[g,b,y,w,x,_,z,k,M]},function(t,e,o){"use strict";(function(t){o.d(e,"b",function(){return n}),o.d(e,"f",function(){return i}),o.d(e,"c",function(){return r}),o.d(e,"d",function(){return a}),o.d(e,"e",function(){return l}),o.d(e,"a",function(){return d});var n="undefined"!==typeof navigator,i=n?window:"undefined"!==typeof t?t:{},r="undefined"!==typeof chrome&&!!chrome.devtools,a=n&&navigator.userAgent.indexOf("Firefox")>-1,u=n&&0===navigator.platform.indexOf("Win"),s=n&&"MacIntel"===navigator.platform,c=n&&0===navigator.platform.indexOf("Linux"),l={ctrl:s?"&#8984;":"Ctrl",shift:"Shift",alt:s?"&#8997;":"Alt",del:"Del",enter:"Enter",esc:"Esc"};function d(t){t.prototype.hasOwnProperty("$isChrome")||(Object.defineProperties(t.prototype,{$isChrome:{get:()=>r},$isFirefox:{get:()=>a},$isWindows:{get:()=>u},$isMac:{get:()=>s},$isLinux:{get:()=>c},$keys:{get:()=>l}}),u&&document.body.classList.add("platform-windows"),s&&document.body.classList.add("platform-mac"),c&&document.body.classList.add("platform-linux"))}}).call(this,o(9))},function(t,e,o){"use strict";(function(t){
  2. /*!
  3. * vuex v3.6.2
  4. * (c) 2021 Evan You
  5. * @license MIT
  6. */
  7. function n(t){var e=Number(t.version.split(".")[0]);if(e>=2)t.mixin({beforeCreate:n});else{var o=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[n].concat(t.init):n,o.call(this,t)}}function n(){var t=this.$options;t.store?this.$store="function"===typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}}o.d(e,"b",function(){return I}),o.d(e,"c",function(){return T}),o.d(e,"d",function(){return A}),o.d(e,"e",function(){return O});var i="undefined"!==typeof window?window:"undefined"!==typeof t?t:{},r=i.__VUE_DEVTOOLS_GLOBAL_HOOK__;function a(t){r&&(t._devtoolHook=r,r.emit("vuex:init",t),r.on("vuex:travel-to-state",function(e){t.replaceState(e)}),t.subscribe(function(t,e){r.emit("vuex:mutation",t,e)},{prepend:!0}),t.subscribeAction(function(t,e){r.emit("vuex:action",t,e)},{prepend:!0}))}function u(t,e){return t.filter(e)[0]}function s(t,e){if(void 0===e&&(e=[]),null===t||"object"!==typeof t)return t;var o=u(e,function(e){return e.original===t});if(o)return o.copy;var n=Array.isArray(t)?[]:{};return e.push({original:t,copy:n}),Object.keys(t).forEach(function(o){n[o]=s(t[o],e)}),n}function c(t,e){Object.keys(t).forEach(function(o){return e(t[o],o)})}function l(t){return null!==t&&"object"===typeof t}function d(t){return t&&"function"===typeof t.then}function v(t,e){return function(){return t(e)}}var h=function(t,e){this.runtime=e,this._children=Object.create(null),this._rawModule=t;var o=t.state;this.state=("function"===typeof o?o():o)||{}},p={namespaced:{configurable:!0}};p.namespaced.get=function(){return!!this._rawModule.namespaced},h.prototype.addChild=function(t,e){this._children[t]=e},h.prototype.removeChild=function(t){delete this._children[t]},h.prototype.getChild=function(t){return this._children[t]},h.prototype.hasChild=function(t){return t in this._children},h.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)},h.prototype.forEachChild=function(t){c(this._children,t)},h.prototype.forEachGetter=function(t){this._rawModule.getters&&c(this._rawModule.getters,t)},h.prototype.forEachAction=function(t){this._rawModule.actions&&c(this._rawModule.actions,t)},h.prototype.forEachMutation=function(t){this._rawModule.mutations&&c(this._rawModule.mutations,t)},Object.defineProperties(h.prototype,p);var f=function(t){this.register([],t,!1)};function m(t,e,o){if(e.update(o),o.modules)for(var n in o.modules){if(!e.getChild(n))return void 0;m(t.concat(n),e.getChild(n),o.modules[n])}}f.prototype.get=function(t){return t.reduce(function(t,e){return t.getChild(e)},this.root)},f.prototype.getNamespace=function(t){var e=this.root;return t.reduce(function(t,o){return e=e.getChild(o),t+(e.namespaced?o+"/":"")},"")},f.prototype.update=function(t){m([],this.root,t)},f.prototype.register=function(t,e,o){var n=this;void 0===o&&(o=!0);var i=new h(e,o);if(0===t.length)this.root=i;else{var r=this.get(t.slice(0,-1));r.addChild(t[t.length-1],i)}e.modules&&c(e.modules,function(e,i){n.register(t.concat(i),e,o)})},f.prototype.unregister=function(t){var e=this.get(t.slice(0,-1)),o=t[t.length-1],n=e.getChild(o);n&&n.runtime&&e.removeChild(o)},f.prototype.isRegistered=function(t){var e=this.get(t.slice(0,-1)),o=t[t.length-1];return!!e&&e.hasChild(o)};var g;var b=function(t){var e=this;void 0===t&&(t={}),!g&&"undefined"!==typeof window&&window.Vue&&E(window.Vue);var o=t.plugins;void 0===o&&(o=[]);var n=t.strict;void 0===n&&(n=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new f(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new g,this._makeLocalGettersCache=Object.create(null);var i=this,r=this,u=r.dispatch,s=r.commit;this.dispatch=function(t,e){return u.call(i,t,e)},this.commit=function(t,e,o){return s.call(i,t,e,o)},this.strict=n;var c=this._modules.root.state;z(this,c,[],this._modules.root),_(this,c),o.forEach(function(t){return t(e)});var l=void 0!==t.devtools?t.devtools:g.config.devtools;l&&a(this)},y={state:{configurable:!0}};function w(t,e,o){return e.indexOf(t)<0&&(o&&o.prepend?e.unshift(t):e.push(t)),function(){var o=e.indexOf(t);o>-1&&e.splice(o,1)}}function x(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var o=t.state;z(t,o,[],t._modules.root,!0),_(t,o,e)}function _(t,e,o){var n=t._vm;t.getters={},t._makeLocalGettersCache=Object.create(null);var i=t._wrappedGetters,r={};c(i,function(e,o){r[o]=v(e,t),Object.defineProperty(t.getters,o,{get:function(){return t._vm[o]},enumerable:!0})});var a=g.config.silent;g.config.silent=!0,t._vm=new g({data:{$$state:e},computed:r}),g.config.silent=a,t.strict&&L(t),n&&(o&&t._withCommit(function(){n._data.$$state=null}),g.nextTick(function(){return n.$destroy()}))}function z(t,e,o,n,i){var r=!o.length,a=t._modules.getNamespace(o);if(n.namespaced&&(t._modulesNamespaceMap[a],t._modulesNamespaceMap[a]=n),!r&&!i){var u=S(e,o.slice(0,-1)),s=o[o.length-1];t._withCommit(function(){g.set(u,s,n.state)})}var c=n.context=k(t,a,o);n.forEachMutation(function(e,o){var n=a+o;V(t,n,e,c)}),n.forEachAction(function(e,o){var n=e.root?o:a+o,i=e.handler||e;H(t,n,i,c)}),n.forEachGetter(function(e,o){var n=a+o;C(t,n,e,c)}),n.forEachChild(function(n,r){z(t,e,o.concat(r),n,i)})}function k(t,e,o){var n=""===e,i={dispatch:n?t.dispatch:function(o,n,i){var r=B(o,n,i),a=r.payload,u=r.options,s=r.type;return u&&u.root||(s=e+s),t.dispatch(s,a)},commit:n?t.commit:function(o,n,i){var r=B(o,n,i),a=r.payload,u=r.options,s=r.type;u&&u.root||(s=e+s),t.commit(s,a,u)}};return Object.defineProperties(i,{getters:{get:n?function(){return t.getters}:function(){return M(t,e)}},state:{get:function(){return S(t.state,o)}}}),i}function M(t,e){if(!t._makeLocalGettersCache[e]){var o={},n=e.length;Object.keys(t.getters).forEach(function(i){if(i.slice(0,n)===e){var r=i.slice(n);Object.defineProperty(o,r,{get:function(){return t.getters[i]},enumerable:!0})}}),t._makeLocalGettersCache[e]=o}return t._makeLocalGettersCache[e]}function V(t,e,o,n){var i=t._mutations[e]||(t._mutations[e]=[]);i.push(function(e){o.call(t,n.state,e)})}function H(t,e,o,n){var i=t._actions[e]||(t._actions[e]=[]);i.push(function(e){var i=o.call(t,{dispatch:n.dispatch,commit:n.commit,getters:n.getters,state:n.state,rootGetters:t.getters,rootState:t.state},e);return d(i)||(i=Promise.resolve(i)),t._devtoolHook?i.catch(function(e){throw t._devtoolHook.emit("vuex:error",e),e}):i})}function C(t,e,o,n){t._wrappedGetters[e]||(t._wrappedGetters[e]=function(t){return o(n.state,n.getters,t.state,t.getters)})}function L(t){t._vm.$watch(function(){return this._data.$$state},function(){0},{deep:!0,sync:!0})}function S(t,e){return e.reduce(function(t,e){return t[e]},t)}function B(t,e,o){return l(t)&&t.type&&(o=e,e=t,t=t.type),{type:t,payload:e,options:o}}function E(t){g&&t===g||(g=t,n(g))}y.state.get=function(){return this._vm._data.$$state},y.state.set=function(t){0},b.prototype.commit=function(t,e,o){var n=this,i=B(t,e,o),r=i.type,a=i.payload,u=(i.options,{type:r,payload:a}),s=this._mutations[r];s&&(this._withCommit(function(){s.forEach(function(t){t(a)})}),this._subscribers.slice().forEach(function(t){return t(u,n.state)}))},b.prototype.dispatch=function(t,e){var o=this,n=B(t,e),i=n.type,r=n.payload,a={type:i,payload:r},u=this._actions[i];if(u){try{this._actionSubscribers.slice().filter(function(t){return t.before}).forEach(function(t){return t.before(a,o.state)})}catch(t){0}var s=u.length>1?Promise.all(u.map(function(t){return t(r)})):u[0](r);return new Promise(function(t,e){s.then(function(e){try{o._actionSubscribers.filter(function(t){return t.after}).forEach(function(t){return t.after(a,o.state)})}catch(t){0}t(e)},function(t){try{o._actionSubscribers.filter(function(t){return t.error}).forEach(function(e){return e.error(a,o.state,t)})}catch(t){0}e(t)})})}},b.prototype.subscribe=function(t,e){return w(t,this._subscribers,e)},b.prototype.subscribeAction=function(t,e){var o="function"===typeof t?{before:t}:t;return w(o,this._actionSubscribers,e)},b.prototype.watch=function(t,e,o){var n=this;return this._watcherVM.$watch(function(){return t(n.state,n.getters)},e,o)},b.prototype.replaceState=function(t){var e=this;this._withCommit(function(){e._vm._data.$$state=t})},b.prototype.registerModule=function(t,e,o){void 0===o&&(o={}),"string"===typeof t&&(t=[t]),this._modules.register(t,e),z(this,this.state,t,this._modules.get(t),o.preserveState),_(this,this.state)},b.prototype.unregisterModule=function(t){var e=this;"string"===typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit(function(){var o=S(e.state,t.slice(0,-1));g.delete(o,t[t.length-1])}),x(this)},b.prototype.hasModule=function(t){return"string"===typeof t&&(t=[t]),this._modules.isRegistered(t)},b.prototype.hotUpdate=function(t){this._modules.update(t),x(this,!0)},b.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(b.prototype,y);var O=P(function(t,e){var o={};return N(e).forEach(function(e){var n=e.key,i=e.val;o[n]=function(){var e=this.$store.state,o=this.$store.getters;if(t){var n=D(this.$store,"mapState",t);if(!n)return;e=n.context.state,o=n.context.getters}return"function"===typeof i?i.call(this,e,o):e[i]},o[n].vuex=!0}),o}),A=P(function(t,e){var o={};return N(e).forEach(function(e){var n=e.key,i=e.val;o[n]=function(){var e=[],o=arguments.length;while(o--)e[o]=arguments[o];var n=this.$store.commit;if(t){var r=D(this.$store,"mapMutations",t);if(!r)return;n=r.context.commit}return"function"===typeof i?i.apply(this,[n].concat(e)):n.apply(this.$store,[i].concat(e))}}),o}),T=P(function(t,e){var o={};return N(e).forEach(function(e){var n=e.key,i=e.val;i=t+i,o[n]=function(){if(!t||D(this.$store,"mapGetters",t))return this.$store.getters[i]},o[n].vuex=!0}),o}),I=P(function(t,e){var o={};return N(e).forEach(function(e){var n=e.key,i=e.val;o[n]=function(){var e=[],o=arguments.length;while(o--)e[o]=arguments[o];var n=this.$store.dispatch;if(t){var r=D(this.$store,"mapActions",t);if(!r)return;n=r.context.dispatch}return"function"===typeof i?i.apply(this,[n].concat(e)):n.apply(this.$store,[i].concat(e))}}),o}),j=function(t){return{mapState:O.bind(null,t),mapGetters:T.bind(null,t),mapMutations:A.bind(null,t),mapActions:I.bind(null,t)}};function N(t){return R(t)?Array.isArray(t)?t.map(function(t){return{key:t,val:t}}):Object.keys(t).map(function(e){return{key:e,val:t[e]}}):[]}function R(t){return Array.isArray(t)||l(t)}function P(t){return function(e,o){return"string"!==typeof e?(o=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,o)}}function D(t,e,o){var n=t._modulesNamespaceMap[o];return n}function U(t){void 0===t&&(t={});var e=t.collapsed;void 0===e&&(e=!0);var o=t.filter;void 0===o&&(o=function(t,e,o){return!0});var n=t.transformer;void 0===n&&(n=function(t){return t});var i=t.mutationTransformer;void 0===i&&(i=function(t){return t});var r=t.actionFilter;void 0===r&&(r=function(t,e){return!0});var a=t.actionTransformer;void 0===a&&(a=function(t){return t});var u=t.logMutations;void 0===u&&(u=!0);var c=t.logActions;void 0===c&&(c=!0);var l=t.logger;return void 0===l&&(l=console),function(t){var d=s(t.state);"undefined"!==typeof l&&(u&&t.subscribe(function(t,r){var a=s(r);if(o(t,d,a)){var u=K(),c=i(t),v="mutation "+t.type+u;F(l,v,e),l.log("%c prev state","color: #9E9E9E; font-weight: bold",n(d)),l.log("%c mutation","color: #03A9F4; font-weight: bold",c),l.log("%c next state","color: #4CAF50; font-weight: bold",n(a)),q(l)}d=a}),c&&t.subscribeAction(function(t,o){if(r(t,o)){var n=K(),i=a(t),u="action "+t.type+n;F(l,u,e),l.log("%c action","color: #03A9F4; font-weight: bold",i),q(l)}}))}}function F(t,e,o){var n=o?t.groupCollapsed:t.group;try{n.call(t,e)}catch(o){t.log(e)}}function q(t){try{t.groupEnd()}catch(e){t.log("—— log end ——")}}function K(){var t=new Date;return" @ "+G(t.getHours(),2)+":"+G(t.getMinutes(),2)+":"+G(t.getSeconds(),2)+"."+G(t.getMilliseconds(),3)}function Y(t,e){return new Array(e+1).join(t)}function G(t,e){return Y("0",e-t.toString().length)+t}var W={Store:b,install:E,version:"3.6.2",mapState:O,mapMutations:A,mapGetters:T,mapActions:I,createNamespacedHelpers:j,createLogger:U};e["a"]=W}).call(this,o(9))},function(t,e,o){"use strict";o.d(e,"c",function(){return l}),o.d(e,"b",function(){return d}),o.d(e,"d",function(){return p});var n,i,r,a=o(10),u={openInEditorHost:"/",componentNameStyle:"class",theme:"auto",displayDensity:"low",timeFormat:"default",recordVuex:!0,cacheVuexSnapshotsEvery:50,cacheVuexSnapshotsLimit:10,snapshotLoading:!1,recordPerf:!1,editableProps:!1,logDetected:!0,vuexNewBackend:!1,vuexAutoload:!1},s=["componentNameStyle","theme","displayDensity","recordVuex","editableProps","logDetected","vuexNewBackend","vuexAutoload","timeFormat"],c=!1;function l(t){i=t.bridge,n=t.Vue,c=!!t.persist,s.forEach(t=>{var e=a["a"](`shared-data:${t}`);null!==e&&(u[t]=e,c&&h(t,e))}),r=new n({data:u}),i.on("shared-data:set",t=>{var e=t.key,o=t.value;v(e,o)})}function d(){i.removeAllListeners("shared-data:set"),r.$destroy()}function v(t,e){return c&&s.includes(t)&&a["c"](`shared-data:${t}`,e),r[t]=e,!0}function h(t,e){i&&i.send("shared-data:set",{key:t,value:e})}function p(...t){r.$watch(...t)}var f={};Object.keys(u).forEach(t=>{Object.defineProperty(f,t,{configurable:!1,get:()=>r&&r.$data[t],set:e=>{h(t,e),v(t,e)}})}),e["a"]=f},function(t,e,o){"use strict";(function(t,n){o.d(e,"a",function(){return ti});
  8. /*!
  9. * Vue.js v2.7.16
  10. * (c) 2014-2023 Evan You
  11. * Released under the MIT License.
  12. */
  13. var i=Object.freeze({}),r=Array.isArray;function a(t){return void 0===t||null===t}function u(t){return void 0!==t&&null!==t}function s(t){return!0===t}function c(t){return!1===t}function l(t){return"string"===typeof t||"number"===typeof t||"symbol"===typeof t||"boolean"===typeof t}function d(t){return"function"===typeof t}function v(t){return null!==t&&"object"===typeof t}var h=Object.prototype.toString;function p(t){return"[object Object]"===h.call(t)}function f(t){return"[object RegExp]"===h.call(t)}function m(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function g(t){return u(t)&&"function"===typeof t.then&&"function"===typeof t.catch}function b(t){return null==t?"":Array.isArray(t)||p(t)&&t.toString===h?JSON.stringify(t,y,2):String(t)}function y(t,e){return e&&e.__v_isRef?e.value:e}function w(t){var e=parseFloat(t);return isNaN(e)?t:e}function x(t,e){for(var o=Object.create(null),n=t.split(","),i=0;i<n.length;i++)o[n[i]]=!0;return e?function(t){return o[t.toLowerCase()]}:function(t){return o[t]}}x("slot,component",!0);var _=x("key,ref,slot,slot-scope,is");function z(t,e){var o=t.length;if(o){if(e===t[o-1])return void(t.length=o-1);var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var k=Object.prototype.hasOwnProperty;function M(t,e){return k.call(t,e)}function V(t){var e=Object.create(null);return function(o){var n=e[o];return n||(e[o]=t(o))}}var H=/-(\w)/g,C=V(function(t){return t.replace(H,function(t,e){return e?e.toUpperCase():""})}),L=V(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),S=/\B([A-Z])/g,B=V(function(t){return t.replace(S,"-$1").toLowerCase()});function E(t,e){function o(o){var n=arguments.length;return n?n>1?t.apply(e,arguments):t.call(e,o):t.call(e)}return o._length=t.length,o}function O(t,e){return t.bind(e)}var A=Function.prototype.bind?O:E;function T(t,e){e=e||0;var o=t.length-e,n=new Array(o);while(o--)n[o]=t[o+e];return n}function I(t,e){for(var o in e)t[o]=e[o];return t}function j(t){for(var e={},o=0;o<t.length;o++)t[o]&&I(e,t[o]);return e}function N(t,e,o){}var R=function(t,e,o){return!1},P=function(t){return t};function D(t,e){if(t===e)return!0;var o=v(t),n=v(e);if(!o||!n)return!o&&!n&&String(t)===String(e);try{var i=Array.isArray(t),r=Array.isArray(e);if(i&&r)return t.length===e.length&&t.every(function(t,o){return D(t,e[o])});if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(i||r)return!1;var a=Object.keys(t),u=Object.keys(e);return a.length===u.length&&a.every(function(o){return D(t[o],e[o])})}catch(t){return!1}}function U(t,e){for(var o=0;o<t.length;o++)if(D(t[o],e))return o;return-1}function F(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}function q(t,e){return t===e?0===t&&1/t!==1/e:t===t||e===e}var K="data-server-rendered",Y=["component","directive","filter"],G=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch","renderTracked","renderTriggered"],W={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:R,isReservedAttr:R,isUnknownElement:R,getTagNamespace:N,parsePlatformTagName:P,mustUseProp:R,async:!0,_lifecycleHooks:G},Q=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function J(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function X(t,e,o,n){Object.defineProperty(t,e,{value:o,enumerable:!!n,writable:!0,configurable:!0})}var Z=new RegExp("[^".concat(Q.source,".$_\\d]"));function $(t){if(!Z.test(t)){var e=t.split(".");return function(t){for(var o=0;o<e.length;o++){if(!t)return;t=t[e[o]]}return t}}}var tt="__proto__"in{},et="undefined"!==typeof window,ot=et&&window.navigator.userAgent.toLowerCase(),nt=ot&&/msie|trident/.test(ot),it=ot&&ot.indexOf("msie 9.0")>0,rt=ot&&ot.indexOf("edge/")>0;ot&&ot.indexOf("android");var at=ot&&/iphone|ipad|ipod|ios/.test(ot);ot&&/chrome\/\d+/.test(ot),ot&&/phantomjs/.test(ot);var ut,st=ot&&ot.match(/firefox\/(\d+)/),ct={}.watch,lt=!1;if(et)try{var dt={};Object.defineProperty(dt,"passive",{get:function(){lt=!0}}),window.addEventListener("test-passive",null,dt)}catch(t){}var vt=function(){return void 0===ut&&(ut=!et&&"undefined"!==typeof t&&(t["process"]&&"server"===t["process"].env.VUE_ENV)),ut},ht=et&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function pt(t){return"function"===typeof t&&/native code/.test(t.toString())}var ft,mt="undefined"!==typeof Symbol&&pt(Symbol)&&"undefined"!==typeof Reflect&&pt(Reflect.ownKeys);ft="undefined"!==typeof Set&&pt(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var gt=null;function bt(t){void 0===t&&(t=null),t||gt&&gt._scope.off(),gt=t,t&&t._scope.on()}var yt=function(){function t(t,e,o,n,i,r,a,u){this.tag=t,this.data=e,this.children=o,this.text=n,this.elm=i,this.ns=void 0,this.context=r,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=u,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(t.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),t}(),wt=function(t){void 0===t&&(t="");var e=new yt;return e.text=t,e.isComment=!0,e};function xt(t){return new yt(void 0,void 0,void 0,String(t))}function _t(t){var e=new yt(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}"function"===typeof SuppressedError&&SuppressedError;var zt=0,kt=[],Mt=function(){for(var t=0;t<kt.length;t++){var e=kt[t];e.subs=e.subs.filter(function(t){return t}),e._pending=!1}kt.length=0},Vt=function(){function t(){this._pending=!1,this.id=zt++,this.subs=[]}return t.prototype.addSub=function(t){this.subs.push(t)},t.prototype.removeSub=function(t){this.subs[this.subs.indexOf(t)]=null,this._pending||(this._pending=!0,kt.push(this))},t.prototype.depend=function(e){t.target&&t.target.addDep(this)},t.prototype.notify=function(t){var e=this.subs.filter(function(t){return t});for(var o=0,n=e.length;o<n;o++){var i=e[o];0,i.update()}},t}();Vt.target=null;var Ht=[];function Ct(t){Ht.push(t),Vt.target=t}function Lt(){Ht.pop(),Vt.target=Ht[Ht.length-1]}var St=Array.prototype,Bt=Object.create(St),Et=["push","pop","shift","unshift","splice","sort","reverse"];Et.forEach(function(t){var e=St[t];X(Bt,t,function(){for(var o=[],n=0;n<arguments.length;n++)o[n]=arguments[n];var i,r=e.apply(this,o),a=this.__ob__;switch(t){case"push":case"unshift":i=o;break;case"splice":i=o.slice(2);break}return i&&a.observeArray(i),a.dep.notify(),r})});var Ot=Object.getOwnPropertyNames(Bt),At={},Tt=!0;function It(t){Tt=t}var jt={notify:N,depend:N,addSub:N,removeSub:N},Nt=function(){function t(t,e,o){if(void 0===e&&(e=!1),void 0===o&&(o=!1),this.value=t,this.shallow=e,this.mock=o,this.dep=o?jt:new Vt,this.vmCount=0,X(t,"__ob__",this),r(t)){if(!o)if(tt)t.__proto__=Bt;else for(var n=0,i=Ot.length;n<i;n++){var a=Ot[n];X(t,a,Bt[a])}e||this.observeArray(t)}else{var u=Object.keys(t);for(n=0;n<u.length;n++){a=u[n];Pt(t,a,At,void 0,e,o)}}}return t.prototype.observeArray=function(t){for(var e=0,o=t.length;e<o;e++)Rt(t[e],!1,this.mock)},t}();function Rt(t,e,o){return t&&M(t,"__ob__")&&t.__ob__ instanceof Nt?t.__ob__:!Tt||!o&&vt()||!r(t)&&!p(t)||!Object.isExtensible(t)||t.__v_skip||Gt(t)||t instanceof yt?void 0:new Nt(t,e,o)}function Pt(t,e,o,n,i,a,u){void 0===u&&(u=!1);var s=new Vt,c=Object.getOwnPropertyDescriptor(t,e);if(!c||!1!==c.configurable){var l=c&&c.get,d=c&&c.set;l&&!d||o!==At&&2!==arguments.length||(o=t[e]);var v=i?o&&o.__ob__:Rt(o,!1,a);return Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=l?l.call(t):o;return Vt.target&&(s.depend(),v&&(v.dep.depend(),r(e)&&Ft(e))),Gt(e)&&!i?e.value:e},set:function(e){var n=l?l.call(t):o;if(q(n,e)){if(d)d.call(t,e);else{if(l)return;if(!i&&Gt(n)&&!Gt(e))return void(n.value=e);o=e}v=i?e&&e.__ob__:Rt(e,!1,a),s.notify()}}}),s}}function Dt(t,e,o){if(!Yt(t)){var n=t.__ob__;return r(t)&&m(e)?(t.length=Math.max(t.length,e),t.splice(e,1,o),n&&!n.shallow&&n.mock&&Rt(o,!1,!0),o):e in t&&!(e in Object.prototype)?(t[e]=o,o):t._isVue||n&&n.vmCount?o:n?(Pt(n.value,e,o,void 0,n.shallow,n.mock),n.dep.notify(),o):(t[e]=o,o)}}function Ut(t,e){if(r(t)&&m(e))t.splice(e,1);else{var o=t.__ob__;t._isVue||o&&o.vmCount||Yt(t)||M(t,e)&&(delete t[e],o&&o.dep.notify())}}function Ft(t){for(var e=void 0,o=0,n=t.length;o<n;o++)e=t[o],e&&e.__ob__&&e.__ob__.dep.depend(),r(e)&&Ft(e)}function qt(t){return Kt(t,!0),X(t,"__v_isShallow",!0),t}function Kt(t,e){if(!Yt(t)){Rt(t,e,vt());0}}function Yt(t){return!(!t||!t.__v_isReadonly)}function Gt(t){return!(!t||!0!==t.__v_isRef)}function Wt(t,e,o){Object.defineProperty(t,o,{enumerable:!0,configurable:!0,get:function(){var t=e[o];if(Gt(t))return t.value;var n=t&&t.__ob__;return n&&n.dep.depend(),t},set:function(t){var n=e[o];Gt(n)&&!Gt(t)?n.value=t:e[o]=t}})}var Qt="watcher";"".concat(Qt," callback"),"".concat(Qt," getter"),"".concat(Qt," cleanup");var Jt;var Xt=function(){function t(t){void 0===t&&(t=!1),this.detached=t,this.active=!0,this.effects=[],this.cleanups=[],this.parent=Jt,!t&&Jt&&(this.index=(Jt.scopes||(Jt.scopes=[])).push(this)-1)}return t.prototype.run=function(t){if(this.active){var e=Jt;try{return Jt=this,t()}finally{Jt=e}}else 0},t.prototype.on=function(){Jt=this},t.prototype.off=function(){Jt=this.parent},t.prototype.stop=function(t){if(this.active){var e=void 0,o=void 0;for(e=0,o=this.effects.length;e<o;e++)this.effects[e].teardown();for(e=0,o=this.cleanups.length;e<o;e++)this.cleanups[e]();if(this.scopes)for(e=0,o=this.scopes.length;e<o;e++)this.scopes[e].stop(!0);if(!this.detached&&this.parent&&!t){var n=this.parent.scopes.pop();n&&n!==this&&(this.parent.scopes[this.index]=n,n.index=this.index)}this.parent=void 0,this.active=!1}},t}();function Zt(t,e){void 0===e&&(e=Jt),e&&e.active&&e.effects.push(t)}function $t(){return Jt}function te(t){var e=t._provided,o=t.$parent&&t.$parent._provided;return o===e?t._provided=Object.create(o):e}var ee=V(function(t){var e="&"===t.charAt(0);t=e?t.slice(1):t;var o="~"===t.charAt(0);t=o?t.slice(1):t;var n="!"===t.charAt(0);return t=n?t.slice(1):t,{name:t,once:o,capture:n,passive:e}});function oe(t,e){function o(){var t=o.fns;if(!r(t))return Ze(t,null,arguments,e,"v-on handler");for(var n=t.slice(),i=0;i<n.length;i++)Ze(n[i],null,arguments,e,"v-on handler")}return o.fns=t,o}function ne(t,e,o,n,i,r){var u,c,l,d;for(u in t)c=t[u],l=e[u],d=ee(u),a(c)||(a(l)?(a(c.fns)&&(c=t[u]=oe(c,r)),s(d.once)&&(c=t[u]=i(d.name,c,d.capture)),o(d.name,c,d.capture,d.passive,d.params)):c!==l&&(l.fns=c,t[u]=l));for(u in e)a(t[u])&&(d=ee(u),n(d.name,e[u],d.capture))}function ie(t,e,o){var n;t instanceof yt&&(t=t.data.hook||(t.data.hook={}));var i=t[e];function r(){o.apply(this,arguments),z(n.fns,r)}a(i)?n=oe([r]):u(i.fns)&&s(i.merged)?(n=i,n.fns.push(r)):n=oe([i,r]),n.merged=!0,t[e]=n}function re(t,e,o){var n=e.options.props;if(!a(n)){var i={},r=t.attrs,s=t.props;if(u(r)||u(s))for(var c in n){var l=B(c);ae(i,s,c,l,!0)||ae(i,r,c,l,!1)}return i}}function ae(t,e,o,n,i){if(u(e)){if(M(e,o))return t[o]=e[o],i||delete e[o],!0;if(M(e,n))return t[o]=e[n],i||delete e[n],!0}return!1}function ue(t){for(var e=0;e<t.length;e++)if(r(t[e]))return Array.prototype.concat.apply([],t);return t}function se(t){return l(t)?[xt(t)]:r(t)?le(t):void 0}function ce(t){return u(t)&&u(t.text)&&c(t.isComment)}function le(t,e){var o,n,i,c,d=[];for(o=0;o<t.length;o++)n=t[o],a(n)||"boolean"===typeof n||(i=d.length-1,c=d[i],r(n)?n.length>0&&(n=le(n,"".concat(e||"","_").concat(o)),ce(n[0])&&ce(c)&&(d[i]=xt(c.text+n[0].text),n.shift()),d.push.apply(d,n)):l(n)?ce(c)?d[i]=xt(c.text+n):""!==n&&d.push(xt(n)):ce(n)&&ce(c)?d[i]=xt(c.text+n.text):(s(t._isVList)&&u(n.tag)&&a(n.key)&&u(e)&&(n.key="__vlist".concat(e,"_").concat(o,"__")),d.push(n)));return d}function de(t,e){var o,n,i,a,s=null;if(r(t)||"string"===typeof t)for(s=new Array(t.length),o=0,n=t.length;o<n;o++)s[o]=e(t[o],o);else if("number"===typeof t)for(s=new Array(t),o=0;o<t;o++)s[o]=e(o+1,o);else if(v(t))if(mt&&t[Symbol.iterator]){s=[];var c=t[Symbol.iterator](),l=c.next();while(!l.done)s.push(e(l.value,s.length)),l=c.next()}else for(i=Object.keys(t),s=new Array(i.length),o=0,n=i.length;o<n;o++)a=i[o],s[o]=e(t[a],a,o);return u(s)||(s=[]),s._isVList=!0,s}function ve(t,e,o,n){var i,r=this.$scopedSlots[t];r?(o=o||{},n&&(o=I(I({},n),o)),i=r(o)||(d(e)?e():e)):i=this.$slots[t]||(d(e)?e():e);var a=o&&o.slot;return a?this.$createElement("template",{slot:a},i):i}function he(t){return Hn(this.$options,"filters",t,!0)||P}function pe(t,e){return r(t)?-1===t.indexOf(e):t!==e}function fe(t,e,o,n,i){var r=W.keyCodes[e]||o;return i&&n&&!W.keyCodes[e]?pe(i,n):r?pe(r,t):n?B(n)!==e:void 0===t}function me(t,e,o,n,i){if(o)if(v(o)){r(o)&&(o=j(o));var a=void 0,u=function(r){if("class"===r||"style"===r||_(r))a=t;else{var u=t.attrs&&t.attrs.type;a=n||W.mustUseProp(e,u,r)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var s=C(r),c=B(r);if(!(s in a)&&!(c in a)&&(a[r]=o[r],i)){var l=t.on||(t.on={});l["update:".concat(r)]=function(t){o[r]=t}}};for(var s in o)u(s)}else;return t}function ge(t,e){var o=this._staticTrees||(this._staticTrees=[]),n=o[t];return n&&!e?n:(n=o[t]=this.$options.staticRenderFns[t].call(this._renderProxy,this._c,this),ye(n,"__static__".concat(t),!1),n)}function be(t,e,o){return ye(t,"__once__".concat(e).concat(o?"_".concat(o):""),!0),t}function ye(t,e,o){if(r(t))for(var n=0;n<t.length;n++)t[n]&&"string"!==typeof t[n]&&we(t[n],"".concat(e,"_").concat(n),o);else we(t,e,o)}function we(t,e,o){t.isStatic=!0,t.key=e,t.isOnce=o}function xe(t,e){if(e)if(p(e)){var o=t.on=t.on?I({},t.on):{};for(var n in e){var i=o[n],r=e[n];o[n]=i?[].concat(i,r):r}}else;return t}function _e(t,e,o,n){e=e||{$stable:!o};for(var i=0;i<t.length;i++){var a=t[i];r(a)?_e(a,e,o):a&&(a.proxy&&(a.fn.proxy=!0),e[a.key]=a.fn)}return n&&(e.$key=n),e}function ze(t,e){for(var o=0;o<e.length;o+=2){var n=e[o];"string"===typeof n&&n&&(t[e[o]]=e[o+1])}return t}function ke(t,e){return"string"===typeof t?e+t:t}function Me(t){t._o=be,t._n=w,t._s=b,t._l=de,t._t=ve,t._q=D,t._i=U,t._m=ge,t._f=he,t._k=fe,t._b=me,t._v=xt,t._e=wt,t._u=_e,t._g=xe,t._d=ze,t._p=ke}function Ve(t,e){if(!t||!t.length)return{};for(var o={},n=0,i=t.length;n<i;n++){var r=t[n],a=r.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,r.context!==e&&r.fnContext!==e||!a||null==a.slot)(o.default||(o.default=[])).push(r);else{var u=a.slot,s=o[u]||(o[u]=[]);"template"===r.tag?s.push.apply(s,r.children||[]):s.push(r)}}for(var c in o)o[c].every(He)&&delete o[c];return o}function He(t){return t.isComment&&!t.asyncFactory||" "===t.text}function Ce(t){return t.isComment&&t.asyncFactory}function Le(t,e,o,n){var r,a=Object.keys(o).length>0,u=e?!!e.$stable:!a,s=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(u&&n&&n!==i&&s===n.$key&&!a&&!n.$hasNormal)return n;for(var c in r={},e)e[c]&&"$"!==c[0]&&(r[c]=Se(t,o,c,e[c]))}else r={};for(var l in o)l in r||(r[l]=Be(o,l));return e&&Object.isExtensible(e)&&(e._normalized=r),X(r,"$stable",u),X(r,"$key",s),X(r,"$hasNormal",a),r}function Se(t,e,o,n){var i=function(){var e=gt;bt(t);var o=arguments.length?n.apply(null,arguments):n({});o=o&&"object"===typeof o&&!r(o)?[o]:se(o);var i=o&&o[0];return bt(e),o&&(!i||1===o.length&&i.isComment&&!Ce(i))?void 0:o};return n.proxy&&Object.defineProperty(e,o,{get:i,enumerable:!0,configurable:!0}),i}function Be(t,e){return function(){return t[e]}}function Ee(t){var e=t.$options,o=e.setup;if(o){var n=t._setupContext=Oe(t);bt(t),Ct();var i=Ze(o,null,[t._props||qt({}),n],t,"setup");if(Lt(),bt(),d(i))e.render=i;else if(v(i))if(t._setupState=i,i.__sfc){var r=t._setupProxy={};for(var a in i)"__sfc"!==a&&Wt(r,i,a)}else for(var a in i)J(a)||Wt(t,i,a);else 0}}function Oe(t){return{get attrs(){if(!t._attrsProxy){var e=t._attrsProxy={};X(e,"_v_attr_proxy",!0),Ae(e,t.$attrs,i,t,"$attrs")}return t._attrsProxy},get listeners(){if(!t._listenersProxy){var e=t._listenersProxy={};Ae(e,t.$listeners,i,t,"$listeners")}return t._listenersProxy},get slots(){return Ie(t)},emit:A(t.$emit,t),expose:function(e){e&&Object.keys(e).forEach(function(o){return Wt(t,e,o)})}}}function Ae(t,e,o,n,i){var r=!1;for(var a in e)a in t?e[a]!==o[a]&&(r=!0):(r=!0,Te(t,a,n,i));for(var a in t)a in e||(r=!0,delete t[a]);return r}function Te(t,e,o,n){Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){return o[n][e]}})}function Ie(t){return t._slotsProxy||je(t._slotsProxy={},t.$scopedSlots),t._slotsProxy}function je(t,e){for(var o in e)t[o]=e[o];for(var o in t)o in e||delete t[o]}function Ne(t){t._vnode=null,t._staticTrees=null;var e=t.$options,o=t.$vnode=e._parentVnode,n=o&&o.context;t.$slots=Ve(e._renderChildren,n),t.$scopedSlots=o?Le(t.$parent,o.data.scopedSlots,t.$slots):i,t._c=function(e,o,n,i){return Ge(t,e,o,n,i,!1)},t.$createElement=function(e,o,n,i){return Ge(t,e,o,n,i,!0)};var r=o&&o.data;Pt(t,"$attrs",r&&r.attrs||i,null,!0),Pt(t,"$listeners",e._parentListeners||i,null,!0)}var Re=null;function Pe(t){Me(t.prototype),t.prototype.$nextTick=function(t){return lo(t,this)},t.prototype._render=function(){var t=this,e=t.$options,o=e.render,n=e._parentVnode;n&&t._isMounted&&(t.$scopedSlots=Le(t.$parent,n.data.scopedSlots,t.$slots,t.$scopedSlots),t._slotsProxy&&je(t._slotsProxy,t.$scopedSlots)),t.$vnode=n;var i,a=gt,u=Re;try{bt(t),Re=t,i=o.call(t._renderProxy,t.$createElement)}catch(e){Xe(e,t,"render"),i=t._vnode}finally{Re=u,bt(a)}return r(i)&&1===i.length&&(i=i[0]),i instanceof yt||(i=wt()),i.parent=n,i}}function De(t,e){return(t.__esModule||mt&&"Module"===t[Symbol.toStringTag])&&(t=t.default),v(t)?e.extend(t):t}function Ue(t,e,o,n,i){var r=wt();return r.asyncFactory=t,r.asyncMeta={data:e,context:o,children:n,tag:i},r}function Fe(t,e){if(s(t.error)&&u(t.errorComp))return t.errorComp;if(u(t.resolved))return t.resolved;var o=Re;if(o&&u(t.owners)&&-1===t.owners.indexOf(o)&&t.owners.push(o),s(t.loading)&&u(t.loadingComp))return t.loadingComp;if(o&&!u(t.owners)){var n=t.owners=[o],i=!0,r=null,c=null;o.$on("hook:destroyed",function(){return z(n,o)});var l=function(t){for(var e=0,o=n.length;e<o;e++)n[e].$forceUpdate();t&&(n.length=0,null!==r&&(clearTimeout(r),r=null),null!==c&&(clearTimeout(c),c=null))},d=F(function(o){t.resolved=De(o,e),i?n.length=0:l(!0)}),h=F(function(e){u(t.errorComp)&&(t.error=!0,l(!0))}),p=t(d,h);return v(p)&&(g(p)?a(t.resolved)&&p.then(d,h):g(p.component)&&(p.component.then(d,h),u(p.error)&&(t.errorComp=De(p.error,e)),u(p.loading)&&(t.loadingComp=De(p.loading,e),0===p.delay?t.loading=!0:r=setTimeout(function(){r=null,a(t.resolved)&&a(t.error)&&(t.loading=!0,l(!1))},p.delay||200)),u(p.timeout)&&(c=setTimeout(function(){c=null,a(t.resolved)&&h(null)},p.timeout)))),i=!1,t.loading?t.loadingComp:t.resolved}}function qe(t){if(r(t))for(var e=0;e<t.length;e++){var o=t[e];if(u(o)&&(u(o.componentOptions)||Ce(o)))return o}}var Ke=1,Ye=2;function Ge(t,e,o,n,i,a){return(r(o)||l(o))&&(i=n,n=o,o=void 0),s(a)&&(i=Ye),We(t,e,o,n,i)}function We(t,e,o,n,i){if(u(o)&&u(o.__ob__))return wt();if(u(o)&&u(o.is)&&(e=o.is),!e)return wt();var a,s;if(r(n)&&d(n[0])&&(o=o||{},o.scopedSlots={default:n[0]},n.length=0),i===Ye?n=se(n):i===Ke&&(n=ue(n)),"string"===typeof e){var c=void 0;s=t.$vnode&&t.$vnode.ns||W.getTagNamespace(e),a=W.isReservedTag(e)?new yt(W.parsePlatformTagName(e),o,n,void 0,void 0,t):o&&o.pre||!u(c=Hn(t.$options,"components",e))?new yt(e,o,n,void 0,void 0,t):ln(c,o,t,n,e)}else a=ln(e,o,t,n);return r(a)?a:u(a)?(u(s)&&Qe(a,s),u(o)&&Je(o),a):wt()}function Qe(t,e,o){if(t.ns=e,"foreignObject"===t.tag&&(e=void 0,o=!0),u(t.children))for(var n=0,i=t.children.length;n<i;n++){var r=t.children[n];u(r.tag)&&(a(r.ns)||s(o)&&"svg"!==r.tag)&&Qe(r,e,o)}}function Je(t){v(t.style)&&mo(t.style),v(t.class)&&mo(t.class)}function Xe(t,e,o){Ct();try{if(e){var n=e;while(n=n.$parent){var i=n.$options.errorCaptured;if(i)for(var r=0;r<i.length;r++)try{var a=!1===i[r].call(n,t,e,o);if(a)return}catch(t){$e(t,n,"errorCaptured hook")}}}$e(t,e,o)}finally{Lt()}}function Ze(t,e,o,n,i){var r;try{r=o?t.apply(e,o):t.call(e),r&&!r._isVue&&g(r)&&!r._handled&&(r.catch(function(t){return Xe(t,n,i+" (Promise/async)")}),r._handled=!0)}catch(t){Xe(t,n,i)}return r}function $e(t,e,o){if(W.errorHandler)try{return W.errorHandler.call(null,t,e,o)}catch(e){e!==t&&to(e,null,"config.errorHandler")}to(t,e,o)}function to(t,e,o){if(!et||"undefined"===typeof console)throw t;console.error(t)}var eo,oo=!1,no=[],io=!1;function ro(){io=!1;var t=no.slice(0);no.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!==typeof Promise&&pt(Promise)){var ao=Promise.resolve();eo=function(){ao.then(ro),at&&setTimeout(N)},oo=!0}else if(nt||"undefined"===typeof MutationObserver||!pt(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())eo="undefined"!==typeof n&&pt(n)?function(){n(ro)}:function(){setTimeout(ro,0)};else{var uo=1,so=new MutationObserver(ro),co=document.createTextNode(String(uo));so.observe(co,{characterData:!0}),eo=function(){uo=(uo+1)%2,co.data=String(uo)},oo=!0}function lo(t,e){var o;if(no.push(function(){if(t)try{t.call(e)}catch(t){Xe(t,e,"nextTick")}else o&&o(e)}),io||(io=!0,eo()),!t&&"undefined"!==typeof Promise)return new Promise(function(t){o=t})}function vo(t){return function(e,o){if(void 0===o&&(o=gt),o)return ho(o,t,e)}}function ho(t,e,o){var n=t.$options;n[e]=yn(n[e],o)}vo("beforeMount"),vo("mounted"),vo("beforeUpdate"),vo("updated"),vo("beforeDestroy"),vo("destroyed"),vo("activated"),vo("deactivated"),vo("serverPrefetch"),vo("renderTracked"),vo("renderTriggered"),vo("errorCaptured");var po="2.7.16";var fo=new ft;function mo(t){return go(t,fo),fo.clear(),t}function go(t,e){var o,n,i=r(t);if(!(!i&&!v(t)||t.__v_skip||Object.isFrozen(t)||t instanceof yt)){if(t.__ob__){var a=t.__ob__.dep.id;if(e.has(a))return;e.add(a)}if(i){o=t.length;while(o--)go(t[o],e)}else if(Gt(t))go(t.value,e);else{n=Object.keys(t),o=n.length;while(o--)go(t[n[o]],e)}}}var bo,yo=0,wo=function(){function t(t,e,o,n,i){Zt(this,Jt&&!Jt._vm?Jt:t?t._scope:void 0),(this.vm=t)&&i&&(t._watcher=this),n?(this.deep=!!n.deep,this.user=!!n.user,this.lazy=!!n.lazy,this.sync=!!n.sync,this.before=n.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=o,this.id=++yo,this.active=!0,this.post=!1,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ft,this.newDepIds=new ft,this.expression="",d(e)?this.getter=e:(this.getter=$(e),this.getter||(this.getter=N)),this.value=this.lazy?void 0:this.get()}return t.prototype.get=function(){var t;Ct(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;Xe(t,e,'getter for watcher "'.concat(this.expression,'"'))}finally{this.deep&&mo(t),Lt(),this.cleanupDeps()}return t},t.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},t.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var o=this.depIds;this.depIds=this.newDepIds,this.newDepIds=o,this.newDepIds.clear(),o=this.deps,this.deps=this.newDeps,this.newDeps=o,this.newDeps.length=0},t.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():Zo(this)},t.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||v(t)||this.deep){var e=this.value;if(this.value=t,this.user){var o='callback for watcher "'.concat(this.expression,'"');Ze(this.cb,this.vm,[t,e],this.vm,o)}else this.cb.call(this.vm,t,e)}}},t.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},t.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},t.prototype.teardown=function(){if(this.vm&&!this.vm._isBeingDestroyed&&z(this.vm._scope.effects,this),this.active){var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1,this.onStop&&this.onStop()}},t}();function xo(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Mo(t,e)}function _o(t,e){bo.$on(t,e)}function zo(t,e){bo.$off(t,e)}function ko(t,e){var o=bo;return function n(){var i=e.apply(null,arguments);null!==i&&o.$off(t,n)}}function Mo(t,e,o){bo=t,ne(e,o||{},_o,zo,ko,t),bo=void 0}function Vo(t){var e=/^hook:/;t.prototype.$on=function(t,o){var n=this;if(r(t))for(var i=0,a=t.length;i<a;i++)n.$on(t[i],o);else(n._events[t]||(n._events[t]=[])).push(o),e.test(t)&&(n._hasHookEvent=!0);return n},t.prototype.$once=function(t,e){var o=this;function n(){o.$off(t,n),e.apply(o,arguments)}return n.fn=e,o.$on(t,n),o},t.prototype.$off=function(t,e){var o=this;if(!arguments.length)return o._events=Object.create(null),o;if(r(t)){for(var n=0,i=t.length;n<i;n++)o.$off(t[n],e);return o}var a,u=o._events[t];if(!u)return o;if(!e)return o._events[t]=null,o;var s=u.length;while(s--)if(a=u[s],a===e||a.fn===e){u.splice(s,1);break}return o},t.prototype.$emit=function(t){var e=this,o=e._events[t];if(o){o=o.length>1?T(o):o;for(var n=T(arguments,1),i='event handler for "'.concat(t,'"'),r=0,a=o.length;r<a;r++)Ze(o[r],e,n,e,i)}return e}}var Ho=null;function Co(t){var e=Ho;return Ho=t,function(){Ho=e}}function Lo(t){var e=t.$options,o=e.parent;if(o&&!e.abstract){while(o.$options.abstract&&o.$parent)o=o.$parent;o.$children.push(t)}t.$parent=o,t.$root=o?o.$root:t,t.$children=[],t.$refs={},t._provided=o?o._provided:Object.create(null),t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}function So(t){t.prototype._update=function(t,e){var o=this,n=o.$el,i=o._vnode,r=Co(o);o._vnode=t,o.$el=i?o.__patch__(i,t):o.__patch__(o.$el,t,e,!1),r(),n&&(n.__vue__=null),o.$el&&(o.$el.__vue__=o);var a=o;while(a&&a.$vnode&&a.$parent&&a.$vnode===a.$parent._vnode)a.$parent.$el=a.$el,a=a.$parent},t.prototype.$forceUpdate=function(){var t=this;t._watcher&&t._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Io(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||z(e.$children,t),t._scope.stop(),t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Io(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}function Bo(t,e,o){var n;t.$el=e,t.$options.render||(t.$options.render=wt),Io(t,"beforeMount"),n=function(){t._update(t._render(),o)};var i={before:function(){t._isMounted&&!t._isDestroyed&&Io(t,"beforeUpdate")}};new wo(t,n,N,i,!0),o=!1;var r=t._preWatchers;if(r)for(var a=0;a<r.length;a++)r[a].run();return null==t.$vnode&&(t._isMounted=!0,Io(t,"mounted")),t}function Eo(t,e,o,n,r){var a=n.data.scopedSlots,u=t.$scopedSlots,s=!!(a&&!a.$stable||u!==i&&!u.$stable||a&&t.$scopedSlots.$key!==a.$key||!a&&t.$scopedSlots.$key),c=!!(r||t.$options._renderChildren||s),l=t.$vnode;t.$options._parentVnode=n,t.$vnode=n,t._vnode&&(t._vnode.parent=n),t.$options._renderChildren=r;var d=n.data.attrs||i;t._attrsProxy&&Ae(t._attrsProxy,d,l.data&&l.data.attrs||i,t,"$attrs")&&(c=!0),t.$attrs=d,o=o||i;var v=t.$options._parentListeners;if(t._listenersProxy&&Ae(t._listenersProxy,o,v||i,t,"$listeners"),t.$listeners=t.$options._parentListeners=o,Mo(t,o,v),e&&t.$options.props){It(!1);for(var h=t._props,p=t.$options._propKeys||[],f=0;f<p.length;f++){var m=p[f],g=t.$options.props;h[m]=Cn(m,g,e,t)}It(!0),t.$options.propsData=e}c&&(t.$slots=Ve(r,n.context),t.$forceUpdate())}function Oo(t){while(t&&(t=t.$parent))if(t._inactive)return!0;return!1}function Ao(t,e){if(e){if(t._directInactive=!1,Oo(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var o=0;o<t.$children.length;o++)Ao(t.$children[o]);Io(t,"activated")}}function To(t,e){if((!e||(t._directInactive=!0,!Oo(t)))&&!t._inactive){t._inactive=!0;for(var o=0;o<t.$children.length;o++)To(t.$children[o]);Io(t,"deactivated")}}function Io(t,e,o,n){void 0===n&&(n=!0),Ct();var i=gt,r=$t();n&&bt(t);var a=t.$options[e],u="".concat(e," hook");if(a)for(var s=0,c=a.length;s<c;s++)Ze(a[s],t,o||null,t,u);t._hasHookEvent&&t.$emit("hook:"+e),n&&(bt(i),r&&r.on()),Lt()}var jo=[],No=[],Ro={},Po=!1,Do=!1,Uo=0;function Fo(){Uo=jo.length=No.length=0,Ro={},Po=Do=!1}var qo=0,Ko=Date.now;if(et&&!nt){var Yo=window.performance;Yo&&"function"===typeof Yo.now&&Ko()>document.createEvent("Event").timeStamp&&(Ko=function(){return Yo.now()})}var Go=function(t,e){if(t.post){if(!e.post)return 1}else if(e.post)return-1;return t.id-e.id};function Wo(){var t,e;for(qo=Ko(),Do=!0,jo.sort(Go),Uo=0;Uo<jo.length;Uo++)t=jo[Uo],t.before&&t.before(),e=t.id,Ro[e]=null,t.run();var o=No.slice(),n=jo.slice();Fo(),Xo(o),Qo(n),Mt(),ht&&W.devtools&&ht.emit("flush")}function Qo(t){var e=t.length;while(e--){var o=t[e],n=o.vm;n&&n._watcher===o&&n._isMounted&&!n._isDestroyed&&Io(n,"updated")}}function Jo(t){t._inactive=!1,No.push(t)}function Xo(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,Ao(t[e],!0)}function Zo(t){var e=t.id;if(null==Ro[e]&&(t!==Vt.target||!t.noRecurse)){if(Ro[e]=!0,Do){var o=jo.length-1;while(o>Uo&&jo[o].id>t.id)o--;jo.splice(o+1,0,t)}else jo.push(t);Po||(Po=!0,lo(Wo))}}function $o(t){var e=t.$options.provide;if(e){var o=d(e)?e.call(t):e;if(!v(o))return;for(var n=te(t),i=mt?Reflect.ownKeys(o):Object.keys(o),r=0;r<i.length;r++){var a=i[r];Object.defineProperty(n,a,Object.getOwnPropertyDescriptor(o,a))}}}function tn(t){var e=en(t.$options.inject,t);e&&(It(!1),Object.keys(e).forEach(function(o){Pt(t,o,e[o])}),It(!0))}function en(t,e){if(t){for(var o=Object.create(null),n=mt?Reflect.ownKeys(t):Object.keys(t),i=0;i<n.length;i++){var r=n[i];if("__ob__"!==r){var a=t[r].from;if(a in e._provided)o[r]=e._provided[a];else if("default"in t[r]){var u=t[r].default;o[r]=d(u)?u.call(e):u}else 0}}return o}}function on(t,e,o,n,a){var u,c=this,l=a.options;M(n,"_uid")?(u=Object.create(n),u._original=n):(u=n,n=n._original);var d=s(l._compiled),v=!d;this.data=t,this.props=e,this.children=o,this.parent=n,this.listeners=t.on||i,this.injections=en(l.inject,n),this.slots=function(){return c.$slots||Le(n,t.scopedSlots,c.$slots=Ve(o,n)),c.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return Le(n,t.scopedSlots,this.slots())}}),d&&(this.$options=l,this.$slots=this.slots(),this.$scopedSlots=Le(n,t.scopedSlots,this.$slots)),l._scopeId?this._c=function(t,e,o,i){var a=Ge(u,t,e,o,i,v);return a&&!r(a)&&(a.fnScopeId=l._scopeId,a.fnContext=n),a}:this._c=function(t,e,o,n){return Ge(u,t,e,o,n,v)}}function nn(t,e,o,n,a){var s=t.options,c={},l=s.props;if(u(l))for(var d in l)c[d]=Cn(d,l,e||i);else u(o.attrs)&&an(c,o.attrs),u(o.props)&&an(c,o.props);var v=new on(o,c,a,n,t),h=s.render.call(null,v._c,v);if(h instanceof yt)return rn(h,o,v.parent,s,v);if(r(h)){for(var p=se(h)||[],f=new Array(p.length),m=0;m<p.length;m++)f[m]=rn(p[m],o,v.parent,s,v);return f}}function rn(t,e,o,n,i){var r=_t(t);return r.fnContext=o,r.fnOptions=n,e.slot&&((r.data||(r.data={})).slot=e.slot),r}function an(t,e){for(var o in e)t[C(o)]=e[o]}function un(t){return t.name||t.__name||t._componentTag}Me(on.prototype);var sn={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var o=t;sn.prepatch(o,o)}else{var n=t.componentInstance=dn(t,Ho);n.$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var o=e.componentOptions,n=e.componentInstance=t.componentInstance;Eo(n,o.propsData,o.listeners,e,o.children)},insert:function(t){var e=t.context,o=t.componentInstance;o._isMounted||(o._isMounted=!0,Io(o,"mounted")),t.data.keepAlive&&(e._isMounted?Jo(o):Ao(o,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?To(e,!0):e.$destroy())}},cn=Object.keys(sn);function ln(t,e,o,n,i){if(!a(t)){var r=o.$options._base;if(v(t)&&(t=r.extend(t)),"function"===typeof t){var c;if(a(t.cid)&&(c=t,t=Fe(c,r),void 0===t))return Ue(c,e,o,n,i);e=e||{},Zn(t),u(e.model)&&pn(t.options,e);var l=re(e,t,i);if(s(t.options.functional))return nn(t,l,e,o,n);var d=e.on;if(e.on=e.nativeOn,s(t.options.abstract)){var h=e.slot;e={},h&&(e.slot=h)}vn(e);var p=un(t.options)||i,f=new yt("vue-component-".concat(t.cid).concat(p?"-".concat(p):""),e,void 0,void 0,void 0,o,{Ctor:t,propsData:l,listeners:d,tag:i,children:n},c);return f}}}function dn(t,e){var o={_isComponent:!0,_parentVnode:t,parent:e},n=t.data.inlineTemplate;return u(n)&&(o.render=n.render,o.staticRenderFns=n.staticRenderFns),new t.componentOptions.Ctor(o)}function vn(t){for(var e=t.hook||(t.hook={}),o=0;o<cn.length;o++){var n=cn[o],i=e[n],r=sn[n];i===r||i&&i._merged||(e[n]=i?hn(r,i):r)}}function hn(t,e){var o=function(o,n){t(o,n),e(o,n)};return o._merged=!0,o}function pn(t,e){var o=t.model&&t.model.prop||"value",n=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[o]=e.model.value;var i=e.on||(e.on={}),a=i[n],s=e.model.callback;u(a)?(r(a)?-1===a.indexOf(s):a!==s)&&(i[n]=[s].concat(a)):i[n]=s}var fn=N,mn=W.optionMergeStrategies;function gn(t,e,o){if(void 0===o&&(o=!0),!e)return t;for(var n,i,r,a=mt?Reflect.ownKeys(e):Object.keys(e),u=0;u<a.length;u++)n=a[u],"__ob__"!==n&&(i=t[n],r=e[n],o&&M(t,n)?i!==r&&p(i)&&p(r)&&gn(i,r):Dt(t,n,r));return t}function bn(t,e,o){return o?function(){var n=d(e)?e.call(o,o):e,i=d(t)?t.call(o,o):t;return n?gn(n,i):i}:e?t?function(){return gn(d(e)?e.call(this,this):e,d(t)?t.call(this,this):t)}:e:t}function yn(t,e){var o=e?t?t.concat(e):r(e)?e:[e]:t;return o?wn(o):o}function wn(t){for(var e=[],o=0;o<t.length;o++)-1===e.indexOf(t[o])&&e.push(t[o]);return e}function xn(t,e,o,n){var i=Object.create(t||null);return e?I(i,e):i}mn.data=function(t,e,o){return o?bn(t,e,o):e&&"function"!==typeof e?t:bn(t,e)},G.forEach(function(t){mn[t]=yn}),Y.forEach(function(t){mn[t+"s"]=xn}),mn.watch=function(t,e,o,n){if(t===ct&&(t=void 0),e===ct&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var i={};for(var a in I(i,t),e){var u=i[a],s=e[a];u&&!r(u)&&(u=[u]),i[a]=u?u.concat(s):r(s)?s:[s]}return i},mn.props=mn.methods=mn.inject=mn.computed=function(t,e,o,n){if(!t)return e;var i=Object.create(null);return I(i,t),e&&I(i,e),i},mn.provide=function(t,e){return t?function(){var o=Object.create(null);return gn(o,d(t)?t.call(this):t),e&&gn(o,d(e)?e.call(this):e,!1),o}:e};var _n=function(t,e){return void 0===e?t:e};function zn(t,e){var o=t.props;if(o){var n,i,a,u={};if(r(o)){n=o.length;while(n--)i=o[n],"string"===typeof i&&(a=C(i),u[a]={type:null})}else if(p(o))for(var s in o)i=o[s],a=C(s),u[a]=p(i)?i:{type:i};else 0;t.props=u}}function kn(t,e){var o=t.inject;if(o){var n=t.inject={};if(r(o))for(var i=0;i<o.length;i++)n[o[i]]={from:o[i]};else if(p(o))for(var a in o){var u=o[a];n[a]=p(u)?I({from:a},u):{from:u}}else 0}}function Mn(t){var e=t.directives;if(e)for(var o in e){var n=e[o];d(n)&&(e[o]={bind:n,update:n})}}function Vn(t,e,o){if(d(e)&&(e=e.options),zn(e,o),kn(e,o),Mn(e),!e._base&&(e.extends&&(t=Vn(t,e.extends,o)),e.mixins))for(var n=0,i=e.mixins.length;n<i;n++)t=Vn(t,e.mixins[n],o);var r,a={};for(r in t)u(r);for(r in e)M(t,r)||u(r);function u(n){var i=mn[n]||_n;a[n]=i(t[n],e[n],o,n)}return a}function Hn(t,e,o,n){if("string"===typeof o){var i=t[e];if(M(i,o))return i[o];var r=C(o);if(M(i,r))return i[r];var a=L(r);if(M(i,a))return i[a];var u=i[o]||i[r]||i[a];return u}}function Cn(t,e,o,n){var i=e[t],r=!M(o,t),a=o[t],u=On(Boolean,i.type);if(u>-1)if(r&&!M(i,"default"))a=!1;else if(""===a||a===B(t)){var s=On(String,i.type);(s<0||u<s)&&(a=!0)}if(void 0===a){a=Ln(n,i,t);var c=Tt;It(!0),Rt(a),It(c)}return a}function Ln(t,e,o){if(M(e,"default")){var n=e.default;return t&&t.$options.propsData&&void 0===t.$options.propsData[o]&&void 0!==t._props[o]?t._props[o]:d(n)&&"Function"!==Bn(e.type)?n.call(t):n}}var Sn=/^\s*function (\w+)/;function Bn(t){var e=t&&t.toString().match(Sn);return e?e[1]:""}function En(t,e){return Bn(t)===Bn(e)}function On(t,e){if(!r(e))return En(e,t)?0:-1;for(var o=0,n=e.length;o<n;o++)if(En(e[o],t))return o;return-1}var An={enumerable:!0,configurable:!0,get:N,set:N};function Tn(t,e,o){An.get=function(){return this[e][o]},An.set=function(t){this[e][o]=t},Object.defineProperty(t,o,An)}function In(t){var e=t.$options;if(e.props&&jn(t,e.props),Ee(t),e.methods&&Kn(t,e.methods),e.data)Nn(t);else{var o=Rt(t._data={});o&&o.vmCount++}e.computed&&Dn(t,e.computed),e.watch&&e.watch!==ct&&Yn(t,e.watch)}function jn(t,e){var o=t.$options.propsData||{},n=t._props=qt({}),i=t.$options._propKeys=[],r=!t.$parent;r||It(!1);var a=function(r){i.push(r);var a=Cn(r,e,o,t);Pt(n,r,a,void 0,!0),r in t||Tn(t,"_props",r)};for(var u in e)a(u);It(!0)}function Nn(t){var e=t.$options.data;e=t._data=d(e)?Rn(e,t):e||{},p(e)||(e={});var o=Object.keys(e),n=t.$options.props,i=(t.$options.methods,o.length);while(i--){var r=o[i];0,n&&M(n,r)||J(r)||Tn(t,"_data",r)}var a=Rt(e);a&&a.vmCount++}function Rn(t,e){Ct();try{return t.call(e,e)}catch(t){return Xe(t,e,"data()"),{}}finally{Lt()}}var Pn={lazy:!0};function Dn(t,e){var o=t._computedWatchers=Object.create(null),n=vt();for(var i in e){var r=e[i],a=d(r)?r:r.get;0,n||(o[i]=new wo(t,a||N,N,Pn)),i in t||Un(t,i,r)}}function Un(t,e,o){var n=!vt();d(o)?(An.get=n?Fn(e):qn(o),An.set=N):(An.get=o.get?n&&!1!==o.cache?Fn(e):qn(o.get):N,An.set=o.set||N),Object.defineProperty(t,e,An)}function Fn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),Vt.target&&e.depend(),e.value}}function qn(t){return function(){return t.call(this,this)}}function Kn(t,e){t.$options.props;for(var o in e)t[o]="function"!==typeof e[o]?N:A(e[o],t)}function Yn(t,e){for(var o in e){var n=e[o];if(r(n))for(var i=0;i<n.length;i++)Gn(t,o,n[i]);else Gn(t,o,n)}}function Gn(t,e,o,n){return p(o)&&(n=o,o=o.handler),"string"===typeof o&&(o=t[o]),t.$watch(e,o,n)}function Wn(t){var e={get:function(){return this._data}},o={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",o),t.prototype.$set=Dt,t.prototype.$delete=Ut,t.prototype.$watch=function(t,e,o){var n=this;if(p(e))return Gn(n,t,e,o);o=o||{},o.user=!0;var i=new wo(n,t,e,o);if(o.immediate){var r='callback for immediate watcher "'.concat(i.expression,'"');Ct(),Ze(e,n,[i.value],n,r),Lt()}return function(){i.teardown()}}}var Qn=0;function Jn(t){t.prototype._init=function(t){var e=this;e._uid=Qn++,e._isVue=!0,e.__v_skip=!0,e._scope=new Xt(!0),e._scope.parent=void 0,e._scope._vm=!0,t&&t._isComponent?Xn(e,t):e.$options=Vn(Zn(e.constructor),t||{},e),e._renderProxy=e,e._self=e,Lo(e),xo(e),Ne(e),Io(e,"beforeCreate",void 0,!1),tn(e),In(e),$o(e),Io(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}function Xn(t,e){var o=t.$options=Object.create(t.constructor.options),n=e._parentVnode;o.parent=e.parent,o._parentVnode=n;var i=n.componentOptions;o.propsData=i.propsData,o._parentListeners=i.listeners,o._renderChildren=i.children,o._componentTag=i.tag,e.render&&(o.render=e.render,o.staticRenderFns=e.staticRenderFns)}function Zn(t){var e=t.options;if(t.super){var o=Zn(t.super),n=t.superOptions;if(o!==n){t.superOptions=o;var i=$n(t);i&&I(t.extendOptions,i),e=t.options=Vn(o,t.extendOptions),e.name&&(e.components[e.name]=t)}}return e}function $n(t){var e,o=t.options,n=t.sealedOptions;for(var i in o)o[i]!==n[i]&&(e||(e={}),e[i]=o[i]);return e}function ti(t){this._init(t)}function ei(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var o=T(arguments,1);return o.unshift(this),d(t.install)?t.install.apply(t,o):d(t)&&t.apply(null,o),e.push(t),this}}function oi(t){t.mixin=function(t){return this.options=Vn(this.options,t),this}}function ni(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var o=this,n=o.cid,i=t._Ctor||(t._Ctor={});if(i[n])return i[n];var r=un(t)||un(o.options);var a=function(t){this._init(t)};return a.prototype=Object.create(o.prototype),a.prototype.constructor=a,a.cid=e++,a.options=Vn(o.options,t),a["super"]=o,a.options.props&&ii(a),a.options.computed&&ri(a),a.extend=o.extend,a.mixin=o.mixin,a.use=o.use,Y.forEach(function(t){a[t]=o[t]}),r&&(a.options.components[r]=a),a.superOptions=o.options,a.extendOptions=t,a.sealedOptions=I({},a.options),i[n]=a,a}}function ii(t){var e=t.options.props;for(var o in e)Tn(t.prototype,"_props",o)}function ri(t){var e=t.options.computed;for(var o in e)Un(t.prototype,o,e[o])}function ai(t){Y.forEach(function(e){t[e]=function(t,o){return o?("component"===e&&p(o)&&(o.name=o.name||t,o=this.options._base.extend(o)),"directive"===e&&d(o)&&(o={bind:o,update:o}),this.options[e+"s"][t]=o,o):this.options[e+"s"][t]}})}function ui(t){return t&&(un(t.Ctor.options)||t.tag)}function si(t,e){return r(t)?t.indexOf(e)>-1:"string"===typeof t?t.split(",").indexOf(e)>-1:!!f(t)&&t.test(e)}function ci(t,e){var o=t.cache,n=t.keys,i=t._vnode,r=t.$vnode;for(var a in o){var u=o[a];if(u){var s=u.name;s&&!e(s)&&li(o,a,n,i)}}r.componentOptions.children=void 0}function li(t,e,o,n){var i=t[e];!i||n&&i.tag===n.tag||i.componentInstance.$destroy(),t[e]=null,z(o,e)}Jn(ti),Wn(ti),Vo(ti),So(ti),Pe(ti);var di=[String,RegExp,Array],vi={name:"keep-alive",abstract:!0,props:{include:di,exclude:di,max:[String,Number]},methods:{cacheVNode:function(){var t=this,e=t.cache,o=t.keys,n=t.vnodeToCache,i=t.keyToCache;if(n){var r=n.tag,a=n.componentInstance,u=n.componentOptions;e[i]={name:ui(u),tag:r,componentInstance:a},o.push(i),this.max&&o.length>parseInt(this.max)&&li(e,o[0],o,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)li(this.cache,t,this.keys)},mounted:function(){var t=this;this.cacheVNode(),this.$watch("include",function(e){ci(t,function(t){return si(e,t)})}),this.$watch("exclude",function(e){ci(t,function(t){return!si(e,t)})})},updated:function(){this.cacheVNode()},render:function(){var t=this.$slots.default,e=qe(t),o=e&&e.componentOptions;if(o){var n=ui(o),i=this,r=i.include,a=i.exclude;if(r&&(!n||!si(r,n))||a&&n&&si(a,n))return e;var u=this,s=u.cache,c=u.keys,l=null==e.key?o.Ctor.cid+(o.tag?"::".concat(o.tag):""):e.key;s[l]?(e.componentInstance=s[l].componentInstance,z(c,l),c.push(l)):(this.vnodeToCache=e,this.keyToCache=l),e.data.keepAlive=!0}return e||t&&t[0]}},hi={KeepAlive:vi};function pi(t){var e={get:function(){return W}};Object.defineProperty(t,"config",e),t.util={warn:fn,extend:I,mergeOptions:Vn,defineReactive:Pt},t.set=Dt,t.delete=Ut,t.nextTick=lo,t.observable=function(t){return Rt(t),t},t.options=Object.create(null),Y.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,I(t.options.components,hi),ei(t),oi(t),ni(t),ai(t)}pi(ti),Object.defineProperty(ti.prototype,"$isServer",{get:vt}),Object.defineProperty(ti.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(ti,"FunctionalRenderContext",{value:on}),ti.version=po;var fi=x("style,class"),mi=x("input,textarea,option,select,progress"),gi=function(t,e,o){return"value"===o&&mi(t)&&"button"!==e||"selected"===o&&"option"===t||"checked"===o&&"input"===t||"muted"===o&&"video"===t},bi=x("contenteditable,draggable,spellcheck"),yi=x("events,caret,typing,plaintext-only"),wi=function(t,e){return Mi(e)||"false"===e?"false":"contenteditable"===t&&yi(e)?e:"true"},xi=x("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),_i="http://www.w3.org/1999/xlink",zi=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},ki=function(t){return zi(t)?t.slice(6,t.length):""},Mi=function(t){return null==t||!1===t};function Vi(t){var e=t.data,o=t,n=t;while(u(n.componentInstance))n=n.componentInstance._vnode,n&&n.data&&(e=Hi(n.data,e));while(u(o=o.parent))o&&o.data&&(e=Hi(e,o.data));return Ci(e.staticClass,e.class)}function Hi(t,e){return{staticClass:Li(t.staticClass,e.staticClass),class:u(t.class)?[t.class,e.class]:e.class}}function Ci(t,e){return u(t)||u(e)?Li(t,Si(e)):""}function Li(t,e){return t?e?t+" "+e:t:e||""}function Si(t){return Array.isArray(t)?Bi(t):v(t)?Ei(t):"string"===typeof t?t:""}function Bi(t){for(var e,o="",n=0,i=t.length;n<i;n++)u(e=Si(t[n]))&&""!==e&&(o&&(o+=" "),o+=e);return o}function Ei(t){var e="";for(var o in t)t[o]&&(e&&(e+=" "),e+=o);return e}var Oi={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Ai=x("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Ti=x("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Ii=function(t){return Ai(t)||Ti(t)};function ji(t){return Ti(t)?"svg":"math"===t?"math":void 0}var Ni=Object.create(null);function Ri(t){if(!et)return!0;if(Ii(t))return!1;if(t=t.toLowerCase(),null!=Ni[t])return Ni[t];var e=document.createElement(t);return t.indexOf("-")>-1?Ni[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Ni[t]=/HTMLUnknownElement/.test(e.toString())}var Pi=x("text,number,password,search,email,tel,url");function Di(t){if("string"===typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}function Ui(t,e){var o=document.createElement(t);return"select"!==t?o:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&o.setAttribute("multiple","multiple"),o)}function Fi(t,e){return document.createElementNS(Oi[t],e)}function qi(t){return document.createTextNode(t)}function Ki(t){return document.createComment(t)}function Yi(t,e,o){t.insertBefore(e,o)}function Gi(t,e){t.removeChild(e)}function Wi(t,e){t.appendChild(e)}function Qi(t){return t.parentNode}function Ji(t){return t.nextSibling}function Xi(t){return t.tagName}function Zi(t,e){t.textContent=e}function $i(t,e){t.setAttribute(e,"")}var tr=Object.freeze({__proto__:null,createElement:Ui,createElementNS:Fi,createTextNode:qi,createComment:Ki,insertBefore:Yi,removeChild:Gi,appendChild:Wi,parentNode:Qi,nextSibling:Ji,tagName:Xi,setTextContent:Zi,setStyleScope:$i}),er={create:function(t,e){or(e)},update:function(t,e){t.data.ref!==e.data.ref&&(or(t,!0),or(e))},destroy:function(t){or(t,!0)}};function or(t,e){var o=t.data.ref;if(u(o)){var n=t.context,i=t.componentInstance||t.elm,a=e?null:i,s=e?void 0:i;if(d(o))Ze(o,n,[a],n,"template ref function");else{var c=t.data.refInFor,l="string"===typeof o||"number"===typeof o,v=Gt(o),h=n.$refs;if(l||v)if(c){var p=l?h[o]:o.value;e?r(p)&&z(p,i):r(p)?p.includes(i)||p.push(i):l?(h[o]=[i],nr(n,o,h[o])):o.value=[i]}else if(l){if(e&&h[o]!==i)return;h[o]=s,nr(n,o,a)}else if(v){if(e&&o.value!==i)return;o.value=a}else 0}}}function nr(t,e,o){var n=t._setupState;n&&M(n,e)&&(Gt(n[e])?n[e].value=o:n[e]=o)}var ir=new yt("",{},[]),rr=["create","activate","update","remove","destroy"];function ar(t,e){return t.key===e.key&&t.asyncFactory===e.asyncFactory&&(t.tag===e.tag&&t.isComment===e.isComment&&u(t.data)===u(e.data)&&ur(t,e)||s(t.isAsyncPlaceholder)&&a(e.asyncFactory.error))}function ur(t,e){if("input"!==t.tag)return!0;var o,n=u(o=t.data)&&u(o=o.attrs)&&o.type,i=u(o=e.data)&&u(o=o.attrs)&&o.type;return n===i||Pi(n)&&Pi(i)}function sr(t,e,o){var n,i,r={};for(n=e;n<=o;++n)i=t[n].key,u(i)&&(r[i]=n);return r}function cr(t){var e,o,n={},i=t.modules,c=t.nodeOps;for(e=0;e<rr.length;++e)for(n[rr[e]]=[],o=0;o<i.length;++o)u(i[o][rr[e]])&&n[rr[e]].push(i[o][rr[e]]);function d(t){return new yt(c.tagName(t).toLowerCase(),{},[],void 0,t)}function v(t,e){function o(){0===--o.listeners&&h(t)}return o.listeners=e,o}function h(t){var e=c.parentNode(t);u(e)&&c.removeChild(e,t)}function p(t,e,o,n,i,r,a){if(u(t.elm)&&u(r)&&(t=r[a]=_t(t)),t.isRootInsert=!i,!f(t,e,o,n)){var l=t.data,d=t.children,v=t.tag;u(v)?(t.elm=t.ns?c.createElementNS(t.ns,v):c.createElement(v,t),z(t),y(t,d,e),u(l)&&_(t,e),b(o,t.elm,n)):s(t.isComment)?(t.elm=c.createComment(t.text),b(o,t.elm,n)):(t.elm=c.createTextNode(t.text),b(o,t.elm,n))}}function f(t,e,o,n){var i=t.data;if(u(i)){var r=u(t.componentInstance)&&i.keepAlive;if(u(i=i.hook)&&u(i=i.init)&&i(t,!1),u(t.componentInstance))return m(t,e),b(o,t.elm,n),s(r)&&g(t,e,o,n),!0}}function m(t,e){u(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,w(t)?(_(t,e),z(t)):(or(t),e.push(t))}function g(t,e,o,i){var r,a=t;while(a.componentInstance)if(a=a.componentInstance._vnode,u(r=a.data)&&u(r=r.transition)){for(r=0;r<n.activate.length;++r)n.activate[r](ir,a);e.push(a);break}b(o,t.elm,i)}function b(t,e,o){u(t)&&(u(o)?c.parentNode(o)===t&&c.insertBefore(t,e,o):c.appendChild(t,e))}function y(t,e,o){if(r(e)){0;for(var n=0;n<e.length;++n)p(e[n],o,t.elm,null,!0,e,n)}else l(t.text)&&c.appendChild(t.elm,c.createTextNode(String(t.text)))}function w(t){while(t.componentInstance)t=t.componentInstance._vnode;return u(t.tag)}function _(t,o){for(var i=0;i<n.create.length;++i)n.create[i](ir,t);e=t.data.hook,u(e)&&(u(e.create)&&e.create(ir,t),u(e.insert)&&o.push(t))}function z(t){var e;if(u(e=t.fnScopeId))c.setStyleScope(t.elm,e);else{var o=t;while(o)u(e=o.context)&&u(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e),o=o.parent}u(e=Ho)&&e!==t.context&&e!==t.fnContext&&u(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e)}function k(t,e,o,n,i,r){for(;n<=i;++n)p(o[n],r,t,e,!1,o,n)}function M(t){var e,o,i=t.data;if(u(i))for(u(e=i.hook)&&u(e=e.destroy)&&e(t),e=0;e<n.destroy.length;++e)n.destroy[e](t);if(u(e=t.children))for(o=0;o<t.children.length;++o)M(t.children[o])}function V(t,e,o){for(;e<=o;++e){var n=t[e];u(n)&&(u(n.tag)?(H(n),M(n)):h(n.elm))}}function H(t,e){if(u(e)||u(t.data)){var o,i=n.remove.length+1;for(u(e)?e.listeners+=i:e=v(t.elm,i),u(o=t.componentInstance)&&u(o=o._vnode)&&u(o.data)&&H(o,e),o=0;o<n.remove.length;++o)n.remove[o](t,e);u(o=t.data.hook)&&u(o=o.remove)?o(t,e):e()}else h(t.elm)}function C(t,e,o,n,i){var r,s,l,d,v=0,h=0,f=e.length-1,m=e[0],g=e[f],b=o.length-1,y=o[0],w=o[b],x=!i;while(v<=f&&h<=b)a(m)?m=e[++v]:a(g)?g=e[--f]:ar(m,y)?(S(m,y,n,o,h),m=e[++v],y=o[++h]):ar(g,w)?(S(g,w,n,o,b),g=e[--f],w=o[--b]):ar(m,w)?(S(m,w,n,o,b),x&&c.insertBefore(t,m.elm,c.nextSibling(g.elm)),m=e[++v],w=o[--b]):ar(g,y)?(S(g,y,n,o,h),x&&c.insertBefore(t,g.elm,m.elm),g=e[--f],y=o[++h]):(a(r)&&(r=sr(e,v,f)),s=u(y.key)?r[y.key]:L(y,e,v,f),a(s)?p(y,n,t,m.elm,!1,o,h):(l=e[s],ar(l,y)?(S(l,y,n,o,h),e[s]=void 0,x&&c.insertBefore(t,l.elm,m.elm)):p(y,n,t,m.elm,!1,o,h)),y=o[++h]);v>f?(d=a(o[b+1])?null:o[b+1].elm,k(t,d,o,h,b,n)):h>b&&V(e,v,f)}function L(t,e,o,n){for(var i=o;i<n;i++){var r=e[i];if(u(r)&&ar(t,r))return i}}function S(t,e,o,i,r,l){if(t!==e){u(e.elm)&&u(i)&&(e=i[r]=_t(e));var d=e.elm=t.elm;if(s(t.isAsyncPlaceholder))u(e.asyncFactory.resolved)?O(t.elm,e,o):e.isAsyncPlaceholder=!0;else if(s(e.isStatic)&&s(t.isStatic)&&e.key===t.key&&(s(e.isCloned)||s(e.isOnce)))e.componentInstance=t.componentInstance;else{var v,h=e.data;u(h)&&u(v=h.hook)&&u(v=v.prepatch)&&v(t,e);var p=t.children,f=e.children;if(u(h)&&w(e)){for(v=0;v<n.update.length;++v)n.update[v](t,e);u(v=h.hook)&&u(v=v.update)&&v(t,e)}a(e.text)?u(p)&&u(f)?p!==f&&C(d,p,f,o,l):u(f)?(u(t.text)&&c.setTextContent(d,""),k(d,null,f,0,f.length-1,o)):u(p)?V(p,0,p.length-1):u(t.text)&&c.setTextContent(d,""):t.text!==e.text&&c.setTextContent(d,e.text),u(h)&&u(v=h.hook)&&u(v=v.postpatch)&&v(t,e)}}}function B(t,e,o){if(s(o)&&u(t.parent))t.parent.data.pendingInsert=e;else for(var n=0;n<e.length;++n)e[n].data.hook.insert(e[n])}var E=x("attrs,class,staticClass,staticStyle,key");function O(t,e,o,n){var i,r=e.tag,a=e.data,c=e.children;if(n=n||a&&a.pre,e.elm=t,s(e.isComment)&&u(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(u(a)&&(u(i=a.hook)&&u(i=i.init)&&i(e,!0),u(i=e.componentInstance)))return m(e,o),!0;if(u(r)){if(u(c))if(t.hasChildNodes())if(u(i=a)&&u(i=i.domProps)&&u(i=i.innerHTML)){if(i!==t.innerHTML)return!1}else{for(var l=!0,d=t.firstChild,v=0;v<c.length;v++){if(!d||!O(d,c[v],o,n)){l=!1;break}d=d.nextSibling}if(!l||d)return!1}else y(e,c,o);if(u(a)){var h=!1;for(var p in a)if(!E(p)){h=!0,_(e,o);break}!h&&a["class"]&&mo(a["class"])}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,o,i){if(!a(e)){var r=!1,l=[];if(a(t))r=!0,p(e,l);else{var v=u(t.nodeType);if(!v&&ar(t,e))S(t,e,l,null,null,i);else{if(v){if(1===t.nodeType&&t.hasAttribute(K)&&(t.removeAttribute(K),o=!0),s(o)&&O(t,e,l))return B(e,l,!0),t;t=d(t)}var h=t.elm,f=c.parentNode(h);if(p(e,l,h._leaveCb?null:f,c.nextSibling(h)),u(e.parent)){var m=e.parent,g=w(e);while(m){for(var b=0;b<n.destroy.length;++b)n.destroy[b](m);if(m.elm=e.elm,g){for(var y=0;y<n.create.length;++y)n.create[y](ir,m);var x=m.data.hook.insert;if(x.merged)for(var _=x.fns.slice(1),z=0;z<_.length;z++)_[z]()}else or(m);m=m.parent}}u(f)?V([t],0,0):u(t.tag)&&M(t)}}return B(e,l,r),e.elm}u(t)&&M(t)}}var lr={create:dr,update:dr,destroy:function(t){dr(t,ir)}};function dr(t,e){(t.data.directives||e.data.directives)&&vr(t,e)}function vr(t,e){var o,n,i,r=t===ir,a=e===ir,u=pr(t.data.directives,t.context),s=pr(e.data.directives,e.context),c=[],l=[];for(o in s)n=u[o],i=s[o],n?(i.oldValue=n.value,i.oldArg=n.arg,mr(i,"update",e,t),i.def&&i.def.componentUpdated&&l.push(i)):(mr(i,"bind",e,t),i.def&&i.def.inserted&&c.push(i));if(c.length){var d=function(){for(var o=0;o<c.length;o++)mr(c[o],"inserted",e,t)};r?ie(e,"insert",d):d()}if(l.length&&ie(e,"postpatch",function(){for(var o=0;o<l.length;o++)mr(l[o],"componentUpdated",e,t)}),!r)for(o in u)s[o]||mr(u[o],"unbind",t,t,a)}var hr=Object.create(null);function pr(t,e){var o,n,i=Object.create(null);if(!t)return i;for(o=0;o<t.length;o++){if(n=t[o],n.modifiers||(n.modifiers=hr),i[fr(n)]=n,e._setupState&&e._setupState.__sfc){var r=n.def||Hn(e,"_setupState","v-"+n.name);n.def="function"===typeof r?{bind:r,update:r}:r}n.def=n.def||Hn(e.$options,"directives",n.name,!0)}return i}function fr(t){return t.rawName||"".concat(t.name,".").concat(Object.keys(t.modifiers||{}).join("."))}function mr(t,e,o,n,i){var r=t.def&&t.def[e];if(r)try{r(o.elm,t,o,n,i)}catch(n){Xe(n,o.context,"directive ".concat(t.name," ").concat(e," hook"))}}var gr=[er,lr];function br(t,e){var o=e.componentOptions;if((!u(o)||!1!==o.Ctor.options.inheritAttrs)&&(!a(t.data.attrs)||!a(e.data.attrs))){var n,i,r,c=e.elm,l=t.data.attrs||{},d=e.data.attrs||{};for(n in(u(d.__ob__)||s(d._v_attr_proxy))&&(d=e.data.attrs=I({},d)),d)i=d[n],r=l[n],r!==i&&yr(c,n,i,e.data.pre);for(n in(nt||rt)&&d.value!==l.value&&yr(c,"value",d.value),l)a(d[n])&&(zi(n)?c.removeAttributeNS(_i,ki(n)):bi(n)||c.removeAttribute(n))}}function yr(t,e,o,n){n||t.tagName.indexOf("-")>-1?wr(t,e,o):xi(e)?Mi(o)?t.removeAttribute(e):(o="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,o)):bi(e)?t.setAttribute(e,wi(e,o)):zi(e)?Mi(o)?t.removeAttributeNS(_i,ki(e)):t.setAttributeNS(_i,e,o):wr(t,e,o)}function wr(t,e,o){if(Mi(o))t.removeAttribute(e);else{if(nt&&!it&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==o&&!t.__ieph){var n=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",n)};t.addEventListener("input",n),t.__ieph=!0}t.setAttribute(e,o)}}var xr={create:br,update:br};function _r(t,e){var o=e.elm,n=e.data,i=t.data;if(!(a(n.staticClass)&&a(n.class)&&(a(i)||a(i.staticClass)&&a(i.class)))){var r=Vi(e),s=o._transitionClasses;u(s)&&(r=Li(r,Si(s))),r!==o._prevClass&&(o.setAttribute("class",r),o._prevClass=r)}}var zr,kr={create:_r,update:_r},Mr="__r",Vr="__c";function Hr(t){if(u(t[Mr])){var e=nt?"change":"input";t[e]=[].concat(t[Mr],t[e]||[]),delete t[Mr]}u(t[Vr])&&(t.change=[].concat(t[Vr],t.change||[]),delete t[Vr])}function Cr(t,e,o){var n=zr;return function i(){var r=e.apply(null,arguments);null!==r&&Br(t,i,o,n)}}var Lr=oo&&!(st&&Number(st[1])<=53);function Sr(t,e,o,n){if(Lr){var i=qo,r=e;e=r._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=i||t.timeStamp<=0||t.target.ownerDocument!==document)return r.apply(this,arguments)}}zr.addEventListener(t,e,lt?{capture:o,passive:n}:o)}function Br(t,e,o,n){(n||zr).removeEventListener(t,e._wrapper||e,o)}function Er(t,e){if(!a(t.data.on)||!a(e.data.on)){var o=e.data.on||{},n=t.data.on||{};zr=e.elm||t.elm,Hr(o),ne(o,n,Sr,Br,Cr,e.context),zr=void 0}}var Or,Ar={create:Er,update:Er,destroy:function(t){return Er(t,ir)}};function Tr(t,e){if(!a(t.data.domProps)||!a(e.data.domProps)){var o,n,i=e.elm,r=t.data.domProps||{},c=e.data.domProps||{};for(o in(u(c.__ob__)||s(c._v_attr_proxy))&&(c=e.data.domProps=I({},c)),r)o in c||(i[o]="");for(o in c){if(n=c[o],"textContent"===o||"innerHTML"===o){if(e.children&&(e.children.length=0),n===r[o])continue;1===i.childNodes.length&&i.removeChild(i.childNodes[0])}if("value"===o&&"PROGRESS"!==i.tagName){i._value=n;var l=a(n)?"":String(n);Ir(i,l)&&(i.value=l)}else if("innerHTML"===o&&Ti(i.tagName)&&a(i.innerHTML)){Or=Or||document.createElement("div"),Or.innerHTML="<svg>".concat(n,"</svg>");var d=Or.firstChild;while(i.firstChild)i.removeChild(i.firstChild);while(d.firstChild)i.appendChild(d.firstChild)}else if(n!==r[o])try{i[o]=n}catch(t){}}}}function Ir(t,e){return!t.composing&&("OPTION"===t.tagName||jr(t,e)||Nr(t,e))}function jr(t,e){var o=!0;try{o=document.activeElement!==t}catch(t){}return o&&t.value!==e}function Nr(t,e){var o=t.value,n=t._vModifiers;if(u(n)){if(n.number)return w(o)!==w(e);if(n.trim)return o.trim()!==e.trim()}return o!==e}var Rr={create:Tr,update:Tr},Pr=V(function(t){var e={},o=/;(?![^(]*\))/g,n=/:(.+)/;return t.split(o).forEach(function(t){if(t){var o=t.split(n);o.length>1&&(e[o[0].trim()]=o[1].trim())}}),e});function Dr(t){var e=Ur(t.style);return t.staticStyle?I(t.staticStyle,e):e}function Ur(t){return Array.isArray(t)?j(t):"string"===typeof t?Pr(t):t}function Fr(t,e){var o,n={};if(e){var i=t;while(i.componentInstance)i=i.componentInstance._vnode,i&&i.data&&(o=Dr(i.data))&&I(n,o)}(o=Dr(t.data))&&I(n,o);var r=t;while(r=r.parent)r.data&&(o=Dr(r.data))&&I(n,o);return n}var qr,Kr=/^--/,Yr=/\s*!important$/,Gr=function(t,e,o){if(Kr.test(e))t.style.setProperty(e,o);else if(Yr.test(o))t.style.setProperty(B(e),o.replace(Yr,""),"important");else{var n=Qr(e);if(Array.isArray(o))for(var i=0,r=o.length;i<r;i++)t.style[n]=o[i];else t.style[n]=o}},Wr=["Webkit","Moz","ms"],Qr=V(function(t){if(qr=qr||document.createElement("div").style,t=C(t),"filter"!==t&&t in qr)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),o=0;o<Wr.length;o++){var n=Wr[o]+e;if(n in qr)return n}});function Jr(t,e){var o=e.data,n=t.data;if(!(a(o.staticStyle)&&a(o.style)&&a(n.staticStyle)&&a(n.style))){var i,r,s=e.elm,c=n.staticStyle,l=n.normalizedStyle||n.style||{},d=c||l,v=Ur(e.data.style)||{};e.data.normalizedStyle=u(v.__ob__)?I({},v):v;var h=Fr(e,!0);for(r in d)a(h[r])&&Gr(s,r,"");for(r in h)i=h[r],Gr(s,r,null==i?"":i)}}var Xr={create:Jr,update:Jr},Zr=/\s+/;function $r(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Zr).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var o=" ".concat(t.getAttribute("class")||""," ");o.indexOf(" "+e+" ")<0&&t.setAttribute("class",(o+e).trim())}}function ta(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Zr).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{var o=" ".concat(t.getAttribute("class")||""," "),n=" "+e+" ";while(o.indexOf(n)>=0)o=o.replace(n," ");o=o.trim(),o?t.setAttribute("class",o):t.removeAttribute("class")}}function ea(t){if(t){if("object"===typeof t){var e={};return!1!==t.css&&I(e,oa(t.name||"v")),I(e,t),e}return"string"===typeof t?oa(t):void 0}}var oa=V(function(t){return{enterClass:"".concat(t,"-enter"),enterToClass:"".concat(t,"-enter-to"),enterActiveClass:"".concat(t,"-enter-active"),leaveClass:"".concat(t,"-leave"),leaveToClass:"".concat(t,"-leave-to"),leaveActiveClass:"".concat(t,"-leave-active")}}),na=et&&!it,ia="transition",ra="animation",aa="transition",ua="transitionend",sa="animation",ca="animationend";na&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(aa="WebkitTransition",ua="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(sa="WebkitAnimation",ca="webkitAnimationEnd"));var la=et?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function da(t){la(function(){la(t)})}function va(t,e){var o=t._transitionClasses||(t._transitionClasses=[]);o.indexOf(e)<0&&(o.push(e),$r(t,e))}function ha(t,e){t._transitionClasses&&z(t._transitionClasses,e),ta(t,e)}function pa(t,e,o){var n=ma(t,e),i=n.type,r=n.timeout,a=n.propCount;if(!i)return o();var u=i===ia?ua:ca,s=0,c=function(){t.removeEventListener(u,l),o()},l=function(e){e.target===t&&++s>=a&&c()};setTimeout(function(){s<a&&c()},r+1),t.addEventListener(u,l)}var fa=/\b(transform|all)(,|$)/;function ma(t,e){var o,n=window.getComputedStyle(t),i=(n[aa+"Delay"]||"").split(", "),r=(n[aa+"Duration"]||"").split(", "),a=ga(i,r),u=(n[sa+"Delay"]||"").split(", "),s=(n[sa+"Duration"]||"").split(", "),c=ga(u,s),l=0,d=0;e===ia?a>0&&(o=ia,l=a,d=r.length):e===ra?c>0&&(o=ra,l=c,d=s.length):(l=Math.max(a,c),o=l>0?a>c?ia:ra:null,d=o?o===ia?r.length:s.length:0);var v=o===ia&&fa.test(n[aa+"Property"]);return{type:o,timeout:l,propCount:d,hasTransform:v}}function ga(t,e){while(t.length<e.length)t=t.concat(t);return Math.max.apply(null,e.map(function(e,o){return ba(e)+ba(t[o])}))}function ba(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function ya(t,e){var o=t.elm;u(o._leaveCb)&&(o._leaveCb.cancelled=!0,o._leaveCb());var n=ea(t.data.transition);if(!a(n)&&!u(o._enterCb)&&1===o.nodeType){var i=n.css,r=n.type,s=n.enterClass,c=n.enterToClass,l=n.enterActiveClass,h=n.appearClass,p=n.appearToClass,f=n.appearActiveClass,m=n.beforeEnter,g=n.enter,b=n.afterEnter,y=n.enterCancelled,x=n.beforeAppear,_=n.appear,z=n.afterAppear,k=n.appearCancelled,M=n.duration,V=Ho,H=Ho.$vnode;while(H&&H.parent)V=H.context,H=H.parent;var C=!V._isMounted||!t.isRootInsert;if(!C||_||""===_){var L=C&&h?h:s,S=C&&f?f:l,B=C&&p?p:c,E=C&&x||m,O=C&&d(_)?_:g,A=C&&z||b,T=C&&k||y,I=w(v(M)?M.enter:M);0;var j=!1!==i&&!it,N=_a(O),R=o._enterCb=F(function(){j&&(ha(o,B),ha(o,S)),R.cancelled?(j&&ha(o,L),T&&T(o)):A&&A(o),o._enterCb=null});t.data.show||ie(t,"insert",function(){var e=o.parentNode,n=e&&e._pending&&e._pending[t.key];n&&n.tag===t.tag&&n.elm._leaveCb&&n.elm._leaveCb(),O&&O(o,R)}),E&&E(o),j&&(va(o,L),va(o,S),da(function(){ha(o,L),R.cancelled||(va(o,B),N||(xa(I)?setTimeout(R,I):pa(o,r,R)))})),t.data.show&&(e&&e(),O&&O(o,R)),j||N||R()}}}function wa(t,e){var o=t.elm;u(o._enterCb)&&(o._enterCb.cancelled=!0,o._enterCb());var n=ea(t.data.transition);if(a(n)||1!==o.nodeType)return e();if(!u(o._leaveCb)){var i=n.css,r=n.type,s=n.leaveClass,c=n.leaveToClass,l=n.leaveActiveClass,d=n.beforeLeave,h=n.leave,p=n.afterLeave,f=n.leaveCancelled,m=n.delayLeave,g=n.duration,b=!1!==i&&!it,y=_a(h),x=w(v(g)?g.leave:g);0;var _=o._leaveCb=F(function(){o.parentNode&&o.parentNode._pending&&(o.parentNode._pending[t.key]=null),b&&(ha(o,c),ha(o,l)),_.cancelled?(b&&ha(o,s),f&&f(o)):(e(),p&&p(o)),o._leaveCb=null});m?m(z):z()}function z(){_.cancelled||(!t.data.show&&o.parentNode&&((o.parentNode._pending||(o.parentNode._pending={}))[t.key]=t),d&&d(o),b&&(va(o,s),va(o,l),da(function(){ha(o,s),_.cancelled||(va(o,c),y||(xa(x)?setTimeout(_,x):pa(o,r,_)))})),h&&h(o,_),b||y||_())}}function xa(t){return"number"===typeof t&&!isNaN(t)}function _a(t){if(a(t))return!1;var e=t.fns;return u(e)?_a(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function za(t,e){!0!==e.data.show&&ya(e)}var ka=et?{create:za,activate:za,remove:function(t,e){!0!==t.data.show?wa(t,e):e()}}:{},Ma=[xr,kr,Ar,Rr,Xr,ka],Va=Ma.concat(gr),Ha=cr({nodeOps:tr,modules:Va});it&&document.addEventListener("selectionchange",function(){var t=document.activeElement;t&&t.vmodel&&Ta(t,"input")});var Ca={inserted:function(t,e,o,n){"select"===o.tag?(n.elm&&!n.elm._vOptions?ie(o,"postpatch",function(){Ca.componentUpdated(t,e,o)}):La(t,e,o.context),t._vOptions=[].map.call(t.options,Ea)):("textarea"===o.tag||Pi(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",Oa),t.addEventListener("compositionend",Aa),t.addEventListener("change",Aa),it&&(t.vmodel=!0)))},componentUpdated:function(t,e,o){if("select"===o.tag){La(t,e,o.context);var n=t._vOptions,i=t._vOptions=[].map.call(t.options,Ea);if(i.some(function(t,e){return!D(t,n[e])})){var r=t.multiple?e.value.some(function(t){return Ba(t,i)}):e.value!==e.oldValue&&Ba(e.value,i);r&&Ta(t,"change")}}}};function La(t,e,o){Sa(t,e,o),(nt||rt)&&setTimeout(function(){Sa(t,e,o)},0)}function Sa(t,e,o){var n=e.value,i=t.multiple;if(!i||Array.isArray(n)){for(var r,a,u=0,s=t.options.length;u<s;u++)if(a=t.options[u],i)r=U(n,Ea(a))>-1,a.selected!==r&&(a.selected=r);else if(D(Ea(a),n))return void(t.selectedIndex!==u&&(t.selectedIndex=u));i||(t.selectedIndex=-1)}}function Ba(t,e){return e.every(function(e){return!D(e,t)})}function Ea(t){return"_value"in t?t._value:t.value}function Oa(t){t.target.composing=!0}function Aa(t){t.target.composing&&(t.target.composing=!1,Ta(t.target,"input"))}function Ta(t,e){var o=document.createEvent("HTMLEvents");o.initEvent(e,!0,!0),t.dispatchEvent(o)}function Ia(t){return!t.componentInstance||t.data&&t.data.transition?t:Ia(t.componentInstance._vnode)}var ja={bind:function(t,e,o){var n=e.value;o=Ia(o);var i=o.data&&o.data.transition,r=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;n&&i?(o.data.show=!0,ya(o,function(){t.style.display=r})):t.style.display=n?r:"none"},update:function(t,e,o){var n=e.value,i=e.oldValue;if(!n!==!i){o=Ia(o);var r=o.data&&o.data.transition;r?(o.data.show=!0,n?ya(o,function(){t.style.display=t.__vOriginalDisplay}):wa(o,function(){t.style.display="none"})):t.style.display=n?t.__vOriginalDisplay:"none"}},unbind:function(t,e,o,n,i){i||(t.style.display=t.__vOriginalDisplay)}},Na={model:Ca,show:ja},Ra={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Pa(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Pa(qe(e.children)):t}function Da(t){var e={},o=t.$options;for(var n in o.propsData)e[n]=t[n];var i=o._parentListeners;for(var n in i)e[C(n)]=i[n];return e}function Ua(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function Fa(t){while(t=t.parent)if(t.data.transition)return!0}function qa(t,e){return e.key===t.key&&e.tag===t.tag}var Ka=function(t){return t.tag||Ce(t)},Ya=function(t){return"show"===t.name},Ga={name:"transition",props:Ra,abstract:!0,render:function(t){var e=this,o=this.$slots.default;if(o&&(o=o.filter(Ka),o.length)){0;var n=this.mode;0;var i=o[0];if(Fa(this.$vnode))return i;var r=Pa(i);if(!r)return i;if(this._leaving)return Ua(t,i);var a="__transition-".concat(this._uid,"-");r.key=null==r.key?r.isComment?a+"comment":a+r.tag:l(r.key)?0===String(r.key).indexOf(a)?r.key:a+r.key:r.key;var u=(r.data||(r.data={})).transition=Da(this),s=this._vnode,c=Pa(s);if(r.data.directives&&r.data.directives.some(Ya)&&(r.data.show=!0),c&&c.data&&!qa(r,c)&&!Ce(c)&&(!c.componentInstance||!c.componentInstance._vnode.isComment)){var d=c.data.transition=I({},u);if("out-in"===n)return this._leaving=!0,ie(d,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),Ua(t,i);if("in-out"===n){if(Ce(r))return s;var v,h=function(){v()};ie(u,"afterEnter",h),ie(u,"enterCancelled",h),ie(d,"delayLeave",function(t){v=t})}}return i}}},Wa=I({tag:String,moveClass:String},Ra);delete Wa.mode;var Qa={props:Wa,beforeMount:function(){var t=this,e=this._update;this._update=function(o,n){var i=Co(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,i(),e.call(t,o,n)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",o=Object.create(null),n=this.prevChildren=this.children,i=this.$slots.default||[],r=this.children=[],a=Da(this),u=0;u<i.length;u++){var s=i[u];if(s.tag)if(null!=s.key&&0!==String(s.key).indexOf("__vlist"))r.push(s),o[s.key]=s,(s.data||(s.data={})).transition=a;else;}if(n){var c=[],l=[];for(u=0;u<n.length;u++){s=n[u];s.data.transition=a,s.data.pos=s.elm.getBoundingClientRect(),o[s.key]?c.push(s):l.push(s)}this.kept=t(e,null,c),this.removed=l}return t(e,null,r)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(Ja),t.forEach(Xa),t.forEach(Za),this._reflow=document.body.offsetHeight,t.forEach(function(t){if(t.data.moved){var o=t.elm,n=o.style;va(o,e),n.transform=n.WebkitTransform=n.transitionDuration="",o.addEventListener(ua,o._moveCb=function t(n){n&&n.target!==o||n&&!/transform$/.test(n.propertyName)||(o.removeEventListener(ua,t),o._moveCb=null,ha(o,e))})}}))},methods:{hasMove:function(t,e){if(!na)return!1;if(this._hasMove)return this._hasMove;var o=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach(function(t){ta(o,t)}),$r(o,e),o.style.display="none",this.$el.appendChild(o);var n=ma(o);return this.$el.removeChild(o),this._hasMove=n.hasTransform}}};function Ja(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Xa(t){t.data.newPos=t.elm.getBoundingClientRect()}function Za(t){var e=t.data.pos,o=t.data.newPos,n=e.left-o.left,i=e.top-o.top;if(n||i){t.data.moved=!0;var r=t.elm.style;r.transform=r.WebkitTransform="translate(".concat(n,"px,").concat(i,"px)"),r.transitionDuration="0s"}}var $a={Transition:Ga,TransitionGroup:Qa};ti.config.mustUseProp=gi,ti.config.isReservedTag=Ii,ti.config.isReservedAttr=fi,ti.config.getTagNamespace=ji,ti.config.isUnknownElement=Ri,I(ti.options.directives,Na),I(ti.options.components,$a),ti.prototype.__patch__=et?Ha:N,ti.prototype.$mount=function(t,e){return t=t&&et?Di(t):void 0,Bo(this,t,e)},et&&setTimeout(function(){W.devtools&&ht&&ht.emit("init",ti)},0)}).call(this,o(9),o(35).setImmediate)},function(t,e,o){"use strict";(function(t){var n,i,r;o.d(e,"a",function(){return a});try{n=Map}catch(t){n=function(){}}try{i=Set}catch(t){i=function(){}}try{r=Promise}catch(t){r=function(){}}function a(e,o){void 0===o&&(o={});var u=o.circular;void 0===u&&(u=!0);var s=o.depth;void 0===s&&(s=1/0);var c=o.prototype,l=o.includeNonEnumerable,p=[],f=[],m="undefined"!==typeof t&&"function"===typeof t.isBuffer,g="undefined"!==typeof window?h:t.isBuffer;function b(e,o){if(null===e)return null;if(0===o)return e;var s,h;if("object"!==typeof e)return e;if(v(e,n))s=new n;else if(v(e,i))s=new i;else if(v(e,r))s=new r(function(t,n){e.then(function(e){t(b(e,o-1))},function(t){n(b(t,o-1))})});else if(a.__isArray(e))s=[];else if(a.__isRegExp(e))s=new RegExp(e.source,d(e)),e.lastIndex&&(s.lastIndex=e.lastIndex);else if(a.__isDate(e))s=new Date(e.getTime());else{if(m&&g(e))return t.from?s=t.from(e):(s=new t(e.length),e.copy(s)),s;v(e,Error)?s=Object.create(e):"undefined"===typeof c?(h=Object.getPrototypeOf(e),s=Object.create(h)):(s=Object.create(c),h=c)}if(u){var y=p.indexOf(e);if(-1!==y)return f[y];p.push(e),f.push(s)}for(var w in v(e,n)&&e.forEach(function(t,e){var n=b(e,o-1),i=b(t,o-1);s.set(n,i)}),v(e,i)&&e.forEach(function(t){var e=b(t,o-1);s.add(e)}),e){var x=Object.getOwnPropertyDescriptor(e,w);if(x){if(x.hasOwnProperty("get")&&"computedGetter"===x.get.name){Object.defineProperty(s,w,x);continue}s[w]=b(e[w],o-1)}}if(Object.getOwnPropertySymbols)for(var _=Object.getOwnPropertySymbols(e),z=0;z<_.length;z++){var k=_[z],M=Object.getOwnPropertyDescriptor(e,k);(!M||M.enumerable||l)&&(s[k]=b(e[k],o-1),Object.defineProperty(s,k,M))}if(l)for(var V=Object.getOwnPropertyNames(e),H=0;H<V.length;H++){var C=V[H],L=Object.getOwnPropertyDescriptor(e,C);L&&L.enumerable||(s[C]=b(e[C],o-1),Object.defineProperty(s,C,L))}return s}return b(e,s)}function u(t){return Object.prototype.toString.call(t)}function s(t){return"object"===typeof t&&"[object Date]"===u(t)}function c(t){return"object"===typeof t&&"[object Array]"===u(t)}function l(t){return"object"===typeof t&&"[object RegExp]"===u(t)}function d(t){var e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),e}function v(t,e){return null!=e&&t instanceof e}function h(t){return!!(null!=t&&"_isBuffer"in t&&t._isBuffer)}a.__objToStr=u,a.__isDate=s,a.__isArray=c,a.__isRegExp=l,a.__getRegExpFlags=d}).call(this,o(17).Buffer)},function(t,e){function o(t,e){var o=t[1]||"",i=t[3];if(!i)return o;if(e&&"function"===typeof btoa){var r=n(i),a=i.sources.map(function(t){return"/*# sourceURL="+i.sourceRoot+t+" */"});return[o].concat(a).concat([r]).join("\n")}return[o].join("\n")}function n(t){var e=btoa(unescape(encodeURIComponent(JSON.stringify(t)))),o="sourceMappingURL=data:application/json;charset=utf-8;base64,"+e;return"/*# "+o+" */"}t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var n=o(e,t);return e[2]?"@media "+e[2]+"{"+n+"}":n}).join("")},e.i=function(t,o){"string"===typeof t&&(t=[[null,t,""]]);for(var n={},i=0;i<this.length;i++){var r=this[i][0];"number"===typeof r&&(n[r]=!0)}for(i=0;i<t.length;i++){var a=t[i];"number"===typeof a[0]&&n[a[0]]||(o&&!a[2]?a[2]=o:o&&(a[2]="("+a[2]+") and ("+o+")"),e.push(a))}},e}},function(t,e,o){"use strict";function n(t,e){for(var o=[],n={},i=0;i<e.length;i++){var r=e[i],a=r[0],u=r[1],s=r[2],c=r[3],l={id:t+":"+i,css:u,media:s,sourceMap:c};n[a]?n[a].parts.push(l):o.push(n[a]={id:a,parts:[l]})}return o}o.r(e),o.d(e,"default",function(){return p});var i="undefined"!==typeof document;if("undefined"!==typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var r={},a=i&&(document.head||document.getElementsByTagName("head")[0]),u=null,s=0,c=!1,l=function(){},d=null,v="data-vue-ssr-id",h="undefined"!==typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function p(t,e,o,i){c=o,d=i||{};var a=n(t,e);return f(a),function(e){for(var o=[],i=0;i<a.length;i++){var u=a[i],s=r[u.id];s.refs--,o.push(s)}e?(a=n(t,e),f(a)):a=[];for(i=0;i<o.length;i++){s=o[i];if(0===s.refs){for(var c=0;c<s.parts.length;c++)s.parts[c]();delete r[s.id]}}}}function f(t){for(var e=0;e<t.length;e++){var o=t[e],n=r[o.id];if(n){n.refs++;for(var i=0;i<n.parts.length;i++)n.parts[i](o.parts[i]);for(;i<o.parts.length;i++)n.parts.push(g(o.parts[i]));n.parts.length>o.parts.length&&(n.parts.length=o.parts.length)}else{var a=[];for(i=0;i<o.parts.length;i++)a.push(g(o.parts[i]));r[o.id]={id:o.id,refs:1,parts:a}}}}function m(){var t=document.createElement("style");return t.type="text/css",a.appendChild(t),t}function g(t){var e,o,n=document.querySelector("style["+v+'~="'+t.id+'"]');if(n){if(c)return l;n.parentNode.removeChild(n)}if(h){var i=s++;n=u||(u=m()),e=y.bind(null,n,i,!1),o=y.bind(null,n,i,!0)}else n=m(),e=w.bind(null,n),o=function(){n.parentNode.removeChild(n)};return e(t),function(n){if(n){if(n.css===t.css&&n.media===t.media&&n.sourceMap===t.sourceMap)return;e(t=n)}else o()}}var b=function(){var t=[];return function(e,o){return t[e]=o,t.filter(Boolean).join("\n")}}();function y(t,e,o,n){var i=o?"":n.css;if(t.styleSheet)t.styleSheet.cssText=b(e,i);else{var r=document.createTextNode(i),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(r,a[e]):t.appendChild(r)}}function w(t,e){var o=e.css,n=e.media,i=e.sourceMap;if(n&&t.setAttribute("media",n),d.ssrId&&t.setAttribute(v,e.id),i&&(o+="\n/*# sourceURL="+i.sources[0]+" */",o+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */"),t.styleSheet)t.styleSheet.cssText=o;else{while(t.firstChild)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(o))}}},function(t,e){var o;o=function(){return this}();try{o=o||new Function("return this")()}catch(t){"object"===typeof window&&(o=window)}t.exports=o},function(t,e,o){"use strict";o.d(e,"b",function(){return r}),o.d(e,"a",function(){return a}),o.d(e,"c",function(){return u});var n="undefined"!==typeof chrome&&"undefined"!==typeof chrome.storage,i=null;function r(){return new Promise(t=>{n?chrome.storage.local.get(null,e=>{i=e,t()}):(i={},t())})}function a(t,e=null){if(s(),n)return c(i[t],e);try{return c(JSON.parse(localStorage.getItem(t)),e)}catch(t){}}function u(t,e){if(s(),n)i[t]=e,chrome.storage.local.set({[t]:e});else try{localStorage.setItem(t,JSON.stringify(e))}catch(t){}}function s(){if(!i)throw new Error("Storage wasn't initialized with 'init()'")}function c(t,e){return null==t?e:t}},,function(t,e,o){"use strict";o.d(e,"b",function(){return c}),o.d(e,"a",function(){return l});var n=o(0),i=o(4),r=o(5),a=o(6),u=!0;class s{constructor(t,e,o){e.send("vuex:init"),this.hook=t,this.bridge=e,this.isLegacy=o,this.store=t.store,this.earlyModules=t.flushStoreModules(),this.initialState=this.hook.initialState,this.snapshotsVm=null,this.baseStateSnapshot=null,this.stateSnapshotCache=null,this.mutations=null,this.lastState=null,this.registeredModules={},this.allTimeModules={},this.legacyBaseSnapshot=null,this.resetSnapshotsVm(),this.reset(),this.store.registerModule?(this.origRegisterModule=this.store.registerModule.bind(this.store),this.store.registerModule=((t,e,o)=>{this.addModule(t,e,o),this.origRegisterModule(t,e,o),u||console.log("register module",t)}),this.origUnregisterModule=this.store.unregisterModule.bind(this.store),this.store.unregisterModule=(t=>{this.removeModule(t),this.origUnregisterModule(t),u||console.log("unregister module",t)})):this.origRegisterModule=this.origUnregisterModule=(()=>{}),this.earlyModules.forEach(t=>{var e=t.path,o=t.module,n=t.options,i=this.addModule(e,o,n);i.early=!0}),t.off("vuex:mutation"),t.on("vuex:mutation",this.onMutation.bind(this)),e.on("vuex:travel-to-state",this.onTravelToState.bind(this)),e.on("vuex:commit-all",this.onCommitAll.bind(this)),e.on("vuex:revert-all",this.onRevertAll.bind(this)),e.on("vuex:commit",this.onCommit.bind(this)),e.on("vuex:revert",this.onRevert.bind(this)),e.on("vuex:import-state",this.onImportState.bind(this)),e.on("vuex:inspect-state",this.onInspectState.bind(this)),e.on("vuex:edit-state",this.onEditState.bind(this))}onMutation(t){var e=t.type,o=t.payload;i["a"].recordVuex&&this.addMutation(e,o)}onTravelToState(t){var e=t.index,o=t.apply,n=this.replayMutations(e),i=Object(a["a"])(this.lastState);this.bridge.send("vuex:inspected-state",{index:e,snapshot:n}),o&&(this.ensureRegisteredModules(this.mutations[e]),this.hook.emit("vuex:travel-to-state",i))}onCommitAll(){this.reset(this.lastState)}onRevertAll(){this.reset()}onCommit(t){i["a"].vuexNewBackend?this.baseStateSnapshot=this.lastState:this.legacyBaseSnapshot=this.mutations[t].snapshot,this.resetSnapshotCache(),this.mutations=this.mutations.slice(t+1),this.mutations.forEach((t,e)=>{t.index=e})}onRevert(t){this.resetSnapshotCache(),this.ensureRegisteredModules(this.mutations[t-1]),this.mutations=this.mutations.slice(0,t)}onImportState(t){var e=Object(n["s"])(t,!0);this.initialState=e,this.hook.emit("vuex:travel-to-state",e),this.reset(),this.bridge.send("vuex:init"),this.onInspectState(-1)}onInspectState(t){var e=this.replayMutations(t);this.bridge.send("vuex:inspected-state",{index:t,snapshot:e})}onEditState(t){var e,o=t.index,i=t.value,r=t.path;i&&(e=Object(n["s"])(i,!0)),this.store._committing=!0,Object(n["v"])(this.store.state,r,e),this.store._committing=!1,this.bridge.send("vuex:inspected-state",{index:o,snapshot:this.getStoreSnapshot()}),this.cacheStateSnapshot(o,!0)}resetSnapshotsVm(t){this.snapshotsVm=new r["a"]({data:{$$state:t||{}},computed:this.store._vm.$options.computed})}reset(t=null){i["a"].vuexNewBackend?this.baseStateSnapshot=t||Object(a["a"])(this.initialState):this.legacyBaseSnapshot=this.stringifyStore(),this.mutations=[],this.resetSnapshotCache()}resetSnapshotCache(){this.stateSnapshotCache=[{index:-1,state:this.baseStateSnapshot,permanent:!0}]}addModule(t,e,o){var r;"string"===typeof t&&(t=[t]),o&&o.preserveState&&(r=Object(n["k"])(this.store.state,t)),r||(r="function"===typeof e.state?e.state():e.state),r||(r={});var u=Object.assign({},e);if(i["a"].vuexNewBackend){var s=t=>{t.modules&&Object.keys(t.modules).forEach(e=>{var o=t.modules[e],n={};o.state&&(n="function"===typeof o.state?o.state():o.state),o.state=Object(a["a"])(n),s(o)})};s(u)}var c=t.join("/"),l=this.registeredModules[c]=this.allTimeModules[c]={path:t,module:u,options:Object.assign({},o,{preserveState:!1}),state:i["a"].vuexNewBackend?Object(a["a"])(r):null};return i["a"].recordVuex&&this.addMutation(`Register module: ${c}`,{path:t,module:e,options:o},{registerModule:!0}),l}removeModule(t){"string"===typeof t&&(t=[t]),delete this.registeredModules[t.join("/")],i["a"].recordVuex&&this.addMutation(`Unregister module: ${t.join("/")}`,{path:t},{unregisterModule:!0})}ensureRegisteredModules(t){t&&(t.registeredModules.forEach(t=>{if(!Object.keys(this.registeredModules).sort((t,e)=>t.length-e.length).includes(t)){var e=this.allTimeModules[t];if(e){var{path:o,module:n,options:i,state:r}=e;this.origRegisterModule(o,Object.assign({},n,{state:Object(a["a"])(r)}),i),this.registeredModules[o.join("/")]=e}}}),Object.keys(this.registeredModules).sort((t,e)=>e.length-t.length).forEach(e=>{t.registeredModules.includes(e)||(this.origUnregisterModule(e.split("/")),delete this.registeredModules[e])}),this.resetSnapshotsVm(this.store.state))}hasModule(t){return!!this.store._modules.get(t)}stringifyStore(){return Object(n["y"])({state:this.store.state,getters:this.store.getters||{}})}addMutation(t,e,o={}){var r=this.mutations.length;i["a"].vuexNewBackend||(o.snapshot=this.stringifyStore()),this.mutations.push(Object.assign({},{type:t,payload:i["a"].vuexNewBackend?Object(a["a"])(e):null,index:r,handlers:this.store._mutations[t],registeredModules:Object.keys(this.registeredModules)},o)),this.bridge.send("vuex:mutation",{mutation:{type:t,payload:Object(n["y"])(e),index:r},timestamp:Date.now(),options:o})}replayMutations(t){if(!i["a"].vuexNewBackend){var e=-1===t?this.legacyBaseSnapshot:this.mutations[t].snapshot;return this.lastState=Object(n["s"])(e,!0).state,e}var o=this.store._vm,r=Object(a["a"])(this.store.state);this.store._vm=this.snapshotsVm;var s,c,l=[],d=[];-1===t&&(l=Object.keys(this.registeredModules),l.filter(t=>this.hasModule(t.split("/"))).sort((t,e)=>e.length-t.length).forEach(t=>{this.origUnregisterModule(t.split("/")),u||console.log("before replay unregister",t)}));for(var v=0;v<this.stateSnapshotCache.length;v++){var h=this.stateSnapshotCache[v];if(h.index>t)break;s=h}if(s.index===t){c=s.state;var p=Object(a["a"])(s.state);this.resetSnapshotsVm(p),this.store.replaceState(p)}else{this.resetSnapshotsVm(r),this.store.replaceState(r);var f=this.mutations[s.index];l=f?Object.keys(this.registeredModules).filter(t=>!f.registeredModules.includes(t)):Object.keys(this.registeredModules),l.filter(t=>this.hasModule(t.split("/"))).sort((t,e)=>e.length-t.length).forEach(t=>{this.origUnregisterModule(t.split("/")),u||console.log("before replay unregister",t)});var m=Object(a["a"])(s.state);this.resetSnapshotsVm(m),this.store.replaceState(m),i["a"].snapshotLoading=!0;for(var g=s.index+1;g<=t;g++){var b=this.mutations[g];if(b.registerModule){var y=b.payload.path.join("/"),w=this.allTimeModules[y];d.push(y),this.origRegisterModule(w.path,Object.assign({},w.module,{state:Object(a["a"])(w.state)}),w.options),this.resetSnapshotsVm(this.store.state),u||console.log("replay register module",w)}else if(b.unregisterModule&&this.hasModule(b.payload.path)){var x=b.payload.path,_=d.indexOf(x.join("/"));-1!==_&&d.splice(_,1),this.origUnregisterModule(x),this.resetSnapshotsVm(this.store.state),u||console.log("replay unregister module",x)}else if(b.handlers){this.store._committing=!0;try{var z=b.payload;this.isLegacy&&!Array.isArray(z)&&(z=[z]),Array.isArray(b.handlers)?this.isLegacy?b.handlers.forEach(t=>t(this.store.state,...z)):b.handlers.forEach(t=>t(z)):this.isLegacy?b.handlers(this.store.state,...z):b.handlers(z)}catch(t){throw t}this.store._committing=!1}g!==t&&g%i["a"].cacheVuexSnapshotsEvery!==0||this.cacheStateSnapshot(g)}c=Object(a["a"])(this.store.state),u||console.log(`replayed ${t-s.index} mutation(s)`)}this.lastState=c;var k=this.stringifyStore();return d.sort((t,e)=>e.length-t.length).forEach(t=>{this.origUnregisterModule(t.split("/")),u||console.log("after replay unregister",t)}),l.sort((t,e)=>t.length-e.length).forEach(t=>{var{path:e,module:o,options:n,state:i}=this.registeredModules[t];this.origRegisterModule(e,Object.assign({},o,{state:Object(a["a"])(i)}),n),u||console.log("after replay register",t)}),this.store._vm=o,k}cacheStateSnapshot(t,e=!1){if(this.removeCachedStateSnapshot(t),this.stateSnapshotCache.push({index:t,state:Object(a["a"])(this.store.state),permanent:e}),u||console.log("cached snapshot",t),this.stateSnapshotCache.filter(t=>!t.permanent).length>i["a"].cacheVuexSnapshotsLimit){var o=this.stateSnapshotCache.findIndex(t=>!t.permanent);-1!==o&&(u||console.log("clean cached snapshot",this.stateSnapshotCache[o].index),this.stateSnapshotCache.splice(o,1))}}removeCachedStateSnapshot(t){var e=this.stateSnapshotCache.findIndex(e=>e.idex===t);-1!==e&&this.stateSnapshotCache.splice(e,1)}getStoreSnapshot(t=null){var e;t&&(e=this.store._vm,this.store._vm=this.snapshotsVm,this.store.replaceState(Object(a["a"])(t)));var o=Object(n["y"])({state:this.store.state,getters:this.store.getters||{}});return t&&(this.store._vm=e),o}}function c(t,e,o){new s(t,e,o)}function l(t){return{_custom:{type:"store",display:"Store",value:{state:t.state,getters:t.getters},fields:{abstract:!0}}}}},function(t,e,o){"use strict";o.d(e,"b",function(){return i}),o.d(e,"a",function(){return r});var n=o(0);function i(t,e,o){var i=!0,r=()=>{var t=[];return o.forEach(e=>{var o=e._router;o&&o.options&&o.options.routes&&t.push(...o.options.routes)}),Object(n["y"])({routeChanges:t})};e.send("routes:init",r()),e.on("router:toggle-recording",t=>{i=t}),o.forEach(t=>{var o=t._router;if(o&&(o.afterEach((t,o)=>{i&&e.send("router:changed",Object(n["y"])({to:t,from:o,timestamp:Date.now()}))}),e.send("router:init",Object(n["y"])({mode:o.mode,current:{from:o.history.current,to:o.history.current,timestamp:Date.now()}})),o.matcher&&o.matcher.addRoutes)){var r=o.matcher.addRoutes;o.matcher.addRoutes=function(t){t.forEach(t=>{e.send("routes:changed",Object(n["y"])(t))}),r.call(this,t)}}})}function r(t){return{_custom:{type:"router",display:"VueRouter",value:{options:t.options,currentRoute:t.currentRoute},fields:{abstract:!0}}}}},function(t,e,o){"use strict";o.d(e,"d",function(){return F}),o.d(e,"c",function(){return X}),o.d(e,"a",function(){return ht}),o.d(e,"b",function(){return ft});var n,i,r,a=o(0),u=o(4),s=o(2);function c(){!n&&s["b"]&&(n=document.createElement("div"),n.style.backgroundColor="rgba(104, 182, 255, 0.35)",n.style.position="fixed",n.style.zIndex="99999999999999",n.style.pointerEvents="none",n.style.display="flex",n.style.alignItems="center",n.style.justifyContent="center",n.style.borderRadius="3px",i=document.createElement("div"),i.style.backgroundColor="rgba(104, 182, 255, 0.9)",i.style.fontFamily="monospace",i.style.fontSize="11px",i.style.padding="2px 3px",i.style.borderRadius="3px",i.style.color="white",n.appendChild(i))}function l(t){if(t){var e=v(t);if(s["b"]&&(c(),e)){var o=[],n=t.fnContext?Object(a["m"])(t.fnOptions):ft(t);if(n=Object(a["l"])(n,u["a"].componentNameStyle),n){var i=document.createElement("span");i.style.opacity="0.6",i.innerText="<";var r=document.createTextNode(n),l=document.createElement("span");l.style.opacity="0.6",l.innerText=">",o.push(i,r,l)}f(e,o)}}}function d(){n&&n.parentNode&&document.body.removeChild(n)}function v(t){var e=t.$el||t.elm;if(s["b"]&&Object(a["p"])(e))return t._isFragment?h(t):1===e.nodeType?e.getBoundingClientRect():void 0}function h(t){var e,o,n,i,r=t._fragmentStart,a=t._fragmentEnd;return m().mapNodeRange(r,a,function(t){var r;1===t.nodeType||t.getBoundingClientRect?r=t.getBoundingClientRect():3===t.nodeType&&t.data.trim()&&(r=p(t)),r&&((!e||r.top<e)&&(e=r.top),(!o||r.bottom>o)&&(o=r.bottom),(!n||r.left<n)&&(n=r.left),(!i||r.right>i)&&(i=r.right))}),{top:e,left:n,width:i-n,height:o-e}}function p(t){if(s["b"])return r||(r=document.createRange()),r.selectNode(t),r.getBoundingClientRect()}function f(t,e=[]){var o=t.width;void 0===o&&(o=0);var r=t.height;void 0===r&&(r=0);var a=t.top;void 0===a&&(a=0);var u=t.left;void 0===u&&(u=0),s["b"]&&(n.style.width=~~o+"px",n.style.height=~~r+"px",n.style.top=~~a+"px",n.style.left=~~u+"px",i.innerHTML="",e.forEach(t=>i.appendChild(t)),document.body.appendChild(n))}function m(){return s["f"].__VUE_DEVTOOLS_GLOBAL_HOOK__.Vue.util}var g=o(12),b=/^(?:pre-)?hook:/;function y(t,e){var o=!0;function n(t,o,n,i){"string"!==typeof n||b.test(n)||e.send("event:triggered",Object(a["y"])({eventName:n,type:o,payload:i,instanceId:t._uid,instanceName:ft(t._self||t),timestamp:Date.now()}))}function i(e){var i=t.prototype[e];i&&(t.prototype[e]=function(...t){var r=i.apply(this,t);return o&&n(this,e,t[0],t.slice(1)),r})}e.send("events:reset"),e.on("events:toggle-recording",t=>{o=t}),i("$emit"),i("$broadcast"),i("$dispatch")}var w,x,_,z,k=o(13),M=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroyed","destroyed"],V={beforeMount:{after:"mountRender"},mounted:{before:"mountRender"},beforeUpdate:{after:"updateRender"},updated:{before:"updateRender"}},H=0;function C(t,e,o){_=e,t.mixin({beforeCreate(){O(this)}}),o.forEach(O),Object(u["d"])("recordPerf",t=>{t?L():S()})}function L(){H=0,w=performance.now(),x=setInterval(E,500),z={},requestAnimationFrame(B)}function S(){clearInterval(x)}function B(){H++,u["a"].recordPerf&&requestAnimationFrame(B)}function E(){var t={type:"fps",time:Date.now(),start:w,end:w=performance.now()};t.value=Math.round(H/(t.end-t.start)*1e3),H=0,_.send("perf:add-metric",t)}function O(t){if(!t.$options.$_devtoolsPerfHooks){t.$options.$_devtoolsPerfHooks=!0;var e={};M.forEach(o=>{var n=V[o],i=function(){if(u["a"].recordPerf){var i=performance.now();if(n&&n.before){var r=e[n.before];r&&(r.end=i,A(t.$options,n.before,r.start,r.end))}this.$once(`hook:${o}`,()=>{var r=performance.now();A(t.$options,o,i,r),n&&n.after&&(e[n.after]={start:r,end:0})})}},r=t.$options[o];Array.isArray(r)?t.$options[o]=[i,...r]:t.$options[o]="function"===typeof r?[i,r]:[i]})}}function A(t,e,o,n){var i=n-o,r=Object(a["m"])(t),u=z[r]=z[r]||{id:r,hooks:{},totalTime:0},s=u.hooks[e]=u.hooks[e]||{count:0,totalTime:0};s.count++,s.totalTime+=i,u.totalTime+=i,_.send("perf:upsert-metric",{type:"componentRender",data:u})}function T(t){while(!t.__vue__&&t.parentElement)t=t.parentElement;return t.__vue__}class I{constructor(t,e){var o=this;o.bridge=t,o.instanceMap=e,o.bindMethods(),t.on("start-component-selector",o.startSelecting),t.on("stop-component-selector",o.stopSelecting)}startSelecting(){s["b"]&&(window.addEventListener("mouseover",this.elementMouseOver,!0),window.addEventListener("click",this.elementClicked,!0),window.addEventListener("mouseout",this.cancelEvent,!0),window.addEventListener("mouseenter",this.cancelEvent,!0),window.addEventListener("mouseleave",this.cancelEvent,!0),window.addEventListener("mousedown",this.cancelEvent,!0),window.addEventListener("mouseup",this.cancelEvent,!0))}stopSelecting(){s["b"]&&(window.removeEventListener("mouseover",this.elementMouseOver,!0),window.removeEventListener("click",this.elementClicked,!0),window.removeEventListener("mouseout",this.cancelEvent,!0),window.removeEventListener("mouseenter",this.cancelEvent,!0),window.removeEventListener("mouseleave",this.cancelEvent,!0),window.removeEventListener("mousedown",this.cancelEvent,!0),window.removeEventListener("mouseup",this.cancelEvent,!0),d())}elementMouseOver(t){this.cancelEvent(t);var e=t.target;e&&(this.selectedInstance=T(e)),d(),this.selectedInstance&&l(this.selectedInstance)}elementClicked(t){this.cancelEvent(t),this.selectedInstance?this.bridge.send("inspect-instance",this.selectedInstance.__VUE_DEVTOOLS_UID__):this.bridge.send("stop-component-selector"),this.stopSelecting()}cancelEvent(t){t.stopImmediatePropagation(),t.preventDefault()}bindMethods(){this.startSelecting=this.startSelecting.bind(this),this.stopSelecting=this.stopSelecting.bind(this),this.elementMouseOver=this.elementMouseOver.bind(this),this.elementClicked=this.elementClicked.bind(this)}}var j,N,R=o(10),P=s["f"].__VUE_DEVTOOLS_GLOBAL_HOOK__,D=[],U=["default","sync","once"],F=s["f"].__VUE_DEVTOOLS_INSTANCE_MAP__=new Map,q=s["f"].__VUE_DEVTOOLS_FUNCTIONAL_VNODE_MAP__=new Map,K=Array(5),Y="",G=!1,W=0,Q=new Map,J=new Map;function X(t){N=t,P.Vue?(G=P.Vue.version&&"1"===P.Vue.version.split(".")[0],Z(P.Vue)):P.once("init",Z),Tt()}function Z(t){Object(R["b"])().then(()=>{if(Object(u["c"])({bridge:N,Vue:t}),P.currentTab="components",N.on("switch-tab",t=>{P.currentTab=t,"components"===t&&ot()}),P.off("flush"),P.on("flush",()=>{"components"===P.currentTab&&ot()}),N.on("select-instance",t=>{j=t;var e=$(t);e&&(/:functional:/.test(t)||Lt(e),ot(),N.send("instance-selected"))}),N.on("scroll-to-instance",t=>{var e=$(t);e&&(Ct(e),l(e))}),N.on("filter-instances",t=>{Y=t.toLowerCase(),ot()}),N.on("refresh",tt),N.on("enter-instance",t=>{var e=$(t);e&&l(e)}),N.on("leave-instance",d),new I(N,F),N.on("get-context-menu-target",()=>{var t=s["f"].__VUE_DEVTOOLS_CONTEXT_MENU_TARGET__;if(s["f"].__VUE_DEVTOOLS_CONTEXT_MENU_TARGET__=null,s["f"].__VUE_DEVTOOLS_CONTEXT_MENU_HAS_TARGET__=!1,t){var e=t.__VUE_DEVTOOLS_UID__;if(e)return N.send("inspect-instance",e)}Et("No Vue component was found","warn")}),N.on("set-instance-data",t=>{At(t),ot()}),P.store?Object(g["b"])(P,N,void 0===P.store.commit):P.once("vuex:init",t=>{Object(g["b"])(P,N,void 0===t.commit)}),P.once("router:init",()=>{Object(k["b"])(P.Vue,N,D)}),y(t,N),s["f"].__VUE_DEVTOOLS_INSPECT__=Ot,s["f"].hasOwnProperty("VUE_DEVTOOLS_CONFIG")){var e=s["f"].VUE_DEVTOOLS_CONFIG;e.hasOwnProperty("openInEditorHost")&&(u["a"].openInEditorHost=e.openInEditorHost)}N.log("backend ready."),N.send("ready",t.version),N.on("log-detected-vue",()=>{console.log(`%c vue-devtools %c Detected Vue v${t.version} %c`,"background:#35495e ; padding: 1px; border-radius: 3px 0 0 3px; color: #fff","background:#41b883 ; padding: 1px; border-radius: 0 3px 3px 0; color: #fff","background:transparent")}),setTimeout(()=>{tt(),C(t,N,F)},0)})}function $(t){if(/:functional:/.test(t)){var[e]=t.split(":functional:"),o=q.get(e);return o&&o[t]}return F.get(t)}function tt(){D.length=0;var t=!1,e=null;function o(o){if(o){-1===D.indexOf(o.$root)&&(o=o.$root),o._isFragment&&(t=!0,e=o);var n=o.constructor;while(n.super)n=n.super;return n.config&&n.config.devtools&&("undefined"===typeof o.__VUE_DEVTOOLS_ROOT_UID__&&(o.__VUE_DEVTOOLS_ROOT_UID__=++W),D.push(o)),!0}}s["b"]?et(document,function(n){if(t)return n===e._fragmentEnd&&(t=!1,e=null),!0;var i=n.__vue__;return o(i)}):Array.isArray(s["f"].__VUE_ROOT_INSTANCES__)&&s["f"].__VUE_ROOT_INSTANCES__.map(o),P.emit("router:init"),ot()}function et(t,e){if(t.childNodes)for(var o=0,n=t.childNodes.length;o<n;o++){var i=t.childNodes[o],r=e(i);r||et(i,e)}t.shadowRoot&&et(t.shadowRoot,e)}function ot(){Q.clear(),J.clear();var t=Object(a["y"])({inspectedInstance:dt(j),instances:nt(D)});N.send("flush",t)}function nt(t){return t=t.filter(t=>!t._isBeingDestroyed),Y?Array.prototype.concat.apply([],t.map(it)):t.map(st)}function it(t){return rt(t)?st(t):nt(t.$children).concat(t._vnode&&t._vnode.children?at(t._vnode.children.filter(t=>!t.componentInstance).map(ut)).filter(t=>rt(t)):[])}function rt(t){var e=Object(a["g"])(t.name||ft(t)).toLowerCase();return e.indexOf(Y)>-1}function at(t){return t.reduce((t,e)=>{return e instanceof Array?t.push(...at(e)):e&&t.push(e),t},[])}function ut(t){if(t.fnContext&&!t.componentInstance)return st(t);if(t.componentInstance){if(!t.componentInstance._isBeingDestroyed)return st(t.componentInstance)}else if(t.children)return at(t.children.map(ut))}function st(t,e,o){if(t.$options&&t.$options.abstract&&t._vnode&&t._vnode.componentInstance&&(t=t._vnode.componentInstance),t.fnContext&&!t.componentInstance){var n=t.fnContext.__VUE_DEVTOOLS_UID__,i=Q.get(n);null==i?i=0:i++,Q.set(n,i);var r=n+":functional:"+i;return lt(r,t),{id:r,functional:!0,name:ft(t),renderKey:Bt(t.key),children:(t.children?t.children.map(t=>t.fnContext?ut(t):t.componentInstance?st(t.componentInstance):void 0):t.componentInstance?[st(t.componentInstance)]:[]).filter(Boolean),inactive:!1,isFragment:!1}}if(t.__VUE_DEVTOOLS_UID__=St(t),!J.has(t.__VUE_DEVTOOLS_UID__)){J.set(t.__VUE_DEVTOOLS_UID__,void 0),ct(t);var a=ft(t),u={uid:t._uid,id:t.__VUE_DEVTOOLS_UID__,name:a,renderKey:Bt(t.$vnode?t.$vnode["key"]:null),inactive:!!t._inactive,isFragment:!!t._isFragment,children:t.$children.filter(t=>!t._isBeingDestroyed).map(st).filter(Boolean)};if(t._vnode&&t._vnode.children&&(u.children=u.children.concat(at(t._vnode.children.map(ut)).filter(Boolean))),o&&!(o.length>1)||t._inactive)u.top=1/0;else{var s=v(t);u.top=s?s.top:1/0}var c=K.indexOf(t.__VUE_DEVTOOLS_UID__);u.consoleId=c>-1?"$vm"+c:null;var l=t.$vnode&&t.$vnode.data.routerView;if((t._routerView||l)&&(u.isRouterView=!0,!t._inactive&&t.$route)){var d=t.$route.matched,h=l?t.$vnode.data.routerViewDepth:t._routerView.depth;u.matchedRouteSegment=d&&d[h]&&(l?d[h].path:d[h].handler.path)}return u}}function ct(t){F.has(t.__VUE_DEVTOOLS_UID__)||(F.set(t.__VUE_DEVTOOLS_UID__,t),t.$on("hook:beforeDestroy",function(){F.delete(t.__VUE_DEVTOOLS_UID__)}))}function lt(t,e){var o=e.fnContext.__VUE_DEVTOOLS_UID__;q.has(o)||(q.set(o,{}),e.fnContext.$on("hook:beforeDestroy",function(){q.delete(o)})),q.get(o)[t]=e}function dt(t){var e=F.get(t);if(e){var o,n={id:t,name:ft(e),state:vt(e)};return(o=e.$vnode)&&(o=o.componentOptions)&&(o=o.Ctor)&&(o=o.options)&&(n.file=o.__file||null),n}var i=$(t);if(!i)return{};var r={id:t,name:Object(a["m"])(i.fnOptions),file:i.fnOptions.__file||null,state:mt(Object.assign({},{$options:i.fnOptions},i.devtoolsMeta&&i.devtoolsMeta.renderContext.props)),functional:!0};return r}function vt(t){return mt(t).concat(wt(t),xt(t),_t(t),zt(t),kt(t),Mt(t),Vt(t),Ht(t),gt(t))}function ht(t){var e=vt(t);return{_custom:{type:"component",id:t.__VUE_DEVTOOLS_UID__,display:ft(t),tooltip:"Component instance",value:pt(e),fields:{abstract:!0}}}}function pt(t){if(t.length)return t.reduce((t,e)=>{var o=e.type||"data",n=t[o]=t[o]||{};return n[e.key]=e.value,t},{})}function ft(t){var e=Object(a["m"])(t.$options||t.fnOptions||{});return e||(t.$root===t?"Root":"Anonymous Component")}function mt(t){var e;if(G&&(e=t._props))return Object.keys(e).map(o=>{var n=e[o],i=n.options;return{type:"props",key:n.path,value:t[n.path],meta:i?{type:i.type?yt(i.type):"any",required:!!i.required,mode:U[n.mode]}:{}}});if(e=t.$options.props){var o=[];for(var n in e){var i=e[n];n=Object(a["f"])(n),o.push({type:"props",key:n,value:t[n],meta:i?{type:i.type?yt(i.type):"any",required:!!i.required}:{type:"invalid"},editable:u["a"].editableProps})}return o}return[]}function gt(t){return Object.entries(t.$attrs||{}).map(t=>{var e=t[0],o=t[1];return{type:"$attrs",key:e,value:o}})}var bt=/^(?:function|class) (\w+)/;function yt(t){var e=t.toString().match(bt);return"function"===typeof t&&e&&e[1]||"any"}function wt(t){var e=G?t._props:t.$options.props,o=t.$options.vuex&&t.$options.vuex.getters;return Object.keys(t._data).filter(t=>!(e&&t in e)&&!(o&&t in o)).map(e=>({key:e,value:t._data[e],editable:!0}))}function xt(t){return Object.keys(t.$refs).filter(e=>t.$refs[e]).map(e=>Object(a["n"])(t,e,t.$refs[e]))}function _t(t){var e=[],o=t.$options.computed||{};for(var n in o){var i=o[n],r="function"===typeof i&&i.vuex?"vuex bindings":"computed",a=null;try{a={type:r,key:n,value:t[n]}}catch(t){a={type:r,key:n,value:"(error during evaluation)"}}e.push(a)}return e}function zt(t){var e=t.$options.inject;return e?Object.keys(e).map(e=>{return{key:e,type:"injected",value:t[e]}}):[]}function kt(t){try{var e=t.$route;if(e){var{path:o,query:n,params:i}=e,r={path:o,query:n,params:i};return e.fullPath&&(r.fullPath=e.fullPath),e.hash&&(r.hash=e.hash),e.name&&(r.name=e.name),e.meta&&(r.meta=e.meta),[{key:"$route",value:{_custom:{type:"router",abstract:!0,value:r}}}]}}catch(t){}return[]}function Mt(t){var e=t.$options.vuex&&t.$options.vuex.getters;return e?Object.keys(e).map(e=>{return{type:"vuex getters",key:e,value:t[e]}}):[]}function Vt(t){var e=t.$firebaseRefs;return e?Object.keys(e).map(e=>{return{type:"firebase bindings",key:e,value:t[e]}}):[]}function Ht(t){var e=t.$observables;return e?Object.keys(e).map(e=>{return{type:"observables",key:e,value:t[e]}}):[]}function Ct(t){var e=v(t);e&&window.scrollBy(0,e.top+(e.height-window.innerHeight)/2)}function Lt(t){if(t&&s["b"]){var e=t.__VUE_DEVTOOLS_UID__,o=K.indexOf(e);o>-1?K.splice(o,1):K.pop(),K.unshift(e);for(var n=0;n<5;n++)window["$vm"+n]=F.get(K[n]);window.$vm=t}}function St(t){var e=t.$root.__VUE_DEVTOOLS_ROOT_UID__;return`${e}:${t._uid}`}function Bt(t){if(null!=t){var e=typeof t;return"number"===e?t:"string"===e?`'${t}'`:Array.isArray(t)?"Array":"Object"}}function Et(t,e="normal"){var o=s["f"].__VUE_DEVTOOLS_TOAST__;o&&o(t,e)}function Ot(t){var e=t.__VUE_DEVTOOLS_UID__;e&&N.send("inspect-instance",e)}function At(t){var e=t.id,o=t.path,n=t.value,i=t.newKey,r=t.remove,u=F.get(e);if(u)try{var s;n&&(s=Object(a["s"])(n,!0));var c=G?{$set:P.Vue.set,$delete:P.Vue.delete}:u,l=Object(a["o"])(u._props,o,i)?u._props:u._data;Object(a["v"])(l,o,s,(t,e,o)=>{(r||i)&&c.$delete(t,e),!r&&c.$set(t,i||e,o)})}catch(t){console.error(t)}}function Tt(){s["b"]&&document.addEventListener("contextmenu",t=>{var e=t.target;if(e){var o=T(e);if(o)return window.__VUE_DEVTOOLS_CONTEXT_MENU_HAS_TARGET__=!0,void(window.__VUE_DEVTOOLS_CONTEXT_MENU_TARGET__=o)}window.__VUE_DEVTOOLS_CONTEXT_MENU_HAS_TARGET__=null,window.__VUE_DEVTOOLS_CONTEXT_MENU_TARGET__=null})}},function(t,e,o){"use strict";o.d(e,"b",function(){return a}),o.d(e,"a",function(){return u});var n=524288;function i(t,e,o,n){var r,a,u,s,c,l=n.get(t);if(null!=l)return l;var d=o.length,v=Object.prototype.toString.call(t);if("[object Object]"===v){r={},n.set(t,d),o.push(r);var h=Object.keys(t);for(s=0,c=h.length;s<c;s++)a=h[s],u=t[a],e&&(u=e.call(t,a,u)),r[a]=i(u,e,o,n)}else if("[object Array]"===v)for(r=[],n.set(t,d),o.push(r),s=0,c=t.length;s<c;s++)u=t[s],e&&(u=e.call(t,s,u)),r[s]=i(u,e,o,n);else o.push(t);return d}function r(t,e){var o,n,i,r,a,u,s=t.length;while(s--)if(i=t[s],u=Object.prototype.toString.call(i),"[object Object]"===u){var c=Object.keys(i);for(o=0,n=c.length;o<n;o++)r=c[o],a=t[i[r]],e&&(a=e.call(i,r,a)),i[r]=a}else if("[object Array]"===u)for(o=0,n=i.length;o<n;o++)a=t[i[o]],e&&(a=e.call(i,o,a)),i[o]=a}function a(t,e,o){var i;try{i=1===arguments.length?JSON.stringify(t):JSON.stringify(t,e,o)}catch(n){i=s(t,e,o)}if(i.length>n){for(var r=Math.ceil(i.length/n),a=[],u=0;u<r;u++)a.push(i.slice(u*n,(u+1)*n));return a}return i}function u(t,e){Array.isArray(t)&&(t=t.join(""));var o=/^\s/.test(t);if(o){var n=JSON.parse(t);return r(n,e),n[0]}return 1===arguments.length?JSON.parse(t):JSON.parse(t,e)}function s(t,e,o){var n=[];return i(t,e,n,new Map),o?" "+JSON.stringify(n,null,o):" "+JSON.stringify(n)}},,function(t,e,o){"use strict";(function(t){
  14. /*!
  15. * The buffer module from node.js, for the browser.
  16. *
  17. * @author Feross Aboukhadijeh <http://feross.org>
  18. * @license MIT
  19. */
  20. var n=o(18),i=o(19),r=o(20);function a(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"===typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(t){return!1}}function u(){return c.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(t,e){if(u()<e)throw new RangeError("Invalid typed array length");return c.TYPED_ARRAY_SUPPORT?(t=new Uint8Array(e),t.__proto__=c.prototype):(null===t&&(t=new c(e)),t.length=e),t}function c(t,e,o){if(!c.TYPED_ARRAY_SUPPORT&&!(this instanceof c))return new c(t,e,o);if("number"===typeof t){if("string"===typeof e)throw new Error("If encoding is specified then the first argument must be a string");return h(this,t)}return l(this,t,e,o)}function l(t,e,o,n){if("number"===typeof e)throw new TypeError('"value" argument must not be a number');return"undefined"!==typeof ArrayBuffer&&e instanceof ArrayBuffer?m(t,e,o,n):"string"===typeof e?p(t,e,o):g(t,e)}function d(t){if("number"!==typeof t)throw new TypeError('"size" argument must be a number');if(t<0)throw new RangeError('"size" argument must not be negative')}function v(t,e,o,n){return d(e),e<=0?s(t,e):void 0!==o?"string"===typeof n?s(t,e).fill(o,n):s(t,e).fill(o):s(t,e)}function h(t,e){if(d(e),t=s(t,e<0?0:0|b(e)),!c.TYPED_ARRAY_SUPPORT)for(var o=0;o<e;++o)t[o]=0;return t}function p(t,e,o){if("string"===typeof o&&""!==o||(o="utf8"),!c.isEncoding(o))throw new TypeError('"encoding" must be a valid string encoding');var n=0|w(e,o);t=s(t,n);var i=t.write(e,o);return i!==n&&(t=t.slice(0,i)),t}function f(t,e){var o=e.length<0?0:0|b(e.length);t=s(t,o);for(var n=0;n<o;n+=1)t[n]=255&e[n];return t}function m(t,e,o,n){if(e.byteLength,o<0||e.byteLength<o)throw new RangeError("'offset' is out of bounds");if(e.byteLength<o+(n||0))throw new RangeError("'length' is out of bounds");return e=void 0===o&&void 0===n?new Uint8Array(e):void 0===n?new Uint8Array(e,o):new Uint8Array(e,o,n),c.TYPED_ARRAY_SUPPORT?(t=e,t.__proto__=c.prototype):t=f(t,e),t}function g(t,e){if(c.isBuffer(e)){var o=0|b(e.length);return t=s(t,o),0===t.length?t:(e.copy(t,0,0,o),t)}if(e){if("undefined"!==typeof ArrayBuffer&&e.buffer instanceof ArrayBuffer||"length"in e)return"number"!==typeof e.length||et(e.length)?s(t,0):f(t,e);if("Buffer"===e.type&&r(e.data))return f(t,e.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}function b(t){if(t>=u())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+u().toString(16)+" bytes");return 0|t}function y(t){return+t!=t&&(t=0),c.alloc(+t)}function w(t,e){if(c.isBuffer(t))return t.length;if("undefined"!==typeof ArrayBuffer&&"function"===typeof ArrayBuffer.isView&&(ArrayBuffer.isView(t)||t instanceof ArrayBuffer))return t.byteLength;"string"!==typeof t&&(t=""+t);var o=t.length;if(0===o)return 0;for(var n=!1;;)switch(e){case"ascii":case"latin1":case"binary":return o;case"utf8":case"utf-8":case void 0:return J(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*o;case"hex":return o>>>1;case"base64":return $(t).length;default:if(n)return J(t).length;e=(""+e).toLowerCase(),n=!0}}function x(t,e,o){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return"";if((void 0===o||o>this.length)&&(o=this.length),o<=0)return"";if(o>>>=0,e>>>=0,o<=e)return"";t||(t="utf8");while(1)switch(t){case"hex":return j(this,e,o);case"utf8":case"utf-8":return E(this,e,o);case"ascii":return T(this,e,o);case"latin1":case"binary":return I(this,e,o);case"base64":return B(this,e,o);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return N(this,e,o);default:if(n)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),n=!0}}function _(t,e,o){var n=t[e];t[e]=t[o],t[o]=n}function z(t,e,o,n,i){if(0===t.length)return-1;if("string"===typeof o?(n=o,o=0):o>2147483647?o=2147483647:o<-2147483648&&(o=-2147483648),o=+o,isNaN(o)&&(o=i?0:t.length-1),o<0&&(o=t.length+o),o>=t.length){if(i)return-1;o=t.length-1}else if(o<0){if(!i)return-1;o=0}if("string"===typeof e&&(e=c.from(e,n)),c.isBuffer(e))return 0===e.length?-1:k(t,e,o,n,i);if("number"===typeof e)return e&=255,c.TYPED_ARRAY_SUPPORT&&"function"===typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,o):Uint8Array.prototype.lastIndexOf.call(t,e,o):k(t,[e],o,n,i);throw new TypeError("val must be string, number or Buffer")}function k(t,e,o,n,i){var r,a=1,u=t.length,s=e.length;if(void 0!==n&&(n=String(n).toLowerCase(),"ucs2"===n||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(t.length<2||e.length<2)return-1;a=2,u/=2,s/=2,o/=2}function c(t,e){return 1===a?t[e]:t.readUInt16BE(e*a)}if(i){var l=-1;for(r=o;r<u;r++)if(c(t,r)===c(e,-1===l?0:r-l)){if(-1===l&&(l=r),r-l+1===s)return l*a}else-1!==l&&(r-=r-l),l=-1}else for(o+s>u&&(o=u-s),r=o;r>=0;r--){for(var d=!0,v=0;v<s;v++)if(c(t,r+v)!==c(e,v)){d=!1;break}if(d)return r}return-1}function M(t,e,o,n){o=Number(o)||0;var i=t.length-o;n?(n=Number(n),n>i&&(n=i)):n=i;var r=e.length;if(r%2!==0)throw new TypeError("Invalid hex string");n>r/2&&(n=r/2);for(var a=0;a<n;++a){var u=parseInt(e.substr(2*a,2),16);if(isNaN(u))return a;t[o+a]=u}return a}function V(t,e,o,n){return tt(J(e,t.length-o),t,o,n)}function H(t,e,o,n){return tt(X(e),t,o,n)}function C(t,e,o,n){return H(t,e,o,n)}function L(t,e,o,n){return tt($(e),t,o,n)}function S(t,e,o,n){return tt(Z(e,t.length-o),t,o,n)}function B(t,e,o){return 0===e&&o===t.length?n.fromByteArray(t):n.fromByteArray(t.slice(e,o))}function E(t,e,o){o=Math.min(t.length,o);var n=[],i=e;while(i<o){var r,a,u,s,c=t[i],l=null,d=c>239?4:c>223?3:c>191?2:1;if(i+d<=o)switch(d){case 1:c<128&&(l=c);break;case 2:r=t[i+1],128===(192&r)&&(s=(31&c)<<6|63&r,s>127&&(l=s));break;case 3:r=t[i+1],a=t[i+2],128===(192&r)&&128===(192&a)&&(s=(15&c)<<12|(63&r)<<6|63&a,s>2047&&(s<55296||s>57343)&&(l=s));break;case 4:r=t[i+1],a=t[i+2],u=t[i+3],128===(192&r)&&128===(192&a)&&128===(192&u)&&(s=(15&c)<<18|(63&r)<<12|(63&a)<<6|63&u,s>65535&&s<1114112&&(l=s))}null===l?(l=65533,d=1):l>65535&&(l-=65536,n.push(l>>>10&1023|55296),l=56320|1023&l),n.push(l),i+=d}return A(n)}e.Buffer=c,e.SlowBuffer=y,e.INSPECT_MAX_BYTES=50,c.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:a(),e.kMaxLength=u(),c.poolSize=8192,c._augment=function(t){return t.__proto__=c.prototype,t},c.from=function(t,e,o){return l(null,t,e,o)},c.TYPED_ARRAY_SUPPORT&&(c.prototype.__proto__=Uint8Array.prototype,c.__proto__=Uint8Array,"undefined"!==typeof Symbol&&Symbol.species&&c[Symbol.species]===c&&Object.defineProperty(c,Symbol.species,{value:null,configurable:!0})),c.alloc=function(t,e,o){return v(null,t,e,o)},c.allocUnsafe=function(t){return h(null,t)},c.allocUnsafeSlow=function(t){return h(null,t)},c.isBuffer=function(t){return!(null==t||!t._isBuffer)},c.compare=function(t,e){if(!c.isBuffer(t)||!c.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var o=t.length,n=e.length,i=0,r=Math.min(o,n);i<r;++i)if(t[i]!==e[i]){o=t[i],n=e[i];break}return o<n?-1:n<o?1:0},c.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},c.concat=function(t,e){if(!r(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return c.alloc(0);var o;if(void 0===e)for(e=0,o=0;o<t.length;++o)e+=t[o].length;var n=c.allocUnsafe(e),i=0;for(o=0;o<t.length;++o){var a=t[o];if(!c.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(n,i),i+=a.length}return n},c.byteLength=w,c.prototype._isBuffer=!0,c.prototype.swap16=function(){var t=this.length;if(t%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)_(this,e,e+1);return this},c.prototype.swap32=function(){var t=this.length;if(t%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)_(this,e,e+3),_(this,e+1,e+2);return this},c.prototype.swap64=function(){var t=this.length;if(t%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)_(this,e,e+7),_(this,e+1,e+6),_(this,e+2,e+5),_(this,e+3,e+4);return this},c.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?E(this,0,t):x.apply(this,arguments)},c.prototype.equals=function(t){if(!c.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===c.compare(this,t)},c.prototype.inspect=function(){var t="",o=e.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString("hex",0,o).match(/.{2}/g).join(" "),this.length>o&&(t+=" ... ")),"<Buffer "+t+">"},c.prototype.compare=function(t,e,o,n,i){if(!c.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===o&&(o=t?t.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),e<0||o>t.length||n<0||i>this.length)throw new RangeError("out of range index");if(n>=i&&e>=o)return 0;if(n>=i)return-1;if(e>=o)return 1;if(e>>>=0,o>>>=0,n>>>=0,i>>>=0,this===t)return 0;for(var r=i-n,a=o-e,u=Math.min(r,a),s=this.slice(n,i),l=t.slice(e,o),d=0;d<u;++d)if(s[d]!==l[d]){r=s[d],a=l[d];break}return r<a?-1:a<r?1:0},c.prototype.includes=function(t,e,o){return-1!==this.indexOf(t,e,o)},c.prototype.indexOf=function(t,e,o){return z(this,t,e,o,!0)},c.prototype.lastIndexOf=function(t,e,o){return z(this,t,e,o,!1)},c.prototype.write=function(t,e,o,n){if(void 0===e)n="utf8",o=this.length,e=0;else if(void 0===o&&"string"===typeof e)n=e,o=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(o)?(o|=0,void 0===n&&(n="utf8")):(n=o,o=void 0)}var i=this.length-e;if((void 0===o||o>i)&&(o=i),t.length>0&&(o<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var r=!1;;)switch(n){case"hex":return M(this,t,e,o);case"utf8":case"utf-8":return V(this,t,e,o);case"ascii":return H(this,t,e,o);case"latin1":case"binary":return C(this,t,e,o);case"base64":return L(this,t,e,o);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return S(this,t,e,o);default:if(r)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),r=!0}},c.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var O=4096;function A(t){var e=t.length;if(e<=O)return String.fromCharCode.apply(String,t);var o="",n=0;while(n<e)o+=String.fromCharCode.apply(String,t.slice(n,n+=O));return o}function T(t,e,o){var n="";o=Math.min(t.length,o);for(var i=e;i<o;++i)n+=String.fromCharCode(127&t[i]);return n}function I(t,e,o){var n="";o=Math.min(t.length,o);for(var i=e;i<o;++i)n+=String.fromCharCode(t[i]);return n}function j(t,e,o){var n=t.length;(!e||e<0)&&(e=0),(!o||o<0||o>n)&&(o=n);for(var i="",r=e;r<o;++r)i+=Q(t[r]);return i}function N(t,e,o){for(var n=t.slice(e,o),i="",r=0;r<n.length;r+=2)i+=String.fromCharCode(n[r]+256*n[r+1]);return i}function R(t,e,o){if(t%1!==0||t<0)throw new RangeError("offset is not uint");if(t+e>o)throw new RangeError("Trying to access beyond buffer length")}function P(t,e,o,n,i,r){if(!c.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>i||e<r)throw new RangeError('"value" argument is out of bounds');if(o+n>t.length)throw new RangeError("Index out of range")}function D(t,e,o,n){e<0&&(e=65535+e+1);for(var i=0,r=Math.min(t.length-o,2);i<r;++i)t[o+i]=(e&255<<8*(n?i:1-i))>>>8*(n?i:1-i)}function U(t,e,o,n){e<0&&(e=4294967295+e+1);for(var i=0,r=Math.min(t.length-o,4);i<r;++i)t[o+i]=e>>>8*(n?i:3-i)&255}function F(t,e,o,n,i,r){if(o+n>t.length)throw new RangeError("Index out of range");if(o<0)throw new RangeError("Index out of range")}function q(t,e,o,n,r){return r||F(t,e,o,4,3.4028234663852886e38,-3.4028234663852886e38),i.write(t,e,o,n,23,4),o+4}function K(t,e,o,n,r){return r||F(t,e,o,8,1.7976931348623157e308,-1.7976931348623157e308),i.write(t,e,o,n,52,8),o+8}c.prototype.slice=function(t,e){var o,n=this.length;if(t=~~t,e=void 0===e?n:~~e,t<0?(t+=n,t<0&&(t=0)):t>n&&(t=n),e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),e<t&&(e=t),c.TYPED_ARRAY_SUPPORT)o=this.subarray(t,e),o.__proto__=c.prototype;else{var i=e-t;o=new c(i,void 0);for(var r=0;r<i;++r)o[r]=this[r+t]}return o},c.prototype.readUIntLE=function(t,e,o){t|=0,e|=0,o||R(t,e,this.length);var n=this[t],i=1,r=0;while(++r<e&&(i*=256))n+=this[t+r]*i;return n},c.prototype.readUIntBE=function(t,e,o){t|=0,e|=0,o||R(t,e,this.length);var n=this[t+--e],i=1;while(e>0&&(i*=256))n+=this[t+--e]*i;return n},c.prototype.readUInt8=function(t,e){return e||R(t,1,this.length),this[t]},c.prototype.readUInt16LE=function(t,e){return e||R(t,2,this.length),this[t]|this[t+1]<<8},c.prototype.readUInt16BE=function(t,e){return e||R(t,2,this.length),this[t]<<8|this[t+1]},c.prototype.readUInt32LE=function(t,e){return e||R(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},c.prototype.readUInt32BE=function(t,e){return e||R(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},c.prototype.readIntLE=function(t,e,o){t|=0,e|=0,o||R(t,e,this.length);var n=this[t],i=1,r=0;while(++r<e&&(i*=256))n+=this[t+r]*i;return i*=128,n>=i&&(n-=Math.pow(2,8*e)),n},c.prototype.readIntBE=function(t,e,o){t|=0,e|=0,o||R(t,e,this.length);var n=e,i=1,r=this[t+--n];while(n>0&&(i*=256))r+=this[t+--n]*i;return i*=128,r>=i&&(r-=Math.pow(2,8*e)),r},c.prototype.readInt8=function(t,e){return e||R(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},c.prototype.readInt16LE=function(t,e){e||R(t,2,this.length);var o=this[t]|this[t+1]<<8;return 32768&o?4294901760|o:o},c.prototype.readInt16BE=function(t,e){e||R(t,2,this.length);var o=this[t+1]|this[t]<<8;return 32768&o?4294901760|o:o},c.prototype.readInt32LE=function(t,e){return e||R(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},c.prototype.readInt32BE=function(t,e){return e||R(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},c.prototype.readFloatLE=function(t,e){return e||R(t,4,this.length),i.read(this,t,!0,23,4)},c.prototype.readFloatBE=function(t,e){return e||R(t,4,this.length),i.read(this,t,!1,23,4)},c.prototype.readDoubleLE=function(t,e){return e||R(t,8,this.length),i.read(this,t,!0,52,8)},c.prototype.readDoubleBE=function(t,e){return e||R(t,8,this.length),i.read(this,t,!1,52,8)},c.prototype.writeUIntLE=function(t,e,o,n){if(t=+t,e|=0,o|=0,!n){var i=Math.pow(2,8*o)-1;P(this,t,e,o,i,0)}var r=1,a=0;this[e]=255&t;while(++a<o&&(r*=256))this[e+a]=t/r&255;return e+o},c.prototype.writeUIntBE=function(t,e,o,n){if(t=+t,e|=0,o|=0,!n){var i=Math.pow(2,8*o)-1;P(this,t,e,o,i,0)}var r=o-1,a=1;this[e+r]=255&t;while(--r>=0&&(a*=256))this[e+r]=t/a&255;return e+o},c.prototype.writeUInt8=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,1,255,0),c.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},c.prototype.writeUInt16LE=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,2,65535,0),c.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):D(this,t,e,!0),e+2},c.prototype.writeUInt16BE=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,2,65535,0),c.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):D(this,t,e,!1),e+2},c.prototype.writeUInt32LE=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,4,4294967295,0),c.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):U(this,t,e,!0),e+4},c.prototype.writeUInt32BE=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,4,4294967295,0),c.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):U(this,t,e,!1),e+4},c.prototype.writeIntLE=function(t,e,o,n){if(t=+t,e|=0,!n){var i=Math.pow(2,8*o-1);P(this,t,e,o,i-1,-i)}var r=0,a=1,u=0;this[e]=255&t;while(++r<o&&(a*=256))t<0&&0===u&&0!==this[e+r-1]&&(u=1),this[e+r]=(t/a>>0)-u&255;return e+o},c.prototype.writeIntBE=function(t,e,o,n){if(t=+t,e|=0,!n){var i=Math.pow(2,8*o-1);P(this,t,e,o,i-1,-i)}var r=o-1,a=1,u=0;this[e+r]=255&t;while(--r>=0&&(a*=256))t<0&&0===u&&0!==this[e+r+1]&&(u=1),this[e+r]=(t/a>>0)-u&255;return e+o},c.prototype.writeInt8=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,1,127,-128),c.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},c.prototype.writeInt16LE=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,2,32767,-32768),c.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):D(this,t,e,!0),e+2},c.prototype.writeInt16BE=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,2,32767,-32768),c.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):D(this,t,e,!1),e+2},c.prototype.writeInt32LE=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,4,2147483647,-2147483648),c.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):U(this,t,e,!0),e+4},c.prototype.writeInt32BE=function(t,e,o){return t=+t,e|=0,o||P(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),c.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):U(this,t,e,!1),e+4},c.prototype.writeFloatLE=function(t,e,o){return q(this,t,e,!0,o)},c.prototype.writeFloatBE=function(t,e,o){return q(this,t,e,!1,o)},c.prototype.writeDoubleLE=function(t,e,o){return K(this,t,e,!0,o)},c.prototype.writeDoubleBE=function(t,e,o){return K(this,t,e,!1,o)},c.prototype.copy=function(t,e,o,n){if(o||(o=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&n<o&&(n=o),n===o)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(o<0||o>=this.length)throw new RangeError("sourceStart out of bounds");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),t.length-e<n-o&&(n=t.length-e+o);var i,r=n-o;if(this===t&&o<e&&e<n)for(i=r-1;i>=0;--i)t[i+e]=this[i+o];else if(r<1e3||!c.TYPED_ARRAY_SUPPORT)for(i=0;i<r;++i)t[i+e]=this[i+o];else Uint8Array.prototype.set.call(t,this.subarray(o,o+r),e);return r},c.prototype.fill=function(t,e,o,n){if("string"===typeof t){if("string"===typeof e?(n=e,e=0,o=this.length):"string"===typeof o&&(n=o,o=this.length),1===t.length){var i=t.charCodeAt(0);i<256&&(t=i)}if(void 0!==n&&"string"!==typeof n)throw new TypeError("encoding must be a string");if("string"===typeof n&&!c.isEncoding(n))throw new TypeError("Unknown encoding: "+n)}else"number"===typeof t&&(t&=255);if(e<0||this.length<e||this.length<o)throw new RangeError("Out of range index");if(o<=e)return this;var r;if(e>>>=0,o=void 0===o?this.length:o>>>0,t||(t=0),"number"===typeof t)for(r=e;r<o;++r)this[r]=t;else{var a=c.isBuffer(t)?t:J(new c(t,n).toString()),u=a.length;for(r=0;r<o-e;++r)this[r+e]=a[r%u]}return this};var Y=/[^+\/0-9A-Za-z-_]/g;function G(t){if(t=W(t).replace(Y,""),t.length<2)return"";while(t.length%4!==0)t+="=";return t}function W(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}function Q(t){return t<16?"0"+t.toString(16):t.toString(16)}function J(t,e){var o;e=e||1/0;for(var n=t.length,i=null,r=[],a=0;a<n;++a){if(o=t.charCodeAt(a),o>55295&&o<57344){if(!i){if(o>56319){(e-=3)>-1&&r.push(239,191,189);continue}if(a+1===n){(e-=3)>-1&&r.push(239,191,189);continue}i=o;continue}if(o<56320){(e-=3)>-1&&r.push(239,191,189),i=o;continue}o=65536+(i-55296<<10|o-56320)}else i&&(e-=3)>-1&&r.push(239,191,189);if(i=null,o<128){if((e-=1)<0)break;r.push(o)}else if(o<2048){if((e-=2)<0)break;r.push(o>>6|192,63&o|128)}else if(o<65536){if((e-=3)<0)break;r.push(o>>12|224,o>>6&63|128,63&o|128)}else{if(!(o<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;r.push(o>>18|240,o>>12&63|128,o>>6&63|128,63&o|128)}}return r}function X(t){for(var e=[],o=0;o<t.length;++o)e.push(255&t.charCodeAt(o));return e}function Z(t,e){for(var o,n,i,r=[],a=0;a<t.length;++a){if((e-=2)<0)break;o=t.charCodeAt(a),n=o>>8,i=o%256,r.push(i),r.push(n)}return r}function $(t){return n.toByteArray(G(t))}function tt(t,e,o,n){for(var i=0;i<n;++i){if(i+o>=e.length||i>=t.length)break;e[i+o]=t[i]}return i}function et(t){return t!==t}}).call(this,o(9))},function(t,e,o){"use strict";e.byteLength=l,e.toByteArray=v,e.fromByteArray=f;for(var n=[],i=[],r="undefined"!==typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",u=0,s=a.length;u<s;++u)n[u]=a[u],i[a.charCodeAt(u)]=u;function c(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var o=t.indexOf("=");-1===o&&(o=e);var n=o===e?0:4-o%4;return[o,n]}function l(t){var e=c(t),o=e[0],n=e[1];return 3*(o+n)/4-n}function d(t,e,o){return 3*(e+o)/4-o}function v(t){var e,o,n=c(t),a=n[0],u=n[1],s=new r(d(t,a,u)),l=0,v=u>0?a-4:a;for(o=0;o<v;o+=4)e=i[t.charCodeAt(o)]<<18|i[t.charCodeAt(o+1)]<<12|i[t.charCodeAt(o+2)]<<6|i[t.charCodeAt(o+3)],s[l++]=e>>16&255,s[l++]=e>>8&255,s[l++]=255&e;return 2===u&&(e=i[t.charCodeAt(o)]<<2|i[t.charCodeAt(o+1)]>>4,s[l++]=255&e),1===u&&(e=i[t.charCodeAt(o)]<<10|i[t.charCodeAt(o+1)]<<4|i[t.charCodeAt(o+2)]>>2,s[l++]=e>>8&255,s[l++]=255&e),s}function h(t){return n[t>>18&63]+n[t>>12&63]+n[t>>6&63]+n[63&t]}function p(t,e,o){for(var n,i=[],r=e;r<o;r+=3)n=(t[r]<<16&16711680)+(t[r+1]<<8&65280)+(255&t[r+2]),i.push(h(n));return i.join("")}function f(t){for(var e,o=t.length,i=o%3,r=[],a=16383,u=0,s=o-i;u<s;u+=a)r.push(p(t,u,u+a>s?s:u+a));return 1===i?(e=t[o-1],r.push(n[e>>2]+n[e<<4&63]+"==")):2===i&&(e=(t[o-2]<<8)+t[o-1],r.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+"=")),r.join("")}i["-".charCodeAt(0)]=62,i["_".charCodeAt(0)]=63},function(t,e){
  21. /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
  22. e.read=function(t,e,o,n,i){var r,a,u=8*i-n-1,s=(1<<u)-1,c=s>>1,l=-7,d=o?i-1:0,v=o?-1:1,h=t[e+d];for(d+=v,r=h&(1<<-l)-1,h>>=-l,l+=u;l>0;r=256*r+t[e+d],d+=v,l-=8);for(a=r&(1<<-l)-1,r>>=-l,l+=n;l>0;a=256*a+t[e+d],d+=v,l-=8);if(0===r)r=1-c;else{if(r===s)return a?NaN:1/0*(h?-1:1);a+=Math.pow(2,n),r-=c}return(h?-1:1)*a*Math.pow(2,r-n)},e.write=function(t,e,o,n,i,r){var a,u,s,c=8*r-i-1,l=(1<<c)-1,d=l>>1,v=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,h=n?0:r-1,p=n?1:-1,f=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(u=isNaN(e)?1:0,a=l):(a=Math.floor(Math.log(e)/Math.LN2),e*(s=Math.pow(2,-a))<1&&(a--,s*=2),e+=a+d>=1?v/s:v*Math.pow(2,1-d),e*s>=2&&(a++,s/=2),a+d>=l?(u=0,a=l):a+d>=1?(u=(e*s-1)*Math.pow(2,i),a+=d):(u=e*Math.pow(2,d-1)*Math.pow(2,i),a=0));i>=8;t[o+h]=255&u,h+=p,u/=256,i-=8);for(a=a<<i|u,c+=i;c>0;t[o+h]=255&a,h+=p,a/=256,c-=8);t[o+h-p]|=128*f}},function(t,e){var o={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==o.call(t)}},function(t,e){var o,n,i=t.exports={};function r(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function u(t){if(o===setTimeout)return setTimeout(t,0);if((o===r||!o)&&setTimeout)return o=setTimeout,setTimeout(t,0);try{return o(t,0)}catch(e){try{return o.call(null,t,0)}catch(e){return o.call(this,t,0)}}}function s(t){if(n===clearTimeout)return clearTimeout(t);if((n===a||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(t);try{return n(t)}catch(e){try{return n.call(null,t)}catch(e){return n.call(this,t)}}}(function(){try{o="function"===typeof setTimeout?setTimeout:r}catch(t){o=r}try{n="function"===typeof clearTimeout?clearTimeout:a}catch(t){n=a}})();var c,l=[],d=!1,v=-1;function h(){d&&c&&(d=!1,c.length?l=c.concat(l):v=-1,l.length&&p())}function p(){if(!d){var t=u(h);d=!0;var e=l.length;while(e){c=l,l=[];while(++v<e)c&&c[v].run();v=-1,e=l.length}c=null,d=!1,s(t)}}function f(t,e){this.fun=t,this.array=e}function m(){}i.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var o=1;o<arguments.length;o++)e[o-1]=arguments[o];l.push(new f(t,e)),1!==l.length||d||u(p)},f.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=m,i.addListener=m,i.once=m,i.off=m,i.removeListener=m,i.removeAllListeners=m,i.emit=m,i.prependListener=m,i.prependOnceListener=m,i.listeners=function(t){return[]},i.binding=function(t){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(t){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},function(t,e,o){(function(t){function o(t,e){for(var o=0,n=t.length-1;n>=0;n--){var i=t[n];"."===i?t.splice(n,1):".."===i?(t.splice(n,1),o++):o&&(t.splice(n,1),o--)}if(e)for(;o--;o)t.unshift("..");return t}function n(t){"string"!==typeof t&&(t+="");var e,o=0,n=-1,i=!0;for(e=t.length-1;e>=0;--e)if(47===t.charCodeAt(e)){if(!i){o=e+1;break}}else-1===n&&(i=!1,n=e+1);return-1===n?"":t.slice(o,n)}function i(t,e){if(t.filter)return t.filter(e);for(var o=[],n=0;n<t.length;n++)e(t[n],n,t)&&o.push(t[n]);return o}e.resolve=function(){for(var e="",n=!1,r=arguments.length-1;r>=-1&&!n;r--){var a=r>=0?arguments[r]:t.cwd();if("string"!==typeof a)throw new TypeError("Arguments to path.resolve must be strings");a&&(e=a+"/"+e,n="/"===a.charAt(0))}return e=o(i(e.split("/"),function(t){return!!t}),!n).join("/"),(n?"/":"")+e||"."},e.normalize=function(t){var n=e.isAbsolute(t),a="/"===r(t,-1);return t=o(i(t.split("/"),function(t){return!!t}),!n).join("/"),t||n||(t="."),t&&a&&(t+="/"),(n?"/":"")+t},e.isAbsolute=function(t){return"/"===t.charAt(0)},e.join=function(){var t=Array.prototype.slice.call(arguments,0);return e.normalize(i(t,function(t,e){if("string"!==typeof t)throw new TypeError("Arguments to path.join must be strings");return t}).join("/"))},e.relative=function(t,o){function n(t){for(var e=0;e<t.length;e++)if(""!==t[e])break;for(var o=t.length-1;o>=0;o--)if(""!==t[o])break;return e>o?[]:t.slice(e,o-e+1)}t=e.resolve(t).substr(1),o=e.resolve(o).substr(1);for(var i=n(t.split("/")),r=n(o.split("/")),a=Math.min(i.length,r.length),u=a,s=0;s<a;s++)if(i[s]!==r[s]){u=s;break}var c=[];for(s=u;s<i.length;s++)c.push("..");return c=c.concat(r.slice(u)),c.join("/")},e.sep="/",e.delimiter=":",e.dirname=function(t){if("string"!==typeof t&&(t+=""),0===t.length)return".";for(var e=t.charCodeAt(0),o=47===e,n=-1,i=!0,r=t.length-1;r>=1;--r)if(e=t.charCodeAt(r),47===e){if(!i){n=r;break}}else i=!1;return-1===n?o?"/":".":o&&1===n?"/":t.slice(0,n)},e.basename=function(t,e){var o=n(t);return e&&o.substr(-1*e.length)===e&&(o=o.substr(0,o.length-e.length)),o},e.extname=function(t){"string"!==typeof t&&(t+="");for(var e=-1,o=0,n=-1,i=!0,r=0,a=t.length-1;a>=0;--a){var u=t.charCodeAt(a);if(47!==u)-1===n&&(i=!1,n=a+1),46===u?-1===e?e=a:1!==r&&(r=1):-1!==e&&(r=-1);else if(!i){o=a+1;break}}return-1===e||-1===n||0===r||1===r&&e===n-1&&e===o+1?"":t.slice(e,n)};var r="b"==="ab".substr(-1)?function(t,e,o){return t.substr(e,o)}:function(t,e,o){return e<0&&(e=t.length+e),t.substr(e,o)}}).call(this,o(21))},function(t,e,o){"use strict";o.d(e,"a",function(){return r});var n=o(24),i=100;class r extends n["EventEmitter"]{constructor(t){super(),this.setMaxListeners(1/0),this.wall=t,t.listen(t=>{Array.isArray(t)?t.forEach(t=>this._emit(t)):this._emit(t)}),this._batchingQueue=[],this._sendingQueue=[],this._receivingQueue=[],this._sending=!1,this._time=null}send(t,e){if(Array.isArray(e)){var o=e.length-1;e.forEach((e,n)=>{this._send({event:t,_chunk:e,last:n===o})}),this._flush()}else if(null===this._time)this._send([{event:t,payload:e}]),this._time=Date.now();else{this._batchingQueue.push({event:t,payload:e});var n=Date.now();n-this._time>i?this._flush():this._timer=setTimeout(()=>this._flush(),i)}}log(t){this.send("log",t)}_flush(){this._batchingQueue.length&&this._send(this._batchingQueue),clearTimeout(this._timer),this._batchingQueue=[],this._time=null}_emit(t){"string"===typeof t?this.emit(t):t._chunk?(this._receivingQueue.push(t._chunk),t.last&&(this.emit(t.event,this._receivingQueue),this._receivingQueue=[])):this.emit(t.event,t.payload)}_send(t){this._sendingQueue.push(t),this._nextSend()}_nextSend(){if(this._sendingQueue.length&&!this._sending){this._sending=!0;var t=this._sendingQueue.shift();try{this.wall.send(t)}catch(e){"Message length exceeded maximum allowed length."===e.message&&this._sendingQueue.splice(0,0,t.map(t=>[t]))}this._sending=!1,requestAnimationFrame(()=>this._nextSend())}}}},function(t,e,o){"use strict";var n,i="object"===typeof Reflect?Reflect:null,r=i&&"function"===typeof i.apply?i.apply:function(t,e,o){return Function.prototype.apply.call(t,e,o)};function a(t){console&&console.warn&&console.warn(t)}n=i&&"function"===typeof i.ownKeys?i.ownKeys:Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:function(t){return Object.getOwnPropertyNames(t)};var u=Number.isNaN||function(t){return t!==t};function s(){s.init.call(this)}t.exports=s,t.exports.once=w,s.EventEmitter=s,s.prototype._events=void 0,s.prototype._eventsCount=0,s.prototype._maxListeners=void 0;var c=10;function l(t){if("function"!==typeof t)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof t)}function d(t){return void 0===t._maxListeners?s.defaultMaxListeners:t._maxListeners}function v(t,e,o,n){var i,r,u;if(l(o),r=t._events,void 0===r?(r=t._events=Object.create(null),t._eventsCount=0):(void 0!==r.newListener&&(t.emit("newListener",e,o.listener?o.listener:o),r=t._events),u=r[e]),void 0===u)u=r[e]=o,++t._eventsCount;else if("function"===typeof u?u=r[e]=n?[o,u]:[u,o]:n?u.unshift(o):u.push(o),i=d(t),i>0&&u.length>i&&!u.warned){u.warned=!0;var s=new Error("Possible EventEmitter memory leak detected. "+u.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");s.name="MaxListenersExceededWarning",s.emitter=t,s.type=e,s.count=u.length,a(s)}return t}function h(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function p(t,e,o){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:o},i=h.bind(n);return i.listener=o,n.wrapFn=i,i}function f(t,e,o){var n=t._events;if(void 0===n)return[];var i=n[e];return void 0===i?[]:"function"===typeof i?o?[i.listener||i]:[i]:o?y(i):g(i,i.length)}function m(t){var e=this._events;if(void 0!==e){var o=e[t];if("function"===typeof o)return 1;if(void 0!==o)return o.length}return 0}function g(t,e){for(var o=new Array(e),n=0;n<e;++n)o[n]=t[n];return o}function b(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}function y(t){for(var e=new Array(t.length),o=0;o<e.length;++o)e[o]=t[o].listener||t[o];return e}function w(t,e){return new Promise(function(o,n){function i(o){t.removeListener(e,r),n(o)}function r(){"function"===typeof t.removeListener&&t.removeListener("error",i),o([].slice.call(arguments))}_(t,e,r,{once:!0}),"error"!==e&&x(t,i,{once:!0})})}function x(t,e,o){"function"===typeof t.on&&_(t,"error",e,o)}function _(t,e,o,n){if("function"===typeof t.on)n.once?t.once(e,o):t.on(e,o);else{if("function"!==typeof t.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof t);t.addEventListener(e,function i(r){n.once&&t.removeEventListener(e,i),o(r)})}}Object.defineProperty(s,"defaultMaxListeners",{enumerable:!0,get:function(){return c},set:function(t){if("number"!==typeof t||t<0||u(t))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+t+".");c=t}}),s.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},s.prototype.setMaxListeners=function(t){if("number"!==typeof t||t<0||u(t))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+t+".");return this._maxListeners=t,this},s.prototype.getMaxListeners=function(){return d(this)},s.prototype.emit=function(t){for(var e=[],o=1;o<arguments.length;o++)e.push(arguments[o]);var n="error"===t,i=this._events;if(void 0!==i)n=n&&void 0===i.error;else if(!n)return!1;if(n){var a;if(e.length>0&&(a=e[0]),a instanceof Error)throw a;var u=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw u.context=a,u}var s=i[t];if(void 0===s)return!1;if("function"===typeof s)r(s,this,e);else{var c=s.length,l=g(s,c);for(o=0;o<c;++o)r(l[o],this,e)}return!0},s.prototype.addListener=function(t,e){return v(this,t,e,!1)},s.prototype.on=s.prototype.addListener,s.prototype.prependListener=function(t,e){return v(this,t,e,!0)},s.prototype.once=function(t,e){return l(e),this.on(t,p(this,t,e)),this},s.prototype.prependOnceListener=function(t,e){return l(e),this.prependListener(t,p(this,t,e)),this},s.prototype.removeListener=function(t,e){var o,n,i,r,a;if(l(e),n=this._events,void 0===n)return this;if(o=n[t],void 0===o)return this;if(o===e||o.listener===e)0===--this._eventsCount?this._events=Object.create(null):(delete n[t],n.removeListener&&this.emit("removeListener",t,o.listener||e));else if("function"!==typeof o){for(i=-1,r=o.length-1;r>=0;r--)if(o[r]===e||o[r].listener===e){a=o[r].listener,i=r;break}if(i<0)return this;0===i?o.shift():b(o,i),1===o.length&&(n[t]=o[0]),void 0!==n.removeListener&&this.emit("removeListener",t,a||e)}return this},s.prototype.off=s.prototype.removeListener,s.prototype.removeAllListeners=function(t){var e,o,n;if(o=this._events,void 0===o)return this;if(void 0===o.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==o[t]&&(0===--this._eventsCount?this._events=Object.create(null):delete o[t]),this;if(0===arguments.length){var i,r=Object.keys(o);for(n=0;n<r.length;++n)i=r[n],"removeListener"!==i&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if(e=o[t],"function"===typeof e)this.removeListener(t,e);else if(void 0!==e)for(n=e.length-1;n>=0;n--)this.removeListener(t,e[n]);return this},s.prototype.listeners=function(t){return f(this,t,!0)},s.prototype.rawListeners=function(t){return f(this,t,!1)},s.listenerCount=function(t,e){return"function"===typeof t.listenerCount?t.listenerCount(e):m.call(t,e)},s.prototype.listenerCount=m,s.prototype.eventNames=function(){return this._eventsCount>0?n(this._events):[]}},function(t,e,o){(function(e){var o="Expected a function",n=NaN,i="[object Symbol]",r=/^\s+|\s+$/g,a=/^[-+]0x[0-9a-f]+$/i,u=/^0b[01]+$/i,s=/^0o[0-7]+$/i,c=parseInt,l="object"==typeof e&&e&&e.Object===Object&&e,d="object"==typeof self&&self&&self.Object===Object&&self,v=l||d||Function("return this")(),h=Object.prototype,p=h.toString,f=Math.max,m=Math.min,g=function(){return v.Date.now()};function b(t,e,n){var i,r,a,u,s,c,l=0,d=!1,v=!1,h=!0;if("function"!=typeof t)throw new TypeError(o);function p(e){var o=i,n=r;return i=r=void 0,l=e,u=t.apply(n,o),u}function b(t){return l=t,s=setTimeout(z,e),d?p(t):u}function w(t){var o=t-c,n=t-l,i=e-o;return v?m(i,a-n):i}function x(t){var o=t-c,n=t-l;return void 0===c||o>=e||o<0||v&&n>=a}function z(){var t=g();if(x(t))return k(t);s=setTimeout(z,w(t))}function k(t){return s=void 0,h&&i?p(t):(i=r=void 0,u)}function M(){void 0!==s&&clearTimeout(s),l=0,i=c=r=s=void 0}function V(){return void 0===s?u:k(g())}function H(){var t=g(),o=x(t);if(i=arguments,r=this,c=t,o){if(void 0===s)return b(c);if(v)return s=setTimeout(z,e),p(c)}return void 0===s&&(s=setTimeout(z,e)),u}return e=_(e)||0,y(n)&&(d=!!n.leading,v="maxWait"in n,a=v?f(_(n.maxWait)||0,e):a,h="trailing"in n?!!n.trailing:h),H.cancel=M,H.flush=V,H}function y(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function w(t){return!!t&&"object"==typeof t}function x(t){return"symbol"==typeof t||w(t)&&p.call(t)==i}function _(t){if("number"==typeof t)return t;if(x(t))return n;if(y(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=y(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(r,"");var o=u.test(t);return o||s.test(t)?c(t.slice(2),o?2:8):a.test(t)?n:+t}t.exports=b}).call(this,o(9))},,,,function(t,e,o){(function(t,o){var n=200,i="Expected a function",r="__lodash_hash_undefined__",a=1,u=2,s=1/0,c=9007199254740991,l="[object Arguments]",d="[object Array]",v="[object Boolean]",h="[object Date]",p="[object Error]",f="[object Function]",m="[object GeneratorFunction]",g="[object Map]",b="[object Number]",y="[object Object]",w="[object Promise]",x="[object RegExp]",_="[object Set]",z="[object String]",k="[object Symbol]",M="[object WeakMap]",V="[object ArrayBuffer]",H="[object DataView]",C="[object Float32Array]",L="[object Float64Array]",S="[object Int8Array]",B="[object Int16Array]",E="[object Int32Array]",O="[object Uint8Array]",A="[object Uint8ClampedArray]",T="[object Uint16Array]",I="[object Uint32Array]",j=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,N=/^\w*$/,R=/^\./,P=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,D=/[\\^$.*+?()[\]{}|]/g,U=/\\(\\)?/g,F=/^\[object .+?Constructor\]$/,q=/^(?:0|[1-9]\d*)$/,K={};K[C]=K[L]=K[S]=K[B]=K[E]=K[O]=K[A]=K[T]=K[I]=!0,K[l]=K[d]=K[V]=K[v]=K[H]=K[h]=K[p]=K[f]=K[g]=K[b]=K[y]=K[x]=K[_]=K[z]=K[M]=!1;var Y="object"==typeof t&&t&&t.Object===Object&&t,G="object"==typeof self&&self&&self.Object===Object&&self,W=Y||G||Function("return this")(),Q=e&&!e.nodeType&&e,J=Q&&"object"==typeof o&&o&&!o.nodeType&&o,X=J&&J.exports===Q,Z=X&&Y.process,$=function(){try{return Z&&Z.binding("util")}catch(t){}}(),tt=$&&$.isTypedArray;function et(t,e,o,n){var i=-1,r=t?t.length:0;while(++i<r){var a=t[i];e(n,a,o(a),t)}return n}function ot(t,e){var o=-1,n=t?t.length:0;while(++o<n)if(e(t[o],o,t))return!0;return!1}function nt(t){return function(e){return null==e?void 0:e[t]}}function it(t,e){var o=-1,n=Array(t);while(++o<t)n[o]=e(o);return n}function rt(t){return function(e){return t(e)}}function at(t,e){return null==t?void 0:t[e]}function ut(t){var e=!1;if(null!=t&&"function"!=typeof t.toString)try{e=!!(t+"")}catch(t){}return e}function st(t){var e=-1,o=Array(t.size);return t.forEach(function(t,n){o[++e]=[n,t]}),o}function ct(t,e){return function(o){return t(e(o))}}function lt(t){var e=-1,o=Array(t.size);return t.forEach(function(t){o[++e]=t}),o}var dt=Array.prototype,vt=Function.prototype,ht=Object.prototype,pt=W["__core-js_shared__"],ft=function(){var t=/[^.]+$/.exec(pt&&pt.keys&&pt.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}(),mt=vt.toString,gt=ht.hasOwnProperty,bt=ht.toString,yt=RegExp("^"+mt.call(gt).replace(D,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),wt=W.Symbol,xt=W.Uint8Array,_t=ht.propertyIsEnumerable,zt=dt.splice,kt=ct(Object.keys,Object),Mt=De(W,"DataView"),Vt=De(W,"Map"),Ht=De(W,"Promise"),Ct=De(W,"Set"),Lt=De(W,"WeakMap"),St=De(Object,"create"),Bt=$e(Mt),Et=$e(Vt),Ot=$e(Ht),At=$e(Ct),Tt=$e(Lt),It=wt?wt.prototype:void 0,jt=It?It.valueOf:void 0,Nt=It?It.toString:void 0;function Rt(t){var e=-1,o=t?t.length:0;this.clear();while(++e<o){var n=t[e];this.set(n[0],n[1])}}function Pt(){this.__data__=St?St(null):{}}function Dt(t){return this.has(t)&&delete this.__data__[t]}function Ut(t){var e=this.__data__;if(St){var o=e[t];return o===r?void 0:o}return gt.call(e,t)?e[t]:void 0}function Ft(t){var e=this.__data__;return St?void 0!==e[t]:gt.call(e,t)}function qt(t,e){var o=this.__data__;return o[t]=St&&void 0===e?r:e,this}function Kt(t){var e=-1,o=t?t.length:0;this.clear();while(++e<o){var n=t[e];this.set(n[0],n[1])}}function Yt(){this.__data__=[]}function Gt(t){var e=this.__data__,o=he(e,t);if(o<0)return!1;var n=e.length-1;return o==n?e.pop():zt.call(e,o,1),!0}function Wt(t){var e=this.__data__,o=he(e,t);return o<0?void 0:e[o][1]}function Qt(t){return he(this.__data__,t)>-1}function Jt(t,e){var o=this.__data__,n=he(o,t);return n<0?o.push([t,e]):o[n][1]=e,this}function Xt(t){var e=-1,o=t?t.length:0;this.clear();while(++e<o){var n=t[e];this.set(n[0],n[1])}}function Zt(){this.__data__={hash:new Rt,map:new(Vt||Kt),string:new Rt}}function $t(t){return Re(this,t)["delete"](t)}function te(t){return Re(this,t).get(t)}function ee(t){return Re(this,t).has(t)}function oe(t,e){return Re(this,t).set(t,e),this}function ne(t){var e=-1,o=t?t.length:0;this.__data__=new Xt;while(++e<o)this.add(t[e])}function ie(t){return this.__data__.set(t,r),this}function re(t){return this.__data__.has(t)}function ae(t){this.__data__=new Kt(t)}function ue(){this.__data__=new Kt}function se(t){return this.__data__["delete"](t)}function ce(t){return this.__data__.get(t)}function le(t){return this.__data__.has(t)}function de(t,e){var o=this.__data__;if(o instanceof Kt){var i=o.__data__;if(!Vt||i.length<n-1)return i.push([t,e]),this;o=this.__data__=new Xt(i)}return o.set(t,e),this}function ve(t,e){var o=io(t)||no(t)?it(t.length,String):[],n=o.length,i=!!n;for(var r in t)!e&&!gt.call(t,r)||i&&("length"==r||qe(r,n))||o.push(r);return o}function he(t,e){var o=t.length;while(o--)if(oo(t[o][0],e))return o;return-1}function pe(t,e,o,n){return fe(t,function(t,i,r){e(n,t,o(t),r)}),n}Rt.prototype.clear=Pt,Rt.prototype["delete"]=Dt,Rt.prototype.get=Ut,Rt.prototype.has=Ft,Rt.prototype.set=qt,Kt.prototype.clear=Yt,Kt.prototype["delete"]=Gt,Kt.prototype.get=Wt,Kt.prototype.has=Qt,Kt.prototype.set=Jt,Xt.prototype.clear=Zt,Xt.prototype["delete"]=$t,Xt.prototype.get=te,Xt.prototype.has=ee,Xt.prototype.set=oe,ne.prototype.add=ne.prototype.push=ie,ne.prototype.has=re,ae.prototype.clear=ue,ae.prototype["delete"]=se,ae.prototype.get=ce,ae.prototype.has=le,ae.prototype.set=de;var fe=Ae(ge),me=Te();function ge(t,e){return t&&me(t,e,go)}function be(t,e){e=Ke(e,t)?[e]:Ee(e);var o=0,n=e.length;while(null!=t&&o<n)t=t[Ze(e[o++])];return o&&o==n?t:void 0}function ye(t){return bt.call(t)}function we(t,e){return null!=t&&e in Object(t)}function xe(t,e,o,n,i){return t===e||(null==t||null==e||!co(t)&&!lo(e)?t!==t&&e!==e:_e(t,e,xe,o,n,i))}function _e(t,e,o,n,i,r){var a=io(t),s=io(e),c=d,v=d;a||(c=Ue(t),c=c==l?y:c),s||(v=Ue(e),v=v==l?y:v);var h=c==y&&!ut(t),p=v==y&&!ut(e),f=c==v;if(f&&!h)return r||(r=new ae),a||ho(t)?Ie(t,e,o,n,i,r):je(t,e,c,o,n,i,r);if(!(i&u)){var m=h&&gt.call(t,"__wrapped__"),g=p&&gt.call(e,"__wrapped__");if(m||g){var b=m?t.value():t,w=g?e.value():e;return r||(r=new ae),o(b,w,n,i,r)}}return!!f&&(r||(r=new ae),Ne(t,e,o,n,i,r))}function ze(t,e,o,n){var i=o.length,r=i,s=!n;if(null==t)return!r;t=Object(t);while(i--){var c=o[i];if(s&&c[2]?c[1]!==t[c[0]]:!(c[0]in t))return!1}while(++i<r){c=o[i];var l=c[0],d=t[l],v=c[1];if(s&&c[2]){if(void 0===d&&!(l in t))return!1}else{var h=new ae;if(n)var p=n(d,v,l,t,e,h);if(!(void 0===p?xe(v,d,n,a|u,h):p))return!1}}return!0}function ke(t){if(!co(t)||Ge(t))return!1;var e=uo(t)||ut(t)?yt:F;return e.test($e(t))}function Me(t){return lo(t)&&so(t.length)&&!!K[bt.call(t)]}function Ve(t){return"function"==typeof t?t:null==t?bo:"object"==typeof t?io(t)?Le(t[0],t[1]):Ce(t):yo(t)}function He(t){if(!We(t))return kt(t);var e=[];for(var o in Object(t))gt.call(t,o)&&"constructor"!=o&&e.push(o);return e}function Ce(t){var e=Pe(t);return 1==e.length&&e[0][2]?Je(e[0][0],e[0][1]):function(o){return o===t||ze(o,t,e)}}function Le(t,e){return Ke(t)&&Qe(e)?Je(Ze(t),e):function(o){var n=fo(o,t);return void 0===n&&n===e?mo(o,t):xe(e,n,void 0,a|u)}}function Se(t){return function(e){return be(e,t)}}function Be(t){if("string"==typeof t)return t;if(vo(t))return Nt?Nt.call(t):"";var e=t+"";return"0"==e&&1/t==-s?"-0":e}function Ee(t){return io(t)?t:Xe(t)}function Oe(t,e){return function(o,n){var i=io(o)?et:pe,r=e?e():{};return i(o,t,Ve(n,2),r)}}function Ae(t,e){return function(o,n){if(null==o)return o;if(!ro(o))return t(o,n);var i=o.length,r=e?i:-1,a=Object(o);while(e?r--:++r<i)if(!1===n(a[r],r,a))break;return o}}function Te(t){return function(e,o,n){var i=-1,r=Object(e),a=n(e),u=a.length;while(u--){var s=a[t?u:++i];if(!1===o(r[s],s,r))break}return e}}function Ie(t,e,o,n,i,r){var s=i&u,c=t.length,l=e.length;if(c!=l&&!(s&&l>c))return!1;var d=r.get(t);if(d&&r.get(e))return d==e;var v=-1,h=!0,p=i&a?new ne:void 0;r.set(t,e),r.set(e,t);while(++v<c){var f=t[v],m=e[v];if(n)var g=s?n(m,f,v,e,t,r):n(f,m,v,t,e,r);if(void 0!==g){if(g)continue;h=!1;break}if(p){if(!ot(e,function(t,e){if(!p.has(e)&&(f===t||o(f,t,n,i,r)))return p.add(e)})){h=!1;break}}else if(f!==m&&!o(f,m,n,i,r)){h=!1;break}}return r["delete"](t),r["delete"](e),h}function je(t,e,o,n,i,r,s){switch(o){case H:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case V:return!(t.byteLength!=e.byteLength||!n(new xt(t),new xt(e)));case v:case h:case b:return oo(+t,+e);case p:return t.name==e.name&&t.message==e.message;case x:case z:return t==e+"";case g:var c=st;case _:var l=r&u;if(c||(c=lt),t.size!=e.size&&!l)return!1;var d=s.get(t);if(d)return d==e;r|=a,s.set(t,e);var f=Ie(c(t),c(e),n,i,r,s);return s["delete"](t),f;case k:if(jt)return jt.call(t)==jt.call(e)}return!1}function Ne(t,e,o,n,i,r){var a=i&u,s=go(t),c=s.length,l=go(e),d=l.length;if(c!=d&&!a)return!1;var v=c;while(v--){var h=s[v];if(!(a?h in e:gt.call(e,h)))return!1}var p=r.get(t);if(p&&r.get(e))return p==e;var f=!0;r.set(t,e),r.set(e,t);var m=a;while(++v<c){h=s[v];var g=t[h],b=e[h];if(n)var y=a?n(b,g,h,e,t,r):n(g,b,h,t,e,r);if(!(void 0===y?g===b||o(g,b,n,i,r):y)){f=!1;break}m||(m="constructor"==h)}if(f&&!m){var w=t.constructor,x=e.constructor;w!=x&&"constructor"in t&&"constructor"in e&&!("function"==typeof w&&w instanceof w&&"function"==typeof x&&x instanceof x)&&(f=!1)}return r["delete"](t),r["delete"](e),f}function Re(t,e){var o=t.__data__;return Ye(e)?o["string"==typeof e?"string":"hash"]:o.map}function Pe(t){var e=go(t),o=e.length;while(o--){var n=e[o],i=t[n];e[o]=[n,i,Qe(i)]}return e}function De(t,e){var o=at(t,e);return ke(o)?o:void 0}var Ue=ye;function Fe(t,e,o){e=Ke(e,t)?[e]:Ee(e);var n,i=-1,r=e.length;while(++i<r){var a=Ze(e[i]);if(!(n=null!=t&&o(t,a)))break;t=t[a]}if(n)return n;r=t?t.length:0;return!!r&&so(r)&&qe(a,r)&&(io(t)||no(t))}function qe(t,e){return e=null==e?c:e,!!e&&("number"==typeof t||q.test(t))&&t>-1&&t%1==0&&t<e}function Ke(t,e){if(io(t))return!1;var o=typeof t;return!("number"!=o&&"symbol"!=o&&"boolean"!=o&&null!=t&&!vo(t))||(N.test(t)||!j.test(t)||null!=e&&t in Object(e))}function Ye(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}function Ge(t){return!!ft&&ft in t}function We(t){var e=t&&t.constructor,o="function"==typeof e&&e.prototype||ht;return t===o}function Qe(t){return t===t&&!co(t)}function Je(t,e){return function(o){return null!=o&&(o[t]===e&&(void 0!==e||t in Object(o)))}}(Mt&&Ue(new Mt(new ArrayBuffer(1)))!=H||Vt&&Ue(new Vt)!=g||Ht&&Ue(Ht.resolve())!=w||Ct&&Ue(new Ct)!=_||Lt&&Ue(new Lt)!=M)&&(Ue=function(t){var e=bt.call(t),o=e==y?t.constructor:void 0,n=o?$e(o):void 0;if(n)switch(n){case Bt:return H;case Et:return g;case Ot:return w;case At:return _;case Tt:return M}return e});var Xe=eo(function(t){t=po(t);var e=[];return R.test(t)&&e.push(""),t.replace(P,function(t,o,n,i){e.push(n?i.replace(U,"$1"):o||t)}),e});function Ze(t){if("string"==typeof t||vo(t))return t;var e=t+"";return"0"==e&&1/t==-s?"-0":e}function $e(t){if(null!=t){try{return mt.call(t)}catch(t){}try{return t+""}catch(t){}}return""}var to=Oe(function(t,e,o){gt.call(t,o)?t[o].push(e):t[o]=[e]});function eo(t,e){if("function"!=typeof t||e&&"function"!=typeof e)throw new TypeError(i);var o=function(){var n=arguments,i=e?e.apply(this,n):n[0],r=o.cache;if(r.has(i))return r.get(i);var a=t.apply(this,n);return o.cache=r.set(i,a),a};return o.cache=new(eo.Cache||Xt),o}function oo(t,e){return t===e||t!==t&&e!==e}function no(t){return ao(t)&&gt.call(t,"callee")&&(!_t.call(t,"callee")||bt.call(t)==l)}eo.Cache=Xt;var io=Array.isArray;function ro(t){return null!=t&&so(t.length)&&!uo(t)}function ao(t){return lo(t)&&ro(t)}function uo(t){var e=co(t)?bt.call(t):"";return e==f||e==m}function so(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=c}function co(t){var e=typeof t;return!!t&&("object"==e||"function"==e)}function lo(t){return!!t&&"object"==typeof t}function vo(t){return"symbol"==typeof t||lo(t)&&bt.call(t)==k}var ho=tt?rt(tt):Me;function po(t){return null==t?"":Be(t)}function fo(t,e,o){var n=null==t?void 0:be(t,e);return void 0===n?o:n}function mo(t,e){return null!=t&&Fe(t,e,we)}function go(t){return ro(t)?ve(t):He(t)}function bo(t){return t}function yo(t){return Ke(t)?nt(Ze(t)):Se(t)}o.exports=to}).call(this,o(9),o(121)(t))},function(t,e,o){"use strict";(function(t){function n(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);var o=t.indexOf("Trident/");if(o>0){var n=t.indexOf("rv:");return parseInt(t.substring(n+3,t.indexOf(".",n)),10)}var i=t.indexOf("Edge/");return i>0?parseInt(t.substring(i+5,t.indexOf(".",i)),10):-1}o.d(e,"a",function(){return a});var i=void 0;function r(){r.init||(r.init=!0,i=-1!==n())}var a={render:function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})},staticRenderFns:[],_scopeId:"data-v-b329ee4c",name:"resize-observer",methods:{compareAndNotify:function(){this._w===this.$el.offsetWidth&&this._h===this.$el.offsetHeight||(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.$emit("notify"))},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!i&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),delete this._resizeObject.onload)}},mounted:function(){var t=this;r(),this.$nextTick(function(){t._w=t.$el.offsetWidth,t._h=t.$el.offsetHeight});var e=document.createElement("object");this._resizeObject=e,e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",i&&this.$el.appendChild(e),e.data="about:blank",i||this.$el.appendChild(e)},beforeDestroy:function(){this.removeResizeHandlers()}};function u(t){t.component("resize-observer",a),t.component("ResizeObserver",a)}var s={version:"0.4.5",install:u},c=null;"undefined"!==typeof window?c=window.Vue:"undefined"!==typeof t&&(c=t.Vue),c&&c.use(s),e["b"]=s}).call(this,o(9))},,,,,function(t,e,o){(function(t){var n="undefined"!==typeof t&&t||"undefined"!==typeof self&&self||window,i=Function.prototype.apply;function r(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new r(i.call(setTimeout,n,arguments),clearTimeout)},e.setInterval=function(){return new r(i.call(setInterval,n,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},r.prototype.unref=r.prototype.ref=function(){},r.prototype.close=function(){this._clearFn.call(n,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout(function(){t._onTimeout&&t._onTimeout()},e))},o(36),e.setImmediate="undefined"!==typeof self&&self.setImmediate||"undefined"!==typeof t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!==typeof self&&self.clearImmediate||"undefined"!==typeof t&&t.clearImmediate||this&&this.clearImmediate}).call(this,o(9))},function(t,e,o){(function(t,e){(function(t,o){"use strict";if(!t.setImmediate){var n,i=1,r={},a=!1,u=t.document,s=Object.getPrototypeOf&&Object.getPrototypeOf(t);s=s&&s.setTimeout?s:t,"[object process]"==={}.toString.call(t.process)?h():p()?f():t.MessageChannel?m():u&&"onreadystatechange"in u.createElement("script")?g():b(),s.setImmediate=c,s.clearImmediate=l}function c(t){"function"!==typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),o=0;o<e.length;o++)e[o]=arguments[o+1];var a={callback:t,args:e};return r[i]=a,n(i),i++}function l(t){delete r[t]}function d(t){var e=t.callback,n=t.args;switch(n.length){case 0:e();break;case 1:e(n[0]);break;case 2:e(n[0],n[1]);break;case 3:e(n[0],n[1],n[2]);break;default:e.apply(o,n);break}}function v(t){if(a)setTimeout(v,0,t);else{var e=r[t];if(e){a=!0;try{d(e)}finally{l(t),a=!1}}}}function h(){n=function(t){e.nextTick(function(){v(t)})}}function p(){if(t.postMessage&&!t.importScripts){var e=!0,o=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=o,e}}function f(){var e="setImmediate$"+Math.random()+"$",o=function(o){o.source===t&&"string"===typeof o.data&&0===o.data.indexOf(e)&&v(+o.data.slice(e.length))};t.addEventListener?t.addEventListener("message",o,!1):t.attachEvent("onmessage",o),n=function(o){t.postMessage(e+o,"*")}}function m(){var t=new MessageChannel;t.port1.onmessage=function(t){var e=t.data;v(e)},n=function(e){t.port2.postMessage(e)}}function g(){var t=u.documentElement;n=function(e){var o=u.createElement("script");o.onreadystatechange=function(){v(e),o.onreadystatechange=null,t.removeChild(o),o=null},t.appendChild(o)}}function b(){n=function(t){setTimeout(v,0,t)}}})("undefined"===typeof self?"undefined"===typeof t?this:t:self)}).call(this,o(9),o(21))},function(t,e,o){"use strict";(function(t){o.d(e,"b",function(){return M});var n=o(74),i=o(30);o(154);function r(t){return r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},r(t)}function a(t,e,o){return e in t?Object.defineProperty(t,e,{value:o,enumerable:!0,configurable:!0,writable:!0}):t[e]=o,t}var u='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_3d_rotation_24px"><path d="M7.52 21.48A10.487 10.487 0 0 1 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08a1.07 1.07 0 0 1-.4-.24.99.99 0 0 1-.26-.37c-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72c.13-.29.2-.61.2-.97 0-.19-.02-.38-.07-.56a1.67 1.67 0 0 0-.23-.51c-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31a2.098 2.098 0 0 0 .89-.75c.1-.15.17-.3.22-.46.05-.16.07-.32.07-.48 0-.36-.06-.68-.18-.96a1.78 1.78 0 0 0-.51-.69c-.2-.19-.47-.33-.77-.43C9.1 8.05 8.76 8 8.39 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34c.11-.09.23-.17.38-.22.15-.05.3-.08.48-.08.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49a.87.87 0 0 1-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09H7.5v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4.07.16.1.35.1.57 0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.43-.18-.92-.27-1.46-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27.45-.18.84-.43 1.16-.76.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57-.18-.47-.43-.87-.75-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.44 4.84 18.29 0 12 0z"/></symbol><symbol viewBox="0 0 24 24" id="ic_accessibility_24px"><path d="M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_accessible_24px"><circle cx="12" cy="4" r="2"/><path d="M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.35-.2-.75-.3-1.19-.26C10.76 7.11 10 8.04 10 9.09V15c0 1.1.9 2 2 2h5v5h2v-5.5c0-1.1-.9-2-2-2h-3v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1a5 5 0 1 0 5.9 5.9h-2.07z"/></symbol><symbol viewBox="0 0 24 24" id="ic_account_balance_24px"><path d="M4 10v7h3v-7H4zm6 0v7h3v-7h-3zM2 22h19v-3H2v3zm14-12v7h3v-7h-3zm-4.5-9L2 6v2h19V6l-9.5-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_account_balance_wallet_24px"><path d="M21 18v1c0 1.1-.9 2-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14c1.1 0 2 .9 2 2v1h-9a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_account_box_24px"><path d="M3 5v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5a2 2 0 0 0-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_account_circle_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2a7.2 7.2 0 0 1-6-3.22c.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08a7.2 7.2 0 0 1-6 3.22z"/></symbol><symbol viewBox="0 0 24 24" id="ic_add_shopping_cart_24px"><path d="M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-9.83-3.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4h-.01l-1.1 2-2.76 5H8.53l-.13-.27L6.16 6l-.95-2-.94-2H1v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.13 0-.25-.11-.25-.25z"/></symbol><symbol viewBox="0 0 24 24" id="ic_alarm_24px"><path d="M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 0 0 0-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_alarm_add_24px"><path d="M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 0 0 0-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_alarm_off_24px"><path d="M12 6c3.87 0 7 3.13 7 7 0 .84-.16 1.65-.43 2.4l1.52 1.52c.58-1.19.91-2.51.91-3.92a9 9 0 0 0-9-9c-1.41 0-2.73.33-3.92.91L9.6 6.43C10.35 6.16 11.16 6 12 6zm10-.28l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM2.92 2.29L1.65 3.57 2.98 4.9l-1.11.93 1.42 1.42 1.11-.94.8.8A8.964 8.964 0 0 0 3 13c0 4.97 4.02 9 9 9 2.25 0 4.31-.83 5.89-2.2l2.2 2.2 1.27-1.27L3.89 3.27l-.97-.98zm13.55 16.1C15.26 19.39 13.7 20 12 20c-3.87 0-7-3.13-7-7 0-1.7.61-3.26 1.61-4.47l9.86 9.86zM8.02 3.28L6.6 1.86l-.86.71 1.42 1.42.86-.71z"/></symbol><symbol viewBox="0 0 24 24" id="ic_alarm_on_24px"><path d="M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 0 0 0-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-1.46-5.47L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06-4.93 4.95z"/></symbol><symbol viewBox="0 0 24 24" id="ic_all_out_24px"><path d="M16.21 4.16l4 4v-4zm4 12l-4 4h4zm-12 4l-4-4v4zm-4-12l4-4h-4zm12.95-.95c-2.73-2.73-7.17-2.73-9.9 0s-2.73 7.17 0 9.9 7.17 2.73 9.9 0 2.73-7.16 0-9.9zm-1.1 8.8c-2.13 2.13-5.57 2.13-7.7 0s-2.13-5.57 0-7.7 5.57-2.13 7.7 0 2.13 5.57 0 7.7z" fill="#010101"/></symbol><symbol viewBox="0 0 24 24" id="ic_android_24px"><path d="M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71-.2-.2-.51-.2-.71 0l-1.48 1.48A5.84 5.84 0 0 0 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31A5.983 5.983 0 0 0 6 7h12c0-1.99-.97-3.75-2.47-4.84zM10 5H9V4h1v1zm5 0h-1V4h1v1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_announcement_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_aspect_ratio_24px"><path d="M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm14-6H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"/></symbol><symbol viewBox="0 0 24 24" id="ic_assessment_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_assignment_24px"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_assignment_ind_24px"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z"/></symbol><symbol viewBox="0 0 24 24" id="ic_assignment_late_24px"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-6 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_assignment_return_24px"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_assignment_returned_24px"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15l-5-5h3V9h4v4h3l-5 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_assignment_turned_in_24px"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_autorenew_24px"><path d="M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8A5.87 5.87 0 0 1 6 12c0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z"/></symbol><symbol viewBox="0 0 24 24" id="ic_backup_24px"><path d="M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_book_24px"><path d="M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_bookmark_24px"><path d="M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_bookmark_border_24px"><path d="M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_bug_report_24px"><path d="M20 8h-2.81a5.985 5.985 0 0 0-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_build_24px"><path d="M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cached_24px"><path d="M19 8l-4 4h3c0 3.31-2.69 6-6 6a5.87 5.87 0 0 1-2.8-.7l-1.46 1.46A7.93 7.93 0 0 0 12 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46A7.93 7.93 0 0 0 12 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_camera_enhance_24px"><path d="M9 3L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2h-3.17L15 3H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-1l1.25-2.75L16 13l-2.75-1.25L12 9l-1.25 2.75L8 13l2.75 1.25z"/></symbol><symbol viewBox="0 0 24 24" id="ic_card_giftcard_24px"><path d="M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68A3.01 3.01 0 0 0 9 2C7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_card_membership_24px"><path d="M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_card_travel_24px"><path d="M20 6h-3V4c0-1.11-.89-2-2-2H9c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_change_history_24px"><path d="M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_check_circle_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_chrome_reader_mode_24px"><path d="M13 12h7v1.5h-7zm0-2.5h7V11h-7zm0 5h7V16h-7zM21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15h-9V6h9v13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_class_24px"><path d="M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_code_24px"><path d="M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_compare_arrows_24px"><path d="M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_copyright_24px"><path d="M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91 1.05.34 1.7.34c.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_credit_card_24px"><path d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_dashboard_24px"><path d="M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_date_range_24px"><path d="M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_delete_24px"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_delete_forever_24px"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zm2.46-7.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_description_24px"><path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_dns_24px"><path d="M20 13H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM20 3H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h16c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_done_24px"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_done_all_24px"><path d="M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z"/></symbol><symbol viewBox="0 0 24 24" id="ic_donut_large_24px"><path d="M11 5.08V2c-5 .5-9 4.81-9 10s4 9.5 9 10v-3.08c-3-.48-6-3.4-6-6.92s3-6.44 6-6.92zM18.97 11H22c-.47-5-4-8.53-9-9v3.08C16 5.51 18.54 8 18.97 11zM13 18.92V22c5-.47 8.53-4 9-9h-3.03c-.43 3-2.97 5.49-5.97 5.92z"/></symbol><symbol viewBox="0 0 24 24" id="ic_donut_small_24px"><path d="M11 9.16V2c-5 .5-9 4.79-9 10s4 9.5 9 10v-7.16c-1-.41-2-1.52-2-2.84s1-2.43 2-2.84zM14.86 11H22c-.48-4.75-4-8.53-9-9v7.16c1 .3 1.52.98 1.86 1.84zM13 14.84V22c5-.47 8.52-4.25 9-9h-7.14c-.34.86-.86 1.54-1.86 1.84z"/></symbol><symbol viewBox="0 0 24 24" id="ic_eject_24px"><path d="M5 17h14v2H5zm7-12L5.33 15h13.34z"/></symbol><symbol viewBox="0 0 24 24" id="ic_euro_symbol_24px"><path d="M15 18.5A6.48 6.48 0 0 1 9.24 15H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24A6.49 6.49 0 0 1 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3A8.955 8.955 0 0 0 15 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06a8.262 8.262 0 0 0 0 2H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z"/></symbol><symbol viewBox="0 0 24 24" id="ic_event_24px"><path d="M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_event_seat_24px"><path d="M4 18v3h3v-3h10v3h3v-6H4zm15-8h3v3h-3zM2 10h3v3H2zm15 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_exit_to_app_24px"><path d="M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM19 3H5a2 2 0 0 0-2 2v4h2V5h14v14H5v-4H3v4a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_explore_24px"><path d="M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z"/></symbol><symbol viewBox="0 0 24 24" id="ic_extension_24px"><path d="M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5a2.5 2.5 0 0 0-5 0V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5a2.7 2.7 0 0 1 2.7-2.7 2.7 2.7 0 0 1 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5a2.5 2.5 0 0 0 0-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_face_24px"><path d="M9 11.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5zm6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37a9.974 9.974 0 0 0 10.41 3.97c.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_favorite_24px"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></symbol><symbol viewBox="0 0 24 24" id="ic_favorite_border_24px"><path d="M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"/></symbol><symbol viewBox="0 0 24 24" id="ic_feedback_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_find_in_page_24px"><path d="M20 19.59V8l-6-6H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_find_replace_24px"><path d="M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05A6.976 6.976 0 0 0 11 4c-3.53 0-6.43 2.61-6.92 6H6.1A5 5 0 0 1 11 6zm5.64 9.14A6.89 6.89 0 0 0 17.92 12H15.9a5 5 0 0 1-4.9 4c-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05A6.976 6.976 0 0 0 11 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fingerprint_24px"><path d="M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41a.51.51 0 0 1-.68-.2.506.506 0 0 1 .2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67a.49.49 0 0 1-.44.28zM3.5 9.72a.5.5 0 0 1-.41-.79c.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25a.5.5 0 0 1-.12.7.5.5 0 0 1-.7-.12 9.388 9.388 0 0 0-3.39-2.94c-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07a.47.47 0 0 1-.35-.15c-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39-2.57 0-4.66 1.97-4.66 4.39 0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1a7.297 7.297 0 0 1-2.17-5.22c0-1.62 1.38-2.94 3.08-2.94 1.7 0 3.08 1.32 3.08 2.94 0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29a11.14 11.14 0 0 1-.73-3.96c0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flight_land_24px"><path d="M2.5 19h19v2h-19zm7.18-5.73l4.35 1.16 5.31 1.42c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l1.6.43 5.31 1.43z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flight_takeoff_24px"><path d="M2.5 19h19v2h-19zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 1.82 3.16.77 1.33 1.6-.43 5.31-1.42 4.35-1.16L21 11.49c.81-.23 1.28-1.05 1.07-1.85z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flip_to_back_24px"><path d="M9 7H7v2h2V7zm0 4H7v2h2v-2zm0-8a2 2 0 0 0-2 2h2V3zm4 12h-2v2h2v-2zm6-12v2h2c0-1.1-.9-2-2-2zm-6 0h-2v2h2V3zM9 17v-2H7a2 2 0 0 0 2 2zm10-4h2v-2h-2v2zm0-4h2V7h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zM5 7H3v12a2 2 0 0 0 2 2h12v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flip_to_front_24px"><path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm2 4v-2H3a2 2 0 0 0 2 2zM3 9h2V7H3v2zm12 12h2v-2h-2v2zm4-18H9a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_g_translate_24px"><path d="M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74a9.18 9.18 0 0 1-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_gavel_24px"><path d="M1 21h12v2H1zM5.245 8.07l2.83-2.827 14.14 14.142-2.828 2.828zM12.317 1l5.657 5.656-2.83 2.83-5.654-5.66zM3.825 9.485l5.657 5.657-2.828 2.828-5.657-5.657z"/></symbol><symbol viewBox="0 0 24 24" id="ic_get_app_24px"><path d="M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_gif_24px"><path d="M11.5 9H13v6h-1.5zM9 9H6c-.6 0-1 .5-1 1v4c0 .5.4 1 1 1h3c.6 0 1-.5 1-1v-2H8.5v1.5h-2v-3H10V10c0-.5-.4-1-1-1zm10 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_grade_24px"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></symbol><symbol viewBox="0 0 24 24" id="ic_group_work_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5zM9.5 8a2.5 2.5 0 0 1 5 0 2.5 2.5 0 0 1-5 0zm6.5 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_help_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"/></symbol><symbol viewBox="0 0 24 24" id="ic_help_outline_24px"><path d="M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14a4 4 0 0 0-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5a4 4 0 0 0-4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_highlight_off_24px"><path d="M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_history_24px"><path d="M13 3a9 9 0 0 0-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0 0 13 21a9 9 0 0 0 0-18zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_home_24px"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hourglass_empty_24px"><path d="M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hourglass_full_24px"><path d="M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_http_24px"><path d="M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zm9-1.5H18v6h1.5v-2h2c.8 0 1.5-.7 1.5-1.5v-1c0-.8-.7-1.5-1.5-1.5zm0 2.5h-2v-1h2v1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_https_24px"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_important_devices_24px"><path d="M23 11.01L18 11c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-9c0-.55-.45-.99-1-.99zM23 20h-5v-7h5v7zM20 2H2C.89 2 0 2.89 0 4v12a2 2 0 0 0 2 2h7v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V4a2 2 0 0 0-2-2zm-8.03 7L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z"/></symbol><symbol viewBox="0 0 24 24" id="ic_info_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_info_outline_24px"><path d="M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_input_24px"><path d="M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14a2 2 0 0 0-2-2zM11 16l4-4-4-4v3H1v2h10v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_invert_colors_24px"><path d="M17.66 7.93L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31A7.98 7.98 0 0 0 12 21.58c2.05 0 4.1-.78 5.66-2.34 3.12-3.12 3.12-8.19 0-11.31zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59s.62-3.11 1.76-4.24L12 5.1v14.49z"/></symbol><symbol viewBox="0 0 24 24" id="ic_label_24px"><path d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_label_outline_24px"><path d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84L22 12l-4.37-6.16zM16 17H5V7h11l3.55 5L16 17z"/></symbol><symbol viewBox="0 0 24 24" id="ic_language_24px"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95a15.65 15.65 0 0 0-1.38-3.56A8.03 8.03 0 0 1 18.92 8zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56A7.987 7.987 0 0 1 5.08 16zm2.95-8H5.08a7.987 7.987 0 0 1 4.33-3.56A15.65 15.65 0 0 0 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 0 1-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z"/></symbol><symbol viewBox="0 0 24 24" id="ic_launch_24px"><path d="M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_lightbulb_outline_24px"><path d="M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6A4.997 4.997 0 0 1 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_line_style_24px"><path d="M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_line_weight_24px"><path d="M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_list_24px"><path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_lock_24px"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_lock_open_24px"><path d="M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6h1.9c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm0 12H6V10h12v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_lock_outline_24px"><path d="M12 17c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-9h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM18 20H6V10h12v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_loyalty_24px"><path d="M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zm11.77 8.27L13 19.54l-4.27-4.27A2.5 2.5 0 0 1 10.5 11c.69 0 1.32.28 1.77.74l.73.72.73-.73a2.5 2.5 0 0 1 3.54 3.54z"/></symbol><symbol viewBox="0 0 24 24" id="ic_markunread_mailbox_24px"><path d="M20 6H10v6H8V4h6V0H6v6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_motorcycle_24px"><path d="M19.44 9.03L15.41 5H11v2h3.59l2 2H5c-2.8 0-5 2.2-5 5s2.2 5 5 5c2.46 0 4.45-1.69 4.9-4h1.65l2.77-2.77c-.21.54-.32 1.14-.32 1.77 0 2.8 2.2 5 5 5s5-2.2 5-5c0-2.65-1.97-4.77-4.56-4.97zM7.82 15C7.4 16.15 6.28 17 5 17c-1.63 0-3-1.37-3-3s1.37-3 3-3c1.28 0 2.4.85 2.82 2H5v2h2.82zM19 17c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_note_add_24px"><path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_offline_pin_24px"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 16H7v-2h10v2zm-6.7-4L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_opacity_24px"><path d="M17.66 8L12 2.35 6.34 8A8.02 8.02 0 0 0 4 13.64c0 2 .78 4.11 2.34 5.67a7.99 7.99 0 0 0 11.32 0c1.56-1.56 2.34-3.67 2.34-5.67S19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_open_in_browser_24px"><path d="M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v-2H5V8h14v10h-4v2h4c1.1 0 2-.9 2-2V6a2 2 0 0 0-2-2zm-7 6l-4 4h3v6h2v-6h3l-4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_open_in_new_24px"><path d="M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_open_with_24px"><path d="M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pageview_24px"><path d="M11.5 9a2.5 2.5 0 0 0 0 5 2.5 2.5 0 0 0 0-5zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-3.21 14.21l-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pan_tool_24px"><path d="M23 5.5V20c0 2.2-1.8 4-4 4h-7.3c-1.08 0-2.1-.43-2.85-1.19L1 14.83s1.26-1.23 1.3-1.25c.22-.19.49-.29.79-.29.22 0 .42.06.6.16.04.01 4.31 2.46 4.31 2.46V4c0-.83.67-1.5 1.5-1.5S11 3.17 11 4v7h1V1.5c0-.83.67-1.5 1.5-1.5S15 .67 15 1.5V11h1V2.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V11h1V5.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_payment_24px"><path d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_perm_camera_mic_24px"><path d="M20 5h-3.17L15 3H9L7.17 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h7c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-6 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_perm_contact_calendar_24px"><path d="M19 3h-1V1h-2v2H8V1H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_perm_data_setting_24px"><path d="M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49 0-.17-.01-.33-.04-.49l1.06-.83a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83a3.908 3.908 0 0 0 0 .98l-1.06.83a.26.26 0 0 0-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_perm_device_information_24px"><path d="M13 7h-2v2h2V7zm0 4h-2v6h2v-6zm4-9.99L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_perm_identity_24px"><path d="M12 5.9a2.1 2.1 0 1 1 0 4.2 2.1 2.1 0 0 1 0-4.2m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_perm_media_24px"><path d="M2 6H0v5h.01L0 20c0 1.1.9 2 2 2h18v-2H2V6zm20-2h-8l-2-2H6c-1.1 0-1.99.9-1.99 2L4 16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_perm_phone_msg_24px"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.074 15.074 0 0 1-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM12 3v10l3-3h6V3h-9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_perm_scan_wifi_24px"><path d="M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pets_24px"><circle cx="4.5" cy="9.5" r="2.5"/><circle cx="9" cy="5.5" r="2.5"/><circle cx="15" cy="5.5" r="2.5"/><circle cx="19.5" cy="9.5" r="2.5"/><path d="M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_picture_in_picture_24px"><path d="M19 7h-8v6h8V7zm2-4H3c-1.1 0-2 .9-2 2v14c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98V5c0-1.1-.9-2-2-2zm0 16.01H3V4.98h18v14.03z"/></symbol><symbol viewBox="0 0 24 24" id="ic_picture_in_picture_alt_24px"><path d="M19 11h-8v6h8v-6zm4 8V4.98C23 3.88 22.1 3 21 3H3c-1.1 0-2 .88-2 1.98V19c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zm-2 .02H3V4.97h18v14.05z"/></symbol><symbol viewBox="0 0 24 24" id="ic_play_for_work_24px"><path d="M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_polymer_24px"><path d="M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_power_settings_new_24px"><path d="M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42A6.92 6.92 0 0 1 19 12c0 3.87-3.13 7-7 7A6.995 6.995 0 0 1 7.58 6.58L6.17 5.17A8.932 8.932 0 0 0 3 12a9 9 0 0 0 18 0c0-2.74-1.23-5.18-3.17-6.83z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pregnant_woman_24px"><path d="M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9a3.285 3.285 0 0 0-2-3c0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_print_24px"><path d="M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_query_builder_24px"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></symbol><symbol viewBox="0 0 24 24" id="ic_question_answer_24px"><path d="M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_receipt_24px"><path d="M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z"/></symbol><symbol viewBox="0 0 24 24" id="ic_record_voice_over_24px"><circle cx="9" cy="9" r="4"/><path d="M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm7.76-9.64l-1.68 1.69c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_redeem_24px"><path d="M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68A3.01 3.01 0 0 0 9 2C7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_remove_shopping_cart_24px"><path d="M22.73 22.73L2.77 2.77 2 2l-.73-.73L0 2.54l4.39 4.39 2.21 4.66-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h7.46l1.38 1.38A1.997 1.997 0 0 0 17 22c.67 0 1.26-.33 1.62-.84L21.46 24l1.27-1.27zM7.42 15c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h2.36l2 2H7.42zm8.13-2c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 20 4H6.54l9.01 9zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_reorder_24px"><path d="M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_report_problem_24px"><path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_restore_24px"><path d="M13 3a9 9 0 0 0-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0 0 13 21a9 9 0 0 0 0-18zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_restore_page_24px"><path d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5a3.5 3.5 0 0 0-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_room_24px"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_rounded_corner_24px"><path d="M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 8c0-2.76-2.24-5-5-5h-5v2h5c1.65 0 3 1.35 3 3v5h2V8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_rowing_24px"><path d="M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6.01 17 7.02 17 8.26v5.75a3 3 0 0 1-.92 2.16l-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z"/></symbol><symbol viewBox="0 0 24 24" id="ic_schedule_24px"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></symbol><symbol viewBox="0 0 24 24" id="ic_search_24px"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_24px"><path d="M19.43 12.98c.04-.32.07-.64.07-.98s-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.3-.61-.22l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65A.488.488 0 0 0 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.23-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.23.09.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_applications_24px"><path d="M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-7H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm-1.75 9c0 .23-.02.46-.05.68l1.48 1.16c.13.11.17.3.08.45l-1.4 2.42c-.09.15-.27.21-.43.15l-1.74-.7c-.36.28-.76.51-1.18.69l-.26 1.85c-.03.17-.18.3-.35.3h-2.8c-.17 0-.32-.13-.35-.29l-.26-1.85c-.43-.18-.82-.41-1.18-.69l-1.74.7c-.16.06-.34 0-.43-.15l-1.4-2.42a.353.353 0 0 1 .08-.45l1.48-1.16c-.03-.23-.05-.46-.05-.69 0-.23.02-.46.05-.68l-1.48-1.16a.353.353 0 0 1-.08-.45l1.4-2.42c.09-.15.27-.21.43-.15l1.74.7c.36-.28.76-.51 1.18-.69l.26-1.85c.03-.17.18-.3.35-.3h2.8c.17 0 .32.13.35.29l.26 1.85c.43.18.82.41 1.18.69l1.74-.7c.16-.06.34 0 .43.15l1.4 2.42c.09.15.05.34-.08.45l-1.48 1.16c.03.23.05.46.05.69z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_backup_restore_24px"><path d="M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9a9 9 0 0 0-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7a6.995 6.995 0 0 1-11.06 5.7l-1.42 1.44A9 9 0 1 0 12 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_bluetooth_24px"><path d="M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_brightness_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_cell_24px"><path d="M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM16 .01L8 0C6.9 0 6 .9 6 2v16c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-1.99-2-1.99zM16 16H8V4h8v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_ethernet_24px"><path d="M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_input_antenna_24px"><path d="M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29a2.5 2.5 0 0 0-5 0c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2a9 9 0 0 1 18 0h2c0-6.07-4.93-11-11-11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_input_component_24px"><path d="M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_input_composite_24px"><path d="M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2H9v2zm-8 0c0 1.3.84 2.4 2 2.82V23h2v-4.18C6.16 18.4 7 17.3 7 16v-2H1v2zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 14c0 1.3.84 2.4 2 2.82V23h2v-4.18c1.16-.41 2-1.51 2-2.82v-2h-6v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_input_hdmi_24px"><path d="M18 7V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v3H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_input_svideo_24px"><path d="M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_overscan_24px"><path d="M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm7-13H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_phone_24px"><path d="M13 9h-2v2h2V9zm4 0h-2v2h2V9zm3 6.5c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.074 15.074 0 0 1-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 9v2h2V9h-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_power_24px"><path d="M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45A5.97 5.97 0 0 1 18 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44A7.96 7.96 0 0 0 4 11c0 4.42 3.58 8 8 8s8-3.58 8-8a7.96 7.96 0 0 0-3.44-6.56zM15 24h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_remote_24px"><path d="M15 9H9c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V10c0-.55-.45-1-1-1zm-3 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41a5.022 5.022 0 0 1 7.08 0l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_voice_24px"><path d="M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z"/></symbol><symbol viewBox="0 0 24 24" id="ic_shop_24px"><path d="M16 6V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H2v13c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z"/></symbol><symbol viewBox="0 0 24 24" id="ic_shop_two_24px"><path d="M3 9H1v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2H3V9zm15-4V3c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H5v11c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_shopping_basket_24px"><path d="M17.21 9l-4.38-6.56a.993.993 0 0 0-.83-.42c-.32 0-.64.14-.83.43L6.79 9H2c-.55 0-1 .45-1 1 0 .09.01.18.04.27l2.54 9.27c.23.84 1 1.46 1.92 1.46h13c.92 0 1.69-.62 1.93-1.46l2.54-9.27L23 10c0-.55-.45-1-1-1h-4.79zM9 9l3-4.4L15 9H9zm3 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_shopping_cart_24px"><path d="M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 20 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_speaker_notes_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_speaker_notes_off_24px"><path d="M10.54 11l-.54-.54L7.54 8 6 6.46 2.38 2.84 1.27 1.73 0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 17.54 18l-7-7zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm14-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99C21.14 17.95 22 17.08 22 16V4c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_spellcheck_24px"><path d="M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z"/></symbol><symbol viewBox="0 0 24 24" id="ic_stars_24px"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z"/></symbol><symbol viewBox="0 0 24 24" id="ic_store_24px"><path d="M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_subject_24px"><path d="M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_supervisor_account_24px"><path d="M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7a2.5 2.5 0 0 0 0 5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5C7.34 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_swap_horiz_24px"><path d="M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_swap_vert_24px"><path d="M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_swap_vertical_circle_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm11 6L14 18.5 10.5 15H13v-4h2v4h2.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_system_update_alt_24px"><path d="M12 16.5l4-4h-3v-9h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V5.49h6V3.5H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-14c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tab_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tab_unselected_24px"><path d="M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_theaters_24px"><path d="M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_thumb_down_24px"><path d="M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v1.91l.01.01L1 14c0 1.1.9 2 2 2h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm4 0v12h4V3h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_thumb_up_24px"><path d="M1 21h4V9H1v12zm22-11c0-1.1-.9-2-2-2h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-1.91l-.01-.01L23 10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_thumbs_up_down_24px"><path d="M12 6c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38 0 .44 4.94C.17 5.21 0 5.59 0 6v6.5c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6zm10.5 4h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55V18c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06v-6.5c0-.83-.67-1.5-1.5-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_timeline_24px"><path d="M23 8c0 1.1-.9 2-2 2a1.7 1.7 0 0 1-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56A1.7 1.7 0 0 1 19 8c0-1.1.9-2 2-2s2 .9 2 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_toc_24px"><path d="M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_today_24px"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_toll_24px"><path d="M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12a5.99 5.99 0 0 1 4-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09A5.99 5.99 0 0 1 3 12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_touch_app_24px"><path d="M9 11.24V7.5a2.5 2.5 0 0 1 5 0v3.74c1.21-.81 2-2.18 2-3.74C16 5.01 13.99 3 11.5 3S7 5.01 7 7.5c0 1.56.79 2.93 2 3.74zm9.84 4.63l-4.54-2.26c-.17-.07-.35-.11-.54-.11H13v-6c0-.83-.67-1.5-1.5-1.5S10 6.67 10 7.5v10.74l-3.43-.72c-.08-.01-.15-.03-.24-.03-.31 0-.59.13-.79.33l-.79.8 4.94 4.94c.27.27.65.44 1.06.44h6.79c.75 0 1.33-.55 1.44-1.28l.75-5.27c.01-.07.02-.14.02-.2 0-.62-.38-1.16-.91-1.38z"/></symbol><symbol viewBox="0 0 24 24" id="ic_track_changes_24px"><path d="M19.07 4.93l-1.41 1.41A8.014 8.014 0 0 1 20 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10a9.97 9.97 0 0 0-2.93-7.07z"/></symbol><symbol viewBox="0 0 24 24" id="ic_translate_24px"><path d="M12.87 15.07l-2.54-2.51.03-.03A17.52 17.52 0 0 0 14.07 6H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z"/></symbol><symbol viewBox="0 0 24 24" id="ic_trending_down_24px"><path d="M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_trending_flat_24px"><path d="M22 12l-4-4v3H3v2h15v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_trending_up_24px"><path d="M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_turned_in_24px"><path d="M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_turned_in_not_24px"><path d="M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2zm0 15l-5-2.18L7 18V5h10v13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_update_24px"><path d="M21 10.12h-6.78l2.74-2.82c-2.73-2.7-7.15-2.8-9.88-.1a6.875 6.875 0 0 0 0 9.79 7.02 7.02 0 0 0 9.88 0C18.32 15.65 19 14.08 19 12.1h2c0 1.98-.88 4.55-2.64 6.29-3.51 3.48-9.21 3.48-12.72 0-3.5-3.47-3.53-9.11-.02-12.58a8.987 8.987 0 0 1 12.65 0L21 3v7.12zM12.5 8v4.25l3.5 2.08-.72 1.21L11 13V8h1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_verified_user_24px"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_agenda_24px"><path d="M20 13H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm0-10H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_array_24px"><path d="M4 18h3V5H4v13zM18 5v13h3V5h-3zM8 18h9V5H8v13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_carousel_24px"><path d="M7 19h10V4H7v15zm-5-2h4V6H2v11zM18 6v11h4V6h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_column_24px"><path d="M10 18h5V5h-5v13zm-6 0h5V5H4v13zM16 5v13h5V5h-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_day_24px"><path d="M2 21h19v-3H2v3zM20 8H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h17c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zM2 3v3h19V3H2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_headline_24px"><path d="M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_list_24px"><path d="M4 14h4v-4H4v4zm0 5h4v-4H4v4zM4 9h4V5H4v4zm5 5h12v-4H9v4zm0 5h12v-4H9v4zM9 5v4h12V5H9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_module_24px"><path d="M4 11h5V5H4v6zm0 7h5v-6H4v6zm6 0h5v-6h-5v6zm6 0h5v-6h-5v6zm-6-7h5V5h-5v6zm6-6v6h5V5h-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_quilt_24px"><path d="M10 18h5v-6h-5v6zm-6 0h5V5H4v13zm12 0h5v-6h-5v6zM10 5v6h11V5H10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_stream_24px"><path d="M4 18h17v-6H4v6zM4 5v6h17V5H4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_week_24px"><path d="M6 5H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm14 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-7 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_visibility_24px"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_visibility_off_24px"><path d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46A11.804 11.804 0 0 0 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"/></symbol><symbol viewBox="0 0 24 24" id="ic_watch_later_24px"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_work_24px"><path d="M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_youtube_searched_for_24px"><path d="M17.01 14h-.8l-.27-.27a6.45 6.45 0 0 0 1.57-4.23c0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51a4.5 4.5 0 0 1 9 0 4.507 4.507 0 0 1-6.32 4.12L7.71 15.1a6.474 6.474 0 0 0 7.52-.67l.27.27v.79l5.01 4.99L22 19l-4.99-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_zoom_in_24px"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm2.5-4h-2v2H9v-2H7V9h2V7h1v2h2v1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_zoom_out_24px"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7z"/></symbol></svg>',s='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_add_alert_24px"><path d="M10.01 21.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zm8.87-4.19V11c0-3.25-2.25-5.97-5.29-6.69v-.72C13.59 2.71 12.88 2 12 2s-1.59.71-1.59 1.59v.72A6.873 6.873 0 0 0 5.12 11v5.82L3 18.94V20h18v-1.06l-2.12-2.12zM16 13.01h-3v3h-2v-3H8V11h3V8h2v3h3v2.01z"/></symbol><symbol viewBox="0 0 24 24" id="ic_error_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_error_outline_24px"><path d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_warning_24px"><path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"/></symbol></svg>',c='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_add_to_queue_24px"><path d="M21 3H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm0 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airplay_24px"><path d="M6 22h12l-6-6zM21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V5h18v12h-4v2h4c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_album_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_art_track_24px"><path fill="#010101" d="M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zm-2-8v6c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2zm-1.5 6l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_av_timer_24px"><path d="M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9a9 9 0 0 0 0-18h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_branding_watermark_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16h-9v-6h9v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_call_to_action_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3v-3h18v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_closed_caption_24px"><path d="M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 7H9.5v-.5h-2v3h2V13H11v1c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1zm7 0h-1.5v-.5h-2v3h2V13H18v1c0 .55-.45 1-1 1h-3c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_equalizer_24px"><path d="M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_explicit_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h4v2h-4v2h4v2H9V7h6v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fast_forward_24px"><path d="M4 18l8.5-6L4 6v12zm9-12v12l8.5-6L13 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fast_rewind_24px"><path d="M11 18V6l-8.5 6 8.5 6zm.5-6l8.5 6V6l-8.5 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_featured_play_list_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 8H3V9h9v2zm0-4H3V5h9v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_featured_video_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 9H3V5h9v7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fiber_dvr_24px"><path d="M17.5 10.5h2v1h-2zm-13 0h2v3h-2zM21 3H3c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5c0-1.11-.89-2-2-2zM8 13.5c0 .85-.65 1.5-1.5 1.5H3V9h3.5c.85 0 1.5.65 1.5 1.5v3zm4.62 1.5h-1.5L9.37 9h1.5l1 3.43 1-3.43h1.5l-1.75 6zM21 11.5c0 .6-.4 1.15-.9 1.4L21 15h-1.5l-.85-2H17.5v2H16V9h3.5c.85 0 1.5.65 1.5 1.5v1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fiber_manual_record_24px"><circle fill="#010101" cx="12" cy="12" r="8"/></symbol><symbol viewBox="0 0 24 24" id="ic_fiber_new_24px"><path d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM8.5 15H7.3l-2.55-3.5V15H3.5V9h1.25l2.5 3.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7 3.74c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fiber_pin_24px"><path d="M5.5 10.5h2v1h-2zM20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zM9 11.5c0 .85-.65 1.5-1.5 1.5h-2v2H4V9h3.5c.85 0 1.5.65 1.5 1.5v1zm3.5 3.5H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fiber_smart_record_24px"><g fill="#010101"><circle cx="9" cy="12" r="8"/><path d="M17 4.26v2.09a5.99 5.99 0 0 1 0 11.3v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z"/></g></symbol><symbol viewBox="0 0 24 24" id="ic_forward_10_24px"><path d="M4 13c0 4.4 3.6 8 8 8s8-3.6 8-8h-2c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6v4l5-5-5-5v4c-4.4 0-8 3.6-8 8zm6.8 3H10v-3.3L9 13v-.7l1.8-.6h.1V16zm4.3-1.8c0 .3 0 .6-.1.8l-.3.6s-.3.3-.5.3-.4.1-.6.1-.4 0-.6-.1-.3-.2-.5-.3-.2-.3-.3-.6-.1-.5-.1-.8v-.7c0-.3 0-.6.1-.8l.3-.6s.3-.3.5-.3.4-.1.6-.1.4 0 .6.1.3.2.5.3.2.3.3.6.1.5.1.8v.7zm-.8-.8v-.5s-.1-.2-.1-.3-.1-.1-.2-.2-.2-.1-.3-.1-.2 0-.3.1l-.2.2s-.1.2-.1.3v2s.1.2.1.3.1.1.2.2.2.1.3.1.2 0 .3-.1l.2-.2s.1-.2.1-.3v-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_forward_30_24px"><path d="M9.6 13.5h.4c.2 0 .4-.1.5-.2s.2-.2.2-.4v-.2s-.1-.1-.1-.2-.1-.1-.2-.1h-.5s-.1.1-.2.1-.1.1-.1.2v.2h-1c0-.2 0-.3.1-.5s.2-.3.3-.4.3-.2.4-.2.4-.1.5-.1c.2 0 .4 0 .6.1s.3.1.5.2.2.2.3.4.1.3.1.5v.3s-.1.2-.1.3-.1.2-.2.2-.2.1-.3.2c.2.1.4.2.5.4s.2.4.2.6c0 .2 0 .4-.1.5s-.2.3-.3.4-.3.2-.5.2-.4.1-.6.1c-.2 0-.4 0-.5-.1s-.3-.1-.5-.2-.2-.2-.3-.4-.1-.4-.1-.6h.8v.2s.1.1.1.2.1.1.2.1h.5s.1-.1.2-.1.1-.1.1-.2v-.5s-.1-.1-.1-.2-.1-.1-.2-.1h-.6v-.7zm5.7.7c0 .3 0 .6-.1.8l-.3.6s-.3.3-.5.3-.4.1-.6.1-.4 0-.6-.1-.3-.2-.5-.3-.2-.3-.3-.6-.1-.5-.1-.8v-.7c0-.3 0-.6.1-.8l.3-.6s.3-.3.5-.3.4-.1.6-.1.4 0 .6.1.3.2.5.3.2.3.3.6.1.5.1.8v.7zm-.9-.8v-.5s-.1-.2-.1-.3-.1-.1-.2-.2-.2-.1-.3-.1-.2 0-.3.1l-.2.2s-.1.2-.1.3v2s.1.2.1.3.1.1.2.2.2.1.3.1.2 0 .3-.1l.2-.2s.1-.2.1-.3v-1.5zM4 13c0 4.4 3.6 8 8 8s8-3.6 8-8h-2c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6v4l5-5-5-5v4c-4.4 0-8 3.6-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_forward_5_24px"><path d="M4 13c0 4.4 3.6 8 8 8s8-3.6 8-8h-2c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6v4l5-5-5-5v4c-4.4 0-8 3.6-8 8zm6.7.9l.2-2.2h2.4v.7h-1.7l-.1.9s.1 0 .1-.1.1 0 .1-.1.1 0 .2 0h.2c.2 0 .4 0 .5.1s.3.2.4.3.2.3.3.5.1.4.1.6c0 .2 0 .4-.1.5s-.1.3-.3.5-.3.2-.5.3-.4.1-.6.1c-.2 0-.4 0-.5-.1s-.3-.1-.5-.2-.2-.2-.3-.4-.1-.3-.1-.5h.8c0 .2.1.3.2.4s.2.1.4.1c.1 0 .2 0 .3-.1l.2-.2s.1-.2.1-.3v-.6l-.1-.2-.2-.2s-.2-.1-.3-.1h-.2s-.1 0-.2.1-.1 0-.1.1-.1.1-.1.1h-.6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_games_24px"><path d="M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hd_24px"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-8 12H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hearing_24px"><path d="M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55A4 4 0 0 0 21 18h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0z"/></symbol><symbol viewBox="0 0 24 24" id="ic_high_quality_24px"><path d="M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 11H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7-1c0 .55-.45 1-1 1h-.75v1.5h-1.5V15H14c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v4zm-3.5-.5h2v-3h-2v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_library_add_24px"><path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_library_books_24px"><path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_library_music_24px"><path d="M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 5h-3v5.5a2.5 2.5 0 0 1-5 0 2.5 2.5 0 0 1 2.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_loop_24px"><path d="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0 0 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 0 0 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mic_24px"><path d="M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mic_none_24px"><path d="M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1.2-9.1c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2-.66 0-1.2-.54-1.2-1.2V4.9zm6.5 6.1c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mic_off_24px"><path d="M19 11h-1.7c0 .74-.16 1.43-.43 2.05l1.23 1.23c.56-.98.9-2.09.9-3.28zm-4.02.17c0-.06.02-.11.02-.17V5c0-1.66-1.34-3-3-3S9 3.34 9 5v.18l5.98 5.99zM4.27 3L3 4.27l6.01 6.01V11c0 1.66 1.33 3 2.99 3 .22 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c.91-.13 1.77-.45 2.54-.9L19.73 21 21 19.73 4.27 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_movie_24px"><path d="M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_music_video_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03A3.003 3.003 0 0 1 11 18c-1.66 0-3-1.34-3-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_new_releases_24px"><path d="M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_not_interested_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31A7.902 7.902 0 0 1 12 20zm6.31-3.1L7.1 5.69A7.902 7.902 0 0 1 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_note_24px"><path d="M22 10l-6-6H4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99l16-.01c1.1 0 2-.89 2-1.99v-8zm-7-4.5l5.5 5.5H15V5.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pause_24px"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pause_circle_filled_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pause_circle_outline_24px"><path d="M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_play_arrow_24px"><path d="M8 5v14l11-7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_play_circle_filled_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_play_circle_outline_24px"><path d="M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_playlist_add_24px"><path d="M14 10H2v2h12v-2zm0-4H2v2h12V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM2 16h8v-2H2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_playlist_add_check_24px"><path d="M14 10H2v2h12v-2zm0-4H2v2h12V6zM2 16h8v-2H2v2zm19.5-4.5L23 13l-6.99 7-4.51-4.5L13 14l3.01 3 5.49-5.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_playlist_play_24px"><path d="M19 9H2v2h17V9zm0-4H2v2h17V5zM2 15h13v-2H2v2zm15-2v6l5-3-5-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_queue_24px"><path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_queue_music_24px"><path d="M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_queue_play_next_24px"><path d="M21 3H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h5v2h8v-2h2v-2H3V5h18v8h2V5a2 2 0 0 0-2-2zm-8 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8l-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z"/></symbol><symbol viewBox="0 0 24 24" id="ic_radio_24px"><path d="M3.24 6.15C2.51 6.43 2 7.17 2 8v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8c0-1.11-.89-2-2-2H8.3l8.26-3.34L15.88 1 3.24 6.15zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_recent_actors_24px"><path d="M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM14 5H2c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z"/></symbol><symbol viewBox="0 0 24 24" id="ic_remove_from_queue_24px"><path d="M21 3H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm0 14H3V5h18v12zm-5-7v2H8v-2h8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_repeat_24px"><path d="M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_repeat_one_24px"><path d="M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_replay_10_24px"><path d="M12 5V1L7 6l5 5V7c3.3 0 6 2.7 6 6s-2.7 6-6 6-6-2.7-6-6H4c0 4.4 3.6 8 8 8s8-3.6 8-8-3.6-8-8-8zm-1.1 11H10v-3.3L9 13v-.7l1.8-.6h.1V16zm4.3-1.8c0 .3 0 .6-.1.8l-.3.6s-.3.3-.5.3-.4.1-.6.1-.4 0-.6-.1-.3-.2-.5-.3-.2-.3-.3-.6-.1-.5-.1-.8v-.7c0-.3 0-.6.1-.8l.3-.6s.3-.3.5-.3.4-.1.6-.1.4 0 .6.1c.2.1.3.2.5.3s.2.3.3.6.1.5.1.8v.7zm-.9-.8v-.5s-.1-.2-.1-.3-.1-.1-.2-.2-.2-.1-.3-.1-.2 0-.3.1l-.2.2s-.1.2-.1.3v2s.1.2.1.3.1.1.2.2.2.1.3.1.2 0 .3-.1l.2-.2s.1-.2.1-.3v-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_replay_24px"><path d="M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_replay_30_24px"><path d="M12 5V1L7 6l5 5V7c3.3 0 6 2.7 6 6s-2.7 6-6 6-6-2.7-6-6H4c0 4.4 3.6 8 8 8s8-3.6 8-8-3.6-8-8-8zm-2.4 8.5h.4c.2 0 .4-.1.5-.2s.2-.2.2-.4v-.2s-.1-.1-.1-.2-.1-.1-.2-.1h-.5s-.1.1-.2.1-.1.1-.1.2v.2h-1c0-.2 0-.3.1-.5s.2-.3.3-.4.3-.2.4-.2.4-.1.5-.1c.2 0 .4 0 .6.1s.3.1.5.2.2.2.3.4.1.3.1.5v.3s-.1.2-.1.3-.1.2-.2.2-.2.1-.3.2c.2.1.4.2.5.4s.2.4.2.6c0 .2 0 .4-.1.5s-.2.3-.3.4-.3.2-.5.2-.4.1-.6.1c-.2 0-.4 0-.5-.1s-.3-.1-.5-.2-.2-.2-.3-.4-.1-.4-.1-.6h.8v.2s.1.1.1.2.1.1.2.1h.5s.1-.1.2-.1.1-.1.1-.2v-.5s-.1-.1-.1-.2-.1-.1-.2-.1h-.6v-.7zm5.7.7c0 .3 0 .6-.1.8l-.3.6s-.3.3-.5.3-.4.1-.6.1-.4 0-.6-.1-.3-.2-.5-.3-.2-.3-.3-.6-.1-.5-.1-.8v-.7c0-.3 0-.6.1-.8l.3-.6s.3-.3.5-.3.4-.1.6-.1.4 0 .6.1.3.2.5.3.2.3.3.6.1.5.1.8v.7zm-.8-.8v-.5c0-.1-.1-.2-.1-.3s-.1-.1-.2-.2-.2-.1-.3-.1-.2 0-.3.1l-.2.2s-.1.2-.1.3v2s.1.2.1.3.1.1.2.2.2.1.3.1.2 0 .3-.1l.2-.2s.1-.2.1-.3v-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_replay_5_24px"><path d="M12 5V1L7 6l5 5V7c3.3 0 6 2.7 6 6s-2.7 6-6 6-6-2.7-6-6H4c0 4.4 3.6 8 8 8s8-3.6 8-8-3.6-8-8-8zm-1.3 8.9l.2-2.2h2.4v.7h-1.7l-.1.9s.1 0 .1-.1.1 0 .1-.1.1 0 .2 0h.2c.2 0 .4 0 .5.1s.3.2.4.3.2.3.3.5.1.4.1.6c0 .2 0 .4-.1.5s-.1.3-.3.5-.3.2-.4.3-.4.1-.6.1c-.2 0-.4 0-.5-.1s-.3-.1-.5-.2-.2-.2-.3-.4-.1-.3-.1-.5h.8c0 .2.1.3.2.4s.2.1.4.1c.1 0 .2 0 .3-.1l.2-.2s.1-.2.1-.3v-.6l-.1-.2-.2-.2s-.2-.1-.3-.1h-.2s-.1 0-.2.1-.1 0-.1.1-.1.1-.1.1h-.7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_shuffle_24px"><path d="M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_skip_next_24px"><path d="M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_skip_previous_24px"><path d="M6 6h2v12H6zm3.5 6l8.5 6V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_slow_motion_video_24px"><path d="M13.05 9.79L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zm0 0L10 7.5v9l3.05-2.29L16 12zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69A7.94 7.94 0 0 1 11 4.07zM5.69 7.1L4.26 5.68A9.95 9.95 0 0 0 2.05 11h2.02a7.94 7.94 0 0 1 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43A7.868 7.868 0 0 1 4.07 13zm1.61 6.74A9.98 9.98 0 0 0 11 21.95v-2.02a7.94 7.94 0 0 1-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_snooze_24px"><path d="M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 0 0 0-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-3-9h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sort_by_alpha_24px"><path d="M14.94 4.66h-4.72l2.36-2.36zm-4.69 14.71h4.66l-2.33 2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_stop_24px"><path d="M6 6h12v12H6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_subscriptions_24px"><path d="M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 10v8c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-8c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2zm-6 4l-6-3.27v6.53L16 16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_subtitles_24px"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_surround_sound_24px"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.76 16.24l-1.41 1.41A7.91 7.91 0 0 1 4 12c0-2.05.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66l-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41A7.91 7.91 0 0 1 20 12c0 2.05-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_video_call_24px"><path d="M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_video_label_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H3V5h18v11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_video_library_24px"><path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l6 4.5-6 4.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_videocam_24px"><path d="M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_videocam_off_24px"><path d="M21 6.5l-4 4V7c0-.55-.45-1-1-1H9.82L21 17.18V6.5zM3.27 2L2 3.27 4.73 6H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.21 0 .39-.08.54-.18L19.73 21 21 19.73 3.27 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_volume_down_24px"><path d="M18.5 12A4.5 4.5 0 0 0 16 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_volume_mute_24px"><path d="M7 9v6h4l5 5V4l-5 5H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_volume_off_24px"><path d="M16.5 12A4.5 4.5 0 0 0 14 7.97v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51A8.796 8.796 0 0 0 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06a8.99 8.99 0 0 0 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_volume_up_24px"><path d="M3 9v6h4l5 5V4L7 9H3zm13.5 3A4.5 4.5 0 0 0 14 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z"/></symbol><symbol viewBox="0 0 24 24" id="ic_web_24px"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 14H4v-4h11v4zm0-5H4V9h11v4zm5 5h-4V9h4v9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_web_asset_24px"><path fill="#010101" d="M19 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6a2 2 0 0 0-2-2zm0 14H5V8h14v10z"/></symbol></svg>',l='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_business_24px"><path d="M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_call_24px"><path d="M6.62 10.79a15.15 15.15 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_call_end_24px"><path d="M12 9c-1.6 0-3.15.25-4.6.72v3.1c0 .39-.23.74-.56.9-.98.49-1.87 1.12-2.66 1.85-.18.18-.43.28-.7.28-.28 0-.53-.11-.71-.29L.29 13.08a.956.956 0 0 1-.29-.7c0-.28.11-.53.29-.71C3.34 8.78 7.46 7 12 7s8.66 1.78 11.71 4.67c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-2.48 2.48c-.18.18-.43.29-.71.29-.27 0-.52-.11-.7-.28a11.27 11.27 0 0 0-2.67-1.85.996.996 0 0 1-.56-.9v-3.1C15.15 9.25 13.6 9 12 9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_call_made_24px"><path d="M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_call_merge_24px"><path d="M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_call_missed_24px"><path d="M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_call_missed_outgoing_24px"><path d="M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z"/></symbol><symbol viewBox="0 0 24 24" id="ic_call_received_24px"><path d="M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41z"/></symbol><symbol viewBox="0 0 24 24" id="ic_call_split_24px"><path d="M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_chat_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_chat_bubble_24px"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_chat_bubble_outline_24px"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_clear_all_24px"><path d="M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_comment_24px"><path d="M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_contact_mail_24px"><path d="M21 8V7l-3 2-3-2v1l3 2 3-2zm1-5H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm8-6h-8V6h8v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_contact_phone_24px"><path d="M22 3H2C.9 3 0 3.9 0 5v14c0 1.1.9 2 2 2h20c1.1 0 1.99-.9 1.99-2L24 5c0-1.1-.9-2-2-2zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99A7.512 7.512 0 0 1 16.28 14c-.18-.64-.28-1.31-.28-2s.1-1.36.28-2a7.474 7.474 0 0 1 2.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_contacts_24px"><path d="M20 0H4v2h16V0zM4 24h16v-2H4v2zM20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z"/></symbol><symbol viewBox="0 0 24 24" id="ic_dialer_sip_24px"><path d="M17 3h-1v5h1V3zm-2 2h-2V4h2V3h-3v3h2v1h-2v1h3V5zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm0 10.5c-1.25 0-2.45-.2-3.57-.57a.998.998 0 0 0-1.01.24l-2.2 2.2a15.045 15.045 0 0 1-6.59-6.59l2.2-2.21c.27-.26.35-.65.24-1A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_dialpad_24px"><path d="M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_email_24px"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_forum_24px"><path d="M21 6h-2v9H6v2c0 .55.45 1 1 1h11l4 4V7c0-.55-.45-1-1-1zm-4 6V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v14l4-4h10c.55 0 1-.45 1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_import_contacts_24px"><path d="M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_import_export_24px"><path d="M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_invert_colors_off_24px"><path d="M20.65 20.87l-2.35-2.35-6.3-6.29-3.56-3.57-1.42-1.41L4.27 4.5 3 5.77l2.78 2.78a8.005 8.005 0 0 0 .56 10.69A7.98 7.98 0 0 0 12 21.58c1.79 0 3.57-.59 5.03-1.78l2.7 2.7L21 21.23l-.35-.36zM12 19.59c-1.6 0-3.11-.62-4.24-1.76A5.945 5.945 0 0 1 6 13.59c0-1.32.43-2.57 1.21-3.6L12 14.77v4.82zM12 5.1v4.58l7.25 7.26c1.37-2.96.84-6.57-1.6-9.01L12 2.27l-3.7 3.7 1.41 1.41L12 5.1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_live_help_24px"><path d="M19 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"/></symbol><symbol viewBox="0 0 24 24" id="ic_location_off_24px"><path d="M12 6.5A2.5 2.5 0 0 1 14.5 9c0 .74-.33 1.39-.83 1.85l3.63 3.63c.98-1.86 1.7-3.8 1.7-5.48 0-3.87-3.13-7-7-7a7 7 0 0 0-5.04 2.15l3.19 3.19c.46-.52 1.11-.84 1.85-.84zm4.37 9.6l-4.63-4.63-.11-.11L3.27 3 2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21 20 19.73l-3.63-3.63z"/></symbol><symbol viewBox="0 0 24 24" id="ic_location_on_24px"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mail_outline_24px"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_message_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_no_sim_24px"><path d="M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88L2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phone_24px"><path d="M6.62 10.79a15.15 15.15 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phonelink_erase_24px"><path d="M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phonelink_lock_24px"><path d="M19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-8.2 10V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11c-.6 0-1.2.6-1.2 1.2v3.5c0 .7.6 1.3 1.2 1.3h5.5c.7 0 1.3-.6 1.3-1.2v-3.5c0-.7-.6-1.3-1.2-1.3zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phonelink_ring_24px"><path d="M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM14 1H4c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 19H4V4h10v16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phonelink_setup_24px"><path d="M11.8 12.5v-1l1.1-.8c.1-.1.1-.2.1-.3l-1-1.7c-.1-.1-.2-.2-.3-.1l-1.3.4c-.3-.2-.6-.4-.9-.5l-.2-1.3c0-.1-.1-.2-.3-.2H7c-.1 0-.2.1-.3.2l-.2 1.3c-.3.1-.6.3-.9.5l-1.3-.5c-.1 0-.2 0-.3.1l-1 1.7c-.1.1 0 .2.1.3l1.1.8v1l-1.1.8c-.1.2-.1.3-.1.4l1 1.7c.1.1.2.2.3.1l1.4-.4c.3.2.6.4.9.5l.2 1.3c-.1.1.1.2.2.2h2c.1 0 .2-.1.3-.2l.2-1.3c.3-.1.6-.3.9-.5l1.3.5c.1 0 .2 0 .3-.1l1-1.7c.1-.1 0-.2-.1-.3l-1.1-.9zM8 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM19 1H9c-1.1 0-2 .9-2 2v3h2V4h10v16H9v-2H7v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_portable_wifi_off_24px"><path d="M17.56 14.24c.28-.69.44-1.45.44-2.24 0-3.31-2.69-6-6-6-.79 0-1.55.16-2.24.44l1.62 1.62c.2-.03.41-.06.62-.06a4 4 0 0 1 3.95 4.63l1.61 1.61zM12 4c4.42 0 8 3.58 8 8 0 1.35-.35 2.62-.95 3.74l1.47 1.47A9.86 9.86 0 0 0 22 12c0-5.52-4.48-10-10-10-1.91 0-3.69.55-5.21 1.47l1.46 1.46A8.04 8.04 0 0 1 12 4zM3.27 2.5L2 3.77l2.1 2.1C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02.01.01 7.51 7.51L21 20.23 4.27 3.5l-1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_present_to_all_24px"><path d="M21 3H3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h18c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_ring_volume_24px"><path d="M23.71 16.67A16.97 16.97 0 0 0 12 12C7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73s3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.66 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71a.99.99 0 0 0-.29-.7zM21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM13 2h-2v5h2V2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55z"/></symbol><symbol viewBox="0 0 24 24" id="ic_rss_feed_24px"><circle cx="6.18" cy="17.82" r="2.18"/><path d="M4 4.44v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56zm0 5.66v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_screen_share_24px"><path d="M20 18c1.1 0 1.99-.9 1.99-2L22 6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v10a2 2 0 0 0 2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z"/></symbol><symbol viewBox="0 0 24 24" id="ic_speaker_phone_24px"><path d="M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41A10.963 10.963 0 0 0 12 1zm2.86 9.01L9.14 10C8.51 10 8 10.51 8 11.14v9.71c0 .63.51 1.14 1.14 1.14h5.71c.63 0 1.14-.51 1.14-1.14v-9.71c.01-.63-.5-1.13-1.13-1.13zM15 20H9v-8h6v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_stay_current_landscape_24px"><path d="M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_stay_current_portrait_24px"><path d="M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_stay_primary_landscape_24px"><path d="M1.01 7L1 17c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H3c-1.1 0-1.99.9-1.99 2zM19 7v10H5V7h14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_stay_primary_portrait_24px"><path d="M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_stop_screen_share_24px"><path d="M21.22 18.02l2 2H24v-2h-2.78zm.77-2l.01-10a2 2 0 0 0-2-2H7.22l5.23 5.23c.18-.04.36-.07.55-.1V7.02l4 3.73-1.58 1.47 5.54 5.54c.61-.33 1.03-.99 1.03-1.74zM2.39 1.73L1.11 3l1.54 1.54c-.4.36-.65.89-.65 1.48v10a2 2 0 0 0 2 2H0v2h18.13l2.71 2.71 1.27-1.27L2.39 1.73zM7 15.02c.31-1.48.92-2.95 2.07-4.06l1.59 1.59c-1.54.38-2.7 1.18-3.66 2.47z"/></symbol><symbol viewBox="0 0 24 24" id="ic_swap_calls_24px"><path d="M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_textsms_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_voicemail_24px"><path d="M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74A5.45 5.45 0 0 0 11 11.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z"/></symbol><symbol viewBox="0 0 24 24" id="ic_vpn_key_24px"><path d="M12.65 10A5.99 5.99 0 0 0 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6a5.99 5.99 0 0 0 5.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></symbol></svg>',d='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_add_24px"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_add_box_24px"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_add_circle_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_add_circle_outline_24px"><path d="M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_archive_24px"><path d="M20.54 5.23l-1.39-1.68A1.45 1.45 0 0 0 18 3H6c-.47 0-.88.21-1.16.55L3.46 5.23C3.17 5.57 3 6.02 3 6.5V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6.5c0-.48-.17-.93-.46-1.27zM12 17.5L6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_backspace_24px"><path d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.9.89 1.59.89h15c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-3 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z"/></symbol><symbol viewBox="0 0 24 24" id="ic_block_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9A7.902 7.902 0 0 1 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1A7.902 7.902 0 0 1 20 12c0 4.42-3.58 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_clear_24px"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_content_copy_24px"><path d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_content_cut_24px"><path d="M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 12a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_content_paste_24px"><path d="M19 2h-4.18C14.4.84 13.3 0 12 0c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_create_24px"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a.996.996 0 0 0 0-1.41l-2.34-2.34a.996.996 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></symbol><symbol viewBox="0 0 24 24" id="ic_delete_sweep_24px"><path d="M15 16h4v2h-4zm0-8h7v2h-7zm0 4h6v2h-6zM3 18c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2V8H3v10zM14 5h-3l-1-1H6L5 5H2v2h12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_drafts_24px"><path d="M21.99 8c0-.72-.37-1.35-.94-1.7L12 1 2.95 6.3C2.38 6.65 2 7.28 2 8v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2l-.01-10zM12 13L3.74 7.84 12 3l8.26 4.84L12 13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_list_24px"><path d="M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flag_24px"><path d="M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_font_download_24px"><path d="M9.93 13.5h4.14L12 7.98zM20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-4.05 16.5l-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z"/></symbol><symbol viewBox="0 0 24 24" id="ic_forward_24px"><path d="M12 8V4l8 8-8 8v-4H4V8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_gesture_24px"><path d="M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z"/></symbol><symbol viewBox="0 0 24 24" id="ic_inbox_24px"><path d="M19 3H4.99c-1.11 0-1.98.89-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5a2 2 0 0 0-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_link_24px"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_low_priority_24px"><path d="M14 5h8v2h-8zm0 5.5h8v2h-8zm0 5.5h8v2h-8zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mail_24px"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_markunread_24px"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_move_to_inbox_24px"><path d="M19 3H4.99c-1.11 0-1.98.9-1.98 2L3 19c0 1.1.88 2 1.99 2H19c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_next_week_24px"><path fill="#010101" d="M20 7h-4V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zM10 5h4v2h-4V5zm1 13.5l-1-1 3-3-3-3 1-1 4 4-4 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_redo_24px"><path d="M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22L3.9 16a8.002 8.002 0 0 1 7.6-5.5c1.95 0 3.73.72 5.12 1.88L13 16h9V7l-3.6 3.6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_remove_24px"><path d="M19 13H5v-2h14v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_remove_circle_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_remove_circle_outline_24px"><path d="M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_reply_24px"><path d="M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_reply_all_24px"><path d="M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_report_24px"><path d="M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM12 17.3c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3.72 0 1.3.58 1.3 1.3 0 .72-.58 1.3-1.3 1.3zm1-4.3h-2V7h2v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_save_24px"><path d="M17 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_select_all_24px"><path d="M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zM7 17h10V7H7v10zm2-8h6v6H9V9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_send_24px"><path d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sort_24px"><path d="M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_text_format_24px"><path d="M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z"/></symbol><symbol viewBox="0 0 24 24" id="ic_unarchive_24px"><path d="M20.55 5.22l-1.39-1.68A1.51 1.51 0 0 0 18 3H6c-.47 0-.88.21-1.15.55L3.46 5.22C3.17 5.57 3 6.01 3 6.5V19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6.5c0-.49-.17-.93-.45-1.28zM12 9.5l5.5 5.5H14v2h-4v-2H6.5L12 9.5zM5.12 5l.82-1h12l.93 1H5.12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_undo_24px"><path d="M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_weekend_24px"><path d="M21 10c-1.1 0-2 .9-2 2v3H5v-3c0-1.1-.9-2-2-2s-2 .9-2 2v5c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-5c0-1.1-.9-2-2-2zm-3-5H6c-1.1 0-2 .9-2 2v2.15c1.16.41 2 1.51 2 2.82V14h12v-2.03c0-1.3.84-2.4 2-2.82V7c0-1.1-.9-2-2-2z" fill="#010101"/></symbol></svg>',v='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_access_alarm_24px"><path d="M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 0 0 0-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_access_alarms_24px"><path d="M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_access_time_24px"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></symbol><symbol viewBox="0 0 24 24" id="ic_add_alarm_24px"><path d="M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 0 0 0-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airplanemode_active_24px"><path d="M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airplanemode_inactive_24px"><path d="M13 9V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5v3.68l7.83 7.83L21 16v-2l-8-5zM3 5.27l4.99 4.99L2 14v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-3.73L18.73 21 20 19.73 4.27 4 3 5.27z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_20_24px"><path d="M7 17v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17H7z"/><path fill-opacity=".3" d="M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h10V5.33z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_30_24px"><path fill-opacity=".3" d="M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V15h10V5.33z"/><path d="M7 15v5.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V15H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_50_24px"><path fill-opacity=".3" d="M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V13h10V5.33z"/><path d="M7 13v7.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_60_24px"><path fill-opacity=".3" d="M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h10V5.33z"/><path d="M7 11v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_80_24px"><path fill-opacity=".3" d="M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h10V5.33z"/><path d="M7 9v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_90_24px"><path fill-opacity=".3" d="M17 5.33C17 4.6 16.4 4 15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h10V5.33z"/><path d="M7 8v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_alert_24px"><path d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm0-4h-2V9h2v5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_charging_20_24px"><path d="M11 20v-3H7v3.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V17h-4.4L11 20z"/><path fill-opacity=".3" d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V17h4v-2.5H9L13 7v5.5h2L12.6 17H17V5.33C17 4.6 16.4 4 15.67 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_charging_30_24px"><path fill-opacity=".3" d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v9.17h2L13 7v5.5h2l-1.07 2H17V5.33C17 4.6 16.4 4 15.67 4z"/><path d="M11 20v-5.5H7v6.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V14.5h-3.07L11 20z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_charging_50_24px"><path d="M14.47 13.5L11 20v-5.5H9l.53-1H7v7.17C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V13.5h-2.53z"/><path fill-opacity=".3" d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v8.17h2.53L13 7v5.5h2l-.53 1H17V5.33C17 4.6 16.4 4 15.67 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_charging_60_24px"><path fill-opacity=".3" d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V11h3.87L13 7v4h4V5.33C17 4.6 16.4 4 15.67 4z"/><path d="M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v9.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V11h-4v1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_charging_80_24px"><path fill-opacity=".3" d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V9h4.93L13 7v2h4V5.33C17 4.6 16.4 4 15.67 4z"/><path d="M13 12.5h2L11 20v-5.5H9L11.93 9H7v11.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V9h-4v3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_charging_90_24px"><path fill-opacity=".3" d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33V8h5.47L13 7v1h4V5.33C17 4.6 16.4 4 15.67 4z"/><path d="M13 12.5h2L11 20v-5.5H9L12.47 8H7v12.67C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V8h-4v4.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_charging_full_24px"><path d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_full_24px"><path d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_std_24px"><path d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_battery_unknown_24px"><path d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zm-2.72 13.95h-1.9v-1.9h1.9v1.9zm1.35-5.26s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94A1.498 1.498 0 0 0 12 9.5c-.83 0-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z"/></symbol><symbol viewBox="0 0 24 24" id="ic_bluetooth_24px"><path d="M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_bluetooth_connected_24px"><path d="M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_bluetooth_disabled_24px"><path d="M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z"/></symbol><symbol viewBox="0 0 24 24" id="ic_bluetooth_searching_24px"><path d="M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2a9.936 9.936 0 0 0 1.54-5.31c-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_auto_24px"><path d="M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_high_24px"><path d="M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_low_24px"><path d="M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_medium_24px"><path d="M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_data_usage_24px"><path d="M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53A6.95 6.95 0 0 1 12 19z"/></symbol><symbol viewBox="0 0 24 24" id="ic_developer_mode_24px"><path d="M7 5h10v2h2V3c0-1.1-.9-1.99-2-1.99L7 1c-1.1 0-2 .9-2 2v4h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v4c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-4h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_devices_24px"><path d="M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_dvr_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_gps_fixed_24px"><path d="M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3A8.994 8.994 0 0 0 13 3.06V1h-2v2.06A8.994 8.994 0 0 0 3.06 11H1v2h2.06A8.994 8.994 0 0 0 11 20.94V23h2v-2.06A8.994 8.994 0 0 0 20.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_gps_not_fixed_24px"><path d="M20.94 11A8.994 8.994 0 0 0 13 3.06V1h-2v2.06A8.994 8.994 0 0 0 3.06 11H1v2h2.06A8.994 8.994 0 0 0 11 20.94V23h2v-2.06A8.994 8.994 0 0 0 20.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_gps_off_24px"><path d="M20.94 11A8.994 8.994 0 0 0 13 3.06V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5A6.995 6.995 0 0 1 19 12c0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04A8.914 8.914 0 0 0 3.06 11H1v2h2.06A8.994 8.994 0 0 0 11 20.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27a6.995 6.995 0 0 1-9.81-9.81l9.81 9.81z"/></symbol><symbol viewBox="0 0 24 24" id="ic_graphic_eq_24px"><path d="M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_location_disabled_24px"><path d="M20.94 11A8.994 8.994 0 0 0 13 3.06V1h-2v2.06c-1.13.12-2.19.46-3.16.97l1.5 1.5A6.995 6.995 0 0 1 19 12c0 .94-.19 1.84-.52 2.65l1.5 1.5c.5-.96.84-2.02.97-3.15H23v-2h-2.06zM3 4.27l2.04 2.04A8.914 8.914 0 0 0 3.06 11H1v2h2.06A8.994 8.994 0 0 0 11 20.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21 21 19.73 4.27 3 3 4.27zm13.27 13.27a6.995 6.995 0 0 1-9.81-9.81l9.81 9.81z"/></symbol><symbol viewBox="0 0 24 24" id="ic_location_searching_24px"><path d="M20.94 11A8.994 8.994 0 0 0 13 3.06V1h-2v2.06A8.994 8.994 0 0 0 3.06 11H1v2h2.06A8.994 8.994 0 0 0 11 20.94V23h2v-2.06A8.994 8.994 0 0 0 20.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_network_cell_24px"><path fill-opacity=".3" d="M2 22h20V2z"/><path d="M17 7L2 22h15z"/></symbol><symbol viewBox="0 0 24 24" id="ic_network_wifi_24px"><path fill-opacity=".3" d="M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"/><path d="M3.53 10.95l8.46 10.54.01.01.01-.01 8.46-10.54C20.04 10.62 16.81 8 12 8c-4.81 0-8.04 2.62-8.47 2.95z"/></symbol><symbol viewBox="0 0 24 24" id="ic_nfc_24px"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H4V4h16v16zM18 6h-5c-1.1 0-2 .9-2 2v2.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_screen_lock_landscape_24px"><path d="M21 5H3c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-2 12H5V7h14v10zm-9-1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1a2 2 0 1 0-4 0v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_screen_lock_portrait_24px"><path d="M10 16h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1v-1a2 2 0 1 0-4 0v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1zm.8-6c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2v1h-2.4v-1zM17 1H7c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 18H7V5h10v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_screen_lock_rotation_24px"><path d="M23.25 12.77l-2.57-2.57-1.41 1.41 2.22 2.22-5.66 5.66L4.51 8.17l5.66-5.66 2.1 2.1 1.41-1.41L11.23.75a1.49 1.49 0 0 0-2.12 0L2.75 7.11a1.49 1.49 0 0 0 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12zM8.47 20.48A10.487 10.487 0 0 1 2.5 12H1c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.82-1.33 1.33zM16 9h5c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1v-.5a2.5 2.5 0 0 0-5 0V3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm.8-6.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V3h-3.4v-.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_screen_rotation_24px"><path d="M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zm-6.25-.77a1.49 1.49 0 0 0-2.12 0L1.75 8.11a1.49 1.49 0 0 0 0 2.12l12.02 12.02c.59.59 1.54.59 2.12 0l6.36-6.36c.59-.59.59-1.54 0-2.12L10.23 1.75zm4.6 19.44L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36zm-7.31.29A10.487 10.487 0 0 1 1.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sd_storage_24px"><path d="M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_settings_system_daydream_24px"><path d="M9 16h6.5a2.5 2.5 0 0 0 0-5h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16A2.994 2.994 0 0 0 6 13c0 1.66 1.34 3 3 3zM21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16.01H3V4.99h18v14.02z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_0_bar_24px"><path fill-opacity=".3" d="M2 22h20V2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_1_bar_24px"><path fill-opacity=".3" d="M2 22h20V2z"/><path d="M12 12L2 22h10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_2_bar_24px"><path fill-opacity=".3" d="M2 22h20V2z"/><path d="M14 10L2 22h12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_3_bar_24px"><path fill-opacity=".3" d="M2 22h20V2z"/><path d="M17 7L2 22h15z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_4_bar_24px"><path d="M2 22h20V2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_connected_no_internet_0_bar_24px"><path fill-opacity=".3" d="M22 8V2L2 22h16V8z"/><path d="M20 22h2v-2h-2v2zm0-12v8h2v-8h-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_connected_no_internet_1_bar_24px"><path fill-opacity=".3" d="M22 8V2L2 22h16V8z"/><path d="M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_connected_no_internet_2_bar_24px"><path fill-opacity=".3" d="M22 8V2L2 22h16V8z"/><path d="M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_connected_no_internet_3_bar_24px"><path fill-opacity=".3" d="M22 8V2L2 22h16V8z"/><path d="M17 22V7L2 22h15zm3-12v8h2v-8h-2zm0 12h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_connected_no_internet_4_bar_24px"><path d="M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_no_sim_24px"><path d="M18.99 5c0-1.1-.89-2-1.99-2h-7L7.66 5.34 19 16.68 18.99 5zM3.65 3.88L2.38 5.15 5 7.77V19c0 1.1.9 2 2 2h10.01c.35 0 .67-.1.96-.26l1.88 1.88 1.27-1.27L3.65 3.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_null_24px"><path d="M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_cellular_off_24px"><path d="M21 1l-8.59 8.59L21 18.18V1zM4.77 4.5L3.5 5.77l6.36 6.36L1 21h17.73l2 2L22 21.73 4.77 4.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_0_bar_24px"><path fill-opacity=".3" d="M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_1_bar_24px"><path fill-opacity=".3" d="M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"/><path d="M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_1_bar_lock_24px"><path d="M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z"/><path d="M15.5 14.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.3v-2.7z" opacity=".3"/><path d="M6.7 14.9l5.3 6.6 3.5-4.3v-2.6c0-.2 0-.5.1-.7-.9-.5-2.2-.9-3.6-.9-3 0-5.1 1.7-5.3 1.9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_2_bar_24px"><path fill-opacity=".3" d="M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"/><path d="M4.79 12.52l7.2 8.98H12l.01-.01 7.2-8.98C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_2_bar_lock_24px"><path d="M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z"/><path d="M15.5 14.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.3v-2.7z" opacity=".3"/><path d="M4.8 12.5l7.2 9 3.5-4.4v-2.6c0-1.3.5-2.5 1.4-3.4C15.6 10.5 14 10 12 10c-4.1 0-6.8 2.2-7.2 2.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_3_bar_24px"><path fill-opacity=".3" d="M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"/><path d="M3.53 10.95l8.46 10.54.01.01.01-.01 8.46-10.54C20.04 10.62 16.81 8 12 8c-4.81 0-8.04 2.62-8.47 2.95z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_3_bar_lock_24px"><path opacity=".3" d="M12 3C5.3 3 .8 6.7.4 7l3.2 3.9L12 21.5l3.5-4.3v-2.6c0-2.2 1.4-4 3.3-4.7.3-.1.5-.2.8-.2.3-.1.6-.1.9-.1.4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4z"/><path d="M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-10 5.5l3.5-4.3v-2.6c0-2.2 1.4-4 3.3-4.7C17.3 9 14.9 8 12 8c-4.8 0-8 2.6-8.5 2.9"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_4_bar_24px"><path d="M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_4_bar_lock_24px"><path d="M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16c-.5 0-1 .5-1 1v4c0 .5.5 1 1 1h5c.5 0 1-.5 1-1v-4c0-.5-.5-1-1-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5c0-2.8 2.2-5 5-5 .4 0 .7 0 1 .1L23.6 7c-.4-.3-4.9-4-11.6-4C5.3 3 .8 6.7.4 7L12 21.5l3.5-4.4v-2.6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_signal_wifi_off_24px"><path d="M23.64 7c-.45-.34-4.93-4-11.64-4-1.5 0-2.89.19-4.15.48L18.18 13.8 23.64 7zm-6.6 8.22L3.27 1.44 2 2.72l2.05 2.06C1.91 5.76.59 6.82.36 7l11.63 14.49.01.01.01-.01 3.9-4.86 3.32 3.32 1.27-1.27-3.46-3.46z"/></symbol><symbol viewBox="0 0 24 24" id="ic_storage_24px"><path d="M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_usb_24px"><path d="M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2-1.21 0-2.2.99-2.2 2.2 0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95a2.2 2.2 0 0 0 4.4 0c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wallpaper_24px"><path d="M4 4h7V2H4c-1.1 0-2 .9-2 2v7h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM20 2h-7v2h7v7h2V4c0-1.1-.9-2-2-2zm0 18h-7v2h7c1.1 0 2-.9 2-2v-7h-2v7zM4 13H2v7c0 1.1.9 2 2 2h7v-2H4v-7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_widgets_24px"><path d="M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wifi_lock_24px"><path d="M20.5 9.5c.28 0 .55.04.81.08L24 6c-3.34-2.51-7.5-4-12-4S3.34 3.49 0 6l12 16 3.5-4.67V14.5c0-2.76 2.24-5 5-5zM23 16v-1.5a2.5 2.5 0 0 0-5 0V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wifi_tethering_24px"><path d="M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z"/></symbol></svg>',h='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_attach_file_24px"><path d="M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5a2.5 2.5 0 0 1 5 0v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5a2.5 2.5 0 0 0 5 0V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_attach_money_24px"><path d="M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_all_24px"><path d="M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_bottom_24px"><path d="M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_clear_24px"><path d="M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_color_24px"><path d="M17.75 7L14 3.25l-10 10V17h3.75l10-10zm2.96-2.96a.996.996 0 0 0 0-1.41L18.37.29a.996.996 0 0 0-1.41 0L15 2.25 18.75 6l1.96-1.96z"/><path fill-opacity=".36" d="M0 20h24v4H0z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_horizontal_24px"><path d="M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_inner_24px"><path d="M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_left_24px"><path d="M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_outer_24px"><path d="M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_right_24px"><path d="M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_style_24px"><path d="M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_top_24px"><path d="M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_border_vertical_24px"><path d="M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_bubble_chart_24px"><circle cx="7.2" cy="14.4" r="3.2"/><circle cx="14.8" cy="18" r="2"/><circle cx="15.2" cy="8.8" r="4.8"/></symbol><symbol viewBox="0 0 24 24" id="ic_drag_handle_24px"><path d="M20 9H4v2h16V9zM4 15h16v-2H4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_align_center_24px"><path d="M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_align_justify_24px"><path d="M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_align_left_24px"><path d="M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_align_right_24px"><path d="M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_bold_24px"><path d="M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_clear_24px"><path d="M3.27 5L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21 18 19.73 3.55 5.27 3.27 5zM6 5v.18L8.82 8h2.4l-.72 1.68 2.1 2.1L14.21 8H20V5H6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_color_fill_24px"><path d="M16.56 8.94L7.62 0 6.21 1.41l2.38 2.38-5.15 5.15a1.49 1.49 0 0 0 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12zM5.21 10L10 5.21 14.79 10H5.21zM19 11.5s-2 2.17-2 3.5c0 1.1.9 2 2 2s2-.9 2-2c0-1.33-2-3.5-2-3.5z"/><path fill-opacity=".36" d="M0 20h24v4H0z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_color_reset_24px"><path d="M18 14c0-4-6-10.8-6-10.8s-1.33 1.51-2.73 3.52l8.59 8.59c.09-.42.14-.86.14-1.31zm-.88 3.12L12.5 12.5 5.27 5.27 4 6.55l3.32 3.32C6.55 11.32 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.96-1.5l2.63 2.63 1.27-1.27-2.74-2.74z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_color_text_24px"><path fill-opacity=".36" d="M0 20h24v4H0z"/><path d="M11 3L5.5 17h2.25l1.12-3h6.25l1.12 3h2.25L13 3h-2zm-1.38 9L12 5.67 14.38 12H9.62z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_indent_decrease_24px"><path d="M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_indent_increase_24px"><path d="M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_italic_24px"><path d="M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_line_spacing_24px"><path d="M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_list_bulleted_24px"><path d="M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_list_numbered_24px"><path d="M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_paint_24px"><path d="M18 4V3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6h1v4H9v11c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-9h8V4h-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_quote_24px"><path d="M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_shapes_24px"><path d="M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_size_24px"><path d="M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_strikethrough_24px"><path d="M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_textdirection_l_to_r_24px"><path d="M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8l-4-4v3H5v2h12v3l4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_textdirection_r_to_l_24px"><path d="M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_format_underlined_24px"><path d="M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_functions_24px"><path d="M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_highlight_24px"><path d="M6 14l3 3v5h6v-5l3-3V9H6zm5-12h2v3h-2zM3.5 5.875L4.914 4.46l2.12 2.122L5.62 7.997zm13.46.71l2.123-2.12 1.414 1.414L18.375 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_insert_chart_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_insert_comment_24px"><path d="M20 2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_insert_drive_file_24px"><path d="M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6H6zm7 7V3.5L18.5 9H13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_insert_emoticon_24px"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_insert_invitation_24px"><path d="M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_insert_link_24px"><path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_insert_photo_24px"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_linear_scale_24px"><path d="M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5a2.5 2.5 0 0 0 0 5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5a2.5 2.5 0 0 0 0-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_merge_type_24px"><path d="M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mode_comment_24px"><path d="M21.99 4c0-1.1-.89-2-1.99-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14l4 4-.01-18z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mode_edit_24px"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a.996.996 0 0 0 0-1.41l-2.34-2.34a.996.996 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></symbol><symbol viewBox="0 0 24 24" id="ic_monetization_on_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_money_off_24px"><path d="M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.53.12-1.03.3-1.48.54l1.47 1.47c.41-.17.91-.27 1.51-.27zM5.33 4.06L4.06 5.33 7.5 8.77c0 2.08 1.56 3.21 3.91 3.91l3.51 3.51c-.34.48-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.82-.55 2.45-1.12l2.22 2.22 1.27-1.27L5.33 4.06z"/></symbol><symbol viewBox="0 0 24 24" id="ic_multiline_chart_24px"><path d="M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pie_chart_24px"><path d="M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pie_chart_outlined_24px"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93A8.002 8.002 0 0 1 13 19.93z"/></symbol><symbol viewBox="0 0 24 24" id="ic_publish_24px"><path d="M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_short_text_24px"><path d="M4 9h16v2H4zm0 4h10v2H4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_show_chart_24px"><path d="M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z"/></symbol><symbol viewBox="0 0 24 24" id="ic_space_bar_24px"><path d="M18 9v4H6V9H4v6h16V9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_strikethrough_s_24px"><path fill="#010101" d="M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29a5.73 5.73 0 0 1 1.7-.83c.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43.25.55.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13-.29.09-.53.21-.72.36-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51.21.17.35.36.43.57.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42a1.92 1.92 0 0 1-.59-.75c-.14-.31-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58.16.45.37.85.65 1.21.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21z"/></symbol><symbol viewBox="0 0 24 24" id="ic_text_fields_24px"><path d="M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_title_24px"><path d="M5 4v3h5.5v12h3V7H19V4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_vertical_align_bottom_24px"><path d="M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_vertical_align_center_24px"><path d="M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_vertical_align_top_24px"><path d="M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wrap_text_24px"><path d="M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z"/></symbol></svg>',p='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_attachment_24px"><path d="M2 12.5C2 9.46 4.46 7 7.5 7H18c2.21 0 4 1.79 4 4s-1.79 4-4 4H9.5a2.5 2.5 0 0 1 0-5H17v2H9.41c-.55 0-.55 1 0 1H18c1.1 0 2-.9 2-2s-.9-2-2-2H7.5C5.57 9 4 10.57 4 12.5S5.57 16 7.5 16H17v2H7.5C4.46 18 2 15.54 2 12.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cloud_24px"><path d="M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cloud_circle_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3l.14.01A3.98 3.98 0 0 1 12 7a4 4 0 0 1 4 4h.5a2.5 2.5 0 0 1 0 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cloud_done_24px"><path d="M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.17 15.18 9l1.41 1.41L10 17z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cloud_download_24px"><path d="M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cloud_off_24px"><path d="M19.35 10.04A7.49 7.49 0 0 0 12 4c-1.48 0-2.85.43-4.01 1.17l1.46 1.46a5.497 5.497 0 0 1 8.05 4.87v.5H19c1.66 0 3 1.34 3 3 0 1.13-.64 2.11-1.56 2.62l1.45 1.45C23.16 18.16 24 16.68 24 15c0-2.64-2.05-4.78-4.65-4.96zM3 5.27l2.75 2.74C2.56 8.15 0 10.77 0 14c0 3.31 2.69 6 6 6h11.73l2 2L21 20.73 4.27 4 3 5.27zM7.73 10l8 8H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cloud_queue_24px"><path d="M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71A5.5 5.5 0 0 1 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cloud_upload_24px"><path d="M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_create_new_folder_24px"><path d="M20 6h-8l-2-2H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-1 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_file_download_24px"><path d="M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_file_upload_24px"><path d="M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_folder_24px"><path d="M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_folder_open_24px"><path d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_folder_shared_24px"><path d="M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z"/></symbol></svg>',f='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_cast_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2a9 9 0 0 1 9 9h2c0-6.08-4.93-11-11-11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cast_connected_24px"><path d="M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2a9 9 0 0 1 9 9h2c0-6.08-4.93-11-11-11zm20-7H3c-1.1 0-2 .9-2 2v3h2V5h18v14h-7v2h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_computer_24px"><path d="M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_desktop_mac_24px"><path d="M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7l-2 3v1h8v-1l-2-3h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 12H3V4h18v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_desktop_windows_24px"><path d="M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_developer_board_24px"><path d="M22 9V7h-2V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6zm6-6h4v3h-4zM6 7h5v5H6zm6 4h4v6h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_device_hub_24px"><path d="M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_devices_other_24px"><path d="M3 6h18V4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h4v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22s.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM22 8h-6c-.5 0-1 .5-1 1v10c0 .5.5 1 1 1h6c.5 0 1-.5 1-1V9c0-.5-.5-1-1-1zm-1 10h-4v-8h4v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_dock_24px"><path d="M8 23h8v-2H8v2zm8-21.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_gamepad_24px"><path d="M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_headset_24px"><path d="M12 1a9 9 0 0 0-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7a9 9 0 0 0-9-9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_headset_mic_24px"><path d="M12 1a9 9 0 0 0-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h4v1h-7v2h6c1.66 0 3-1.34 3-3V10a9 9 0 0 0-9-9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_24px"><path d="M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_arrow_down_24px"><path d="M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_arrow_left_24px"><path d="M15.41 16.09l-4.58-4.59 4.58-4.59L14 5.5l-6 6 6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_arrow_right_24px"><path d="M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_arrow_up_24px"><path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_backspace_24px"><path d="M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_capslock_24px"><path d="M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_hide_24px"><path d="M20 3H4c-1.1 0-1.99.9-1.99 2L2 15c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 3h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15l4-4H8l4 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_return_24px"><path d="M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_tab_24px"><path d="M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_keyboard_voice_24px"><path d="M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_laptop_24px"><path d="M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_laptop_chromebook_24px"><path d="M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_laptop_mac_24px"><path d="M20 18c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2H0c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_laptop_windows_24px"><path d="M20 18v-1c1.1 0 1.99-.9 1.99-2L22 5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2v1H0v2h24v-2h-4zM4 5h16v10H4V5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_memory_24px"><path d="M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mouse_24px"><path d="M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phone_android_24px"><path d="M16 1H8C6.34 1 5 2.34 5 4v16c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V4c0-1.66-1.34-3-3-3zm-2 20h-4v-1h4v1zm3.25-3H6.75V4h10.5v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phone_iphone_24px"><path d="M15.5 1h-8A2.5 2.5 0 0 0 5 3.5v17A2.5 2.5 0 0 0 7.5 23h8a2.5 2.5 0 0 0 2.5-2.5v-17A2.5 2.5 0 0 0 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phonelink_24px"><path d="M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phonelink_off_24px"><path d="M22 6V4H6.82l2 2H22zM1.92 1.65L.65 2.92l1.82 1.82C2.18 5.08 2 5.52 2 6v11H0v3h17.73l2.35 2.35 1.27-1.27L3.89 3.62 1.92 1.65zM4 6.27L14.73 17H4V6.27zM23 8h-6c-.55 0-1 .45-1 1v4.18l2 2V10h4v7h-2.18l3 3H23c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_power_input_24px"><path d="M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_router_24px"><path d="M20.2 5.9l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1 .9 0 1.8.3 2.5 1l.8-.8zM19 13h-2V9h-2v4H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-4c0-1.1-.9-2-2-2zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_scanner_24px"><path d="M19.8 10.7L4.2 5l-.7 1.9L17.6 12H5c-1.1 0-2 .9-2 2v4c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-5.5c0-.8-.5-1.6-1.2-1.8zM7 17H5v-2h2v2zm12 0H9v-2h10v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_security_24px"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sim_card_24px"><path d="M19.99 4c0-1.1-.89-2-1.99-2h-8L4 8v12c0 1.1.9 2 2 2h12.01c1.1 0 1.99-.9 1.99-2l-.01-16zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_smartphone_24px"><path d="M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_speaker_24px"><path d="M17 2H7c-1.1 0-2 .9-2 2v16c0 1.1.9 1.99 2 1.99L17 22c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 2c1.1 0 2 .9 2 2s-.9 2-2 2a2 2 0 0 1 0-4zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_speaker_group_24px"><path d="M18.2 1H9.8C8.81 1 8 1.81 8 2.8v14.4c0 .99.81 1.79 1.8 1.79l8.4.01c.99 0 1.8-.81 1.8-1.8V2.8c0-.99-.81-1.8-1.8-1.8zM14 3a2 2 0 1 1 0 4 2 2 0 0 1 0-4zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"/><circle cx="14" cy="12.5" r="2.5"/><path d="M6 5H4v16a2 2 0 0 0 2 2h10v-2H6V5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tablet_24px"><path d="M21 4H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 1.99-.9 1.99-2L23 6c0-1.1-.9-2-2-2zm-2 14H5V6h14v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tablet_android_24px"><path d="M18 0H6C4.34 0 3 1.34 3 3v18c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V3c0-1.66-1.34-3-3-3zm-4 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tablet_mac_24px"><path d="M18.5 0h-14A2.5 2.5 0 0 0 2 2.5v19A2.5 2.5 0 0 0 4.5 24h14a2.5 2.5 0 0 0 2.5-2.5v-19A2.5 2.5 0 0 0 18.5 0zm-7 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_toys_24px"><path d="M12 12c0-3 2.5-5.5 5.5-5.5S23 9 23 12H12zm0 0c0 3-2.5 5.5-5.5 5.5S1 15 1 12h11zm0 0c-3 0-5.5-2.5-5.5-5.5S9 1 12 1v11zm0 0c3 0 5.5 2.5 5.5 5.5S15 23 12 23V12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tv_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_videogame_asset_24px"><path d="M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-10 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_watch_24px"><path d="M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73A7.976 7.976 0 0 0 20 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z"/></symbol></svg>',m='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_add_a_photo_24px"><path d="M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H21c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3.2-5c0 1.77 1.43 3.2 3.2 3.2s3.2-1.43 3.2-3.2-1.43-3.2-3.2-3.2-3.2 1.43-3.2 3.2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_add_to_photos_24px"><path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-1 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_adjust_24px"><path d="M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_assistant_24px"><path d="M19 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_assistant_photo_24px"><path d="M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_audiotrack_24px"><path d="M12 3v9.28a4.39 4.39 0 0 0-1.5-.28C8.01 12 6 14.01 6 16.5S8.01 21 10.5 21c2.31 0 4.2-1.75 4.45-4H15V6h4V3h-7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_blur_circular_24px"><path d="M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_blur_linear_24px"><path d="M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_blur_off_24px"><path d="M14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-.2 4.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm11 7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8 8c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-4 13.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM2.5 5.27l3.78 3.78L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81A.875.875 0 0 0 14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78L20 20.23 3.77 4 2.5 5.27zM10 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm11-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_blur_on_24px"><path d="M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_1_24px"><circle cx="12" cy="12" r="10"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_2_24px"><path d="M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_3_24px"><path d="M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54 0 4.48-2.94 8.27-7 9.54.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_4_24px"><path d="M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_5_24px"><path d="M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_6_24px"><path d="M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brightness_7_24px"><path d="M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_broken_image_24px"><path d="M21 5v6.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zm-3 6.42l3 3.01V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-6.58l3 2.99 4-4 4 4 4-3.99z"/></symbol><symbol viewBox="0 0 24 24" id="ic_brush_24px"><path d="M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2a4 4 0 0 0 4-4c0-1.66-1.34-3-3-3zm13.71-9.37l-1.34-1.34a.996.996 0 0 0-1.41 0L9 12.25 11.75 15l8.96-8.96a.996.996 0 0 0 0-1.41z"/></symbol><symbol viewBox="0 0 24 24" id="ic_burst_mode_24px"><path d="M1 5h2v14H1zm4 0h2v14H5zm17 0H10c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_camera_24px"><path d="M9.4 10.5l4.77-8.26a9.984 9.984 0 0 0-8.49 2.01l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25A9.91 9.91 0 0 0 22 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75A9.958 9.958 0 0 0 2.2 14h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0l-3.9 6.76a9.984 9.984 0 0 0 8.49-2.01l-3.66-6.35-.93 1.6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_camera_alt_24px"><circle cx="12" cy="12" r="3.2"/><path d="M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_camera_front_24px"><path d="M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm5-8H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_camera_rear_24px"><path d="M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm3-20H7C5.9 0 5 .9 5 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zm-5 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_camera_roll_24px"><path d="M14 5c0-1.1-.9-2-2-2h-1V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1H4c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_center_focus_strong_24px"><path d="M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_center_focus_weak_24px"><path d="M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_collections_24px"><path d="M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4l2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_collections_bookmark_24px"><path d="M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 10l-2.5-1.5L15 12V4h5v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_color_lens_24px"><path d="M12 3a9 9 0 0 0 0 18c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_colorize_24px"><path d="M20.71 5.63l-2.34-2.34a.996.996 0 0 0-1.41 0l-3.12 3.12-1.93-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.12-3.12a1 1 0 0 0 .01-1.42zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z"/></symbol><symbol viewBox="0 0 24 24" id="ic_compare_24px"><path d="M10 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h5v2h2V1h-2v2zm0 15H5l5-6v6zm9-15h-5v2h5v13l-5-6v9h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_control_point_24px"><path d="M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_control_point_duplicate_24px"><path d="M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16A6.99 6.99 0 0 1 2 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_16_9_24px"><path d="M19 6H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H5V8h14v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_24px"><path d="M17 15h2V7c0-1.1-.9-2-2-2H9v2h8v8zM7 17V1H5v4H1v2h4v10c0 1.1.9 2 2 2h10v4h2v-4h4v-2H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_3_2_24px"><path d="M19 4H5c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H5V6h14v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_5_4_24px"><path d="M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_7_5_24px"><path d="M19 7H5c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm0 8H5V9h14v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_din_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_free_24px"><path d="M3 5v4h2V5h4V3H5c-1.1 0-2 .9-2 2zm2 10H3v4c0 1.1.9 2 2 2h4v-2H5v-4zm14 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zm0-16h-4v2h4v4h2V5c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_landscape_24px"><path d="M19 5H5c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 12H5V7h14v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_original_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_portrait_24px"><path d="M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_rotate_24px"><path d="M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V8a2 2 0 0 0-2-2h-6v2h6v6zm-8 2V4H6v2H4v2h2v8a2 2 0 0 0 2 2h8v2h2v-2h2v-2H8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_crop_square_24px"><path d="M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H6V6h12v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_dehaze_24px"><path d="M2 15.5v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20v-2H2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_details_24px"><path d="M3 4l9 16 9-16H3zm3.38 2h11.25L12 16 6.38 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_edit_24px"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a.996.996 0 0 0 0-1.41l-2.34-2.34a.996.996 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></symbol><symbol viewBox="0 0 24 24" id="ic_exposure_24px"><path d="M15 17v2h2v-2h2v-2h-2v-2h-2v2h-2v2h2zm5-15H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5 5h6v2H5V5zm15 15H4L20 4v16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_exposure_neg_1_24px"><path d="M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_exposure_neg_2_24px"><path d="M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17s.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46a2.94 2.94 0 0 0-.78-1.11c-.34-.31-.77-.54-1.26-.71A5.72 5.72 0 0 0 16.47 5c-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15.23.1.43.25.59.43.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_exposure_plus_1_24px"><path d="M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z"/></symbol><symbol viewBox="0 0 24 24" id="ic_exposure_plus_2_24px"><path d="M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17.23-.39.41-.78.54-1.17.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46a2.94 2.94 0 0 0-.78-1.11c-.34-.31-.77-.54-1.26-.71A5.72 5.72 0 0 0 17.47 5c-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49.27-.12.6-.18.96-.18.31 0 .58.05.81.15.23.1.43.25.59.43.16.18.28.4.37.65.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_exposure_zero_24px"><path d="M16.14 12.5c0 1-.1 1.85-.3 2.55-.2.7-.48 1.27-.83 1.7-.36.44-.79.75-1.3.95-.51.2-1.07.3-1.7.3-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95-.36-.44-.65-1.01-.85-1.7-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19-.32 0-.61.06-.86.18s-.47.31-.64.58c-.17.27-.31.62-.4 1.06s-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19c.33 0 .62-.06.87-.19s.46-.33.63-.61c.17-.28.3-.64.39-1.09.09-.45.13-.99.13-1.62v-2.66z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_1_24px"><path d="M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 10h2V5h-4v2h2v8zm7-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_24px"><path d="M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_2_24px"><path d="M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-4-4h-4v-2h2a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4v2h4v2h-2a2 2 0 0 0-2 2v4h6v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_3_24px"><path d="M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7a2 2 0 0 0-2-2h-4v2h4v2h-2v2h2v2h-4v2h4a2 2 0 0 0 2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_4_24px"><path d="M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm6-14H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_5_24px"><path d="M21 1H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm14 8v-2a2 2 0 0 0-2-2h-2V7h4V5h-6v6h4v2h-4v2h4a2 2 0 0 0 2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_6_24px"><path d="M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2V7h4V5h-4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2zm0-4h2v2h-2v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_7_24px"><path d="M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_8_24px"><path d="M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zm-8-2h2a2 2 0 0 0 2-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13a2 2 0 0 0 2 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_9_24px"><path d="M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14zM15 5h-2a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2v2h-4v2h4a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm0 4h-2V7h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_9_plus_24px"><path d="M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm11 7V8a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h1v1H9v2h3a2 2 0 0 0 2-2zm-3-3V8h1v1h-1zm10-8H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_b_and_w_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16l-7-8v8H5l7-8V5h7v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_center_focus_24px"><path d="M5 15H3v4c0 1.1.9 2 2 2h4v-2H5v-4zM5 5h4V3H5c-1.1 0-2 .9-2 2v4h2V5zm14-2h-4v2h4v4h2V5c0-1.1-.9-2-2-2zm0 16h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_drama_24px"><path d="M19.35 10.04A7.49 7.49 0 0 0 12 4a7.48 7.48 0 0 0-6.64 4.04A5.996 5.996 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_frames_24px"><path d="M20 4h-4l-4-4-4 4H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_hdr_24px"><path d="M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_none_24px"><path d="M3 5H1v16c0 1.1.9 2 2 2h16v-2H3V5zm18-4H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm0 16H7V3h14v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_tilt_shift_24px"><path d="M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69A7.94 7.94 0 0 1 11 4.07zm7.32.19A9.95 9.95 0 0 0 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1a7.94 7.94 0 0 1 1.62 3.9zM5.69 7.1L4.26 5.68A9.95 9.95 0 0 0 2.05 11h2.02a7.94 7.94 0 0 1 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43A7.868 7.868 0 0 1 4.07 13zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43a9.98 9.98 0 0 0 2.21-5.32h-2.02a7.945 7.945 0 0 1-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19A9.98 9.98 0 0 0 11 21.95v-2.02a7.94 7.94 0 0 1-3.9-1.62l-1.42 1.43z"/></symbol><symbol viewBox="0 0 24 24" id="ic_filter_vintage_24px"><path d="M18.7 12.4a6.06 6.06 0 0 0-.86-.4c.29-.11.58-.24.86-.4a6.012 6.012 0 0 0 3-5.19 6.007 6.007 0 0 0-6 0c-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55a6.008 6.008 0 0 0-6 0 5.97 5.97 0 0 0 3 5.19c.28.16.57.29.86.4-.29.11-.58.24-.86.4a6.012 6.012 0 0 0-3 5.19 6.007 6.007 0 0 0 6 0c.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54a6.008 6.008 0 0 0 6 0 6.012 6.012 0 0 0-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flare_24px"><path d="M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flash_auto_24px"><path d="M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flash_off_24px"><path d="M3.27 3L2 4.27l5 5V13h3v9l3.58-6.14L17.73 20 19 18.73 3.27 3zM17 10h-4l4-8H7v2.18l8.46 8.46L17 10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flash_on_24px"><path d="M7 2v11h3v9l7-12h-4l4-8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flip_24px"><path d="M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 5v14c0 1.1.9 2 2 2h4v-2H5V5h4V3H5c-1.1 0-2 .9-2 2zm16-2v2h2c0-1.1-.9-2-2-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_gradient_24px"><path d="M11 9h2v2h-2zm-2 2h2v2H9zm4 0h2v2h-2zm2-2h2v2h-2zM7 9h2v2H7zm12-6H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_grain_24px"><path d="M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_grid_off_24px"><path d="M8 4v1.45l2 2V4h4v4h-3.45l2 2H14v1.45l2 2V10h4v4h-3.45l2 2H20v1.45l2 2V4c0-1.1-.9-2-2-2H4.55l2 2H8zm8 0h4v4h-4V4zM1.27 1.27L0 2.55l2 2V20c0 1.1.9 2 2 2h15.46l2 2 1.27-1.27L1.27 1.27zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.54V20zm2 0v-1.46L17.46 20H16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_grid_on_24px"><path d="M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hdr_off_24px"><path d="M17.5 15v-2h1.1l.9 2H21l-.9-2.1c.5-.2.9-.8.9-1.4v-1c0-.8-.7-1.5-1.5-1.5H16v4.9l1.1 1.1h.4zm0-4.5h2v1h-2v-1zm-4.5 0v.4l1.5 1.5v-1.9c0-.8-.7-1.5-1.5-1.5h-1.9l1.5 1.5h.4zm-3.5-1l-7-7-1.1 1L6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.1-1.1-12.1-12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hdr_on_24px"><path d="M21 11.5v-1c0-.8-.7-1.5-1.5-1.5H16v6h1.5v-2h1.1l.9 2H21l-.9-2.1c.5-.3.9-.8.9-1.4zm-1.5 0h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hdr_strong_24px"><path d="M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hdr_weak_24px"><path d="M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_healing_24px"><path d="M17.73 12.02l3.98-3.98a.996.996 0 0 0 0-1.41l-4.34-4.34a.996.996 0 0 0-1.41 0l-3.98 3.98L8 2.29a1 1 0 0 0-1.41 0L2.25 6.63a.996.996 0 0 0 0 1.41l3.98 3.98L2.25 16a.996.996 0 0 0 0 1.41l4.34 4.34c.39.39 1.02.39 1.41 0l3.98-3.98 3.98 3.98c.2.2.45.29.71.29.26 0 .51-.1.71-.29l4.34-4.34a.996.996 0 0 0 0-1.41l-3.99-3.98zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z"/></symbol><symbol viewBox="0 0 24 24" id="ic_image_24px"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_image_aspect_ratio_24px"><path d="M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm8-6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V6h16v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_iso_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_landscape_24px"><path d="M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_leak_add_24px"><path d="M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2a9 9 0 0 1-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2a9 9 0 0 1 9-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_leak_remove_24px"><path d="M10 3H8c0 .37-.04.72-.12 1.06l1.59 1.59C9.81 4.84 10 3.94 10 3zM3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97A8.99 8.99 0 0 1 3 12v2c2.71 0 5.19-.99 7.11-2.62l2.5 2.5A11.044 11.044 0 0 0 10 21h2c0-2.16.76-4.14 2.03-5.69l1.43 1.43A6.922 6.922 0 0 0 14 21h2c0-1.06.33-2.03.89-2.84L19.73 21 21 19.73 4.27 3 3 4.27zM14 3h-2c0 1.5-.37 2.91-1.02 4.16l1.46 1.46C13.42 6.98 14 5.06 14 3zm5.94 13.12c.34-.08.69-.12 1.06-.12v-2c-.94 0-1.84.19-2.66.52l1.6 1.6zm-4.56-4.56l1.46 1.46A8.98 8.98 0 0 1 21 12v-2c-2.06 0-3.98.58-5.62 1.56z"/></symbol><symbol viewBox="0 0 24 24" id="ic_lens_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_linked_camera_24px"><circle cx="12" cy="14" r="3.2"/><path d="M16 3.33A4.67 4.67 0 0 1 20.67 8H22c0-3.31-2.69-6-6-6v1.33M16 6c1.11 0 2 .89 2 2h1.33A3.33 3.33 0 0 0 16 4.67V6"/><path d="M17 9c0-1.11-.89-2-2-2V4H9L7.17 6H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9h-5zm-5 10c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_looks_24px"><path d="M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_looks_3_24px"><path d="M19.01 3h-14c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 7.5c0 .83-.67 1.5-1.5 1.5.83 0 1.5.67 1.5 1.5V15a2 2 0 0 1-2 2h-4v-2h4v-2h-2v-2h2V9h-4V7h4a2 2 0 0 1 2 2v1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_looks_4_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 14h-2v-4H9V7h2v4h2V7h2v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_looks_5_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H9v-2h4v-2H9V7h6v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_looks_6_24px"><path d="M11 15h2v-2h-2v2zm8-12H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 6h-4v2h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_looks_one_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14h-2V9h-2V7h4v10z"/></symbol><symbol viewBox="0 0 24 24" id="ic_looks_two_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4 8a2 2 0 0 1-2 2h-2v2h4v2H9v-4a2 2 0 0 1 2-2h2V9H9V7h4a2 2 0 0 1 2 2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_loupe_24px"><path d="M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10h8c1.1 0 2-.9 2-2v-8c0-5.51-4.49-10-10-10zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_monochrome_photos_24px"><path d="M20 5h-3.2L15 3H9L7.2 5H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_movie_creation_24px"><path d="M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_movie_filter_24px"><path d="M18 4l2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z"/></symbol><symbol viewBox="0 0 24 24" id="ic_music_note_24px"><path d="M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_nature_24px"><path d="M13 16.12a7 7 0 0 0 6.17-6.95c0-3.87-3.13-7-7-7s-7 3.13-7 7A6.98 6.98 0 0 0 11 16.06V20H5v2h14v-2h-6v-3.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_nature_people_24px"><path d="M22.17 9.17c0-3.87-3.13-7-7-7s-7 3.13-7 7A6.98 6.98 0 0 0 14 16.06V20H6v-3h1v-4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4h1v5h16v-2h-3v-3.88a7 7 0 0 0 6.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_navigate_before_24px"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_navigate_next_24px"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_palette_24px"><path d="M12 3a9 9 0 0 0 0 18c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_panorama_24px"><path d="M23 18V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_panorama_fish_eye_24px"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_panorama_horizontal_24px"><path d="M20 6.54v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.4.39-8 1.16V6.54c2.6.77 5.28 1.16 8 1.16 2.72.01 5.4-.38 8-1.16M21.43 4c-.1 0-.2.02-.31.06C18.18 5.16 15.09 5.7 12 5.7c-3.09 0-6.18-.55-9.12-1.64A.94.94 0 0 0 2.57 4c-.34 0-.57.23-.57.63v14.75c0 .39.23.62.57.62.1 0 .2-.02.31-.06 2.94-1.1 6.03-1.64 9.12-1.64 3.09 0 6.18.55 9.12 1.64.11.04.21.06.31.06.33 0 .57-.23.57-.63V4.63c0-.4-.24-.63-.57-.63z"/></symbol><symbol viewBox="0 0 24 24" id="ic_panorama_vertical_24px"><path d="M19.94 21.12c-1.1-2.94-1.64-6.03-1.64-9.12 0-3.09.55-6.18 1.64-9.12a.94.94 0 0 0 .06-.31c0-.34-.23-.57-.63-.57H4.63c-.4 0-.63.23-.63.57 0 .1.02.2.06.31C5.16 5.82 5.71 8.91 5.71 12c0 3.09-.55 6.18-1.64 9.12-.05.11-.07.22-.07.31 0 .33.23.57.63.57h14.75c.39 0 .63-.24.63-.57-.01-.1-.03-.2-.07-.31zM6.54 20c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.4-1.16-8h10.91c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.4 1.16 8H6.54z"/></symbol><symbol viewBox="0 0 24 24" id="ic_panorama_wide_angle_24px"><path d="M12 6c2.45 0 4.71.2 7.29.64A21 21 0 0 1 20 12a21 21 0 0 1-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64A21 21 0 0 1 4 12a21 21 0 0 1 .71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_photo_24px"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_photo_album_24px"><path d="M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4zm0 15l3-3.86 2.14 2.58 3-3.86L18 19H6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_photo_camera_24px"><circle cx="12" cy="12" r="3.2"/><path d="M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_photo_filter_24px"><path d="M19.02 10v9H5V5h9V3H5.02c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-9h-2zM17 10l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_photo_library_24px"><path d="M22 16V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zm-11-4l2.03 2.71L16 11l4 5H8l3-4zM2 6v14c0 1.1.9 2 2 2h14v-2H4V6H2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_photo_size_select_actual_24px"><path d="M21 3H3C2 3 1 4 1 5v14c0 1.1.9 2 2 2h18c1 0 2-1 2-2V5c0-1-1-2-2-2zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_photo_size_select_large_24px"><path d="M21 15h2v2h-2v-2zm0-4h2v2h-2v-2zm2 8h-2v2c1 0 2-1 2-2zM13 3h2v2h-2V3zm8 4h2v2h-2V7zm0-4v2h2c0-1-1-2-2-2zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3C2 3 1 4 1 5h2V3zm6 0h2v2H9V3zM5 3h2v2H5V3zm-4 8v8c0 1.1.9 2 2 2h12V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_photo_size_select_small_24px"><path d="M23 15h-2v2h2v-2zm0-4h-2v2h2v-2zm0 8h-2v2c1 0 2-1 2-2zM15 3h-2v2h2V3zm8 4h-2v2h2V7zm-2-4v2h2c0-1-1-2-2-2zM3 21h8v-6H1v4c0 1.1.9 2 2 2zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm0 16h-2v2h2v-2zM3 3C2 3 1 4 1 5h2V3zm0 8H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_picture_as_pdf_24px"><path d="M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v2H7.5V7H10c.83 0 1.5.67 1.5 1.5v1zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5.5h1v-3h-1v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_portrait_24px"><path d="M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_remove_red_eye_24px"><path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_rotate_90_degrees_ccw_24px"><path d="M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26A8.95 8.95 0 0 0 13 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05a7.007 7.007 0 0 1 0 9.9 6.973 6.973 0 0 1-7.79 1.44l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64a8.98 8.98 0 0 0 0-12.72z"/></symbol><symbol viewBox="0 0 24 24" id="ic_rotate_left_24px"><path d="M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z"/></symbol><symbol viewBox="0 0 24 24" id="ic_rotate_right_24px"><path d="M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11a7.906 7.906 0 0 0-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z"/></symbol><symbol viewBox="0 0 24 24" id="ic_slideshow_24px"><path d="M10 8v8l5-4-5-4zm9-5H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_straighten_24px"><path d="M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_style_24px"><path d="M2.53 19.65l1.34.56v-9.03l-2.43 5.86a2.02 2.02 0 0 0 1.09 2.61zm19.5-3.7L17.07 3.98a2.013 2.013 0 0 0-1.81-1.23c-.26 0-.53.04-.79.15L7.1 5.95a2 2 0 0 0-1.08 2.6l4.96 11.97a1.998 1.998 0 0 0 2.6 1.08l7.36-3.05a1.994 1.994 0 0 0 1.09-2.6zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 11c0 1.1.9 2 2 2h1.45l-3.45-8.34v6.34z"/></symbol><symbol viewBox="0 0 24 24" id="ic_switch_camera_24px"><path d="M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-5 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_switch_video_24px"><path d="M18 9.5V6c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tag_faces_24px"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_texture_24px"><path d="M19.51 3.08L3.08 19.51c.09.34.27.65.51.9.25.24.56.42.9.51L20.93 4.49c-.19-.69-.73-1.23-1.42-1.41zM11.88 3L3 11.88v2.83L14.71 3h-2.83zM5 3c-1.1 0-2 .9-2 2v2l4-4H5zm14 18c.55 0 1.05-.22 1.41-.59.37-.36.59-.86.59-1.41v-2l-4 4h2zm-9.71 0h2.83L21 12.12V9.29L9.29 21z"/></symbol><symbol viewBox="0 0 24 24" id="ic_timelapse_24px"><path d="M16.24 7.76A5.974 5.974 0 0 0 12 6v6l-4.24 4.24c2.34 2.34 6.14 2.34 8.49 0a5.99 5.99 0 0 0-.01-8.48zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_timer_10_24px"><path d="M0 7.72V9.4l3-1V18h2V6h-.25L0 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38a6.64 6.64 0 0 1-.87-.23 2.61 2.61 0 0 1-.55-.25.717.717 0 0 1-.28-.3.978.978 0 0 1 .01-.8c.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95a2.517 2.517 0 0 0-.93-1.97c-.3-.25-.66-.44-1.09-.59C21.49 9.07 21 9 20.46 9c-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24a1.333 1.333 0 0 1-.59-1.11h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27-.58 0-1.11.09-1.59.27-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89.48.18 1.01.28 1.59.28.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89.34-.41.6-.94.78-1.6.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53-.08.42-.2.76-.36 1.02-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02-.09-.42-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52.09-.41.21-.74.38-1 .16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99.08.41.13.92.13 1.52v2.51z"/></symbol><symbol viewBox="0 0 24 24" id="ic_timer_24px"><path d="M15 1H9v2h6V1zm-4 13h2V8h-2v6zm8.03-6.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42A8.962 8.962 0 0 0 12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a8.994 8.994 0 0 0 7.03-14.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_timer_3_24px"><path d="M11.61 12.97c-.16-.24-.36-.46-.62-.65a3.38 3.38 0 0 0-.93-.48c.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33.22-.08.46-.12.73-.12.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57-.17.16-.38.28-.63.37-.25.09-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36-.17-.16-.3-.34-.39-.56-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23.49-.15.91-.38 1.26-.68.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38a6.64 6.64 0 0 1-.87-.23 2.61 2.61 0 0 1-.55-.25.717.717 0 0 1-.28-.3c-.05-.11-.08-.24-.08-.39a.946.946 0 0 1 .36-.75c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11.19.07.35.17.48.29.13.12.22.26.29.42.06.16.1.32.1.49h1.95a2.517 2.517 0 0 0-.93-1.97c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21-.41.14-.77.33-1.06.57-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.68.23.96c.15.28.37.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77-.27.2-.66.29-1.17.29-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24a1.333 1.333 0 0 1-.59-1.11h-1.89c0 .36.08.71.24 1.05.16.34.39.65.7.93.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z"/></symbol><symbol viewBox="0 0 24 24" id="ic_timer_off_24px"><path d="M19.04 4.55l-1.42 1.42a9.012 9.012 0 0 0-10.57-.49l1.46 1.46C9.53 6.35 10.73 6 12 6c3.87 0 7 3.13 7 7 0 1.27-.35 2.47-.94 3.49l1.45 1.45A8.878 8.878 0 0 0 21 13c0-2.12-.74-4.07-1.97-5.61l1.42-1.42-1.41-1.42zM15 1H9v2h6V1zm-4 8.44l2 2V8h-2v1.44zM3.02 4L1.75 5.27 4.5 8.03A8.905 8.905 0 0 0 3 13c0 4.97 4.02 9 9 9 1.84 0 3.55-.55 4.98-1.5l2.5 2.5 1.27-1.27-7.71-7.71L3.02 4zM12 20c-3.87 0-7-3.13-7-7 0-1.28.35-2.48.95-3.52l9.56 9.56c-1.03.61-2.23.96-3.51.96z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tonality_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_transform_24px"><path d="M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v8c0 1.1.9 2 2 2h8v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V8c0-1.1-.9-2-2-2h-6v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tune_24px"><path d="M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_comfy_24px"><path d="M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_view_compact_24px"><path d="M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_vignette_24px"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 15c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wb_auto_24px"><path d="M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76A7.97 7.97 0 0 0 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wb_cloudy_24px"><path d="M19.36 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wb_incandescent_24px"><path d="M3.55 18.54l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 22.45h2V19.5h-2v2.95zM4 10.5H1v2h3v-2zm11-4.19V1.5H9v4.81C7.21 7.35 6 9.28 6 11.5c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wb_iridescent_24px"><path d="M5 14.5h14v-6H5v6zM11 .55V3.5h2V.55h-2zm8.04 2.5l-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 22.45V19.5h-2v2.95h2zm7.45-3.91l-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 4.46l1.79 1.79 1.41-1.41-1.79-1.79-1.41 1.41zm1.41 15.49l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wb_sunny_24px"><path d="M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z"/></symbol></svg>',g='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_add_location_24px"><path d="M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm4 8h-3v3h-2v-3H8V8h3V5h2v3h3v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_beenhere_24px"><path d="M19 1H5c-1.1 0-1.99.9-1.99 2L3 15.93c0 .69.35 1.3.88 1.66L12 23l8.11-5.41c.53-.36.88-.97.88-1.66L21 3c0-1.1-.9-2-2-2zm-9 15l-5-5 1.41-1.41L10 13.17l7.59-7.59L19 7l-9 9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_24px"><path d="M21.71 11.29l-9-9a.996.996 0 0 0-1.41 0l-9 9a.996.996 0 0 0 0 1.41l9 9c.39.39 1.02.39 1.41 0l9-9a.996.996 0 0 0 0-1.41zM14 14.5V12h-4v3H8v-4c0-.55.45-1 1-1h5V7.5l3.5 3.5-3.5 3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_bike_24px"><path d="M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L7.8 8.4c-.4.4-.6.9-.6 1.4 0 .6.2 1.1.6 1.4L11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_boat_24px"><path d="M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99a8.752 8.752 0 0 0 8 0c1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l1.89-6.68c.08-.26.06-.54-.06-.78s-.34-.42-.6-.5L20 10.62V6c0-1.1-.9-2-2-2h-3V1H9v3H6c-1.1 0-2 .9-2 2v4.62l-1.29.42a1.007 1.007 0 0 0-.66 1.28L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_bus_24px"><path d="M4 16c0 .88.39 1.67 1 2.22V20c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h8v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_car_24px"><path d="M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_railway_24px"><path d="M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_run_24px"><path d="M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_subway_24px"><path d="M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_transit_24px"><path d="M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_directions_walk_24px"><path d="M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1L6 8.3V13h2V9.6l1.8-.7"/></symbol><symbol viewBox="0 0 24 24" id="ic_edit_location_24px"><path d="M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.56 10H9v-1.44l3.35-3.34 1.43 1.43L10.44 12zm4.45-4.45l-.7.7-1.44-1.44.7-.7a.38.38 0 0 1 .54 0l.9.9c.15.15.15.39 0 .54z"/></symbol><symbol viewBox="0 0 24 24" id="ic_ev_station_24px"><path d="M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33a2.5 2.5 0 0 0 2.5 2.5c.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5a2.5 2.5 0 0 0 5 0V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_flight_24px"><path d="M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hotel_24px"><path d="M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9a4 4 0 0 0-4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_layers_24px"><path d="M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_layers_clear_24px"><path d="M19.81 14.99l1.19-.92-1.43-1.43-1.19.92 1.43 1.43zm-.45-4.72L21 9l-9-7-2.91 2.27 7.87 7.88 2.4-1.88zM3.27 1L2 2.27l4.22 4.22L3 9l1.63 1.27L12 16l2.1-1.63 1.43 1.43L12 18.54l-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21 22 19.73 3.27 1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_activity_24px"><path d="M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_airport_24px"><path d="M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_atm_24px"><path d="M11 17h2v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1h-3v-1h4V8h-2V7h-2v1h-1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3v1H9v2h2v1zm9-13H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V6h16v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_bar_24px"><path d="M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7L5.66 5h12.69l-1.78 2H7.43z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_cafe_24px"><path d="M20 3H4v10a4 4 0 0 0 4 4h6a4 4 0 0 0 4-4v-3h2c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM2 21h18v-2H2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_car_wash_24px"><path d="M17 5c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5zm11.92 3.01C18.72 7.42 18.16 7 17.5 7h-11c-.66 0-1.21.42-1.42 1.01L3 14v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_convenience_store_24px"><path d="M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_dining_24px"><path d="M8.1 13.34l2.83-2.83L3.91 3.5a4.008 4.008 0 0 0 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_drink_24px"><path d="M3 2l2.01 18.23C5.13 21.23 5.97 22 7 22h10c1.03 0 1.87-.77 1.99-1.77L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_florist_24px"><path d="M12 22a9 9 0 0 0 9-9 9 9 0 0 0-9 9zM5.6 10.25a2.5 2.5 0 0 0 3.92 2.06l-.02.19a2.5 2.5 0 0 0 5 0l-.02-.19c.4.28.89.44 1.42.44a2.5 2.5 0 0 0 2.5-2.5c0-1-.59-1.85-1.43-2.25a2.49 2.49 0 0 0 1.43-2.25 2.5 2.5 0 0 0-3.92-2.06l.02-.19a2.5 2.5 0 1 0-5 0l.02.19c-.4-.28-.89-.44-1.42-.44a2.5 2.5 0 0 0-2.5 2.5c0 1 .59 1.85 1.43 2.25a2.49 2.49 0 0 0-1.43 2.25zM12 5.5a2.5 2.5 0 0 1 0 5 2.5 2.5 0 0 1 0-5zM3 13a9 9 0 0 0 9 9 9 9 0 0 0-9-9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_gas_station_24px"><path d="M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33a2.5 2.5 0 0 0 2.5 2.5c.36 0 .69-.08 1-.21v7.21c0 .55-.45 1-1 1s-1-.45-1-1V14c0-1.1-.9-2-2-2h-1V5c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v16h10v-7.5h1.5v5a2.5 2.5 0 0 0 5 0V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_grocery_store_24px"><path d="M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 20 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_hospital_24px"><path d="M19 3H5c-1.1 0-1.99.9-1.99 2L3 19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-1 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_hotel_24px"><path d="M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm12-6h-8v7H3V5H1v15h2v-3h18v3h2v-9a4 4 0 0 0-4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_laundry_service_24px"><path d="M9.17 16.83a4.008 4.008 0 0 0 5.66 0 4.008 4.008 0 0 0 0-5.66l-5.66 5.66zM18 2.01L6 2c-1.11 0-2 .89-2 2v16c0 1.11.89 2 2 2h12c1.11 0 2-.89 2-2V4c0-1.11-.89-1.99-2-1.99zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_library_24px"><path d="M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_mall_24px"><path d="M19 6h-2c0-2.76-2.24-5-5-5S7 3.24 7 6H5c-1.1 0-1.99.9-1.99 2L3 20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-7-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_movies_24px"><path d="M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_offer_24px"><path d="M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_parking_24px"><path d="M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_pharmacy_24px"><path d="M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_phone_24px"><path d="M6.62 10.79a15.15 15.15 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_pizza_24px"><path d="M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_play_24px"><path d="M20 12c0-1.1.9-2 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_post_office_24px"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_printshop_24px"><path d="M19 8H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zm-3 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_see_24px"><circle cx="12" cy="12" r="3.2"/><path d="M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_shipping_24px"><path d="M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_local_taxi_24px"><path d="M18.92 6.01C18.72 5.42 18.16 5 17.5 5H15V3H9v2H6.5c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_map_24px"><path d="M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM15 19l-6-2.11V5l6 2.11V19z"/></symbol><symbol viewBox="0 0 24 24" id="ic_my_location_24px"><path d="M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3A8.994 8.994 0 0 0 13 3.06V1h-2v2.06A8.994 8.994 0 0 0 3.06 11H1v2h2.06A8.994 8.994 0 0 0 11 20.94V23h2v-2.06A8.994 8.994 0 0 0 20.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_navigation_24px"><path d="M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71z"/></symbol><symbol viewBox="0 0 24 24" id="ic_near_me_24px"><path d="M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_person_pin_24px"><path d="M19 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 3.3A2.7 2.7 0 0 1 14.7 8a2.7 2.7 0 0 1-2.7 2.7A2.7 2.7 0 0 1 9.3 8 2.7 2.7 0 0 1 12 5.3zM18 16H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1v.9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_person_pin_circle_24px"><path d="M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 2a2 2 0 1 1 0 4 2 2 0 0 1 0-4zm0 10c-1.67 0-3.14-.85-4-2.15.02-1.32 2.67-2.05 4-2.05s3.98.73 4 2.05A4.783 4.783 0 0 1 12 14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pin_drop_24px"><path d="M18 8c0-3.31-2.69-6-6-6S6 4.69 6 8c0 4.5 6 11 6 11s6-6.5 6-11zm-8 0c0-1.1.9-2 2-2s2 .9 2 2a2 2 0 0 1-4 0zM5 20v2h14v-2H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_place_24px"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_rate_review_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_restaurant_24px"><path d="M11 9H9V2H7v7H5V2H3v7c0 2.12 1.66 3.84 3.75 3.97V22h2.5v-9.03C11.34 12.84 13 11.12 13 9V2h-2v7zm5-3v8h2.5v8H21V2c-2.76 0-5 2.24-5 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_restaurant_menu_24px"><path d="M8.1 13.34l2.83-2.83L3.91 3.5a4.008 4.008 0 0 0 0 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z"/></symbol><symbol viewBox="0 0 24 24" id="ic_satellite_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6l3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_store_mall_directory_24px"><path d="M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_streetview_24px"><path d="M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z"/><circle cx="18" cy="6" r="5"/><path d="M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82A6.435 6.435 0 0 1 11.5 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_subway_24px"><circle cx="15.5" cy="16" r="1"/><circle cx="8.5" cy="16" r="1"/><path d="M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2c-1.86 0-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 13.08c0 1.45-1.18 2.62-2.63 2.62l1.13 1.12V20H15l-1.5-1.5h-2.83L9.17 20H7.5v-.38l1.12-1.12A2.63 2.63 0 0 1 6 15.88V9c0-2.63 3-3 6-3 3.32 0 6 .38 6 3v6.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_terrain_24px"><path d="M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_traffic_24px"><path d="M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0-5a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0-5a2 2 0 0 1-2-2c0-1.11.89-2 2-2a2 2 0 0 1 0 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_train_24px"><path d="M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm2 0V6h5v4h-5zm3.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tram_24px"><path d="M19 16.94V8.5c0-2.79-2.61-3.4-6.01-3.49l.76-1.51H17V2H7v1.5h4.75l-.76 1.52C7.86 5.11 5 5.73 5 8.5v8.44c0 1.45 1.19 2.66 2.59 2.97L6 21.5v.5h2.23l2-2H14l2 2h2v-.5L16.5 20h-.08c1.69 0 2.58-1.37 2.58-3.06zm-7 1.56c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_transfer_within_a_station_24px"><path d="M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75"/></symbol><symbol viewBox="0 0 24 24" id="ic_zoom_out_map_24px"><path d="M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6z"/></symbol></svg>',b='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_apps_24px"><path d="M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_arrow_back_24px"><path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_arrow_downward_24px"><path fill="#010101" d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_arrow_drop_down_24px"><path d="M7 10l5 5 5-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_arrow_drop_down_circle_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 12l-4-4h8l-4 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_arrow_drop_up_24px"><path d="M7 14l5-5 5 5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_arrow_forward_24px"><path d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_arrow_upward_24px"><path d="M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_cancel_24px"><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"/></symbol><symbol viewBox="0 0 24 24" id="ic_check_24px"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></symbol><symbol viewBox="0 0 24 24" id="ic_chevron_left_24px"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_chevron_right_24px"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_close_24px"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_expand_less_24px"><path d="M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_expand_more_24px"><path d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_first_page_24px"><path d="M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fullscreen_24px"><path d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fullscreen_exit_24px"><path d="M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_last_page_24px"><path d="M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_menu_24px"><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_more_horiz_24px"><path d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_more_vert_24px"><path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_refresh_24px"><path d="M17.65 6.35A7.958 7.958 0 0 0 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 0 1 12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/></symbol><symbol viewBox="0 0 24 24" id="ic_subdirectory_arrow_left_24px"><path d="M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_subdirectory_arrow_right_24px"><path d="M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_unfold_less_24px"><path d="M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z"/></symbol><symbol viewBox="0 0 24 24" id="ic_unfold_more_24px"><path d="M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z"/></symbol></svg>',y='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_adb_24px"><path d="M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airline_seat_flat_24px"><path d="M22 11v2H9V7h9a4 4 0 0 1 4 4zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9a3 3 0 0 0-.04-4.24 3 3 0 0 0-4.24.04 3 3 0 0 0 .04 4.24 3 3 0 0 0 4.24-.04z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airline_seat_flat_angled_24px"><path d="M22.25 14.29l-.69 1.89L9.2 11.71l2.08-5.66 8.56 3.09a4 4 0 0 1 2.41 5.15zM1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94a3.01 3.01 0 0 0 1.41-4A3.005 3.005 0 0 0 4.7 4.8a2.99 2.99 0 0 0-1.4 4 2.99 2.99 0 0 0 4 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airline_seat_individual_suite_24px"><path d="M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm12-6h-8v7H3V7H1v10h22v-6a4 4 0 0 0-4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airline_seat_legroom_extra_24px"><path d="M4 12V3H2v9c0 2.76 2.24 5 5 5h6v-2H7c-1.66 0-3-1.34-3-3zm18.83 5.24c-.38-.72-1.29-.97-2.03-.63l-1.09.5-3.41-6.98a2.01 2.01 0 0 0-1.79-1.12L11 9V3H5v8c0 1.66 1.34 3 3 3h7l3.41 7 3.72-1.7c.77-.36 1.1-1.3.7-2.06z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airline_seat_legroom_normal_24px"><path d="M5 12V3H3v9c0 2.76 2.24 5 5 5h6v-2H8c-1.66 0-3-1.34-3-3zm15.5 6H19v-7c0-1.1-.9-2-2-2h-5V3H6v8c0 1.65 1.35 3 3 3h7v7h4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airline_seat_legroom_reduced_24px"><path d="M19.97 19.2c.18.96-.55 1.8-1.47 1.8H14v-3l1-4H9c-1.65 0-3-1.35-3-3V3h6v6h5c1.1 0 2 .9 2 2l-2 7h1.44c.73 0 1.39.49 1.53 1.2zM5 12V3H3v9c0 2.76 2.24 5 5 5h4v-2H8c-1.66 0-3-1.34-3-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airline_seat_recline_extra_24px"><path d="M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79a2.01 2.01 0 0 1 2.79-.49c.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H8.93a2.99 2.99 0 0 1-2.96-2.54L4 7H2l1.99 9.76A5.01 5.01 0 0 0 8.94 21H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38a2.21 2.21 0 0 0-.99-.06h-.02a2.268 2.268 0 0 0-1.84 2.61l1.35 5.92A3.008 3.008 0 0 0 9.83 18h6.85l3.82 3 1.5-1.5-5.77-4.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airline_seat_recline_normal_24px"><path d="M7.59 5.41c-.78-.78-.78-2.05 0-2.83.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83-.79.79-2.05.79-2.83 0zM6 16V7H4v9c0 2.76 2.24 5 5 5h6v-2H9c-1.66 0-3-1.34-3-3zm14 4.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V15c0 1.66 1.34 3 3 3h5.07l3.5 3.5L20 20.07z"/></symbol><symbol viewBox="0 0 24 24" id="ic_bluetooth_audio_24px"><path d="M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33 0-.82-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2a9.936 9.936 0 0 0 1.54-5.31c-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_confirmation_number_24px"><path d="M22 10V6a2 2 0 0 0-2-2H4c-1.1 0-1.99.89-1.99 2v4c1.1 0 1.99.9 1.99 2s-.89 2-2 2v4c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-4c-1.1 0-2-.9-2-2s.9-2 2-2zm-9 7.5h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_disc_full_24px"><path d="M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_do_not_disturb_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31A7.902 7.902 0 0 1 12 20zm6.31-3.1L7.1 5.69A7.902 7.902 0 0 1 12 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_do_not_disturb_alt_24px"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9A7.88 7.88 0 0 1 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_do_not_disturb_off_24px"><path d="M17 11v2h-1.46l4.68 4.68A9.92 9.92 0 0 0 22 12c0-5.52-4.48-10-10-10-2.11 0-4.07.66-5.68 1.78L13.54 11H17zM2.27 2.27L1 3.54l2.78 2.78A9.92 9.92 0 0 0 2 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.27-1.27L11 11 2.27 2.27zM7 13v-2h1.46l2 2H7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_do_not_disturb_on_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_drive_eta_24px"><path d="M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_enhanced_encryption_24px"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_event_available_24px"><path d="M16.53 11.06L15.47 10l-4.88 4.88-2.12-2.12-1.06 1.06L10.59 17l5.94-5.94zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_event_busy_24px"><path d="M9.31 17l2.44-2.44L14.19 17l1.06-1.06-2.44-2.44 2.44-2.44L14.19 10l-2.44 2.44L9.31 10l-1.06 1.06 2.44 2.44-2.44 2.44L9.31 17zM19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z"/></symbol><symbol viewBox="0 0 24 24" id="ic_event_note_24px"><path d="M17 10H7v2h10v-2zm2-7h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zm-5-5H7v2h7v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_folder_special_24px"><path d="M20 6h-8l-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-2.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z"/></symbol><symbol viewBox="0 0 24 24" id="ic_live_tv_24px"><path d="M21 6h-7.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H3a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8a2 2 0 0 0-2-2zm0 14H3V8h18v12zM9 10v8l7-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mms_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_more_24px"><path d="M22 3H7c-.69 0-1.23.35-1.59.88L0 12l5.41 8.11c.36.53.97.89 1.66.89H22c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_network_check_24px"><path d="M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2a15.367 15.367 0 0 0-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2a7.1 7.1 0 0 1 4.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z"/></symbol><symbol viewBox="0 0 24 24" id="ic_network_locked_24px"><path d="M19.5 10c.17 0 .33.03.5.05V1L1 20h13v-3c0-.89.39-1.68 1-2.23v-.27c0-2.48 2.02-4.5 4.5-4.5zm2.5 6v-1.5a2.5 2.5 0 0 0-5 0V16c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-1 0h-3v-1.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_no_encryption_24px"><path d="M21 21.78L4.22 5 3 6.22l2.04 2.04C4.42 8.6 4 9.25 4 10v10c0 1.1.9 2 2 2h12c.23 0 .45-.05.66-.12L19.78 23 21 21.78zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H9.66L20 18.34V10c0-1.1-.9-2-2-2h-1V6c0-2.76-2.24-5-5-5-2.56 0-4.64 1.93-4.94 4.4L8.9 7.24V6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_ondemand_video_24px"><path d="M21 3H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm0 14H3V5h18v12zm-5-6l-7 4V7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_personal_video_24px"><path d="M21 3H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm0 14H3V5h18v12z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phone_bluetooth_speaker_24px"><path d="M14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21zm2 8.29c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.045 15.045 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phone_forwarded_24px"><path d="M18 11l5-5-5-5v3h-4v4h4v3zm2 4.5c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.045 15.045 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phone_in_talk_24px"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.045 15.045 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 12h2a9 9 0 0 0-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phone_locked_24px"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.045 15.045 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM20 4v-.5a2.5 2.5 0 0 0-5 0V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phone_missed_24px"><path d="M6.5 5.5L12 11l7-7-1-1-6 6-4.5-4.5H11V3H5v6h1.5V5.5zm17.21 11.17A16.97 16.97 0 0 0 12 12C7.46 12 3.34 13.78.29 16.67c-.18.18-.29.43-.29.71s.11.53.29.71l2.48 2.48c.18.18.43.29.71.29.27 0 .52-.11.7-.28.79-.74 1.69-1.36 2.66-1.85.33-.16.56-.5.56-.9v-3.1c1.45-.48 3-.73 4.6-.73 1.6 0 3.15.25 4.6.72v3.1c0 .39.23.74.56.9.98.49 1.87 1.12 2.67 1.85.18.18.43.28.7.28.28 0 .53-.11.71-.29l2.48-2.48c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z"/></symbol><symbol viewBox="0 0 24 24" id="ic_phone_paused_24px"><path d="M17 3h-2v7h2V3zm3 12.5c-1.25 0-2.45-.2-3.57-.57a1.02 1.02 0 0 0-1.02.24l-2.2 2.2a15.045 15.045 0 0 1-6.59-6.59l2.2-2.21a.96.96 0 0 0 .25-1A11.36 11.36 0 0 1 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1zM19 3v7h2V3h-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_power_24px"><path d="M16.01 7L16 3h-2v4h-4V3H8v4h-.01C7 6.99 6 7.99 6 8.99v5.49L9.5 18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z"/></symbol><symbol viewBox="0 0 24 24" id="ic_priority_high_24px"><circle cx="12" cy="19" r="2"/><path d="M10 3h4v12h-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_rv_hookup_24px"><path d="M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sd_card_24px"><path d="M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sim_card_alert_24px"><path d="M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-2h2v2zm0-4h-2V8h2v5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sms_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sms_failed_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 12h-2v-2h2v2zm0-4h-2V6h2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sync_24px"><path d="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0 0 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 0 0 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sync_disabled_24px"><path d="M10 6.35V4.26c-.8.21-1.55.54-2.23.96l1.46 1.46c.25-.12.5-.24.77-.33zm-7.14-.94l2.36 2.36a7.925 7.925 0 0 0 1.14 9.87L4 20h6v-6l-2.24 2.24A6.003 6.003 0 0 1 6 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.25-.77.34v2.09c.8-.21 1.55-.54 2.23-.96l2.36 2.36 1.27-1.27L4.14 4.14 2.86 5.41zM20 4h-6v6l2.24-2.24A6.003 6.003 0 0 1 18 12c0 1-.25 1.94-.68 2.77l1.46 1.46a7.925 7.925 0 0 0-1.14-9.87L20 4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sync_problem_24px"><path d="M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24A6.003 6.003 0 0 1 5 12a5.99 5.99 0 0 1 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24A6.003 6.003 0 0 1 19 12a5.99 5.99 0 0 1-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_system_update_24px"><path d="M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_tap_and_play_24px"><path d="M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2a9 9 0 0 1 9 9h2c0-6.08-4.92-11-11-11zM17 1.01L7 1c-1.1 0-2 .9-2 2v7.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H17c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z"/></symbol><symbol viewBox="0 0 24 24" id="ic_time_to_leave_24px"><path d="M18.92 5.01C18.72 4.42 18.16 4 17.5 4h-11c-.66 0-1.21.42-1.42 1.01L3 11v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_vibration_24px"><path d="M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM16.5 3h-9C6.67 3 6 3.67 6 4.5v15c0 .83.67 1.5 1.5 1.5h9c.83 0 1.5-.67 1.5-1.5v-15c0-.83-.67-1.5-1.5-1.5zM16 19H8V5h8v14z"/></symbol><symbol viewBox="0 0 24 24" id="ic_voice_chat_24px"><path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12l-4-3.2V14H6V6h8v3.2L18 6v8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_vpn_lock_24px"><path d="M22 4v-.5a2.5 2.5 0 0 0-5 0V4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm-2.28 8c.04.33.08.66.08 1 0 2.08-.8 3.97-2.1 5.39-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H7v-2h2c.55 0 1-.45 1-1V8h2c1.1 0 2-.9 2-2V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03zM10 20.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v1c0 1.1.9 2 2 2v1.93z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wc_24px"><path d="M5.5 22v-7.5H4V9c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v5.5H9.5V22h-4zM18 22v-6h3l-2.54-7.63A2.01 2.01 0 0 0 16.56 7h-.12a2 2 0 0 0-1.9 1.37L12 16h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_wifi_24px"><path d="M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3a4.237 4.237 0 0 0-6 0zm-4-4l2 2a7.074 7.074 0 0 1 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"/></symbol></svg>',w='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_ac_unit_24px"><path d="M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22z"/></symbol><symbol viewBox="0 0 24 24" id="ic_airport_shuttle_24px"><path d="M17 5H3a2 2 0 0 0-2 2v9h2c0 1.65 1.34 3 3 3s3-1.35 3-3h5.5c0 1.65 1.34 3 3 3s3-1.35 3-3H23v-5l-6-6zM3 11V7h4v4H3zm3 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7-6.5H9V7h4v4zm4.5 6.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM15 11V7h1l4 4h-5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_all_inclusive_24px"><path d="M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L12 10.66 10.48 12h.01L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2A5.37 5.37 0 0 0 5.4 6.62C2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53l2.83-2.5.01.01L13.52 12h-.01l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12a5.386 5.386 0 0 0 3.82 1.57c2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z"/></symbol><symbol viewBox="0 0 24 24" id="ic_beach_access_24px"><path d="M13.127 14.56l1.43-1.43 6.44 6.443L19.57 21zm4.293-5.73l2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm.02-.02l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_business_center_24px"><path d="M10 16v-1H3.01L3 19c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2v-4h-7v1h-4zm10-9h-4.01V5l-2-2h-4l-2 2v2H4c-1.1 0-2 .9-2 2v3c0 1.11.89 2 2 2h6v-2h4v2h6c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2zm-6 0h-4V5h4v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_casino_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_child_care_24px"><circle cx="14.5" cy="10.5" r="1.25"/><circle cx="9.5" cy="10.5" r="1.25"/><path d="M22.94 12.66c.04-.21.06-.43.06-.66s-.02-.45-.06-.66a4.008 4.008 0 0 0-2.81-3.17 9.114 9.114 0 0 0-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91a3.994 3.994 0 0 0-2.81 3.17c-.04.21-.06.43-.06.66s.02.45.06.66a4.008 4.008 0 0 0 2.81 3.17 8.977 8.977 0 0 0 2.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89a3.998 3.998 0 0 0 2.8-3.17zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2zM7.5 14c.76 1.77 2.49 3 4.5 3s3.74-1.23 4.5-3h-9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_child_friendly_24px"><path d="M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89A7.948 7.948 0 0 0 21 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42A3.49 3.49 0 0 0 4.5 18.5C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z"/></symbol><symbol viewBox="0 0 24 24" id="ic_fitness_center_24px"><path d="M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29z"/></symbol><symbol viewBox="0 0 24 24" id="ic_free_breakfast_24px"><path d="M20 3H4v10a4 4 0 0 0 4 4h6a4 4 0 0 0 4-4v-3h2a2 2 0 0 0 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_golf_course_24px"><circle cx="19.5" cy="19.5" r="1.5"/><path d="M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z"/></symbol><symbol viewBox="0 0 24 24" id="ic_hot_tub_24px"><circle cx="7" cy="6" r="2"/><path d="M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v8c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2v-8H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z"/></symbol><symbol viewBox="0 0 24 24" id="ic_kitchen_24px"><path d="M18 2.01L6 2a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.11-.9-1.99-2-1.99zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8zm0 7h2v5H8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pool_24px"><path d="M22 21c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.46.27-1.08.64-2.19.64-1.11 0-1.73-.37-2.18-.64-.37-.23-.6-.36-1.15-.36s-.78.13-1.15.36c-.46.27-1.08.64-2.19.64v-2c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.23.59.36 1.15.36v2zm0-4.5c-1.11 0-1.73-.37-2.18-.64-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36-.56 0-.78.13-1.15.36-.45.27-1.07.64-2.18.64s-1.73-.37-2.18-.64c-.37-.22-.6-.36-1.15-.36s-.78.13-1.15.36c-.47.27-1.09.64-2.2.64v-2c.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.56 0 .78-.13 1.15-.36.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36s.78-.13 1.15-.36c.45-.27 1.07-.64 2.18-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36v2zM8.67 12c.56 0 .78-.13 1.15-.36.46-.27 1.08-.64 2.19-.64 1.11 0 1.73.37 2.18.64.37.22.6.36 1.15.36s.78-.13 1.15-.36c.12-.07.26-.15.41-.23L10.48 5C8.93 3.45 7.5 2.99 5 3v2.5c1.82-.01 2.89.39 4 1.5l1 1-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36z"/><circle cx="16.5" cy="5.5" r="2.5"/></symbol><symbol viewBox="0 0 24 24" id="ic_room_service_24px"><path d="M2 17h20v2H2zm11.84-9.21A2.006 2.006 0 0 0 12 5a2.006 2.006 0 0 0-1.84 2.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z"/></symbol><symbol viewBox="0 0 24 24" id="ic_rv_hookup_24px"><path d="M20 17v-6c0-1.1-.9-2-2-2H7V7l-3 3 3 3v-2h4v3H4v3c0 1.1.9 2 2 2h2c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_smoke_free_24px"><path d="M2 6l6.99 7H2v3h9.99l7 7 1.26-1.25-17-17zm18.5 7H22v3h-1.5zM18 13h1.5v3H18zm.85-8.12c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.92c0-2.23-1.28-4.15-3.15-5.04zM14.5 8.7h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.59c0-1.8-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75V2a3.35 3.35 0 0 0 0 6.7zm2.5 7.23V13h-2.93z"/></symbol><symbol viewBox="0 0 24 24" id="ic_smoking_rooms_24px"><path d="M2 16h15v3H2zm18.5 0H22v3h-1.5zM18 16h1.5v3H18zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5a3.35 3.35 0 0 0 0 6.7h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z"/></symbol><symbol viewBox="0 0 24 24" id="ic_spa_24px"><path fill="#607D8B" d="M8.55 12zm10.43-1.61z"/><path d="M15.49 9.63c-.18-2.79-1.31-5.51-3.43-7.63a12.188 12.188 0 0 0-3.55 7.63c1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z"/></symbol></svg>',x='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_cake_24px"><path d="M12 6a2 2 0 0 0 2-2c0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.6 9.99l-1.07-1.07-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V21c0 .55.45 1 1 1h16c.55 0 1-.45 1-1v-4.61c-.56.38-1.23.61-1.96.61-.92 0-1.79-.36-2.44-1.01zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_domain_24px"><path d="M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_group_24px"><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_group_add_24px"><path d="M8 10H5V7H3v3H0v2h3v3h2v-3h3v-2zm10 1c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14zm-5 0c1.66 0 2.99-1.34 2.99-3S14.66 5 13 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm6.62 2.16c.83.73 1.38 1.66 1.38 2.84v2h3v-2c0-1.54-2.37-2.49-4.38-2.84zM13 13c-2 0-6 1-6 3v2h12v-2c0-2-4-3-6-3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_location_city_24px"><path d="M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mood_24px"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_mood_bad_24px"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 3c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_notifications_24px"><path d="M12 22c1.1 0 2-.9 2-2h-4a2 2 0 0 0 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_notifications_active_24px"><path d="M7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2a8.445 8.445 0 0 1 3.55-6.42zm12.39 6.42h2a10.49 10.49 0 0 0-4.12-7.85l-1.42 1.43a8.495 8.495 0 0 1 3.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04a2.03 2.03 0 0 0 1.44-1.18c.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_notifications_none_24px"><path d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_notifications_off_24px"><path d="M20 18.69L7.84 6.14 5.27 3.49 4 4.76l2.8 2.8v.01c-.52.99-.8 2.16-.8 3.42v5l-2 2v1h13.73l2 2L21 19.72l-1-1.03zM12 22c1.11 0 2-.89 2-2h-4c0 1.11.89 2 2 2zm6-7.32V11c0-3.08-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68c-.15.03-.29.08-.42.12-.1.03-.2.07-.3.11h-.01c-.01 0-.01 0-.02.01-.23.09-.46.2-.68.31 0 0-.01 0-.01.01L18 14.68z"/></symbol><symbol viewBox="0 0 24 24" id="ic_notifications_paused_24px"><path d="M12 22c1.1 0 2-.9 2-2h-4a2 2 0 0 0 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_pages_24px"><path d="M3 5v6h5L7 7l4 1V3H5c-1.1 0-2 .9-2 2zm5 8H3v6c0 1.1.9 2 2 2h6v-5l-4 1 1-4zm9 4l-4-1v5h6c1.1 0 2-.9 2-2v-6h-5l1 4zm2-14h-6v5l4-1-1 4h5V5c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_party_mode_24px"><path d="M20 4h-3.17L15 2H9L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 3c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1A5.002 5.002 0 0 1 12 7zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08a5.002 5.002 0 0 1-4.9 6z"/></symbol><symbol viewBox="0 0 24 24" id="ic_people_24px"><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_people_outline_24px"><path d="M16.5 13c-1.2 0-3.07.34-4.5 1-1.43-.67-3.3-1-4.5-1C5.33 13 1 14.08 1 16.25V19h22v-2.75c0-2.17-4.33-3.25-6.5-3.25zm-4 4.5h-10v-1.25c0-.54 2.56-1.75 5-1.75s5 1.21 5 1.75v1.25zm9 0H14v-1.25c0-.46-.2-.86-.52-1.22.88-.3 1.96-.53 3.02-.53 2.44 0 5 1.21 5 1.75v1.25zM7.5 12c1.93 0 3.5-1.57 3.5-3.5S9.43 5 7.5 5 4 6.57 4 8.5 5.57 12 7.5 12zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 5.5c1.93 0 3.5-1.57 3.5-3.5S18.43 5 16.5 5 13 6.57 13 8.5s1.57 3.5 3.5 3.5zm0-5.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_person_24px"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_person_add_24px"><path d="M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_person_outline_24px"><path d="M12 5.9a2.1 2.1 0 1 1 0 4.2 2.1 2.1 0 0 1 0-4.2m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_plus_one_24px"><path d="M10 8H8v4H4v2h4v4h2v-4h4v-2h-4zm4.5-1.92V7.9l2.5-.5V18h2V5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_poll_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_public_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></symbol><symbol viewBox="0 0 24 24" id="ic_school_24px"><path d="M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sentiment_dissatisfied_24px"><circle cx="15.5" cy="9.5" r="1.5"/><circle cx="8.5" cy="9.5" r="1.5"/><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-6c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sentiment_neutral_24px"><path d="M9 14h6v1.5H9z"/><circle cx="15.5" cy="9.5" r="1.5"/><circle cx="8.5" cy="9.5" r="1.5"/><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sentiment_satisfied_24px"><circle cx="15.5" cy="9.5" r="1.5"/><circle cx="8.5" cy="9.5" r="1.5"/><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88a5.495 5.495 0 0 0 10.24 0h-1.67c-.7 1.19-1.97 2-3.45 2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sentiment_very_dissatisfied_24px"><path d="M11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zM12 14c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_sentiment_very_satisfied_24px"><path d="M11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm1-10.06L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zm-4.12 0L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z"/></symbol><symbol viewBox="0 0 24 24" id="ic_share_24px"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z"/></symbol><symbol viewBox="0 0 24 24" id="ic_whatshot_24px"><path d="M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04a4.8 4.8 0 0 1-4.8 4.8z"/></symbol></svg>',_='<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="ic_check_box_24px"><path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></symbol><symbol viewBox="0 0 24 24" id="ic_check_box_outline_blank_24px"><path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_indeterminate_check_box_24px"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10H7v-2h10v2z"/></symbol><symbol viewBox="0 0 24 24" id="ic_radio_button_checked_24px"><path d="M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_radio_button_unchecked_24px"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/></symbol><symbol viewBox="0 0 24 24" id="ic_star_24px"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></symbol><symbol viewBox="0 0 24 24" id="ic_star_border_24px"><path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"/></symbol><symbol viewBox="0 0 24 24" id="ic_star_half_24px"><path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"/></symbol></svg>',z=function(){var t={"./svg-sprite-action-symbol.svg":u,"./svg-sprite-alert-symbol.svg":s,"./svg-sprite-av-symbol.svg":c,"./svg-sprite-communication-symbol.svg":l,"./svg-sprite-content-symbol.svg":d,"./svg-sprite-device-symbol.svg":v,"./svg-sprite-editor-symbol.svg":h,"./svg-sprite-file-symbol.svg":p,"./svg-sprite-hardware-symbol.svg":f,"./svg-sprite-image-symbol.svg":m,"./svg-sprite-maps-symbol.svg":g,"./svg-sprite-navigation-symbol.svg":b,"./svg-sprite-notification-symbol.svg":y,"./svg-sprite-places-symbol.svg":w,"./svg-sprite-social-symbol.svg":x,"./svg-sprite-toggle-symbol.svg":_},e=function(e){return t[e]||function(){throw new Error("Cannot find module '"+e+"'.")}()};return e.keys=function(){return Object.keys(t)},e}(),k={install:function(t){var e=document.createElement("div");e.style.display="none",z.keys().forEach(function(t){var o=z(t);e.innerHTML+=o}),document.body.insertBefore(e,document.body.firstChild)}};function M(t){return'<div class="vue-ui-icon"><svg><use xlink:href="#ic_'.concat(t,'_24px"></use></svg></div>')}function V(t){return{inject:[t],computed:{active:function(){return this[t].activeChild===this.$_proxy}},created:function(){var e=this,o=this.$_proxy={},n=function(t){if("$"===t.charAt(0)||"_"===t.charAt(0))return"continue";Object.defineProperty(o,t,{enumerable:!0,configurable:!1,get:function(){return e.$data[t]}})};for(var i in this.$data)n(i);var r=function(t){if("$"===t.charAt(0)||"_"===t.charAt(0))return"continue";Object.defineProperty(o,t,{enumerable:!0,configurable:!1,get:function(){return e.$props[t]}})};for(var i in this.$props)r(i);Object.defineProperty(o,"$slots",{enumerable:!1,configurable:!1,get:function(){return e.$slots}}),this[t].$_addCoupledChild(o)},beforeDestroy:function(){this[t].$_removeCoupledChild(this.$_proxy)}}}function H(t){return{provide:function(){var e=this,o={};return Object.defineProperty(o,"activeChild",{get:function(){return e.activeChild}}),o.$_addCoupledChild=this.$_addCoupledChild.bind(this),o.$_removeCoupledChild=this.$_removeCoupledChild.bind(this),a({},t,o)},props:{childIndex:{default:0}},data:function(){return{children:[],activeChildIndex:parseInt(this.childIndex)||0}},computed:{activeChild:function(){if(this.activeChildIndex<this.children.length)return this.children[this.activeChildIndex]}},watch:{childIndex:function(t){this.activateChild(parseInt(t)||0,!0)}},methods:{activateChild:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=this.activeChildIndex;t<0?t=0:t>=this.children.length&&(t=this.children.length-1),this.activeChildIndex=t,this.$emit("update:childIndex",t),this.childActivated(t,o,e)},childActivated:function(t,e,o){},$_addCoupledChild:function(t){var e=this;this.$slots&&this.$slots.default&&this.$nextTick(function(){var o=e.$slots.default.reduce(function(t,e){return e.child&&t.push(e.child.$_proxy),t},[]),n=o.indexOf(t);-1!==n&&e.children.splice(n,0,t),e.$_updateChildren("add",n,t)})},$_removeCoupledChild:function(t){var e=this.children.indexOf(t);-1!==e&&this.children.splice(e,1),this.$_updateChildren("remove",e,t)},$_updateChildren:function(t,e,o){"add"===t?(e<=this.activeChildIndex&&this.activateChild(this.activeChildIndex+1),1===this.children.length&&this.activateChild(0)):"remove"===t&&e<=this.activeChildIndex&&this.activateChild(this.activeChildIndex-1)}}}}var C={inject:{VueDisableMixin:{default:null}},props:{disabled:{type:Boolean,default:!1}},computed:{finalDisabled:function(){return this.disabled||this.VueDisableMixin&&this.VueDisableMixin.data.value}}},L=0;function S(){return document.querySelectorAll(".vue-ui-disable-scroll, body")}function B(){0===L?S().forEach(function(t){return t.classList.remove("vue-ui-no-scroll")}):1===L&&S().forEach(function(t){return t.classList.add("vue-ui-no-scroll")})}var E={mounted:function(){L++,B()},beforeDestroy:function(){L--,B()}},O={name:"VueButton",inheritAttrs:!1,mixins:[C],props:{iconLeft:{type:String,default:null},iconRight:{type:String,default:null},label:{type:String,default:null},loading:{type:Boolean,default:!1},loadingSecondary:{type:Boolean,default:!1},type:{type:String,default:"button"},tag:{type:[Number,String],default:null}},computed:{component:function(){return this.$attrs.to?"router-link":this.$attrs.href?"a":"button"},ghost:function(){return this.finalDisabled||this.loading||this.loadingSecondary}},methods:{handleClick:function(t){this.ghost?(t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation()):this.$emit("click",t)}}};function A(t,e,o,n,i,r,a,u,s,c){"boolean"!==typeof a&&(s=u,u=a,a=!1);var l,d="function"===typeof o?o.options:o;if(t&&t.render&&(d.render=t.render,d.staticRenderFns=t.staticRenderFns,d._compiled=!0,i&&(d.functional=!0)),n&&(d._scopeId=n),r?(l=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),e&&e.call(this,s(t)),t&&t._registeredComponents&&t._registeredComponents.add(r)},d._ssrRegister=l):e&&(l=a?function(){e.call(this,c(this.$root.$options.shadowRoot))}:function(t){e.call(this,u(t))}),l)if(d.functional){var v=d.render;d.render=function(t,e){return l.call(e),v(t,e)}}else{var h=d.beforeCreate;d.beforeCreate=h?[].concat(h,l):[l]}return o}var T=A;const I=O;var j=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o(t.component,t._b({tag:"component",staticClass:"vue-ui-button",class:[t.component,{disabled:t.finalDisabled,loading:t.loading,ghost:t.ghost}],attrs:{type:t.type,tabindex:t.ghost?-1:0,role:"button","aria-disabled":t.ghost},on:{"!click":function(e){return t.handleClick(e)}},nativeOn:{"!click":function(e){return t.handleClick(e)}}},"component",t.$attrs,!1),[t.loading?o("VueLoadingIndicator"):t._e(),t._v(" "),o("span",{staticClass:"content"},[t.loadingSecondary?o("VueLoadingIndicator",{staticClass:"inline small loading-secondary"}):t.iconLeft?o("VueIcon",{staticClass:"button-icon left",attrs:{icon:t.iconLeft}}):t._e(),t._v(" "),o("span",{staticClass:"default-slot"},[t._t("default",[t._v("\n "+t._s(t.label)+"\n ")])],2),t._v(" "),null!=t.tag?o("div",{staticClass:"tag-wrapper"},[o("div",{staticClass:"tag"},[t._v(t._s(t.tag))])]):t._e(),t._v(" "),t.iconRight?o("VueIcon",{staticClass:"button-icon right",attrs:{icon:t.iconRight}}):t._e()],1)],1)},N=[];j._withStripped=!0;const R=void 0,P=void 0,D=void 0,U=!1;var F=T({render:j,staticRenderFns:N},R,I,P,U,D,void 0,void 0),q={provide:function(){return{VueDisableMixin:{data:this.injectedDisableData}}},props:{disabled:{type:Boolean,default:!1}},data:function(){return{injectedDisableData:{value:this.disabled}}},watch:{disabled:function(t,e){t!==e&&(this.injectedDisableData.value=t)}}},K={name:"VueDisable",mixins:[C],components:{PropagateDisable:{mixins:[q],render:function(t){return t("div",{staticClass:"vue-ui-disable"},this.$slots.default)}}},props:{stopPropagation:{type:Boolean,default:!1}},computed:{propagateDisabled:function(){return this.stopPropagation?this.disabled:this.finalDisabled}}};const Y=K;var G=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("PropagateDisable",{attrs:{disabled:t.propagateDisabled}},[t._t("default")],2)},W=[];G._withStripped=!0;const Q=void 0,J=void 0,X=void 0,Z=!1;var $=T({render:G,staticRenderFns:W},Q,Y,J,Z,X,void 0,void 0),tt={name:"VueDropdown",inheritAttrs:!1,mixins:[C],props:{autoHide:{type:Boolean,default:!0},buttonClass:{type:[String,Array,Object],default:null},contentClass:{type:[String,Array,Object],default:null},forceMinSize:{type:Boolean,default:!1},iconLeft:{type:String,default:null},iconRight:{type:String,default:null},label:{type:[String,Number],default:null},offset:{default:4},noPopoverFocus:{type:Boolean,default:!1},popoverClass:{type:[String,Array,Object],default:void 0}},data:function(){return{isOpen:!1,width:0}},mounted:function(){this.forceMinSize&&this.$nextTick(this.onResize)},beforeDestroy:function(){this.removeGlobalMouseEvents()},methods:{onKeyTab:function(t){if(this.isOpen&&!this.noPopoverFocus){var e=this.$refs.popoverContent.querySelector('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"]');e&&(t.preventDefault(),e.focus())}},onPopoverContentMousedown:function(t){this.$emit("popover-mousedown",t),window.addEventListener("mouseup",this.onPopoverContentMouseup)},onPopoverContentMouseup:function(t){this.$emit("popover-mouseup",t),this.removeGlobalMouseEvents()},onResize:function(){this.width=this.$el.offsetWidth},onUpdateOpen:function(t){this.isOpen=t},removeGlobalMouseEvents:function(){window.removeEventListener("mouseup",this.onPopoverContentMouseup)}}};const et=tt;var ot=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("VDropdown",t._g(t._b({ref:"popover",staticClass:"vue-ui-dropdown",attrs:{"popover-class":t.popoverClass,"auto-hide":t.autoHide,offset:t.offset,disabled:t.finalDisabled},on:{"update:open":t.onUpdateOpen},nativeOn:{keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"tab",9,e.key,"Tab")?null:t.onKeyTab(e)}},scopedSlots:t._u([{key:"popper",fn:function(){return[o("VueDisable",{ref:"popoverContent",staticClass:"vue-ui-dropdown-content",class:t.contentClass,style:{minWidth:t.forceMinSize?t.width+"px":"0"},attrs:{disabled:!t.isOpen},nativeOn:{mousedown:function(e){return t.onPopoverContentMousedown(e)}}},[t._t("default")],2)]},proxy:!0}],null,!0)},"VDropdown",t.$attrs,!1),t.$listeners),[o("div",{staticClass:"dropdown-trigger"},[t._t("trigger",[o("VueButton",{class:t.buttonClass,attrs:{"icon-left":t.iconLeft,"icon-right":t.iconRight,disabled:t.finalDisabled}},[t._v(t._s(t.label))])])],2),t._v(" "),t._v(" "),t.forceMinSize?o("resize-observer",{on:{notify:t.onResize}}):t._e()],1)},nt=[];ot._withStripped=!0;const it=void 0,rt=void 0,at=void 0,ut=!1;var st=T({render:ot,staticRenderFns:nt},it,et,rt,ut,at,void 0,void 0),ct={name:"VueDropdownButton",inheritAttrs:!1,props:{keepOpen:{type:Boolean,default:!1}}};const lt=ct;var dt=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("VueButton",t._g(t._b({directives:[{name:"close-popper",rawName:"v-close-popper",value:!t.keepOpen,expression:"!keepOpen"}],staticClass:"vue-ui-dropdown-button"},"VueButton",t.$attrs,!1),t.$listeners),[t._t("default")],2)},vt=[];dt._withStripped=!0;const ht=void 0,pt=void 0,ft=void 0,mt=!1;var gt=T({render:dt,staticRenderFns:vt},ht,lt,pt,mt,ft,void 0,void 0),bt={danger:"error",warning:"warning",info:"info",success:"check_circle"},yt={name:"VueFormField",provide:function(){return{VueFormField:{data:this.injectedData}}},props:{subtitle:{type:String,default:void 0},subtitleIcon:{type:String,default:void 0},statusIcon:{type:Boolean,default:!1},title:{type:String,default:void 0}},data:function(){return{injectedData:{focused:!1,status:null}}},computed:{subtitleIconId:function(){if(this.subtitleIcon)return this.subtitleIcon;if(this.statusIcon){var t=this.injectedData.status;if(t)return bt[t]}}}};const wt=yt;var xt=function(){var t,e,o=this,n=o.$createElement,i=o._self._c||n;return i("div",{staticClass:"vue-ui-form-field",class:(t={focused:o.injectedData.focused},t["status-"+o.injectedData.status]=o.injectedData.status,t)},[i("div",{staticClass:"wrapper"},[i("div",{staticClass:"title"},[o._t("title",[i("span",{domProps:{innerHTML:o._s(o.title)}})])],2),o._v(" "),i("div",{staticClass:"content"},[o._t("default")],2),o._v(" "),i("div",{staticClass:"subtitle",class:(e={},e["vue-ui-text "+o.injectedData.status]=o.injectedData.status,e)},[o.subtitleIconId?i("VueIcon",{attrs:{icon:o.subtitleIconId}}):o._e(),o._v(" "),o._t("subtitle",[i("span",{domProps:{innerHTML:o._s(o.subtitle)}})])],2)])])},_t=[];xt._withStripped=!0;const zt=void 0,kt=void 0,Mt=void 0,Vt=!1;var Ht=T({render:xt,staticRenderFns:_t},zt,wt,kt,Vt,Mt,void 0,void 0),Ct={name:"VueGroup",model:{event:"update"},provide:function(){return{VueGroup:{data:this.injection,setValue:this.setValue}}},props:{value:{},indicator:{type:Boolean,default:!1}},data:function(){return{injection:{value:this.value},indicatorStyle:null}},watch:{value:function(t,e){t!==e&&(this.injection.value=t,this.updateIndicator())}},mounted:function(){this.updateIndicator()},methods:{setValue:function(t){this.$emit("update",t)},updateIndicator:function(){var t=this;this.$nextTick(function(){var e=t.$el.querySelector(".selected");if(e){var o={top:e.offsetTop,left:e.offsetLeft,width:e.offsetWidth,height:e.offsetHeight},n=e.offsetParent;while(n&&n!==t.$el)o.top+=n.offsetTop,o.left+=n.offsetLeft,n=n.offsetParent;t.indicatorStyle=o}else t.indicatorStyle=null})}}};const Lt=Ct;var St=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"vue-ui-group",class:{"has-indicator":t.indicator}},[o("div",{staticClass:"content-wrapper"},[o("div",{staticClass:"content"},[t._t("default")],2),t._v(" "),t.indicator?o("resize-observer",{on:{notify:function(e){return t.updateIndicator()}}}):t._e()],1),t._v(" "),t.indicator&&t.indicatorStyle?o("div",{staticClass:"indicator",style:{top:t.indicatorStyle.top+"px",left:t.indicatorStyle.left+"px",width:t.indicatorStyle.width+"px",height:t.indicatorStyle.height+"px"}},[o("div",{staticClass:"content"},[t._t("indicator")],2)]):t._e()])},Bt=[];St._withStripped=!0;const Et=void 0,Ot=void 0,At=void 0,Tt=!1;var It=T({render:St,staticRenderFns:Bt},Et,Lt,Ot,Tt,At,void 0,void 0),jt={name:"VueGroupButton",inheritAttrs:!1,inject:["VueGroup"],props:{value:{},flat:{type:Boolean,default:!1}},computed:{selected:function(){return this.value===this.VueGroup.data.value}},watch:{selected:function(t,e){t!==e&&this.$emit("selected",t)}},methods:{handleClick:function(){for(var t=arguments.length,e=new Array(t),o=0;o<t;o++)e[o]=arguments[o];this.$emit.apply(this,["click"].concat(e)),this.VueGroup.setValue(this.value)}}};const Nt=jt;var Rt=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("VueButton",t._b({staticClass:"vue-ui-group-button",class:{selected:t.selected,flat:t.flat&&!t.selected},attrs:{"aria-selected":t.selected},on:{click:t.handleClick}},"VueButton",t.$attrs,!1),[t._t("default")],2)},Pt=[];Rt._withStripped=!0;const Dt=void 0,Ut=void 0,Ft=void 0,qt=!1;var Kt=T({render:Rt,staticRenderFns:Pt},Dt,Nt,Ut,qt,Ft,void 0,void 0);function Yt(){return Yt=Object.assign||function(t){for(var e,o=1;o<arguments.length;o++)for(var n in e=arguments[o],e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},Yt.apply(this,arguments)}var Gt=["attrs","props","domProps"],Wt=["class","style","directives"],Qt=["on","nativeOn"],Jt=function(t){return t.reduce(function(t,e){for(var o in e)if(t[o])if(-1!==Gt.indexOf(o))t[o]=Yt({},t[o],e[o]);else if(-1!==Wt.indexOf(o)){var n=t[o]instanceof Array?t[o]:[t[o]],i=e[o]instanceof Array?e[o]:[e[o]];t[o]=n.concat(i)}else if(-1!==Qt.indexOf(o))for(var r in e[o])if(t[o][r]){var a=t[o][r]instanceof Array?t[o][r]:[t[o][r]],u=e[o][r]instanceof Array?e[o][r]:[e[o][r]];t[o][r]=a.concat(u)}else t[o][r]=e[o][r];else if("hook"==o)for(var s in e[o])t[o][s]=t[o][s]?Xt(t[o][s],e[o][s]):e[o][s];else t[o]=e[o];else t[o]=e[o];return t},{})},Xt=function(t,e){return function(){t&&t.apply(this,arguments),e&&e.apply(this,arguments)}},Zt=Jt,$t={name:"VueIcon",functional:!0,props:{icon:{type:String,required:!0}},render:function(t,e){var o=e.props,n=e.data;return t("div",Zt([{class:"vue-ui-icon"},n]),[t("svg",[t("use",{attrs:{"xlink:href":"#ic_".concat(o.icon,"_24px")}})])])}};const te=$t,ee=void 0,oe=void 0,ne=void 0,ie=void 0;var re=T({},ee,te,oe,ie,ne,void 0,void 0),ae={name:"VueInput",inheritAttrs:!1,mixins:[C],inject:{VueFormField:{default:null}},model:{event:"update"},props:{iconLeft:{type:String,default:null},iconRight:{type:String,default:null},loadingLeft:{type:Boolean,default:!1},loadingRight:{type:Boolean,default:!1},placeholder:{type:String,default:void 0},selectAll:{type:Boolean,default:!1},status:{type:String,default:void 0},suggestion:{type:[String,Number],default:null},type:{type:String,default:"text"},value:{}},data:function(){return{focused:!1}},computed:{showSuggestion:function(){return null!==this.suggestion&&this.suggestion!==this.value&&this.focused&&this.value},valueModel:{get:function(){return this.value},set:function(t){this.$emit("update",t)}}},watch:{focused:{handler:function(t){this.VueFormField&&(this.VueFormField.data.focused=t)},immediate:!0},status:{handler:function(t){this.VueFormField&&(this.VueFormField.data.status=t)},immediate:!0}},methods:{focus:function(){var t=this.$refs.input;t.focus(),this.selectAll&&t.setSelectionRange(0,t.value.length)},onBlur:function(t){this.focused=!1,this.$emit("blur",t)},onFocus:function(t){this.focused=!0,this.$emit("focus",t)},onKeyTab:function(t){this.showSuggestion&&(this.valueModel=this.suggestion,t.preventDefault(),t.stopPropagation())}}};const ue=ae;var se=function(){var t,e=this,o=e.$createElement,n=e._self._c||o;return n("div",{staticClass:"vue-ui-input",class:["type-"+e.type,(t={disabled:e.finalDisabled,focused:e.focused,"show-suggestion":e.showSuggestion},t["status-"+e.status]=e.status,t)],on:{click:function(t){return e.focus()}}},[n("div",{staticClass:"content"},[e.loadingLeft?n("VueLoadingIndicator",{staticClass:"small left"}):e.iconLeft?n("VueIcon",{staticClass:"input-icon left",attrs:{icon:e.iconLeft}}):e._e(),e._v(" "),e._t("left"),e._v(" "),n("div",{staticClass:"input-wrapper"},[n("textarea"===e.type?e.type:"input",e._g(e._b({ref:"input",tag:"component",staticClass:"input",attrs:{type:e.type,placeholder:e.placeholder,disabled:e.finalDisabled},domProps:{value:e.valueModel},on:{input:function(t){e.valueModel=t.currentTarget.value},focus:e.onFocus,blur:e.onBlur,keydown:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:e.onKeyTab(t)}}},"component",e.$attrs,!1),e.$listeners)),e._v(" "),e.showSuggestion?n("input",{staticClass:"input suggestion",attrs:{disabled:""},domProps:{value:e.suggestion}}):e._e()],1),e._v(" "),e._t("right"),e._v(" "),e.iconRight?n("VueIcon",{staticClass:"input-icon right",attrs:{icon:e.iconRight}}):e._e(),e._v(" "),e.loadingRight?n("VueLoadingIndicator",{staticClass:"small right"}):e._e(),e._v(" "),n("div",{staticClass:"border"})],2)])},ce=[];se._withStripped=!0;const le=void 0,de=void 0,ve=void 0,he=!1;var pe=T({render:se,staticRenderFns:ce},le,ue,de,he,ve,void 0,void 0),fe={name:"VueLoadingBar",functional:!0,props:{value:{type:Number,default:0},unknown:{type:Boolean,default:!1}},render:function(t,e){var o=e.props,n=e.data;return n.class=[n.class,{unknown:o.unknown}],t("div",Zt([{class:"vue-ui-loading-bar"},n]),[t("div",{class:"bar",style:!o.unknown&&{width:"".concat(100*o.value,"%")}})])}};const me=fe,ge=void 0,be=void 0,ye=void 0,we=void 0;var xe=T({},ge,me,be,we,ye,void 0,void 0),_e={name:"VueLoadingIndicator",functional:!0,render:function(t,e){var o=e.data,n=e.children;return t("div",Zt([{class:"vue-ui-loading-indicator"},o]),[t("div",{class:"animation"}),n])}};const ze=_e,ke=void 0,Me=void 0,Ve=void 0,He=void 0;var Ce=T({},ke,ze,Me,He,Ve,void 0,void 0),Le={name:"VueModal",mixins:[E],props:{locked:{type:Boolean,default:!1},title:{type:String,default:null}},mounted:function(){var t=this;this.$nextTick(function(){t.$el.focus()})},methods:{close:function(){this.locked||this.$emit("close")}}};const Se=Le;var Be=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("transition",{attrs:{name:"vue-ui-modal",duration:{enter:1e3,leave:300},appear:""}},[o("div",{staticClass:"vue-ui-modal",class:{locked:t.locked},attrs:{tabindex:"0",role:"dialog","aria-modal":"true"},on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.close()}}},[o("div",{staticClass:"backdrop",on:{click:function(e){return t.close()}}}),t._v(" "),o("div",{staticClass:"shell",on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:t.close()}}},[o("div",{staticClass:"header"},[t._t("header",[t.title?o("div",{staticClass:"title",domProps:{innerHTML:t._s(t.title)}}):t._e()])],2),t._v(" "),o("div",{staticClass:"body"},[t._t("default")],2),t._v(" "),o("div",{staticClass:"footer"},[t._t("footer")],2),t._v(" "),t.locked?t._e():o("VueButton",{staticClass:"close-button icon-button flat round",attrs:{"icon-left":"close"},on:{click:function(e){return t.close()}}})],1)])])},Ee=[];Be._withStripped=!0;const Oe=void 0,Ae=void 0,Te=void 0,Ie=!1;var je=T({render:Be,staticRenderFns:Ee},Oe,Se,Ae,Ie,Te,void 0,void 0),Ne={name:"VueSelect",inheritAttrs:!1,model:{event:"update"},mixins:[C],provide:function(){return{VueSelect:{setCurrentChild:this.setCurrentChild}}},props:{iconLeft:{type:String,default:null},iconRight:{type:String,default:"keyboard_arrow_down"},label:{type:[String,Number],default:null},placeholder:{type:String,default:"Select..."},popoverClass:{type:String,default:void 0},value:{}},data:function(){return{currentChild:null}},computed:{displayedLabel:function(){return this.label?this.label:this.currentChild?this.currentChild.selectLabel||this.currentChild.$attrs.label||this.value:this.placeholder?this.placeholder:this.value},displayedIcon:function(){return this.iconLeft?this.iconLeft:this.currentChild?this.currentChild.$attrs.icon||this.currentChild.$attrs["icon-left"]:void 0},valueModel:{get:function(){return this.value},set:function(t){this.$emit("update",t)}}},methods:{setCurrentChild:function(t){this.currentChild=t}}};const Re=Ne;var Pe=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("VueDropdown",t._g(t._b({ref:"dropdown",staticClass:"vue-ui-select",attrs:{disabled:t.finalDisabled,"icon-left":t.displayedIcon,"icon-right":t.iconRight,label:t.displayedLabel,"popover-class":["popover","select-popover",t.popoverClass],"content-class":"vue-ui-select-popover-content","force-min-size":""}},"VueDropdown",t.$attrs,!1),t.$listeners),[o("template",{slot:"trigger"},[t._t("trigger",null,{label:t.displayedLabel})],2),t._v(" "),o("VueGroup",{staticClass:"vertical",model:{value:t.valueModel,callback:function(e){t.valueModel=e},expression:"valueModel"}},[t._t("default")],2)],2)},De=[];Pe._withStripped=!0;const Ue=void 0,Fe=void 0,qe=void 0,Ke=!1;var Ye=T({render:Pe,staticRenderFns:De},Ue,Re,Fe,Ke,qe,void 0,void 0),Ge={name:"VueSelectButton",extends:gt,inject:["VueSelect"],props:{selectLabel:{type:String,default:null}},mounted:function(){this.onSelect(this.$refs.groupButton.selected)},methods:{onSelect:function(t){t&&this.VueSelect.setCurrentChild(this)}}};const We=Ge;var Qe=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("VueGroupButton",t._g(t._b({directives:[{name:"close-popper",rawName:"v-close-popper",value:!t.keepOpen,expression:"!keepOpen"}],ref:"groupButton",staticClass:"vue-ui-select-button",attrs:{flat:""},on:{selected:t.onSelect}},"VueGroupButton",t.$attrs,!1),t.$listeners),[t._t("default")],2)},Je=[];Qe._withStripped=!0;const Xe=void 0,Ze=void 0,$e=void 0,to=!1;var eo=T({render:Qe,staticRenderFns:Je},Xe,We,Ze,to,$e,void 0,void 0),oo={name:"VueSwitch",model:{event:"update"},mixins:[C],props:{icon:{type:String,default:null},value:{}},data:function(){return{focused:!1}},computed:{valueModel:{get:function(){return this.value},set:function(t){this.$emit("update",t)}}},methods:{toggleValue:function(){this.finalDisabled||(this.valueModel=!this.valueModel)}}};const no=oo;var io=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"vue-ui-switch",class:{selected:t.value,disabled:t.finalDisabled,focus:t.focused},attrs:{tabindex:t.disabled?-1:0,role:"checkbox","aria-disabled":t.disabled,"aria-checked":!!t.value},on:{click:t.toggleValue,keydown:[function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;t.focused=!0,t.toggleValue(e)},function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"]))return null;t.focused=!0,t.toggleValue(e)}],blur:function(e){t.focused=!1}}},[o("div",{staticClass:"content"},[t.icon?o("VueIcon",{attrs:{icon:t.icon}}):t._e(),t._v(" "),o("span",{staticClass:"slot"},[t._t("default")],2),t._v(" "),t._m(0)],1)])},ro=[function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"wrapper"},[o("div",{staticClass:"bullet"})])}];io._withStripped=!0;const ao=void 0,uo=void 0,so=void 0,co=!1;var lo=T({render:io,staticRenderFns:ro},ao,no,uo,co,so,void 0,void 0),vo={name:"VueTab",components:{NoTransition:{functional:!0,render:function(t,e){var o=e.slots;return o().default[0]}}},mixins:[V("VueTabsCoupling")],inject:["VueTabs"],props:{icon:{type:String,default:null},id:{type:[String,Number],required:!0},label:{type:String,default:""},lazy:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},computed:{contentShown:function(){return!this.lazy||this.showContent}},data:function(){return{showContent:!1}},watch:{active:function(t,e){t&&t!==e&&!this.showContent&&(this.showContent=!0)}}};const ho=vo;var po=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o(t.VueTabs.data.animate?"transition":"NoTransition",{tag:"component",attrs:{name:"vue-ui-tab"}},[o("div",{directives:[{name:"show",rawName:"v-show",value:t.active,expression:"active"}],staticClass:"vue-ui-tab",class:{selected:t.active},attrs:{role:"tabpanel",tabindex:t.active?"0":null,"aria-hidden":t.active?null:"true"}},[t.contentShown?o("div",{staticClass:"vue-ui-tab-content"},[t._t("default")],2):t._e()])])},fo=[];po._withStripped=!0;const mo=void 0,go=void 0,bo=void 0,yo=!1;var wo=T({render:po,staticRenderFns:fo},mo,ho,go,yo,bo,void 0,void 0),xo={name:"VueTabs",mixins:[H("VueTabsCoupling")],components:{TabButtonContent:{functional:!0,props:{tab:{required:!0}},render:function(t,e){var o=e.props,n=o.tab;return n.$slots.button}}},provide:function(){return{VueTabs:{data:this.injectedData}}},props:{animate:{type:Boolean,default:!1},groupClass:{type:[String,Array,Object],default:"primary"},groupNoIndicator:{type:Boolean,default:!1},tabClass:{type:[String,Array,Object],default:"flat big"},tabId:{type:[String,Number],default:null}},data:function(){return{currentTabId:this.tabId,direction:"to-right",injectedData:{animate:this.animate}}},watch:{animate:function(t,e){t!==e&&(this.injectedData.animate=t)},currentTabId:function(t,e){if(t!==e){var o=this.findTabIndex(t);-1!==o&&o!==this.activeChildIndex&&this.activateChild(o,!0),t!==this.tabId&&this.$emit("update:tabId",t)}},tabId:function(t,e){t!==e&&t!==this.currentTabId&&(this.currentTabId=t)}},methods:{childActivated:function(t,e,o){var n=this,i=this.children[t];i&&i.id!==this.currentTabId&&(this.currentTabId=i.id),this.direction=t===e?"":t<e?"to-left":"to-right",o||this.$nextTick(function(){var e=n.$refs.tabButtons[t];e&&e.$el.focus()})},findTabIndex:function(t){return this.children.findIndex(function(e){return e.id===t})}}};const _o=xo;var zo=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"vue-ui-tabs",class:["direction-"+t.direction,{animate:t.animate}]},[o("VueGroup",{staticClass:"tabs",class:t.groupClass,attrs:{indicator:!t.groupNoIndicator},model:{value:t.currentTabId,callback:function(e){t.currentTabId=e},expression:"currentTabId"}},t._l(t.children,function(e,n){return o("VueGroupButton",{key:e.id,ref:"tabButtons",refInFor:!0,staticClass:"tab-button",class:t.tabClass,attrs:{value:e.id,label:e.label,"icon-left":e.icon,disabled:e.disabled,role:"tab",tabindex:"0","aria-controls":"tab-"+n},nativeOn:{keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"left",37,e.key,["Left","ArrowLeft"])?null:"button"in e&&0!==e.button?null:t.activateChild(n-1)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"right",39,e.key,["Right","ArrowRight"])?null:"button"in e&&2!==e.button?null:t.activateChild(n+1)}]}},[o("TabButtonContent",{attrs:{tab:e}})],1)}),1),t._v(" "),o("div",{staticClass:"tabs-content"},[t._t("default")],2)],1)},ko=[];zo._withStripped=!0;const Mo=void 0,Vo=void 0,Ho=void 0,Co=!1;var Lo=T({render:zo,staticRenderFns:ko},Mo,_o,Vo,Co,Ho,void 0,void 0),So={name:"VueTypeAhead",inheritAttrs:!1,model:{event:"udpate"},props:{loading:{type:Boolean,default:!1},restrictChoice:{type:Boolean,default:!1},showAll:{type:Boolean,default:!1},showMax:{type:[String,Number],default:10},suggestions:{type:Array,required:!0},value:{default:""}},data:function(){return{directSelect:!1,dirty:!1,focused:!1,open:!1,tempValue:this.value,lastSuggestions:this.suggestions}},computed:{filteredSuggestions:function(){var t=this.tempValue;return t?this.suggestions.filter(function(e){return e.value&&e.value.startsWith(t)}):this.showAll?this.suggestions:[]},finalOpen:function(){return!(!this.open||!this.shownSuggestions.length||1===this.shownSuggestions.length&&this.shownSuggestions[0].value===this.value)},shownSuggestions:function(){return this.open?this.filteredSuggestions:this.lastSuggestions},suggestion:function(){if(this.shownSuggestions.length)return this.shownSuggestions[0].value},tempValueModel:{get:function(){return this.tempValue},set:function(t){this.tempValue=t,this.dirty=!0,t&&!this.open&&this.showSuggestions()}},valueModel:{get:function(){return this.value},set:function(t){this.directSelect=!0,this.tempValue=t,this.$emit("update",t)}}},watch:{filteredSuggestions:function(t){this.open&&(this.lastSuggestions=t)},value:function(t,e){t!==e&&t!==this.tempValue&&(this.tempValue=t)}},methods:{getFinalChoice:function(t){return this.restrictChoice?this.suggestions.find(function(e){return e.value===t})?t:"":t},onBlur:function(){var t=this;this.$nextTick(function(){if(!t.$_popoverMousedown&&(t.focused=!1,t.open=!1,!t.directSelect)){var e=t.getFinalChoice(t.tempValue);t.restrictChoice&&!e&&(e=t.getFinalChoice(t.value)),t.dirty&&e!==t.value?(t.$emit("update",e),t.tempValue=e):t.tempValue=t.value}})},onFocus:function(){this.focused=!0,this.directSelect=!1,this.dirty=!1,this.tempValue="",this.$_popoverMousedown=!1,(this.value||this.showAll)&&this.showSuggestions()},onPopoverContentMousedown:function(t){this.$_popoverMousedown=!0},onPopoverContentMouseup:function(t){var e=this;this.$_popoverMousedown=!1,setTimeout(function(){e.onBlur()},100)},showSuggestions:function(){this.open=!0}}};const Bo=So;var Eo=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"vue-ui-type-ahead"},[o("VueSelect",{attrs:{open:t.finalOpen,trigger:"manual","auto-hide":!t.focused,"no-popover-focus":""},on:{"update:open":function(e){return t.open=e},"popover-mousedown":t.onPopoverContentMousedown,"popover-mouseup":t.onPopoverContentMouseup},model:{value:t.valueModel,callback:function(e){t.valueModel=e},expression:"valueModel"}},[o("VueInput",t._b({attrs:{slot:"trigger","loading-right":t.loading,suggestion:t.suggestion},on:{focus:t.onFocus,blur:t.onBlur},slot:"trigger",model:{value:t.tempValueModel,callback:function(e){t.tempValueModel=e},expression:"tempValueModel"}},"VueInput",t.$attrs,!1)),t._v(" "),t.shownSuggestions.length?t._l(t.shownSuggestions.slice(0,t.showMax),function(e,n){return o("VueSelectButton",{key:n,attrs:{"icon-left":e.icon,value:e.value}},[t._v("\n "+t._s(e.value)+"\n ")])}):t._e()],2)],1)},Oo=[];Eo._withStripped=!0;const Ao=void 0,To=void 0,Io=void 0,jo=!1;var No=T({render:Eo,staticRenderFns:Oo},Ao,Bo,To,jo,Io,void 0,void 0),Ro=function(){var t={"./VueButton.vue":F,"./VueDisable.vue":$,"./VueDropdown.vue":st,"./VueDropdownButton.vue":gt,"./VueFormField.vue":Ht,"./VueGroup.vue":It,"./VueGroupButton.vue":Kt,"./VueIcon.vue":re,"./VueInput.vue":pe,"./VueLoadingBar.vue":xe,"./VueLoadingIndicator.vue":Ce,"./VueModal.vue":je,"./VueSelect.vue":Ye,"./VueSelectButton.vue":eo,"./VueSwitch.vue":lo,"./VueTab.vue":wo,"./VueTabs.vue":Lo,"./VueTypeAhead.vue":No},e=function(e){return t[e]||function(){throw new Error("Cannot find module '"+e+"'.")}()};return e.keys=function(){return Object.keys(t)},e}();function Po(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.use(k),t.use(n["a"],Uo({boundariesElement:document.body,themes:{tooltip:{delay:{show:1e3,hide:800},instantMove:!0},dropdown:{handleResize:!1}}},e.vtooltip)),t.use(i["b"]);var o=/([a-z0-9]+)\./i;Ro.keys().forEach(function(e){var n=e.match(o)[1];t.component(n,Ro(e))})}var Do={version:"0.10.5",install:Po};function Uo(t,e){for(var o in e)t[o]&&e[o]&&"object"===r(t[o])&&"object"===r(e[o])?Uo(t[o],e[o]):t[o]=e[o];return t}var Fo=null;"undefined"!==typeof window?Fo=window.Vue:"undefined"!==typeof t&&(Fo=t.Vue),Fo&&Fo.use(Do),e["a"]=Do}).call(this,o(9))},function(t,e,o){var n,i,r;(function(o,a){i=[],n=a,r="function"===typeof n?n.apply(e,i):n,void 0===r||(t.exports=r)})(0,function(){function t(t){var e=getComputedStyle(t,null).getPropertyValue("overflow");return e.indexOf("scroll")>-1||e.indexOf("auto")>-1}function e(e){if(e instanceof HTMLElement||e instanceof SVGElement){var o=e.parentNode;while(o.parentNode){if(t(o))return o;o=o.parentNode}return document.scrollingElement||document.documentElement}}return e})},,,,,,function(t,e,o){var n=o(95);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("4814d48e",n,!0,{})},function(t,e,o){var n=o(97);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("bf5ad20a",n,!0,{})},function(t,e,o){var n=o(99);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("575ae12e",n,!0,{})},function(t,e,o){var n=o(101);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("4d668087",n,!0,{})},function(t,e,o){var n=o(106);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("55a777bc",n,!0,{})},function(t,e,o){var n=o(108);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("17b462dc",n,!0,{})},function(t,e,o){var n=o(110);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("f0fca60a",n,!0,{})},function(t,e,o){var n=o(112);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("d93469d6",n,!0,{})},function(t,e,o){var n=o(114);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("e93bef86",n,!0,{})},function(t,e,o){var n=o(116);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("26d30949",n,!0,{})},function(t,e,o){var n=o(118);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("110dffac",n,!0,{})},function(t,e,o){var n=o(120);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("55142636",n,!0,{})},function(t,e,o){var n=o(123);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("140f7034",n,!0,{})},function(t,e,o){var n=o(125);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("a0f53ae8",n,!0,{})},function(t,e,o){var n=o(127);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("7a6b40d7",n,!0,{})},function(t,e,o){var n=o(129);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("6f389e27",n,!0,{})},function(t,e,o){var n=o(131);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("eedbf91c",n,!0,{})},function(t,e,o){var n=o(133);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("3f44a0e5",n,!0,{})},function(t,e,o){var n=o(135);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("06ee8f99",n,!0,{})},function(t,e,o){var n=o(137);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("5ddd417a",n,!0,{})},function(t,e,o){var n=o(139);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("704fdf8a",n,!0,{})},function(t,e,o){var n=o(141);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("025d9d78",n,!0,{})},function(t,e,o){var n=o(143);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("2c3764b2",n,!0,{})},function(t,e,o){var n=o(145);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("28941290",n,!0,{})},function(t,e,o){var n=o(147);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("57a35c2a",n,!0,{})},function(t,e,o){var n=o(149);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("94f0b83e",n,!0,{})},function(t,e,o){var n=o(151);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("330d7198",n,!0,{})},function(t,e,o){"use strict";o.r(e),e["default"]={App:{components:{tooltip:"[[{{keys.ctrl}}]] + [[1]] Switch to Components"},events:{tooltip:"[[{{keys.ctrl}}]] + [[3]] Switch to Events"},refresh:{tooltip:"[[{{keys.ctrl}}]] + [[{{keys.alt}}]] + [[R]] Force Refresh"},routing:{tooltip:"[[{{keys.ctrl}}]] + [[4]] Switch to Routing"},perf:{tooltip:"[[{{keys.ctrl}}]] + [[5]] Switch to Performance"},settings:{tooltip:"[[{{keys.ctrl}}]] + [[6]] Switch to Settings"},vuex:{tooltip:"[[{{keys.ctrl}}]] + [[2]] Switch to Vuex"}},StateInspector:{dataType:{tooltip:"[[{{keys.ctrl}}]] + <<mouse>>: Collapse All<br>[[{{keys.shift}}]] + <<mouse>>: Expand All"}},DataField:{edit:{cancel:{tooltip:"[[{{keys.esc}}]] Cancel"},submit:{tooltip:"[[{{keys.enter}}]] Submit change"}},contextMenu:{copyValue:"Copy Value"},quickEdit:{number:{tooltip:"Quick Edit<br><br>\n [[{{keys.ctrl}}]] + <<mouse>>: {{operator}}5<br>\n [[{{keys.shift}}]] + <<mouse>>: {{operator}}10<br>\n [[{{keys.alt}}]] + <<mouse>>: {{operator}}100"}}},ComponentTree:{select:{tooltip:"[[S]] Select component in the page"},filter:{tooltip:"[[{{keys.ctrl}}]] + [[F]] Filter components by name"}},ComponentInstance:{consoleId:{tooltip:"Available as <mono>{{id}}</mono> in the console."}},ComponentInspector:{openInEditor:{tooltip:"Open <mono><<insert_drive_file>>{{file}}</mono> in editor"}},EventsHistory:{filter:{tooltip:"[[{{keys.ctrl}}]] + [[F]] To filter on components, type <input><<search>> &lt;MyComponent&gt;</input> or just <input><<search>> &lt;mycomp</input>."},clear:{tooltip:"[[{{keys.ctrl}}]] + [[{{keys.del}}]] Clear Log"},startRecording:{tooltip:"[[R]] Start recording"},stopRecording:{tooltip:"[[R]] Stop recording"}},VuexHistory:{filter:{tooltip:"[[{{keys.ctrl}}]] + [[F]] Filter mutations"},commitAll:{tooltip:"[[{{keys.ctrl}}]] + [[{{keys.enter}}]] Commit all"},revertAll:{tooltip:"[[{{keys.ctrl}}]] + [[{{keys.del}}]] Revert all"},startRecording:{tooltip:"[[R]] Start recording"},stopRecording:{tooltip:"[[R]] Stop recording"}}}},,function(t,e,o){"use strict";const n=o(152),i=Symbol("max"),r=Symbol("length"),a=Symbol("lengthCalculator"),u=Symbol("allowStale"),s=Symbol("maxAge"),c=Symbol("dispose"),l=Symbol("noDisposeOnSet"),d=Symbol("lruList"),v=Symbol("cache"),h=Symbol("updateAgeOnGet"),p=()=>1;class f{constructor(t){if("number"===typeof t&&(t={max:t}),t||(t={}),t.max&&("number"!==typeof t.max||t.max<0))throw new TypeError("max must be a non-negative number");this[i]=t.max||1/0;const e=t.length||p;if(this[a]="function"!==typeof e?p:e,this[u]=t.stale||!1,t.maxAge&&"number"!==typeof t.maxAge)throw new TypeError("maxAge must be a number");this[s]=t.maxAge||0,this[c]=t.dispose,this[l]=t.noDisposeOnSet||!1,this[h]=t.updateAgeOnGet||!1,this.reset()}set max(t){if("number"!==typeof t||t<0)throw new TypeError("max must be a non-negative number");this[i]=t||1/0,b(this)}get max(){return this[i]}set allowStale(t){this[u]=!!t}get allowStale(){return this[u]}set maxAge(t){if("number"!==typeof t)throw new TypeError("maxAge must be a non-negative number");this[s]=t,b(this)}get maxAge(){return this[s]}set lengthCalculator(t){"function"!==typeof t&&(t=p),t!==this[a]&&(this[a]=t,this[r]=0,this[d].forEach(t=>{t.length=this[a](t.value,t.key),this[r]+=t.length})),b(this)}get lengthCalculator(){return this[a]}get length(){return this[r]}get itemCount(){return this[d].length}rforEach(t,e){e=e||this;for(let o=this[d].tail;null!==o;){const n=o.prev;x(this,t,o,e),o=n}}forEach(t,e){e=e||this;for(let o=this[d].head;null!==o;){const n=o.next;x(this,t,o,e),o=n}}keys(){return this[d].toArray().map(t=>t.key)}values(){return this[d].toArray().map(t=>t.value)}reset(){this[c]&&this[d]&&this[d].length&&this[d].forEach(t=>this[c](t.key,t.value)),this[v]=new Map,this[d]=new n,this[r]=0}dump(){return this[d].map(t=>!g(this,t)&&{k:t.key,v:t.value,e:t.now+(t.maxAge||0)}).toArray().filter(t=>t)}dumpLru(){return this[d]}set(t,e,o){if(o=o||this[s],o&&"number"!==typeof o)throw new TypeError("maxAge must be a number");const n=o?Date.now():0,u=this[a](e,t);if(this[v].has(t)){if(u>this[i])return y(this,this[v].get(t)),!1;const a=this[v].get(t),s=a.value;return this[c]&&(this[l]||this[c](t,s.value)),s.now=n,s.maxAge=o,s.value=e,this[r]+=u-s.length,s.length=u,this.get(t),b(this),!0}const h=new w(t,e,u,n,o);return h.length>this[i]?(this[c]&&this[c](t,e),!1):(this[r]+=h.length,this[d].unshift(h),this[v].set(t,this[d].head),b(this),!0)}has(t){if(!this[v].has(t))return!1;const e=this[v].get(t).value;return!g(this,e)}get(t){return m(this,t,!0)}peek(t){return m(this,t,!1)}pop(){const t=this[d].tail;return t?(y(this,t),t.value):null}del(t){y(this,this[v].get(t))}load(t){this.reset();const e=Date.now();for(let o=t.length-1;o>=0;o--){const n=t[o],i=n.e||0;if(0===i)this.set(n.k,n.v);else{const t=i-e;t>0&&this.set(n.k,n.v,t)}}}prune(){this[v].forEach((t,e)=>m(this,e,!1))}}const m=(t,e,o)=>{const n=t[v].get(e);if(n){const e=n.value;if(g(t,e)){if(y(t,n),!t[u])return}else o&&(t[h]&&(n.value.now=Date.now()),t[d].unshiftNode(n));return e.value}},g=(t,e)=>{if(!e||!e.maxAge&&!t[s])return!1;const o=Date.now()-e.now;return e.maxAge?o>e.maxAge:t[s]&&o>t[s]},b=t=>{if(t[r]>t[i])for(let e=t[d].tail;t[r]>t[i]&&null!==e;){const o=e.prev;y(t,e),e=o}},y=(t,e)=>{if(e){const o=e.value;t[c]&&t[c](o.key,o.value),t[r]-=o.length,t[v].delete(o.key),t[d].removeNode(e)}};class w{constructor(t,e,o,n,i){this.key=t,this.value=e,this.length=o,this.now=n,this.maxAge=i||0}}const x=(t,e,o,n)=>{let i=o.value;g(t,i)&&(y(t,o),t[u]||(i=void 0)),i&&e.call(n,i.value,i.key,t)};t.exports=f},function(t,e,o){"use strict";(function(t){var n=o(1),i=o(164),r=o(75),a=o(5);function u(t){"@babel/helpers - typeof";return u="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},u(t)}function s(t,e,o,n,i,r,a){try{var u=t[r](a),s=u.value}catch(t){return void o(t)}u.done?e(s):Promise.resolve(s).then(n,i)}function c(t){return function(){var e=this,o=arguments;return new Promise(function(n,i){var r=t.apply(e,o);function a(t){s(r,n,i,a,u,"next",t)}function u(t){s(r,n,i,a,u,"throw",t)}a(void 0)})}}function l(t,e,o){return e in t?Object.defineProperty(t,e,{value:o,enumerable:!0,configurable:!0,writable:!0}):t[e]=o,t}function d(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),o.push.apply(o,n)}return o}function v(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?d(Object(o),!0).forEach(function(e){l(t,e,o[e])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):d(Object(o)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))})}return t}function h(t,e){if(null==t)return{};var o,n,i={},r=Object.keys(t);for(n=0;n<r.length;n++)o=r[n],e.indexOf(o)>=0||(i[o]=t[o]);return i}function p(t,e){if(null==t)return{};var o,n,i=h(t,e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);for(n=0;n<r.length;n++)o=r[n],e.indexOf(o)>=0||Object.prototype.propertyIsEnumerable.call(t,o)&&(i[o]=t[o])}return i}function f(t,e){return b(t)||w(t,e)||x(t,e)||k()}function m(t){return g(t)||y(t)||x(t)||z()}function g(t){if(Array.isArray(t))return _(t)}function b(t){if(Array.isArray(t))return t}function y(t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}function w(t,e){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(t)){var o=[],n=!0,i=!1,r=void 0;try{for(var a,u=t[Symbol.iterator]();!(n=(a=u.next()).done);n=!0)if(o.push(a.value),e&&o.length===e)break}catch(t){i=!0,r=t}finally{try{n||null==u["return"]||u["return"]()}finally{if(i)throw r}}return o}}function x(t,e){if(t){if("string"===typeof t)return _(t,e);var o=Object.prototype.toString.call(t).slice(8,-1);return"Object"===o&&t.constructor&&(o=t.constructor.name),"Map"===o||"Set"===o?Array.from(t):"Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?_(t,e):void 0}}function _(t,e){(null==e||e>t.length)&&(e=t.length);for(var o=0,n=new Array(e);o<e;o++)n[o]=t[o];return n}function z(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function k(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function M(t,e){var o;if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(o=x(t))||e&&t&&"number"===typeof t.length){o&&(t=o);var n=0,i=function(){};return{s:i,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,a=!0,u=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return a=t.done,t},e:function(t){u=!0,r=t},f:function(){try{a||null==o.return||o.return()}finally{if(u)throw r}}}}function V(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&("object"===u(e[o])&&t[o]?V(t[o],e[o]):t[o]=e[o])}var H={disabled:!1,offset:[0,5],container:"body",boundary:void 0,instantMove:!1,disposeTimeout:5e3,popperTriggers:[],strategy:"absolute",modifiers:[],popperOptions:{},themes:{tooltip:{placement:"top",triggers:["hover","focus","touch"],hideTriggers:function(t){return[].concat(m(t),["click"])},delay:{show:200,hide:0},handleResize:!1,html:!1,loadingContent:"..."},dropdown:{placement:"bottom",triggers:["click"],delay:0,handleResize:!0,autoHide:!0},menu:{$extend:"dropdown",triggers:["hover","focus"],popperTriggers:["hover","focus"],delay:{show:0,hide:400}}}};function C(t,e){var o,n=H.themes[t]||{};do{o=n[e],"undefined"===typeof o?n.$extend?n=H.themes[n.$extend]||{}:(n=null,o=H[e]):n=null}while(n);return o}function L(t){var e=[t],o=H.themes[t]||{};do{o.$extend&&!o.$resetCss?(e.push(o.$extend),o=H.themes[o.$extend]||{}):o=null}while(o);return e.map(function(t){return"v-popper--theme-".concat(t)})}var S=!1;if("undefined"!==typeof window){S=!1;try{var B=Object.defineProperty({},"passive",{get:function(){S=!0}});window.addEventListener("test",null,B)}catch(t){}}var E=!1;function O(t,e,o){var n=t.find(function(t){return t.name===e});for(var i in n||(n={name:e},t.push(n)),o)"options"===i?(n.options||(n.options={}),Object.assign(n.options,o.options)):n[i]=o[i]}"undefined"!==typeof window&&"undefined"!==typeof navigator&&(E=/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream);var A={hover:"mouseenter",focus:"focus",click:"click",touch:"touchstart"},T={hover:"mouseleave",focus:"blur",click:"click",touch:"touchend"};function I(t,e){var o=t.indexOf(e);-1!==o&&t.splice(o,1)}var j=[],N=null,R=function(){};"undefined"!==typeof window&&(R=window.Element);var P=function(){return{name:"VPopper",props:{theme:{type:String,required:!0},targetNodes:{type:Function,required:!0},referenceNode:{type:Function,required:!0},popperNode:{type:Function,required:!0},arrowNode:{type:Function,default:null},shown:{type:Boolean,default:!1},showGroup:{type:String,default:null},ariaId:{default:null},disabled:{type:Boolean,default:function(){return C(this.theme,"disabled")}},placement:{type:String,default:function(){return C(this.theme,"placement")},validator:function(t){return n["h"].includes(t)}},delay:{type:[String,Number,Object],default:function(){return C(this.theme,"delay")}},offset:{type:[Array,Function],default:function(){return C(this.theme,"offset")}},triggers:{type:Array,default:function(){return C(this.theme,"triggers")}},showTriggers:{type:[Array,Function],default:function(){return C(this.theme,"showTriggers")}},hideTriggers:{type:[Array,Function],default:function(){return C(this.theme,"hideTriggers")}},popperTriggers:{type:Array,default:function(){return C(this.theme,"popperTriggers")}},popperShowTriggers:{type:[Array,Function],default:function(){return C(this.theme,"popperShowTriggers")}},popperHideTriggers:{type:[Array,Function],default:function(){return C(this.theme,"popperHideTriggers")}},container:{type:[String,Object,R,Boolean],default:function(){return C(this.theme,"container")}},boundary:{type:[String,R],default:function(){return C(this.theme,"boundary")}},strategy:{type:String,validator:function(t){return["absolute","fixed"].includes(t)},default:function(){return C(this.theme,"strategy")}},modifiers:{type:Array,default:function(){return C(this.theme,"modifiers")}},popperOptions:{type:Object,default:function(){return C(this.theme,"popperOptions")}},autoHide:{type:Boolean,default:function(){return C(this.theme,"autoHide")}},handleResize:{type:Boolean,default:function(){return C(this.theme,"handleResize")}},instantMove:{type:Boolean,default:function(){return C(this.theme,"instantMove")}},eagerMount:{type:Boolean,default:function(){return C(this.theme,"eagerMount")}},popperClass:{type:[String,Array,Object],default:function(){return C(this.theme,"popperClass")}},computeTransformOrigin:{type:Boolean,default:function(){return C(this.theme,"computeTransformOrigin")}},autoMinSize:{type:Boolean,default:function(){return C(this.theme,"autoMinSize")}}},data:function(){return{isShown:!1,isMounted:!1,skipTransition:!1,classes:{showFrom:!1,showTo:!1,hideFrom:!1,hideTo:!0}}},computed:{popperId:function(){return null!=this.ariaId?this.ariaId:this.randomId},shouldMountContent:function(){return this.eagerMount||this.isMounted},slotData:function(){return{popperId:this.popperId,isShown:this.isShown,shouldMountContent:this.shouldMountContent,skipTransition:this.skipTransition,autoHide:this.autoHide,show:this.show,hide:this.hide,handleResize:this.handleResize,onResize:this.onResize,classes:v(v({},this.classes),{},{popperClass:this.popperClass})}}},watch:{shown:"$_autoShowHide",disabled:function(t){t?this.dispose():this.init()},container:function(){var t=this;return c(function*(){t.isShown&&t.popperInstance&&(t.$_ensureContainer(),yield t.popperInstance.update())})()},triggers:function(){this.$_removeEventListeners(),this.$_addEventListeners()},placement:"$_refreshPopperOptions",offset:"$_refreshPopperOptions",boundary:"$_refreshPopperOptions",strategy:"$_refreshPopperOptions",modifiers:"$_refreshPopperOptions",popperOptions:{handler:"$_refreshPopperOptions",deep:!0}},created:function(){this.$_isDisposed=!0,this.randomId="popper_".concat([Math.random(),Date.now()].map(function(t){return t.toString(36).substring(2,10)}).join("_"))},mounted:function(){this.init()},activated:function(){this.$_autoShowHide()},deactivated:function(){this.hide()},beforeDestroy:function(){this.dispose()},methods:{show:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=e.event,n=e.skipDelay,i=void 0!==n&&n,r=e.force,a=void 0!==r&&r;!a&&this.disabled||(this.$_scheduleShow(o,i),this.$emit("show"),this.$_showFrameLocked=!0,requestAnimationFrame(function(){t.$_showFrameLocked=!1})),this.$emit("update:shown",!0)},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.event,o=t.skipDelay,n=void 0!==o&&o;this.$_scheduleHide(e,n),this.$emit("hide"),this.$emit("update:shown",!1)},init:function(){this.$_isDisposed&&(this.$_isDisposed=!1,this.isMounted=!1,this.$_events=[],this.$_preventShow=!1,this.$_targetNodes=this.targetNodes().filter(function(t){return t.nodeType===t.ELEMENT_NODE}),this.$_popperNode=this.popperNode(),this.$_swapTargetAttrs("title","data-original-title"),this.$_detachPopperNode(),this.triggers.length&&this.$_addEventListeners(),this.shown&&this.show())},dispose:function(){this.$_isDisposed||(this.$_isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.popperInstance&&(this.popperInstance.destroy(),this.$_detachPopperNode()),this.isMounted=!1,this.popperInstance=null,this.isShown=!1,this.$_swapTargetAttrs("data-original-title","title"),this.$emit("dispose"))},onResize:function(){var t=this;return c(function*(){t.isShown&&t.popperInstance&&(yield t.popperInstance.update(),t.$emit("resize"))})()},$_getPopperOptions:function(){var t=this,e=v(v({},this.popperOptions),{},{placement:this.placement,strategy:this.strategy,modifiers:this.modifiers,onFirstUpdate:function(){var e=c(function*(e){t.popperOptions.onFirstUpdate&&t.popperOptions.onFirstUpdate(e),yield t.$_applyShowEffect()});function o(t){return e.apply(this,arguments)}return o}()});return e.modifiers||(e.modifiers=[]),O(e.modifiers,"arrow",{options:{element:this.arrowNode&&this.arrowNode()||"[data-popper-arrow]"}}),this.offset&&O(e.modifiers,"offset",{options:{offset:this.offset}}),this.boundary&&O(e.modifiers,"preventOverflow",{options:{boundary:this.boundary}}),this.isShown||O(e.modifiers,"eventListeners",{enabled:!1}),e},$_refreshPopperOptions:function(){var t=this;return c(function*(){t.popperInstance&&(yield t.popperInstance.setOptions(t.$_getPopperOptions()))})()},$_scheduleShow:function(){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(this.$_hideInProgress=!1,clearTimeout(this.$_scheduleTimer),N&&this.instantMove&&N.instantMove)return N.$_applyHide(!0),void this.$_applyShow(!0);t?this.$_applyShow():this.$_scheduleTimer=setTimeout(this.$_applyShow.bind(this),this.$_computeDelay("show"))},$_scheduleHide:function(){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.$_hideInProgress=!0,clearTimeout(this.$_scheduleTimer),this.isShown&&(N=this),t?this.$_applyHide():this.$_scheduleTimer=setTimeout(this.$_applyHide.bind(this),this.$_computeDelay("hide"))},$_computeDelay:function(t){var e=this.delay;return parseInt(e&&e[t]||e||0)},$_applyShow:function(){var t=arguments,e=this;return c(function*(){var o=t.length>0&&void 0!==t[0]&&t[0];clearTimeout(e.$_disposeTimer),clearTimeout(e.$_scheduleTimer),e.skipTransition=o,e.isShown||(e.isMounted||(e.$_ensureContainer(),e.isMounted=!0),e.popperInstance?(yield e.popperInstance.update(),yield e.$_refreshPopperOptions(),yield e.$_applyShowEffect()):e.popperInstance=Object(i["a"])(e.referenceNode(),e.$_popperNode,e.$_getPopperOptions()))})()},$_applyShowEffect:function(){var t=this;return c(function*(){if(!t.$_hideInProgress){var e,o=function(){return e||(e=t.referenceNode().getBoundingClientRect())};if(t.computeTransformOrigin){var n=o(),i=t.$_popperNode.querySelector(".v-popper__wrapper"),r=i.parentNode.getBoundingClientRect(),a=n.left+n.width/2-(r.left+i.offsetLeft),u=n.top+n.height/2-(r.top+i.offsetTop);i.style.transformOrigin="".concat(a,"px ").concat(u,"px")}if(t.autoMinSize){var s=o(),c=t.$_popperNode.querySelector(".v-popper__inner"),l=t.$_popperNode.dataset.popperPlacement.split("-"),d=f(l,1),v=d[0];"left"===v||"right"===v?c.style.minHeight="".concat(s.height,"px"):c.style.minWidth="".concat(s.width,"px")}t.isShown=!0,t.$_applyAttrsToTarget({"aria-describedby":t.popperId,"data-popper-shown":""});var h=t.showGroup;if(h)for(var p,m=0;m<j.length;m++)p=j[m],p.showGroup!==h&&(p.hide(),p.$emit("close-group"));j.push(t),t.$emit("apply-show"),t.$_popperNode.setAttribute("data-popper-placement",t.popperInstance.state.placement),t.classes.showFrom=!0,t.classes.showTo=!1,t.classes.hideFrom=!1,t.classes.hideTo=!1,yield Y(),t.classes.showFrom=!1,t.classes.showTo=!0}})()},$_applyHide:function(){var t=arguments,e=this;return c(function*(){var o=t.length>0&&void 0!==t[0]&&t[0];if(clearTimeout(e.$_scheduleTimer),e.isShown){e.skipTransition=o,I(j,e),N===e&&(N=null),e.isShown=!1,e.popperInstance&&(yield e.$_refreshPopperOptions()),e.$_applyAttrsToTarget({"aria-describedby":void 0,"data-popper-shown":void 0}),clearTimeout(e.$_disposeTimer);var n=C(e.theme,"disposeTimeout");null!==n&&(e.$_disposeTimer=setTimeout(function(){e.$_popperNode&&(e.$_detachPopperNode(),e.isMounted=!1)},n)),e.$emit("apply-hide"),e.classes.showFrom=!1,e.classes.showTo=!1,e.classes.hideFrom=!0,e.classes.hideTo=!1,yield Y(),e.classes.hideFrom=!1,e.classes.hideTo=!0}})()},$_autoShowHide:function(){this.shown?this.show():this.hide()},$_ensureContainer:function(){var t=this.container;if("string"===typeof t?t=window.document.querySelector(t):!1===t&&(t=this.$_targetNodes[0].parentNode),!t)throw new Error("No container for popover: "+this.container);t.appendChild(this.$_popperNode)},$_addEventListeners:function(){var t=this,e=function(e,o,n,i,r){var a=n;null!=i&&(a="function"===typeof i?i(a):i),a.forEach(function(n){var i=o[n];i&&(t.$_events.push({targetNodes:e,eventType:i,handler:r}),e.forEach(function(t){return t.addEventListener(i,r,S?{passive:!0}:void 0)}))})},o=function(e){t.isShown&&!t.$_hideInProgress||(e.usedByTooltip=!0,!t.$_preventShow&&t.show({event:e}))};e(this.$_targetNodes,A,this.triggers,this.showTriggers,o),e([this.$_popperNode],A,this.popperTriggers,this.popperShowTriggers,o);var n=function(e){e.usedByTooltip||t.hide({event:e})};e(this.$_targetNodes,T,this.triggers,this.hideTriggers,n),e([this.$_popperNode],T,this.popperTriggers,this.popperHideTriggers,n)},$_removeEventListeners:function(){this.$_events.forEach(function(t){var e=t.targetNodes,o=t.eventType,n=t.handler;e.forEach(function(t){return t.removeEventListener(o,n)})}),this.$_events=[]},$_handleGlobalClose:function(t){var e=this,o=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.$_showFrameLocked||(this.hide({event:t}),t.closePopover?this.$emit("close-directive"):this.$emit("auto-hide"),o&&(this.$_preventShow=!0,setTimeout(function(){e.$_preventShow=!1},300)))},$_handleGlobalResize:function(t){var e=this;return c(function*(){e.popperInstance&&(yield e.popperInstance.update())})()},$_detachPopperNode:function(){this.$_popperNode.parentNode&&this.$_popperNode.parentNode.removeChild(this.$_popperNode)},$_swapTargetAttrs:function(t,e){var o,n=M(this.$_targetNodes);try{for(n.s();!(o=n.n()).done;){var i=o.value,r=i.getAttribute(t);r&&(i.removeAttribute(t),i.setAttribute(e,r))}}catch(t){n.e(t)}finally{n.f()}},$_applyAttrsToTarget:function(t){var e,o=M(this.$_targetNodes);try{for(o.s();!(e=o.n()).done;){var n=e.value;for(var i in t){var r=t[i];null==r?n.removeAttribute(i):n.setAttribute(i,r)}}}catch(t){o.e(t)}finally{o.f()}}},render:function(t){return this.$scopedSlots.default(this.slotData)[0]}}};function D(t){for(var e=0;e<j.length;e++){var o=j[e],n=o.popperNode();o.$_mouseDownContains=n.contains(t.target)}}function U(t){q(t)}function F(t){q(t,!0)}function q(t){for(var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=function(o){var n=j[o],i=n.popperNode(),r=n.$_mouseDownContains||i.contains(t.target);requestAnimationFrame(function(){(t.closeAllPopover||t.closePopover&&r||n.autoHide&&!r)&&n.$_handleGlobalClose(t,e)})},n=0;n<j.length;n++)o(n)}function K(t){for(var e=0;e<j.length;e++){var o=j[e];o.$_handleGlobalResize(t)}}function Y(){return new Promise(function(t){return requestAnimationFrame(function(){requestAnimationFrame(t)})})}"undefined"!==typeof document&&"undefined"!==typeof window&&(E?(document.addEventListener("touchstart",D,!S||{passive:!0,capture:!0}),document.addEventListener("touchend",F,!S||{passive:!0,capture:!0})):(window.addEventListener("mousedown",D,!0),window.addEventListener("click",U,!0)),window.addEventListener("resize",K));var G={computed:{themeClass:function(){return L(this.theme)}}},W={name:"VPopperContent",components:{ResizeObserver:r["a"]},mixins:[G],props:{popperId:String,theme:String,shown:Boolean,mounted:Boolean,skipTransition:Boolean,autoHide:Boolean,handleResize:Boolean,classes:Object}};function Q(t,e,o,n,i,r,a,u,s,c){"boolean"!==typeof a&&(s=u,u=a,a=!1);var l,d="function"===typeof o?o.options:o;if(t&&t.render&&(d.render=t.render,d.staticRenderFns=t.staticRenderFns,d._compiled=!0,i&&(d.functional=!0)),n&&(d._scopeId=n),r?(l=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),e&&e.call(this,s(t)),t&&t._registeredComponents&&t._registeredComponents.add(r)},d._ssrRegister=l):e&&(l=a?function(t){e.call(this,c(t,this.$root.$options.shadowRoot))}:function(t){e.call(this,u(t))}),l)if(d.functional){var v=d.render;d.render=function(t,e){return l.call(e),v(t,e)}}else{var h=d.beforeCreate;d.beforeCreate=h?[].concat(h,l):[l]}return o}var J=W,X=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{ref:"popover",staticClass:"v-popper__popper",class:[t.themeClass,t.classes.popperClass,{"v-popper__popper--shown":t.shown,"v-popper__popper--hidden":!t.shown,"v-popper__popper--show-from":t.classes.showFrom,"v-popper__popper--show-to":t.classes.showTo,"v-popper__popper--hide-from":t.classes.hideFrom,"v-popper__popper--hide-to":t.classes.hideTo,"v-popper__popper--skip-transition":t.skipTransition}],attrs:{id:t.popperId,"aria-hidden":t.shown?"false":"true",tabindex:t.autoHide?0:void 0},on:{keyup:function(e){if(!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"]))return null;t.autoHide&&t.$emit("hide")}}},[o("div",{staticClass:"v-popper__wrapper"},[o("div",{ref:"inner",staticClass:"v-popper__inner"},[t.mounted?[o("div",[t._t("default")],2),t._v(" "),t.handleResize?o("ResizeObserver",{on:{notify:function(e){return t.$emit("resize",e)}}}):t._e()]:t._e()],2),t._v(" "),o("div",{ref:"arrow",staticClass:"v-popper__arrow-container"},[o("div",{staticClass:"v-popper__arrow-outer"}),t._v(" "),o("div",{staticClass:"v-popper__arrow-inner"})])])])},Z=[];X._withStripped=!0;var $=void 0,tt=void 0,et=void 0,ot=!1,nt=Q({render:X,staticRenderFns:Z},$,J,tt,ot,et,!1,void 0,void 0,void 0),it={methods:{show:function(){var t;return(t=this.$refs.popper).show.apply(t,arguments)},hide:function(){var t;return(t=this.$refs.popper).hide.apply(t,arguments)},dispose:function(){var t;return(t=this.$refs.popper).dispose.apply(t,arguments)},onResize:function(){var t;return(t=this.$refs.popper).onResize.apply(t,arguments)}}},rt={name:"VPopperWrapper",components:{Popper:P(),PopperContent:nt},mixins:[it,G],inheritAttrs:!1,props:{theme:{type:String,default:function(){return this.$options.vPopperTheme}}},methods:{getTargetNodes:function(){var t=this;return Array.from(this.$refs.reference.children).filter(function(e){return e!==t.$refs.popperContent.$el})}}},at=rt,ut=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("Popper",t._g(t._b({ref:"popper",attrs:{theme:t.theme,"target-nodes":t.getTargetNodes,"reference-node":function(){return t.$refs.reference},"popper-node":function(){return t.$refs.popperContent.$el},"arrow-node":function(){return t.$refs.popperContent.$refs.arrow}},scopedSlots:t._u([{key:"default",fn:function(e){var n=e.popperId,i=e.isShown,r=e.shouldMountContent,a=e.skipTransition,u=e.autoHide,s=e.show,c=e.hide,l=e.handleResize,d=e.onResize,v=e.classes;return[o("div",{ref:"reference",staticClass:"v-popper",class:[t.themeClass,{"v-popper--shown":i}]},[t._t("default",null,{shown:i,show:s,hide:c}),t._v(" "),o("PopperContent",{ref:"popperContent",attrs:{"popper-id":n,theme:t.theme,shown:i,mounted:r,"skip-transition":a,"auto-hide":u,"handle-resize":l,classes:v},on:{hide:c,resize:d}},[t._t("popper",null,{shown:i,hide:c})],2)],2)]}}],null,!0)},"Popper",t.$attrs,!1),t.$listeners))},st=[];ut._withStripped=!0;var ct=void 0,lt=void 0,dt=void 0,vt=!1,ht=Q({render:ut,staticRenderFns:st},ct,at,lt,vt,dt,!1,void 0,void 0,void 0),pt=v(v({},ht),{},{name:"VDropdown",vPopperTheme:"dropdown"}),ft=pt,mt=void 0,gt=void 0,bt=void 0,yt=void 0,wt=Q({},mt,ft,gt,yt,bt,!1,void 0,void 0,void 0),xt=v(v({},ht),{},{name:"VMenu",vPopperTheme:"menu"}),_t=xt,zt=void 0,kt=void 0,Mt=void 0,Vt=void 0,Ht=Q({},zt,_t,kt,Vt,Mt,!1,void 0,void 0,void 0),Ct=v(v({},ht),{},{name:"VTooltip",vPopperTheme:"tooltip"}),Lt=Ct,St=void 0,Bt=void 0,Et=void 0,Ot=void 0,At=Q({},St,Lt,Bt,Ot,Et,!1,void 0,void 0,void 0),Tt={name:"VTooltipDirective",components:{Popper:P(),PopperContent:nt},mixins:[it],inheritAttrs:!1,props:{theme:{type:String,default:"tooltip"},html:{type:Boolean,default:function(){return C(this.theme,"html")}},content:{type:[String,Number,Function],default:null},loadingContent:{type:String,default:function(){return C(this.theme,"loadingContent")}}},data:function(){return{asyncContent:null}},computed:{isContentAsync:function(){return"function"===typeof this.content},loading:function(){return this.isContentAsync&&null==this.asyncContent},finalContent:function(){return this.isContentAsync?this.loading?this.loadingContent:this.asyncContent:this.content}},watch:{content:{handler:function(){this.fetchContent(!0)},immediate:!0},finalContent:function(t){var e=this;this.$nextTick(function(){e.$refs.popper.onResize()})}},created:function(){this.$_fetchId=0},methods:{fetchContent:function(t){var e=this;if("function"===typeof this.content&&this.$_isShown&&(t||!this.$_loading&&null==this.asyncContent)){this.asyncContent=null,this.$_loading=!0;var o=++this.$_fetchId,n=this.content(this);n.then?n.then(function(t){return e.onResult(o,t)}):this.onResult(o,n)}},onResult:function(t,e){t===this.$_fetchId&&(this.$_loading=!1,this.asyncContent=e)},onShow:function(){this.$_isShown=!0,this.fetchContent()},onHide:function(){this.$_isShown=!1}}},It=Tt,jt=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("Popper",t._g(t._b({ref:"popper",attrs:{theme:t.theme,"popper-node":function(){return t.$refs.popperContent.$el},"arrow-node":function(){return t.$refs.popperContent.$refs.arrow}},on:{"apply-show":t.onShow,"apply-hide":t.onHide},scopedSlots:t._u([{key:"default",fn:function(e){var n=e.popperId,i=e.isShown,r=e.shouldMountContent,a=e.skipTransition,u=e.autoHide,s=e.hide,c=e.handleResize,l=e.onResize,d=e.classes;return[o("PopperContent",{ref:"popperContent",class:{"v-popper--tooltip-loading":t.loading},attrs:{"popper-id":n,theme:t.theme,shown:i,mounted:r,"skip-transition":a,"auto-hide":u,"handle-resize":c,classes:d},on:{hide:s,resize:l}},[t.html?o("div",{domProps:{innerHTML:t._s(t.finalContent)}}):o("div",{domProps:{textContent:t._s(t.finalContent)}})])]}}])},"Popper",t.$attrs,!1),t.$listeners))},Nt=[];jt._withStripped=!0;var Rt=void 0,Pt=void 0,Dt=void 0,Ut=!1,Ft=Q({render:jt,staticRenderFns:Nt},Rt,It,Pt,Ut,Dt,!1,void 0,void 0,void 0),qt="v-popper--has-tooltip";function Kt(t,e){var o=t.placement;if(!o&&e){var i,r=M(n["h"]);try{for(r.s();!(i=r.n()).done;){var a=i.value;e[a]&&(o=a)}}catch(t){r.e(t)}finally{r.f()}}return o||(o=C(t.theme||"tooltip","placement")),o}function Yt(t,e,o){var n,i=u(e);return n="string"===i?{content:e}:e&&"object"===i?e:{content:!1},n.placement=Kt(n,o),n.targetNodes=function(){return[t]},n.referenceNode=function(){return t},n}function Gt(t,e,o){var n=Yt(t,e,o),i=t.$_popper=new a["a"]({mixins:[it],data:function(){return{options:n}},render:function(t){var e=this.options,o=e.theme,n=e.html,i=e.content,r=e.loadingContent,a=p(e,["theme","html","content","loadingContent"]);return t(Ft,{props:{theme:o,html:n,content:i,loadingContent:r},attrs:a,ref:"popper"})},devtools:{hide:!0}}),r=document.createElement("div");return document.body.appendChild(r),i.$mount(r),t.classList&&t.classList.add(qt),i}function Wt(t){t.$_popper&&(t.$_popper.$destroy(),delete t.$_popper,delete t.$_popperOldShown),t.classList&&t.classList.remove(qt)}function Qt(t,e){var o,n=e.value,i=(e.oldValue,e.modifiers),r=Yt(t,n,i);!r.content||C(r.theme||"tooltip","disabled")?Wt(t):(t.$_popper?(o=t.$_popper,o.options=r):o=Gt(t,n,i),"undefined"!==typeof n.shown&&n.shown!==t.$_popperOldShown&&(t.$_popperOldShown=n.shown,n.shown?o.$refs.tooltip.show():o.$refs.tooltip.hide()))}var Jt={bind:Qt,update:Qt,unbind:function(t){Wt(t)}};function Xt(t){t.addEventListener("click",$t),t.addEventListener("touchstart",te,!!S&&{passive:!0})}function Zt(t){t.removeEventListener("click",$t),t.removeEventListener("touchstart",te),t.removeEventListener("touchend",ee),t.removeEventListener("touchcancel",oe)}function $t(t){var e=t.currentTarget;t.closePopover=!e.$_vclosepopover_touch,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}function te(t){if(1===t.changedTouches.length){var e=t.currentTarget;e.$_vclosepopover_touch=!0;var o=t.changedTouches[0];e.$_vclosepopover_touchPoint=o,e.addEventListener("touchend",ee),e.addEventListener("touchcancel",oe)}}function ee(t){var e=t.currentTarget;if(e.$_vclosepopover_touch=!1,1===t.changedTouches.length){var o=t.changedTouches[0],n=e.$_vclosepopover_touchPoint;t.closePopover=Math.abs(o.screenY-n.screenY)<20&&Math.abs(o.screenX-n.screenX)<20,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}}function oe(t){var e=t.currentTarget;e.$_vclosepopover_touch=!1}var ne={bind:function(t,e){var o=e.value,n=e.modifiers;t.$_closePopoverModifiers=n,("undefined"===typeof o||o)&&Xt(t)},update:function(t,e){var o=e.value,n=e.oldValue,i=e.modifiers;t.$_closePopoverModifiers=i,o!==n&&("undefined"===typeof o||o?Xt(t):Zt(t))},unbind:function(t){Zt(t)}};function ie(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};ie.installed||(ie.installed=!0,V(H,e),t.directive("tooltip",Jt),t.directive("close-popper",ne),t.component("v-tooltip",At),t.component("VTooltip",At),t.component("v-dropdown",wt),t.component("VDropdown",wt),t.component("v-menu",Ht),t.component("VMenu",Ht))}var re={version:"3.0.0-beta.20",install:ie,options:H},ae=null;"undefined"!==typeof window?ae=window.Vue:"undefined"!==typeof t&&(ae=t.Vue),ae&&ae.use(re),e["a"]=re}).call(this,o(9))},function(t,e,o){"use strict";(function(t){function n(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);var o=t.indexOf("Trident/");if(o>0){var n=t.indexOf("rv:");return parseInt(t.substring(n+3,t.indexOf(".",n)),10)}var i=t.indexOf("Edge/");return i>0?parseInt(t.substring(i+5,t.indexOf(".",i)),10):-1}var i;function r(){r.init||(r.init=!0,i=-1!==n())}o.d(e,"a",function(){return f});var a={name:"ResizeObserver",props:{emitOnMount:{type:Boolean,default:!1},ignoreWidth:{type:Boolean,default:!1},ignoreHeight:{type:Boolean,default:!1}},mounted:function(){var t=this;r(),this.$nextTick(function(){t._w=t.$el.offsetWidth,t._h=t.$el.offsetHeight,t.emitOnMount&&t.emitSize()});var e=document.createElement("object");this._resizeObject=e,e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",i&&this.$el.appendChild(e),e.data="about:blank",i||this.$el.appendChild(e)},beforeDestroy:function(){this.removeResizeHandlers()},methods:{compareAndNotify:function(){(!this.ignoreWidth&&this._w!==this.$el.offsetWidth||!this.ignoreHeight&&this._h!==this.$el.offsetHeight)&&(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitSize())},emitSize:function(){this.$emit("notify",{width:this._w,height:this._h})},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!i&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),this.$el.removeChild(this._resizeObject),this._resizeObject.onload=null,this._resizeObject=null)}}};function u(t,e,o,n,i,r,a,u,s,c){"boolean"!==typeof a&&(s=u,u=a,a=!1);var l,d="function"===typeof o?o.options:o;if(t&&t.render&&(d.render=t.render,d.staticRenderFns=t.staticRenderFns,d._compiled=!0,i&&(d.functional=!0)),n&&(d._scopeId=n),r?(l=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),e&&e.call(this,s(t)),t&&t._registeredComponents&&t._registeredComponents.add(r)},d._ssrRegister=l):e&&(l=a?function(t){e.call(this,c(t,this.$root.$options.shadowRoot))}:function(t){e.call(this,u(t))}),l)if(d.functional){var v=d.render;d.render=function(t,e){return l.call(e),v(t,e)}}else{var h=d.beforeCreate;d.beforeCreate=h?[].concat(h,l):[l]}return o}var s=a,c=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})},l=[];c._withStripped=!0;var d=void 0,v="data-v-8859cc6c",h=void 0,p=!1,f=u({render:c,staticRenderFns:l},d,s,v,p,h,!1,void 0,void 0,void 0);function m(t){t.component("resize-observer",f),t.component("ResizeObserver",f)}var g={version:"1.0.1",install:m},b=null;"undefined"!==typeof window?b=window.Vue:"undefined"!==typeof t&&(b=t.Vue),b&&b.use(g)}).call(this,o(9))},function(t,e,o){"use strict";(function(t){o.d(e,"a",function(){return P});var n=o(30),i=o(77),r=o(38),a=o.n(r),u=(o(5),{itemsLimit:1e3});const s={items:{type:Array,required:!0},keyField:{type:String,default:"id"},direction:{type:String,default:"vertical",validator:t=>["vertical","horizontal"].includes(t)},listTag:{type:String,default:"div"},itemTag:{type:String,default:"div"}};function c(){return this.items.length&&"object"!==typeof this.items[0]}let l=!1;if("undefined"!==typeof window){l=!1;try{var d=Object.defineProperty({},"passive",{get(){l=!0}});window.addEventListener("test",null,d)}catch(t){}}let v=0;var h={name:"RecycleScroller",components:{ResizeObserver:n["a"]},directives:{ObserveVisibility:i["a"]},props:{...s,itemSize:{type:Number,default:null},gridItems:{type:Number,default:void 0},itemSecondarySize:{type:Number,default:void 0},minItemSize:{type:[Number,String],default:null},sizeField:{type:String,default:"size"},typeField:{type:String,default:"type"},buffer:{type:Number,default:200},pageMode:{type:Boolean,default:!1},prerender:{type:Number,default:0},emitUpdate:{type:Boolean,default:!1},skipHover:{type:Boolean,default:!1},listTag:{type:String,default:"div"},itemTag:{type:String,default:"div"},listClass:{type:[String,Object,Array],default:""},itemClass:{type:[String,Object,Array],default:""}},data(){return{pool:[],totalSize:0,ready:!1,hoverKey:null}},computed:{sizes(){if(null===this.itemSize){const t={"-1":{accumulator:0}},e=this.items,o=this.sizeField,n=this.minItemSize;let i,r=1e4,a=0;for(let u=0,s=e.length;u<s;u++)i=e[u][o]||n,i<r&&(r=i),a+=i,t[u]={accumulator:a,size:i};return this.$_computedMinItemSize=r,t}return[]},simpleArray:c},watch:{items(){this.updateVisibleItems(!0)},pageMode(){this.applyPageMode(),this.updateVisibleItems(!1)},sizes:{handler(){this.updateVisibleItems(!1)},deep:!0},gridItems(){this.updateVisibleItems(!0)},itemSecondarySize(){this.updateVisibleItems(!0)}},created(){this.$_startIndex=0,this.$_endIndex=0,this.$_views=new Map,this.$_unusedViews=new Map,this.$_scrollDirty=!1,this.$_lastUpdateScrollPosition=0,this.prerender&&(this.$_prerender=!0,this.updateVisibleItems(!1)),this.gridItems&&!this.itemSize&&console.error("[vue-recycle-scroller] You must provide an itemSize when using gridItems")},mounted(){this.applyPageMode(),this.$nextTick(()=>{this.$_prerender=!1,this.updateVisibleItems(!0),this.ready=!0})},activated(){const t=this.$_lastUpdateScrollPosition;"number"===typeof t&&this.$nextTick(()=>{this.scrollToPosition(t)})},beforeDestroy(){this.removeListeners()},methods:{addView(t,e,o,n,i){const r={item:o,position:0},a={id:v++,index:e,used:!0,key:n,type:i};return Object.defineProperty(r,"nr",{configurable:!1,value:a}),t.push(r),r},unuseView(t,e=!1){const o=this.$_unusedViews,n=t.nr.type;let i=o.get(n);i||(i=[],o.set(n,i)),i.push(t),e||(t.nr.used=!1,t.position=-9999,this.$_views.delete(t.nr.key))},handleResize(){this.$emit("resize"),this.ready&&this.updateVisibleItems(!1)},handleScroll(t){this.$_scrollDirty||(this.$_scrollDirty=!0,requestAnimationFrame(()=>{this.$_scrollDirty=!1;const{continuous:t}=this.updateVisibleItems(!1,!0);t||(clearTimeout(this.$_refreshTimout),this.$_refreshTimout=setTimeout(this.handleScroll,100))}))},handleVisibilityChange(t,e){this.ready&&(t||0!==e.boundingClientRect.width||0!==e.boundingClientRect.height?(this.$emit("visible"),requestAnimationFrame(()=>{this.updateVisibleItems(!1)})):this.$emit("hidden"))},updateVisibleItems(t,e=!1){const o=this.itemSize,n=this.gridItems||1,i=this.itemSecondarySize||o,r=this.$_computedMinItemSize,a=this.typeField,s=this.simpleArray?null:this.keyField,c=this.items,l=c.length,d=this.sizes,v=this.$_views,h=this.$_unusedViews,p=this.pool;let f,m,g,b,y,w;if(l)if(this.$_prerender)f=b=0,m=y=Math.min(this.prerender,c.length),g=null;else{const t=this.getScroll();if(e){let e=t.start-this.$_lastUpdateScrollPosition;if(e<0&&(e=-e),null===o&&e<r||e<o)return{continuous:!0}}this.$_lastUpdateScrollPosition=t.start;const i=this.buffer;t.start-=i,t.end+=i;let a=0;if(this.$refs.before&&(a=this.$refs.before.scrollHeight,t.start-=a),this.$refs.after){const e=this.$refs.after.scrollHeight;t.end+=e}if(null===o){let e,o,n=0,i=l-1,r=~~(l/2);do{o=r,e=d[r].accumulator,e<t.start?n=r:r<l-1&&d[r+1].accumulator>t.start&&(i=r),r=~~((n+i)/2)}while(r!==o);for(r<0&&(r=0),f=r,g=d[l-1].accumulator,m=r;m<l&&d[m].accumulator<t.end;m++);for(-1===m?m=c.length-1:(m++,m>l&&(m=l)),b=f;b<l&&a+d[b].accumulator<t.start;b++);for(y=b;y<l&&a+d[y].accumulator<t.end;y++);}else{f=~~(t.start/o*n);const e=f%n;f-=e,m=Math.ceil(t.end/o*n),b=Math.max(0,Math.floor((t.start-a)/o*n)),y=Math.floor((t.end-a)/o*n),f<0&&(f=0),m>l&&(m=l),b<0&&(b=0),y>l&&(y=l),g=Math.ceil(l/n)*o}}else f=m=b=y=g=0;m-f>u.itemsLimit&&this.itemsLimitError(),this.totalSize=g;const x=f<=this.$_endIndex&&m>=this.$_startIndex;if(this.$_continuous!==x){if(x){v.clear(),h.clear();for(let t=0,e=p.length;t<e;t++)w=p[t],this.unuseView(w)}this.$_continuous=x}else if(x)for(let u=0,H=p.length;u<H;u++)w=p[u],w.nr.used&&(t&&(w.nr.index=c.indexOf(w.item)),(-1===w.nr.index||w.nr.index<f||w.nr.index>=m)&&this.unuseView(w));const _=x?null:new Map;let z,k,M,V;for(let u=f;u<m;u++){z=c[u];const t=s?z[s]:z;if(null==t)throw new Error(`Key is ${t} on item (keyField is '${s}')`);w=v.get(t),o||d[u].size?(w?(w.nr.used=!0,w.item=z):(u===c.length-1&&this.$emit("scroll-end"),0===u&&this.$emit("scroll-start"),k=z[a],M=h.get(k),x?M&&M.length?(w=M.pop(),w.item=z,w.nr.used=!0,w.nr.index=u,w.nr.key=t,w.nr.type=k):w=this.addView(p,u,z,t,k):(V=_.get(k)||0,(!M||V>=M.length)&&(w=this.addView(p,u,z,t,k),this.unuseView(w,!0),M=h.get(k)),w=M[V],w.item=z,w.nr.used=!0,w.nr.index=u,w.nr.key=t,w.nr.type=k,_.set(k,V+1),V++),v.set(t,w)),null===o?(w.position=d[u-1].accumulator,w.offset=0):(w.position=Math.floor(u/n)*o,w.offset=u%n*i)):w&&this.unuseView(w)}return this.$_startIndex=f,this.$_endIndex=m,this.emitUpdate&&this.$emit("update",f,m,b,y),clearTimeout(this.$_sortTimer),this.$_sortTimer=setTimeout(this.sortViews,300),{continuous:x}},getListenerTarget(){let t=a()(this.$el);return!window.document||t!==window.document.documentElement&&t!==window.document.body||(t=window),t},getScroll(){const{$el:t,direction:e}=this,o="vertical"===e;let n;if(this.pageMode){const e=t.getBoundingClientRect(),i=o?e.height:e.width;let r=-(o?e.top:e.left),a=o?window.innerHeight:window.innerWidth;r<0&&(a+=r,r=0),r+a>i&&(a=i-r),n={start:r,end:r+a}}else n=o?{start:t.scrollTop,end:t.scrollTop+t.clientHeight}:{start:t.scrollLeft,end:t.scrollLeft+t.clientWidth};return n},applyPageMode(){this.pageMode?this.addListeners():this.removeListeners()},addListeners(){this.listenerTarget=this.getListenerTarget(),this.listenerTarget.addEventListener("scroll",this.handleScroll,!!l&&{passive:!0}),this.listenerTarget.addEventListener("resize",this.handleResize)},removeListeners(){this.listenerTarget&&(this.listenerTarget.removeEventListener("scroll",this.handleScroll),this.listenerTarget.removeEventListener("resize",this.handleResize),this.listenerTarget=null)},scrollToItem(t){let e;e=null===this.itemSize?t>0?this.sizes[t-1].accumulator:0:Math.floor(t/this.gridItems)*this.itemSize,this.scrollToPosition(e)},scrollToPosition(t){const e="vertical"===this.direction?{scroll:"scrollTop",start:"top"}:{scroll:"scrollLeft",start:"left"};let o,n,i;if(this.pageMode){const r=a()(this.$el),u="HTML"===r.tagName?0:r[e.scroll],s=r.getBoundingClientRect(),c=this.$el.getBoundingClientRect(),l=c[e.start]-s[e.start];o=r,n=e.scroll,i=t+u+l}else o=this.$el,n=e.scroll,i=t;o[n]=i},itemsLimitError(){throw setTimeout(()=>{console.log("It seems the scroller element isn't scrolling, so it tries to render all the items at once.","Scroller:",this.$el),console.log("Make sure the scroller has a fixed height (or width) and 'overflow-y' (or 'overflow-x') set to 'auto' so it can scroll correctly and only render the items visible in the scroll viewport.")}),new Error("Rendered items limit reached")},sortViews(){this.pool.sort((t,e)=>t.nr.index-e.nr.index)}}};function p(t,e,o,n,i,r,a,u,s,c){"boolean"!==typeof a&&(s=u,u=a,a=!1);const l="function"===typeof o?o.options:o;let d;if(t&&t.render&&(l.render=t.render,l.staticRenderFns=t.staticRenderFns,l._compiled=!0,i&&(l.functional=!0)),n&&(l._scopeId=n),r?(d=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),e&&e.call(this,s(t)),t&&t._registeredComponents&&t._registeredComponents.add(r)},l._ssrRegister=d):e&&(d=a?function(t){e.call(this,c(t,this.$root.$options.shadowRoot))}:function(t){e.call(this,u(t))}),d)if(l.functional){const t=l.render;l.render=function(e,o){return d.call(o),t(e,o)}}else{const t=l.beforeCreate;l.beforeCreate=t?[].concat(t,d):[d]}return o}const f=h;var m=function(){var t,e,o=this,n=o.$createElement,i=o._self._c||n;return i("div",{directives:[{name:"observe-visibility",rawName:"v-observe-visibility",value:o.handleVisibilityChange,expression:"handleVisibilityChange"}],staticClass:"vue-recycle-scroller",class:(t={ready:o.ready,"page-mode":o.pageMode},t["direction-"+o.direction]=!0,t),on:{"&scroll":function(t){return o.handleScroll.apply(null,arguments)}}},[o.$slots.before?i("div",{ref:"before",staticClass:"vue-recycle-scroller__slot"},[o._t("before")],2):o._e(),o._v(" "),i(o.listTag,{ref:"wrapper",tag:"component",staticClass:"vue-recycle-scroller__item-wrapper",class:o.listClass,style:(e={},e["vertical"===o.direction?"minHeight":"minWidth"]=o.totalSize+"px",e)},[o._l(o.pool,function(t){return i(o.itemTag,o._g({key:t.nr.id,tag:"component",staticClass:"vue-recycle-scroller__item-view",class:[o.itemClass,{hover:!o.skipHover&&o.hoverKey===t.nr.key}],style:o.ready?{transform:"translate"+("vertical"===o.direction?"Y":"X")+"("+t.position+"px) translate"+("vertical"===o.direction?"X":"Y")+"("+t.offset+"px)",width:o.gridItems?("vertical"===o.direction&&o.itemSecondarySize||o.itemSize)+"px":void 0,height:o.gridItems?("horizontal"===o.direction&&o.itemSecondarySize||o.itemSize)+"px":void 0}:null},o.skipHover?{}:{mouseenter:function(){o.hoverKey=t.nr.key},mouseleave:function(){o.hoverKey=null}}),[o._t("default",null,{item:t.item,index:t.nr.index,active:t.nr.used})],2)}),o._v(" "),o._t("empty")],2),o._v(" "),o.$slots.after?i("div",{ref:"after",staticClass:"vue-recycle-scroller__slot"},[o._t("after")],2):o._e(),o._v(" "),i("ResizeObserver",{on:{notify:o.handleResize}})],1)},g=[];m._withStripped=!0;const b=void 0,y=void 0,w=void 0,x=!1,_=p({render:m,staticRenderFns:g},b,f,y,x,w,!1,void 0,void 0,void 0);var z={name:"DynamicScroller",components:{RecycleScroller:_},provide(){return"undefined"!==typeof ResizeObserver&&(this.$_resizeObserver=new ResizeObserver(t=>{requestAnimationFrame(()=>{if(Array.isArray(t))for(const e of t)if(e.target){const t=new CustomEvent("resize",{detail:{contentRect:e.contentRect}});e.target.dispatchEvent(t)}})})),{vscrollData:this.vscrollData,vscrollParent:this,vscrollResizeObserver:this.$_resizeObserver}},inheritAttrs:!1,props:{...s,minItemSize:{type:[Number,String],required:!0}},data(){return{vscrollData:{active:!0,sizes:{},validSizes:{},keyField:this.keyField,simpleArray:!1}}},computed:{simpleArray:c,itemsWithSize(){const t=[],{items:e,keyField:o,simpleArray:n}=this,i=this.vscrollData.sizes,r=e.length;for(let a=0;a<r;a++){const r=e[a],u=n?a:r[o];let s=i[u];"undefined"!==typeof s||this.$_undefinedMap[u]||(s=0),t.push({item:r,id:u,size:s})}return t},listeners(){const t={};for(const e in this.$listeners)"resize"!==e&&"visible"!==e&&(t[e]=this.$listeners[e]);return t}},watch:{items(){this.forceUpdate(!1)},simpleArray:{handler(t){this.vscrollData.simpleArray=t},immediate:!0},direction(t){this.forceUpdate(!0)},itemsWithSize(t,e){const o=this.$el.scrollTop;let n=0,i=0;const r=Math.min(t.length,e.length);for(let u=0;u<r;u++){if(n>=o)break;n+=e[u].size||this.minItemSize,i+=t[u].size||this.minItemSize}const a=i-n;0!==a&&(this.$el.scrollTop+=a)}},beforeCreate(){this.$_updates=[],this.$_undefinedSizes=0,this.$_undefinedMap={}},activated(){this.vscrollData.active=!0},deactivated(){this.vscrollData.active=!1},methods:{onScrollerResize(){const t=this.$refs.scroller;t&&this.forceUpdate(),this.$emit("resize")},onScrollerVisible(){this.$emit("vscroll:update",{force:!1}),this.$emit("visible")},forceUpdate(t=!0){(t||this.simpleArray)&&(this.vscrollData.validSizes={}),this.$emit("vscroll:update",{force:!0})},scrollToItem(t){const e=this.$refs.scroller;e&&e.scrollToItem(t)},getItemSize(t,e){const o=this.simpleArray?null!=e?e:this.items.indexOf(t):t[this.keyField];return this.vscrollData.sizes[o]||0},scrollToBottom(){if(this.$_scrollingToBottom)return;this.$_scrollingToBottom=!0;const t=this.$el;this.$nextTick(()=>{t.scrollTop=t.scrollHeight+5e3;const e=()=>{t.scrollTop=t.scrollHeight+5e3,requestAnimationFrame(()=>{t.scrollTop=t.scrollHeight+5e3,0===this.$_undefinedSizes?this.$_scrollingToBottom=!1:requestAnimationFrame(e)})};requestAnimationFrame(e)})}}};const k=z;var M=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("RecycleScroller",t._g(t._b({ref:"scroller",attrs:{items:t.itemsWithSize,"min-item-size":t.minItemSize,direction:t.direction,"key-field":"id","list-tag":t.listTag,"item-tag":t.itemTag},on:{resize:t.onScrollerResize,visible:t.onScrollerVisible},scopedSlots:t._u([{key:"default",fn:function(e){var o=e.item,n=e.index,i=e.active;return[t._t("default",null,null,{item:o.item,index:n,active:i,itemWithSize:o})]}}],null,!0)},"RecycleScroller",t.$attrs,!1),t.listeners),[t._v(" "),o("template",{slot:"before"},[t._t("before")],2),t._v(" "),o("template",{slot:"after"},[t._t("after")],2),t._v(" "),o("template",{slot:"empty"},[t._t("empty")],2)],2)},V=[];M._withStripped=!0;const H=void 0,C=void 0,L=void 0,S=!1,B=p({render:M,staticRenderFns:V},H,k,C,S,L,!1,void 0,void 0,void 0);var E={name:"DynamicScrollerItem",inject:["vscrollData","vscrollParent","vscrollResizeObserver"],props:{item:{required:!0},watchData:{type:Boolean,default:!1},active:{type:Boolean,required:!0},index:{type:Number,default:void 0},sizeDependencies:{type:[Array,Object],default:null},emitResize:{type:Boolean,default:!1},tag:{type:String,default:"div"}},computed:{id(){if(this.vscrollData.simpleArray)return this.index;if(this.item.hasOwnProperty(this.vscrollData.keyField))return this.item[this.vscrollData.keyField];throw new Error(`keyField '${this.vscrollData.keyField}' not found in your item. You should set a valid keyField prop on your Scroller`)},size(){return this.vscrollData.validSizes[this.id]&&this.vscrollData.sizes[this.id]||0},finalActive(){return this.active&&this.vscrollData.active}},watch:{watchData:"updateWatchData",id(){this.size||this.onDataUpdate()},finalActive(t){this.size||(t?this.vscrollParent.$_undefinedMap[this.id]||(this.vscrollParent.$_undefinedSizes++,this.vscrollParent.$_undefinedMap[this.id]=!0):this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=!1)),this.vscrollResizeObserver?t?this.observeSize():this.unobserveSize():t&&this.$_pendingVScrollUpdate===this.id&&this.updateSize()}},created(){if(!this.$isServer&&(this.$_forceNextVScrollUpdate=null,this.updateWatchData(),!this.vscrollResizeObserver)){for(const t in this.sizeDependencies)this.$watch(()=>this.sizeDependencies[t],this.onDataUpdate);this.vscrollParent.$on("vscroll:update",this.onVscrollUpdate),this.vscrollParent.$on("vscroll:update-size",this.onVscrollUpdateSize)}},mounted(){this.vscrollData.active&&(this.updateSize(),this.observeSize())},beforeDestroy(){this.vscrollParent.$off("vscroll:update",this.onVscrollUpdate),this.vscrollParent.$off("vscroll:update-size",this.onVscrollUpdateSize),this.unobserveSize()},methods:{updateSize(){this.finalActive?this.$_pendingSizeUpdate!==this.id&&(this.$_pendingSizeUpdate=this.id,this.$_forceNextVScrollUpdate=null,this.$_pendingVScrollUpdate=null,this.computeSize(this.id)):this.$_forceNextVScrollUpdate=this.id},updateWatchData(){this.watchData&&!this.vscrollResizeObserver?this.$_watchData=this.$watch("item",()=>{this.onDataUpdate()},{deep:!0}):this.$_watchData&&(this.$_watchData(),this.$_watchData=null)},onVscrollUpdate({force:t}){!this.finalActive&&t&&(this.$_pendingVScrollUpdate=this.id),this.$_forceNextVScrollUpdate!==this.id&&!t&&this.size||this.updateSize()},onDataUpdate(){this.updateSize()},computeSize(t){this.$nextTick(()=>{if(this.id===t){const t=this.$el.offsetWidth,e=this.$el.offsetHeight;this.applySize(t,e)}this.$_pendingSizeUpdate=null})},applySize(t,e){const o=~~("vertical"===this.vscrollParent.direction?e:t);o&&this.size!==o&&(this.vscrollParent.$_undefinedMap[this.id]&&(this.vscrollParent.$_undefinedSizes--,this.vscrollParent.$_undefinedMap[this.id]=void 0),this.$set(this.vscrollData.sizes,this.id,o),this.$set(this.vscrollData.validSizes,this.id,!0),this.emitResize&&this.$emit("resize",this.id))},observeSize(){this.vscrollResizeObserver&&this.$el.parentNode&&(this.vscrollResizeObserver.observe(this.$el.parentNode),this.$el.parentNode.addEventListener("resize",this.onResize))},unobserveSize(){this.vscrollResizeObserver&&(this.vscrollResizeObserver.unobserve(this.$el.parentNode),this.$el.parentNode.removeEventListener("resize",this.onResize))},onResize(t){const{width:e,height:o}=t.detail.contentRect;this.applySize(e,o)}},render(t){return t(this.tag,this.$slots.default)}};const O=E,A=void 0,T=void 0,I=void 0,j=void 0,N=p({},A,O,T,j,I,!1,void 0,void 0,void 0);function R(t,e){t.component(`${e}recycle-scroller`,_),t.component(`${e}RecycleScroller`,_),t.component(`${e}dynamic-scroller`,B),t.component(`${e}DynamicScroller`,B),t.component(`${e}dynamic-scroller-item`,N),t.component(`${e}DynamicScrollerItem`,N)}const P={version:"1.1.2",install(t,e){const o=Object.assign({},{installComponents:!0,componentsPrefix:""},e);for(const n in o)"undefined"!==typeof o[n]&&(u[n]=o[n]);o.installComponents&&R(t,o.componentsPrefix)}};let D=null;"undefined"!==typeof window?D=window.Vue:"undefined"!==typeof t&&(D=t.Vue),D&&D.use(P)}).call(this,o(9))},function(t,e,o){"use strict";(function(t){function n(t){return n="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},n(t)}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){for(var o=0;o<e.length;o++){var n=e[o];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function a(t,e,o){return e&&r(t.prototype,e),o&&r(t,o),t}function u(t){return s(t)||c(t)||l()}function s(t){if(Array.isArray(t)){for(var e=0,o=new Array(t.length);e<t.length;e++)o[e]=t[e];return o}}function c(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}function l(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function d(t){var e;return e="function"===typeof t?{callback:t}:t,e}function v(t,e){var o,n,i,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=function(a){for(var s=arguments.length,c=new Array(s>1?s-1:0),l=1;l<s;l++)c[l-1]=arguments[l];if(i=c,!o||a!==n){var d=r.leading;"function"===typeof d&&(d=d(a,n)),o&&a===n||!d||t.apply(void 0,[a].concat(u(i))),n=a,clearTimeout(o),o=setTimeout(function(){t.apply(void 0,[a].concat(u(i))),o=0},e)}};return a._clear=function(){clearTimeout(o),o=null},a}function h(t,e){if(t===e)return!0;if("object"===n(t)){for(var o in t)if(!h(t[o],e[o]))return!1;return!0}return!1}o.d(e,"a",function(){return b});var p=function(){function t(e,o,n){i(this,t),this.el=e,this.observer=null,this.frozen=!1,this.createObserver(o,n)}return a(t,[{key:"createObserver",value:function(t,e){var o=this;if(this.observer&&this.destroyObserver(),!this.frozen){if(this.options=d(t),this.callback=function(t,e){o.options.callback(t,e),t&&o.options.once&&(o.frozen=!0,o.destroyObserver())},this.callback&&this.options.throttle){var n=this.options.throttleOptions||{},i=n.leading;this.callback=v(this.callback,this.options.throttle,{leading:function(t){return"both"===i||"visible"===i&&t||"hidden"===i&&!t}})}this.oldResult=void 0,this.observer=new IntersectionObserver(function(t){var e=t[0];if(t.length>1){var n=t.find(function(t){return t.isIntersecting});n&&(e=n)}if(o.callback){var i=e.isIntersecting&&e.intersectionRatio>=o.threshold;if(i===o.oldResult)return;o.oldResult=i,o.callback(i,e)}},this.options.intersection),e.context.$nextTick(function(){o.observer&&o.observer.observe(o.el)})}}},{key:"destroyObserver",value:function(){this.observer&&(this.observer.disconnect(),this.observer=null),this.callback&&this.callback._clear&&(this.callback._clear(),this.callback=null)}},{key:"threshold",get:function(){return this.options.intersection&&this.options.intersection.threshold||0}}]),t}();function f(t,e,o){var n=e.value;if(n)if("undefined"===typeof IntersectionObserver)console.warn("[vue-observe-visibility] IntersectionObserver API is not available in your browser. Please install this polyfill: https://github.com/w3c/IntersectionObserver/tree/master/polyfill");else{var i=new p(t,n,o);t._vue_visibilityState=i}}function m(t,e,o){var n=e.value,i=e.oldValue;if(!h(n,i)){var r=t._vue_visibilityState;n?r?r.createObserver(n,o):f(t,{value:n},o):g(t)}}function g(t){var e=t._vue_visibilityState;e&&(e.destroyObserver(),delete t._vue_visibilityState)}var b={bind:f,update:m,unbind:g};function y(t){t.directive("observe-visibility",b)}var w={version:"0.4.6",install:y},x=null;"undefined"!==typeof window?x=window.Vue:"undefined"!==typeof t&&(x=t.Vue),x&&x.use(w)}).call(this,o(9))},,,,,,,,,,,,,,,,function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTk2QkI4RkE3NjE2MTFFNUE4NEU4RkIxNjQ5MTYyRDgiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTk2QkI4Rjk3NjE2MTFFNUE4NEU4RkIxNjQ5MTYyRDgiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NjU2QTEyNzk3NjkyMTFFMzkxODk4RDkwQkY4Q0U0NzYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NjU2QTEyN0E3NjkyMTFFMzkxODk4RDkwQkY4Q0U0NzYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5WHowqAAAXNElEQVR42uxda4xd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"},function(t,e,o){"use strict";o(44)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".group-dropdown[data-v-a10d3724] {\n position: relative;\n z-index: 100;\n}\n.group-dropdown[data-v-a10d3724]:focus {\n outline: none;\n}\n.vue-ui-dark-mode .group-dropdown[data-v-a10d3724]:focus {\n background: #28394a;\n}\n.group-dropdown .header[data-v-a10d3724] {\n display: flex;\n align-items: center;\n padding: 0 14px;\n height: 100%;\n cursor: pointer;\n}\n@media (min-width: 1101px) {\n.group-dropdown .header .left-icon[data-v-a10d3724] {\n margin-right: 6px;\n}\n.group-dropdown .header .right-icon[data-v-a10d3724] {\n margin-left: 6px;\n}\n}\n@media (max-width: 1100px) {\n.group-dropdown .header[data-v-a10d3724] {\n padding: 0 6px 0 12px;\n}\n}\n.group-dropdown[data-v-a10d3724] svg {\n fill: #2c3e50;\n}\n.group-dropdown-options[data-v-a10d3724] {\n position: absolute;\n background: #fff;\n left: 0;\n top: 100%;\n width: 100%;\n box-shadow: 0 3px 6px rgba(0,0,0,0.15);\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.vue-ui-dark-mode .group-dropdown-options[data-v-a10d3724] {\n background: #222f3d;\n}\n",""])},function(t,e,o){"use strict";o(45)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".new-tag[data-v-5ddc270f] {\n display: inline-block;\n background: #03c2e6;\n color: #fff;\n font-size: 9px;\n font-weight: bold;\n text-transform: uppercase;\n padding: 1px 3px;\n border-radius: 3px;\n}\n",""])},function(t,e,o){"use strict";o(46)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".settings[data-v-2770cc6a] {\n overflow: auto !important;\n}\n.settings[data-v-2770cc6a] .preferences {\n display: flex;\n flex-wrap: wrap;\n padding: 12px 4px;\n}\n.settings[data-v-2770cc6a] .preferences > * {\n flex-basis: 380px;\n margin: 16px 24px;\n}\n.settings[data-v-2770cc6a] .preferences .vue-ui-form-field > .wrapper > .content {\n min-height: 32px;\n justify-content: center;\n}\n",""])},function(t,e,o){"use strict";o(47)},function(t,e,o){var n=o(102);e=t.exports=o(7)(!1),e.i(o(103),""),e.push([t.i,".slide-up-enter {\n opacity: 0;\n transform: translate(0, 50%);\n}\n.slide-up-leave-to {\n opacity: 0;\n transform: translate(0, -50%);\n}\n.slide-down-enter,\n.slide-down-leave-to {\n opacity: 0;\n transform: translate(0, -20px);\n}\n@keyframes rotate {\n0% {\n transform: rotate(0deg);\n}\n100% {\n transform: rotate(360deg);\n}\n}\n@keyframes pulse {\n0% {\n opacity: 1;\n}\n50% {\n opacity: 0.2;\n}\n100% {\n opacity: 1;\n}\n}\n@font-face {\n font-family: 'Roboto';\n font-style: normal;\n font-weight: 400;\n src: local('Roboto'), local('Roboto-Regular'), url("+n(o(104))+") format('woff2');\n}\n.toggle-recording .vue-ui-icon svg {\n fill: #999 !important;\n}\n.toggle-recording .vue-ui-icon.enabled {\n border-radius: 50%;\n -webkit-filter: drop-shadow(0 0 3px rgba(255,0,0,0.4));\n filter: drop-shadow(0 0 3px rgba(255,0,0,0.4));\n}\n.toggle-recording .vue-ui-icon.enabled svg {\n fill: #f00 !important;\n}\n.vue-ui-icon {\n display: inline-block;\n width: 22px;\n height: 22px;\n}\n.vue-ui-icon svg {\n width: 100%;\n height: 100%;\n fill: #999;\n pointer-events: none;\n}\n.vue-ui-icon.big {\n transform: scale(1.3);\n}\n.vue-ui-icon.medium {\n transform: scale(0.9);\n}\n.vue-ui-icon.small {\n transform: scale(0.8);\n}\nhtml,\nbody {\n margin: 0;\n padding: 0;\n font-family: Roboto;\n font-size: 16px;\n color: #444;\n}\nbody {\n overflow: hidden;\n}\n* {\n box-sizing: border-box;\n}\n.arrow {\n display: inline-block;\n width: 0;\n height: 0;\n}\n.arrow.up {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-bottom: 6px solid #2c3e50;\n}\n.arrow.down {\n border-left: 4px solid transparent;\n border-right: 4px solid transparent;\n border-top: 6px solid #2c3e50;\n}\n.arrow.right {\n border-top: 4px solid transparent;\n border-bottom: 4px solid transparent;\n border-left: 6px solid #2c3e50;\n}\n.arrow.left {\n border-top: 4px solid transparent;\n border-bottom: 4px solid transparent;\n border-right: 6px solid #2c3e50;\n}\n.vue-ui-dark-mode .arrow.up {\n border-bottom-color: rgba(228,245,239,0.4);\n}\n.vue-ui-dark-mode .arrow.down {\n border-top-color: rgba(228,245,239,0.4);\n}\n.vue-ui-dark-mode .arrow.right {\n border-left-color: rgba(228,245,239,0.4);\n}\n.vue-ui-dark-mode .arrow.left {\n border-right-color: rgba(228,245,239,0.4);\n}\n.notice {\n display: flex;\n align-items: center;\n height: 100%;\n width: 100%;\n color: #aaa;\n}\n.notice div {\n text-align: center;\n padding: 0.5em;\n margin: 0 auto;\n}\n.selectable-item,\n.list-item {\n background-color: #fff;\n}\n.selectable-item:hover,\n.list-item:hover {\n background-color: #e5f2ff;\n}\n.selectable-item.selected,\n.list-item.selected,\n.selectable-item.active,\n.list-item.active {\n background-color: #3ba776;\n color: #fff;\n}\n.selectable-item.selected .arrow,\n.list-item.selected .arrow,\n.selectable-item.active .arrow,\n.list-item.active .arrow {\n border-left-color: #fff;\n}\n.selectable-item.selected .item-name,\n.list-item.selected .item-name,\n.selectable-item.active .item-name,\n.list-item.active .item-name {\n color: #fff;\n}\n.vue-ui-dark-mode .selectable-item,\n.vue-ui-dark-mode .list-item {\n background-color: #0b1015;\n}\n.vue-ui-dark-mode .selectable-item:hover,\n.vue-ui-dark-mode .list-item:hover {\n background-color: #2c3e50;\n}\n.vue-ui-dark-mode .selectable-item:hover .arrow,\n.vue-ui-dark-mode .list-item:hover .arrow {\n border-left-color: #666;\n}\n.vue-ui-dark-mode .selectable-item.selected,\n.vue-ui-dark-mode .list-item.selected,\n.vue-ui-dark-mode .selectable-item.active,\n.vue-ui-dark-mode .list-item.active {\n color: #fff;\n background-color: #3ba776;\n}\n.list-item {\n color: #881391;\n}\n.vue-ui-dark-mode .list-item {\n color: #e36eec;\n}\n.icon-button {\n cursor: pointer;\n}\n.icon-button:hover svg {\n fill: #42b983;\n}\n.scroll {\n position: relative;\n}\n.keyboard {\n display: inline-block;\n min-width: 22px;\n text-align: center;\n background: rgba(221,221,221,0.3);\n padding: 2px 4px 0;\n border-radius: 3px;\n margin-bottom: 6px;\n box-shadow: 0 3px 0 rgba(221,221,221,0.2);\n}\n.vue-ui-dark-mode .keyboard {\n background: rgba(221,221,221,0.9);\n box-shadow: 0 3px 0 rgba(221,221,221,0.6);\n}\n.mono {\n font-family: Menlo, Consolas, monospace;\n}\n.green {\n color: #42b983;\n}\n.green .vue-ui-icon svg {\n fill: #42b983;\n}\n.input-example {\n background: #fff;\n color: #42b983;\n font-size: 12px;\n padding: 0px 8px 6px;\n margin: 2px;\n border-radius: 2px;\n display: inline-flex;\n align-items: baseline;\n vertical-align: baseline;\n}\n.vue-ui-dark-mode .input-example {\n background: #0b1015;\n}\n.input-example .vue-ui-icon,\n.v-popper__popper.v-popper--theme-tooltip .v-popper__inner .input-example .vue-ui-icon {\n position: relative;\n top: 4px;\n margin-right: 4px;\n transform: scale(0.8);\n}\n.input-example .vue-ui-icon svg,\n.v-popper__popper.v-popper--theme-tooltip .v-popper__inner .input-example .vue-ui-icon svg {\n fill: #444;\n}\n.vue-ui-dark-mode .input-example .vue-ui-icon svg,\n.vue-ui-dark-mode .v-popper__popper.v-popper--theme-tooltip .v-popper__inner .input-example .vue-ui-icon svg {\n fill: #ccc;\n}\n.v-popper__popper.v-popper--theme-tooltip {\n pointer-events: none;\n font-size: 12px;\n}\n.v-popper__popper.v-popper--theme-tooltip .vue-ui-icon {\n width: 16px;\n height: 16px;\n vertical-align: middle;\n}\n.vue-ui-dark-mode .v-popper__popper.v-popper--theme-tooltip .vue-ui-icon svg {\n fill: #666;\n}\n",""])},function(t,e){t.exports=function(t){return"string"!==typeof t?t:(/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),/["'() \t\n]/.test(t)?'"'+t.replace(/"/g,'\\"').replace(/\n/g,"\\n")+'"':t)}},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper--theme-dropdown .v-popper__inner{background:#fff;color:#000;padding:24px;border-radius:6px;-webkit-box-shadow:0 6px 30px rgba(0,0,0,.1);box-shadow:0 6px 30px rgba(0,0,0,.1)}.v-popper--theme-dropdown .v-popper__arrow{border-color:#fff}.v-popper__popper{z-index:10000;visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.v-popper__popper.v-popper__popper--open{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.v-popper__popper.v-popper__popper--skip-transition{-webkit-transition:none!important;transition:none!important}.v-popper__arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;z-index:1}.v-popper__popper[x-placement^=top]{margin-bottom:5px}.v-popper__popper[x-placement^=top] .v-popper__arrow{border-width:5px 5px 0 5px;border-left-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important;bottom:-5px;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.v-popper__popper[x-placement^=bottom]{margin-top:5px}.v-popper__popper[x-placement^=bottom] .v-popper__arrow{border-width:0 5px 5px 5px;border-left-color:transparent!important;border-right-color:transparent!important;border-top-color:transparent!important;top:-5px;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.v-popper__popper[x-placement^=right]{margin-left:5px}.v-popper__popper[x-placement^=right] .v-popper__arrow{border-width:5px 5px 5px 0;border-left-color:transparent!important;border-top-color:transparent!important;border-bottom-color:transparent!important;left:-5px;top:calc(50% - 5px);margin-left:0;margin-right:0}.v-popper__popper[x-placement^=left]{margin-right:5px}.v-popper__popper[x-placement^=left] .v-popper__arrow{border-width:5px 0 5px 5px;border-top-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important;right:-5px;top:calc(50% - 5px);margin-left:0;margin-right:0}.v-popper--theme-tooltip .v-popper__inner{background:rgba(0,0,0,.8);color:#fff;border-radius:6px;padding:7px 12px 6px}.v-popper--theme-tooltip .v-popper__arrow{border-color:rgba(0,0,0,.8)}@-webkit-keyframes vue-ui-slide-from-bottom{0%{-webkit-transform:translateY(6px);transform:translateY(6px)}100%{-webkit-transform:none;transform:none}}@keyframes vue-ui-slide-from-bottom{0%{-webkit-transform:translateY(6px);transform:translateY(6px)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes vue-ui-slide-to-bottom{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translateY(6px);transform:translateY(6px)}}@keyframes vue-ui-slide-to-bottom{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translateY(6px);transform:translateY(6px)}}@-webkit-keyframes vue-ui-slide-from-top{0%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}100%{-webkit-transform:none;transform:none}}@keyframes vue-ui-slide-from-top{0%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes vue-ui-slide-to-top{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}@keyframes vue-ui-slide-to-top{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}}@-webkit-keyframes vue-ui-slide-from-left{0%{-webkit-transform:translateX(-6px);transform:translateX(-6px)}100%{-webkit-transform:none;transform:none}}@keyframes vue-ui-slide-from-left{0%{-webkit-transform:translateX(-6px);transform:translateX(-6px)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes vue-ui-slide-to-left{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translateX(-6px);transform:translateX(-6px)}}@keyframes vue-ui-slide-to-left{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translateX(-6px);transform:translateX(-6px)}}@-webkit-keyframes vue-ui-slide-from-right{0%{-webkit-transform:translateX(6px);transform:translateX(6px)}100%{-webkit-transform:none;transform:none}}@keyframes vue-ui-slide-from-right{0%{-webkit-transform:translateX(6px);transform:translateX(6px)}100%{-webkit-transform:none;transform:none}}@-webkit-keyframes vue-ui-slide-to-right{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translateX(6px);transform:translateX(6px)}}@keyframes vue-ui-slide-to-right{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translateX(6px);transform:translateX(6px)}}.vue-ui-fade-enter-active,.vue-ui-fade-leave-active{-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.vue-ui-fade-enter,.vue-ui-fade-leave-to{opacity:0}@-webkit-keyframes vue-ui-focus{0%{border-color:#a44cf6;-webkit-box-shadow:0 0 20px #a44cf6;box-shadow:0 0 20px #a44cf6}100%{border-color:rgba(164,76,246,.6);-webkit-box-shadow:0 0 4px rgba(164,76,246,.5);box-shadow:0 0 4px rgba(164,76,246,.5)}}@keyframes vue-ui-focus{0%{border-color:#a44cf6;-webkit-box-shadow:0 0 20px #a44cf6;box-shadow:0 0 20px #a44cf6}100%{border-color:rgba(164,76,246,.6);-webkit-box-shadow:0 0 4px rgba(164,76,246,.5);box-shadow:0 0 4px rgba(164,76,246,.5)}}@-webkit-keyframes vue-ui-focus-dark{0%{border-color:#c88eff;-webkit-box-shadow:0 0 20px #c88eff;box-shadow:0 0 20px #c88eff}100%{border-color:rgba(200,142,255,.6);-webkit-box-shadow:0 0 4px rgba(200,142,255,.5);box-shadow:0 0 4px rgba(200,142,255,.5)}}@keyframes vue-ui-focus-dark{0%{border-color:#c88eff;-webkit-box-shadow:0 0 20px #c88eff;box-shadow:0 0 20px #c88eff}100%{border-color:rgba(200,142,255,.6);-webkit-box-shadow:0 0 4px rgba(200,142,255,.5);box-shadow:0 0 4px rgba(200,142,255,.5)}}.v-popper--theme-tooltip{font-size:14px}.v-popper--theme-tooltip .v-popper__inner{background:#2c3e50;color:#fff}.v-popper--theme-tooltip .v-popper__arrow{border-color:#2c3e50}.vue-ui-dark-mode .v-popper--theme-tooltip .v-popper__inner{background:#fff;color:#2c3e50}.vue-ui-dark-mode .v-popper--theme-tooltip .v-popper__arrow{border-color:#fff}.v-popper--theme-dropdown .v-popper__inner{background:#fff;color:#2c3e50;padding:4px 0;-webkit-box-shadow:0 0 3px rgba(0,0,0,.05),0 10px 30px rgba(0,0,0,.1);box-shadow:0 0 3px rgba(0,0,0,.05),0 10px 30px rgba(0,0,0,.1)}.v-popper--theme-dropdown .v-popper__arrow{border-color:#fff}.vue-ui-dark-mode .v-popper--theme-dropdown .v-popper__inner{background:#1d2935;color:#fff}.vue-ui-dark-mode .v-popper--theme-dropdown .v-popper__arrow{border-color:#1d2935}.v-popper--theme-dropdown[x-placement^=top] .v-popper__arrow{-webkit-filter:drop-shadow(0 3px 3px rgba(0,0,0,.15));filter:drop-shadow(0 3px 3px rgba(0,0,0,.15))}.v-popper--theme-dropdown[x-placement^=bottom] .v-popper__arrow{-webkit-filter:drop-shadow(0 -3px 3px rgba(0,0,0,.15));filter:drop-shadow(0 -3px 3px rgba(0,0,0,.15))}.v-popper--theme-dropdown[x-placement^=left] .v-popper__arrow{-webkit-filter:drop-shadow(3px 0 3px rgba(0,0,0,.15));filter:drop-shadow(3px 0 3px rgba(0,0,0,.15))}.v-popper--theme-dropdown[x-placement^=right] .v-popper__arrow{-webkit-filter:drop-shadow(-3px 0 3px rgba(0,0,0,.15));filter:drop-shadow(-3px 0 3px rgba(0,0,0,.15))}.v-popper--theme-dropdown[x-placement^=top]>.v-popper__wrapper{-webkit-animation:vue-ui-slide-to-bottom .12s;animation:vue-ui-slide-to-bottom .12s}.v-popper--theme-dropdown[x-placement^=bottom]>.v-popper__wrapper{-webkit-animation:vue-ui-slide-to-top .12s;animation:vue-ui-slide-to-top .12s}.v-popper--theme-dropdown[x-placement^=left]>.v-popper__wrapper{-webkit-animation:vue-ui-slide-to-right .12s;animation:vue-ui-slide-to-right .12s}.v-popper--theme-dropdown[x-placement^=right]>.v-popper__wrapper{-webkit-animation:vue-ui-slide-to-left .12s;animation:vue-ui-slide-to-left .12s}.v-popper--theme-dropdown.v-popper__popper--open[x-placement^=top]>.v-popper__wrapper{-webkit-animation:vue-ui-slide-from-bottom .12s;animation:vue-ui-slide-from-bottom .12s}.v-popper--theme-dropdown.v-popper__popper--open[x-placement^=bottom]>.v-popper__wrapper{-webkit-animation:vue-ui-slide-from-top .12s;animation:vue-ui-slide-from-top .12s}.v-popper--theme-dropdown.v-popper__popper--open[x-placement^=left]>.v-popper__wrapper{-webkit-animation:vue-ui-slide-from-right .12s;animation:vue-ui-slide-from-right .12s}.v-popper--theme-dropdown.v-popper__popper--open[x-placement^=right]>.v-popper__wrapper{-webkit-animation:vue-ui-slide-from-left .12s;animation:vue-ui-slide-from-left .12s}html{background:#fff}body{font-size:16px;font-family:Roboto,Avenir,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#2c3e50;margin:0}.vue-ui-dark-mode{color:#fff;background:#0b1015}.vue-ui-dark-mode body{color:#fff}.vue-ui-high-contrast{background:#000}hr{border:none;height:1px;background:#e0f8ed}a{color:#42b983;text-decoration:none}a .vue-ui-icon svg{fill:#42b983}h1,h2,h3,h4,h5,h6{font-weight:300;margin:24px 0 8px}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:0}h1{font-size:42px}h2{font-size:32px}h3{font-size:26px}h4{font-size:22px}h5{font-size:18px}h6{font-size:16px}p{margin:0 0 8px}ul{margin:4px 0}.vue-ui-no-scroll{overflow:hidden}.vue-ui-spacer{-webkit-box-flex:1!important;-ms-flex:auto 1 1!important;flex:auto 1 1!important;width:0;height:0}.vue-ui-empty{color:rgba(44,62,80,.5);padding:24px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box}.vue-ui-empty .vue-ui-icon svg{fill:rgba(44,62,80,.5)}.vue-ui-dark-mode .vue-ui-empty{color:rgba(255,255,255,.5)}.vue-ui-text.banner{padding:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:3px}.vue-ui-text.banner>.vue-ui-icon:first-child{margin-right:10px}.vue-ui-text.primary{color:#42b983}.vue-ui-text.primary .vue-ui-icon svg{fill:#42b983!important}.vue-ui-text.primary.banner{background:#ecf8f3}.vue-ui-dark-mode .vue-ui-text.primary.banner{background:#1a4a34}.vue-ui-text.accent{color:#a44cf6}.vue-ui-text.accent .vue-ui-icon svg{fill:#a44cf6!important}.vue-ui-text.accent.banner{background:#f6edfe}.vue-ui-dark-mode .vue-ui-text.accent.banner{background:#42067b}.vue-ui-text.danger{color:#e83030}.vue-ui-text.danger .vue-ui-icon svg{fill:#e83030!important}.vue-ui-text.danger.banner{background:#fdeaea}.vue-ui-dark-mode .vue-ui-text.danger.banner{background:#650b0b}.vue-ui-text.warning{color:#ea6e00}.vue-ui-text.warning .vue-ui-icon svg{fill:#ea6e00!important}.vue-ui-text.warning.banner{background:#fff0e3}.vue-ui-dark-mode .vue-ui-text.warning.banner{background:#5e2c00}.vue-ui-text.info{color:#03c2e6}.vue-ui-text.info .vue-ui-icon svg{fill:#03c2e6!important}.vue-ui-text.info.banner{background:#e4faff}.vue-ui-dark-mode .vue-ui-text.info.banner{background:#014e5c}.vue-ui-text.success{color:#42b983}.vue-ui-text.success .vue-ui-icon svg{fill:#42b983!important}.vue-ui-text.success.banner{background:#ecf8f3}.vue-ui-dark-mode .vue-ui-text.success.banner{background:#1a4a34}.vue-ui-grid{display:grid}.vue-ui-grid.default-gap{grid-gap:12px}.vue-ui-grid.big-gap{grid-gap:24px}.vue-ui-grid.col-1{grid-template-columns:repeat(1,1fr)}.vue-ui-grid .span-1{grid-column:span 1}.vue-ui-grid.col-2{grid-template-columns:repeat(2,1fr)}.vue-ui-grid .span-2{grid-column:span 2}.vue-ui-grid.col-3{grid-template-columns:repeat(3,1fr)}.vue-ui-grid .span-3{grid-column:span 3}.vue-ui-grid.col-4{grid-template-columns:repeat(4,1fr)}.vue-ui-grid .span-4{grid-column:span 4}.vue-ui-grid.col-5{grid-template-columns:repeat(5,1fr)}.vue-ui-grid .span-5{grid-column:span 5}.vue-ui-grid.col-6{grid-template-columns:repeat(6,1fr)}.vue-ui-grid .span-6{grid-column:span 6}.vue-ui-grid.col-7{grid-template-columns:repeat(7,1fr)}.vue-ui-grid .span-7{grid-column:span 7}.vue-ui-grid.col-8{grid-template-columns:repeat(8,1fr)}.vue-ui-grid .span-8{grid-column:span 8}.vue-ui-grid.col-9{grid-template-columns:repeat(9,1fr)}.vue-ui-grid .span-9{grid-column:span 9}.vue-ui-grid.col-10{grid-template-columns:repeat(10,1fr)}.vue-ui-grid .span-10{grid-column:span 10}::-webkit-scrollbar{width:10px;height:10px}::-webkit-scrollbar-track-piece{background:0 0}::-webkit-scrollbar-track:hover{background:rgba(79,111,127,.05)}.vue-ui-dark-mode ::-webkit-scrollbar-track:hover{background:rgba(79,111,127,.1)}::-webkit-scrollbar-thumb{background-color:#b6c6ce;border:3px solid transparent;background-clip:padding-box;border-radius:5px}::-webkit-scrollbar-thumb:hover{background-color:#4f6f7f}.vue-ui-dark-mode ::-webkit-scrollbar-thumb{background-color:#2c3e50}.vue-ui-dark-mode ::-webkit-scrollbar-thumb:hover{background-color:#809fae}.vue-ui-dark-mode{scrollbar-color:#2c3e50 #0b1015}.vue-ui-high-contrast :focus{outline:#0ff 2px solid!important}.vue-ui-button{display:inline-block;vertical-align:middle;border:none;font-family:inherit;text-decoration:none;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px;padding:0 14px;font-size:14px;line-height:16px;height:32px;color:#2c3e50;background:#e0f8ed;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0)}.vue-ui-button>.content{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vue-ui-button>.content>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-button>.content>.tag-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:6px}.vue-ui-button>.content>.tag-wrapper>.tag{padding:2px 2px 0;border-radius:4px;font-size:10px;line-height:10px;font-family:monospace}.vue-ui-high-contrast .vue-ui-button>.content>.tag-wrapper>.tag{padding:2px 4px 0;border:#fff 2px solid;font-size:12px;font-weight:700}.vue-ui-button.big{padding:0 18px;font-size:16px;height:44px}.vue-ui-button.big .vue-ui-icon{width:24px;height:24px}.vue-ui-button.big>.content>.tag-wrapper>.tag{padding:2px 4px 0;border-radius:7px;font-size:12px;line-height:12px}.vue-ui-button.round{border-radius:17px}.vue-ui-button.round:focus.focus-visible::after{border-radius:18px}.vue-ui-button.round.big{border-radius:22px}.vue-ui-button.round.big:focus.focus-visible::after{border-radius:23px}.vue-ui-button.flat{-webkit-transition:background .1s,color .1s;transition:background .1s,color .1s}.vue-ui-button.flat>.content>.button-icon svg{-webkit-transition:fill .1s;transition:fill .1s}.vue-ui-button:not(.icon-button)>.content>.button-icon{position:relative}.vue-ui-button:not(.icon-button)>.content>.button-icon.left{margin-right:6px;left:-2px}.vue-ui-button:not(.icon-button)>.content>.button-icon.right{margin-left:6px;left:2px}.vue-ui-button:not(.icon-button)>.content>.loading-secondary{margin-right:6px}.vue-ui-button.icon-button{padding:0;width:32px;height:32px}.vue-ui-button.icon-button.big{padding:0;width:44px;height:44px}.vue-ui-button.icon-button>.content{width:100%}.vue-ui-button.icon-button>.content>.tag-wrapper{position:absolute;right:2px;bottom:2px}.vue-ui-high-contrast .vue-ui-button.icon-button>.content>.tag-wrapper{right:-4px;bottom:-4px}.vue-ui-button.big-tag>.content>.tag-wrapper{right:6px;bottom:6px}.vue-ui-high-contrast .vue-ui-button.big-tag>.content>.tag-wrapper{right:-2px;bottom:-2px}.vue-ui-button.ghost{cursor:default}.vue-ui-button.disabled:not(.tab-button){opacity:.5;-webkit-filter:grayscale(50%);filter:grayscale(50%)}.vue-ui-button.loading>.content{visibility:hidden}.vue-ui-button>.vue-ui-loading-indicator{position:absolute;top:0;bottom:0;left:0;right:0}.vue-ui-button:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button:not(.ghost){background:#e8faf2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button:not(.ghost):active{background:#c1f1db}.vue-ui-button>.content>.button-icon svg{fill:#2c3e50}.vue-ui-button>.content>.loading-secondary .animation,.vue-ui-button>.vue-ui-loading-indicator .animation{border-right-color:#2c3e50}.vue-ui-button>.content>.tag-wrapper>.tag{background:#2c3e50;color:#e0f8ed}.vue-ui-high-contrast .vue-ui-button>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button::before{background:#e0f8ed}.vue-ui-button.vue-ui-dropdown-button{background:0 0}.vue-ui-button.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.flat{color:#2c3e50;background:0 0}.vue-ui-button.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-button.flat>.content>.button-icon svg{fill:#2c3e50}.vue-ui-button.flat>.content>.loading-secondary .animation,.vue-ui-button.flat>.vue-ui-loading-indicator .animation{border-right-color:#2c3e50}.vue-ui-button.flat>.content>.tag-wrapper>.tag{background:#2c3e50;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-button.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-button.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.flat::before{background:0 0}.vue-ui-button.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-button.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.flat:not(.ghost):active,.vue-ui-button.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost){color:#2c3e50;background:#e0f8ed}.vue-ui-button.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-button.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):not(.ghost){background:#e8faf2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-button.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.flat:not(.ghost):active:not(.ghost):active,.vue-ui-button.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost):not(.ghost):active{background:#c1f1db}.vue-ui-button.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-button.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-button.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-button.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-button.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-button.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#2c3e50}.vue-ui-button.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-button.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#2c3e50;color:#e0f8ed}.vue-ui-high-contrast .vue-ui-button.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-button.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.flat:not(.ghost):active::before,.vue-ui-button.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost)::before{background:#e0f8ed}.vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button{border:solid 2px #e0f8ed;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-button .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-button:focus,.vue-ui-high-contrast .vue-ui-button:hover{background:#e0f8ed!important;color:#000!important}.vue-ui-high-contrast .vue-ui-button:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-button:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-button:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-button:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-dark-mode .vue-ui-button{color:#fff;background:#2c3e50}.vue-ui-dark-mode .vue-ui-button:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button:not(.ghost){background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button:not(.ghost):active{background:#28394a}.vue-ui-dark-mode .vue-ui-button>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .vue-ui-button>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-dark-mode .vue-ui-button>.content>.tag-wrapper>.tag{background:#fff;color:#2c3e50}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button::before{background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-button.flat{color:#fff;background:0 0}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-dark-mode .vue-ui-button.flat>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .vue-ui-button.flat>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.flat>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-dark-mode .vue-ui-button.flat>.content>.tag-wrapper>.tag{background:#fff;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.flat::before{background:0 0}.vue-ui-dark-mode .vue-ui-button.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost){color:#fff;background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):not(.ghost){background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active:not(.ghost):active,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):not(.ghost):active{background:#28394a}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#fff;color:#2c3e50}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active::before,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost)::before{background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button{border:solid 2px #2c3e50;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button:focus,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button:hover{background:#2c3e50!important;color:#000!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-button.primary{color:#fff;background:#42b983}.vue-ui-button.primary:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary:not(.ghost){background:#70cca2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.primary:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.primary:not(.ghost):active{background:#3daa79}.vue-ui-button.primary>.content>.button-icon svg{fill:#fff}.vue-ui-button.primary>.content>.loading-secondary .animation,.vue-ui-button.primary>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-button.primary>.content>.tag-wrapper>.tag{background:#fff;color:#42b983}.vue-ui-high-contrast .vue-ui-button.primary>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.primary::before{background:#42b983}.vue-ui-button.primary.vue-ui-dropdown-button{background:0 0}.vue-ui-button.primary.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.primary.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.primary.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.primary.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.primary.flat{color:#42b983;background:0 0}.vue-ui-button.primary.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.primary.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.primary.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-button.primary.flat>.content>.button-icon svg{fill:#42b983}.vue-ui-button.primary.flat>.content>.loading-secondary .animation,.vue-ui-button.primary.flat>.vue-ui-loading-indicator .animation{border-right-color:#42b983}.vue-ui-button.primary.flat>.content>.tag-wrapper>.tag{background:#42b983;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-button.primary.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-button.primary.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.primary.flat::before{background:0 0}.vue-ui-button.primary.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-button.primary.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.primary.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.primary.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.primary.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.primary.flat:not(.ghost):active,.vue-ui-button.primary.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost){color:#fff;background:#42b983}.vue-ui-button.primary.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-button.primary.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):not(.ghost){background:#70cca2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.primary.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-button.primary.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.primary.flat:not(.ghost):active:not(.ghost):active,.vue-ui-button.primary.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost):not(.ghost):active{background:#3daa79}.vue-ui-button.primary.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-button.primary.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-button.primary.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-button.primary.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-button.primary.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-button.primary.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-button.primary.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-button.primary.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#fff;color:#42b983}.vue-ui-high-contrast .vue-ui-button.primary.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-button.primary.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.primary.flat:not(.ghost):active::before,.vue-ui-button.primary.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost)::before{background:#42b983}.vue-ui-button.primary.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-button.primary.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-button.primary.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-button.primary.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.primary.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.primary.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.primary.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-button.primary.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.primary.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.primary.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.primary.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.primary{border:solid 2px #42b983;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-button.primary .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.primary .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-button.primary:focus,.vue-ui-high-contrast .vue-ui-button.primary:hover{background:#42b983!important;color:#000!important}.vue-ui-high-contrast .vue-ui-button.primary:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-button.primary:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-button.primary:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-button.primary:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-button.accent{color:#fff;background:#a44cf6}.vue-ui-button.accent:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent:not(.ghost){background:#bb79f8}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.accent:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.accent:not(.ghost):active{background:#9833f5}.vue-ui-button.accent>.content>.button-icon svg{fill:#fff}.vue-ui-button.accent>.content>.loading-secondary .animation,.vue-ui-button.accent>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-button.accent>.content>.tag-wrapper>.tag{background:#fff;color:#a44cf6}.vue-ui-high-contrast .vue-ui-button.accent>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.accent::before{background:#a44cf6}.vue-ui-button.accent.vue-ui-dropdown-button{background:0 0}.vue-ui-button.accent.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.accent.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.accent.flat{color:#a44cf6;background:0 0}.vue-ui-button.accent.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.accent.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.accent.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-button.accent.flat>.content>.button-icon svg{fill:#a44cf6}.vue-ui-button.accent.flat>.content>.loading-secondary .animation,.vue-ui-button.accent.flat>.vue-ui-loading-indicator .animation{border-right-color:#a44cf6}.vue-ui-button.accent.flat>.content>.tag-wrapper>.tag{background:#a44cf6;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-button.accent.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-button.accent.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.accent.flat::before{background:0 0}.vue-ui-button.accent.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-button.accent.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.accent.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.accent.flat:not(.ghost):active,.vue-ui-button.accent.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost){color:#fff;background:#a44cf6}.vue-ui-button.accent.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):not(.ghost){background:#bb79f8}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.accent.flat:not(.ghost):active:not(.ghost):active,.vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost):not(.ghost):active{background:#9833f5}.vue-ui-button.accent.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-button.accent.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-button.accent.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-button.accent.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-button.accent.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-button.accent.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-button.accent.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-button.accent.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#fff;color:#a44cf6}.vue-ui-high-contrast .vue-ui-button.accent.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-button.accent.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.accent.flat:not(.ghost):active::before,.vue-ui-button.accent.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost)::before{background:#a44cf6}.vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.accent{border:solid 2px #a44cf6;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-button.accent .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.accent .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-button.accent:focus,.vue-ui-high-contrast .vue-ui-button.accent:hover{background:#a44cf6!important;color:#000!important}.vue-ui-high-contrast .vue-ui-button.accent:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-button.accent:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-button.accent:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-button.accent:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-dark-mode .vue-ui-button.accent{color:#2c3e50;background:#c88eff}.vue-ui-dark-mode .vue-ui-button.accent:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent:not(.ghost){background:#d6aaff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.accent:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.accent:not(.ghost):active{background:#b96eff}.vue-ui-dark-mode .vue-ui-button.accent>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.accent>.vue-ui-loading-indicator .animation{border-right-color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent>.content>.tag-wrapper>.tag{background:#2c3e50;color:#c88eff}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.accent::before{background:#c88eff}.vue-ui-dark-mode .vue-ui-button.accent.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.accent.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.accent.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.accent.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.accent.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-button.accent.flat{color:#c88eff;background:0 0}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-dark-mode .vue-ui-button.accent.flat>.content>.button-icon svg{fill:#c88eff}.vue-ui-dark-mode .vue-ui-button.accent.flat>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.accent.flat>.vue-ui-loading-indicator .animation{border-right-color:#c88eff}.vue-ui-dark-mode .vue-ui-button.accent.flat>.content>.tag-wrapper>.tag{background:#c88eff;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.accent.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.accent.flat::before{background:0 0}.vue-ui-dark-mode .vue-ui-button.accent.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.accent.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.accent.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.accent.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.accent.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost){color:#2c3e50;background:#c88eff}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):not(.ghost){background:#d6aaff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active:not(.ghost):active,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):not(.ghost):active{background:#b96eff}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#2c3e50;color:#c88eff}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active::before,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost)::before{background:#c88eff}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.accent.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent{border:solid 2px #c88eff;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent:focus,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent:hover{background:#c88eff!important;color:#000!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.accent:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-button.danger{color:#fff;background:#e83030}.vue-ui-button.danger:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger:not(.ghost){background:#ee6464}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.danger:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.danger:not(.ghost):active{background:#e61c1c}.vue-ui-button.danger>.content>.button-icon svg{fill:#fff}.vue-ui-button.danger>.content>.loading-secondary .animation,.vue-ui-button.danger>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-button.danger>.content>.tag-wrapper>.tag{background:#fff;color:#e83030}.vue-ui-high-contrast .vue-ui-button.danger>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.danger::before{background:#e83030}.vue-ui-button.danger.vue-ui-dropdown-button{background:0 0}.vue-ui-button.danger.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.danger.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.danger.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.danger.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.danger.flat{color:#e83030;background:0 0}.vue-ui-button.danger.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.danger.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.danger.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-button.danger.flat>.content>.button-icon svg{fill:#e83030}.vue-ui-button.danger.flat>.content>.loading-secondary .animation,.vue-ui-button.danger.flat>.vue-ui-loading-indicator .animation{border-right-color:#e83030}.vue-ui-button.danger.flat>.content>.tag-wrapper>.tag{background:#e83030;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-button.danger.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-button.danger.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.danger.flat::before{background:0 0}.vue-ui-button.danger.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-button.danger.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.danger.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.danger.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.danger.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.danger.flat:not(.ghost):active,.vue-ui-button.danger.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost){color:#fff;background:#e83030}.vue-ui-button.danger.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-button.danger.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):not(.ghost){background:#ee6464}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.danger.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-button.danger.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.danger.flat:not(.ghost):active:not(.ghost):active,.vue-ui-button.danger.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost):not(.ghost):active{background:#e61c1c}.vue-ui-button.danger.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-button.danger.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-button.danger.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-button.danger.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-button.danger.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-button.danger.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-button.danger.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-button.danger.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#fff;color:#e83030}.vue-ui-high-contrast .vue-ui-button.danger.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-button.danger.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.danger.flat:not(.ghost):active::before,.vue-ui-button.danger.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost)::before{background:#e83030}.vue-ui-button.danger.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-button.danger.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-button.danger.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-button.danger.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.danger.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.danger.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.danger.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-button.danger.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.danger.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.danger.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.danger.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.danger{border:solid 2px #e83030;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-button.danger .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.danger .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-button.danger:focus,.vue-ui-high-contrast .vue-ui-button.danger:hover{background:#e83030!important;color:#000!important}.vue-ui-high-contrast .vue-ui-button.danger:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-button.danger:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-button.danger:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-button.danger:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-button.warning{color:#fff;background:#ea6e00}.vue-ui-button.warning:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning:not(.ghost){background:#ff9130}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.warning:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.warning:not(.ghost):active{background:#d76500}.vue-ui-button.warning>.content>.button-icon svg{fill:#fff}.vue-ui-button.warning>.content>.loading-secondary .animation,.vue-ui-button.warning>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-button.warning>.content>.tag-wrapper>.tag{background:#fff;color:#ea6e00}.vue-ui-high-contrast .vue-ui-button.warning>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.warning::before{background:#ea6e00}.vue-ui-button.warning.vue-ui-dropdown-button{background:0 0}.vue-ui-button.warning.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.warning.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.warning.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.warning.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.warning.flat{color:#ea6e00;background:0 0}.vue-ui-button.warning.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.warning.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.warning.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-button.warning.flat>.content>.button-icon svg{fill:#ea6e00}.vue-ui-button.warning.flat>.content>.loading-secondary .animation,.vue-ui-button.warning.flat>.vue-ui-loading-indicator .animation{border-right-color:#ea6e00}.vue-ui-button.warning.flat>.content>.tag-wrapper>.tag{background:#ea6e00;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-button.warning.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-button.warning.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.warning.flat::before{background:0 0}.vue-ui-button.warning.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-button.warning.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.warning.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.warning.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.warning.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.warning.flat:not(.ghost):active,.vue-ui-button.warning.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost){color:#fff;background:#ea6e00}.vue-ui-button.warning.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-button.warning.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):not(.ghost){background:#ff9130}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.warning.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-button.warning.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.warning.flat:not(.ghost):active:not(.ghost):active,.vue-ui-button.warning.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost):not(.ghost):active{background:#d76500}.vue-ui-button.warning.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-button.warning.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-button.warning.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-button.warning.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-button.warning.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-button.warning.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-button.warning.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-button.warning.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#fff;color:#ea6e00}.vue-ui-high-contrast .vue-ui-button.warning.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-button.warning.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.warning.flat:not(.ghost):active::before,.vue-ui-button.warning.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost)::before{background:#ea6e00}.vue-ui-button.warning.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-button.warning.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-button.warning.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-button.warning.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.warning.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.warning.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.warning.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-button.warning.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.warning.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.warning.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.warning.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.warning{border:solid 2px #ea6e00;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-button.warning .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.warning .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-button.warning:focus,.vue-ui-high-contrast .vue-ui-button.warning:hover{background:#ea6e00!important;color:#000!important}.vue-ui-high-contrast .vue-ui-button.warning:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-button.warning:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-button.warning:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-button.warning:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-button.info{color:#03c2e6;background:#e0f8ed}.vue-ui-button.info:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info:not(.ghost){background:#e8faf2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.info:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.info:not(.ghost):active{background:#c1f1db}.vue-ui-button.info>.content>.button-icon svg{fill:#03c2e6}.vue-ui-button.info>.content>.loading-secondary .animation,.vue-ui-button.info>.vue-ui-loading-indicator .animation{border-right-color:#03c2e6}.vue-ui-button.info>.content>.tag-wrapper>.tag{background:#03c2e6;color:#e0f8ed}.vue-ui-high-contrast .vue-ui-button.info>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.info::before{background:#e0f8ed}.vue-ui-button.info.vue-ui-dropdown-button{background:0 0}.vue-ui-button.info.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.info.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.info.flat{color:#03c2e6;background:0 0}.vue-ui-button.info.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.info.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.info.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-button.info.flat>.content>.button-icon svg{fill:#03c2e6}.vue-ui-button.info.flat>.content>.loading-secondary .animation,.vue-ui-button.info.flat>.vue-ui-loading-indicator .animation{border-right-color:#03c2e6}.vue-ui-button.info.flat>.content>.tag-wrapper>.tag{background:#03c2e6;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-button.info.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-button.info.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.info.flat::before{background:0 0}.vue-ui-button.info.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-button.info.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.info.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.info.flat:not(.ghost):active,.vue-ui-button.info.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost){color:#03c2e6;background:#e0f8ed}.vue-ui-button.info.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-button.info.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):not(.ghost){background:#e8faf2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.info.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.info.flat:not(.ghost):active:not(.ghost):active,.vue-ui-button.info.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost):not(.ghost):active{background:#c1f1db}.vue-ui-button.info.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-button.info.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost)>.content>.button-icon svg{fill:#03c2e6}.vue-ui-button.info.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-button.info.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-button.info.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-button.info.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#03c2e6}.vue-ui-button.info.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-button.info.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#03c2e6;color:#e0f8ed}.vue-ui-high-contrast .vue-ui-button.info.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-button.info.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.info.flat:not(.ghost):active::before,.vue-ui-button.info.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost)::before{background:#e0f8ed}.vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.info{border:solid 2px #e0f8ed;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-button.info .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.info .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-button.info:focus,.vue-ui-high-contrast .vue-ui-button.info:hover{background:#e0f8ed!important;color:#000!important}.vue-ui-high-contrast .vue-ui-button.info:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-button.info:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-button.info:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-button.info:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-dark-mode .vue-ui-button.info{color:#03c2e6;background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info:not(.ghost){background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.info:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.info:not(.ghost):active{background:#28394a}.vue-ui-dark-mode .vue-ui-button.info>.content>.button-icon svg{fill:#03c2e6}.vue-ui-dark-mode .vue-ui-button.info>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.info>.vue-ui-loading-indicator .animation{border-right-color:#03c2e6}.vue-ui-dark-mode .vue-ui-button.info>.content>.tag-wrapper>.tag{background:#03c2e6;color:#2c3e50}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.info::before{background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.info.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.info.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.info.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.info.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-button.info.flat{color:#03c2e6;background:0 0}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-dark-mode .vue-ui-button.info.flat>.content>.button-icon svg{fill:#03c2e6}.vue-ui-dark-mode .vue-ui-button.info.flat>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.info.flat>.vue-ui-loading-indicator .animation{border-right-color:#03c2e6}.vue-ui-dark-mode .vue-ui-button.info.flat>.content>.tag-wrapper>.tag{background:#03c2e6;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.info.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.info.flat::before{background:0 0}.vue-ui-dark-mode .vue-ui-button.info.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.info.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.info.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.info.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.info.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost){color:#03c2e6;background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):not(.ghost){background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active:not(.ghost):active,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):not(.ghost):active{background:#28394a}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost)>.content>.button-icon svg{fill:#03c2e6}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#03c2e6}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#03c2e6;color:#2c3e50}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active::before,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost)::before{background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.info.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info{border:solid 2px #2c3e50;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info:focus,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info:hover{background:#2c3e50!important;color:#000!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.info:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-button.success{color:#42b983;background:#e0f8ed}.vue-ui-button.success:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success:not(.ghost){background:#e8faf2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.success:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.success:not(.ghost):active{background:#c1f1db}.vue-ui-button.success>.content>.button-icon svg{fill:#42b983}.vue-ui-button.success>.content>.loading-secondary .animation,.vue-ui-button.success>.vue-ui-loading-indicator .animation{border-right-color:#42b983}.vue-ui-button.success>.content>.tag-wrapper>.tag{background:#42b983;color:#e0f8ed}.vue-ui-high-contrast .vue-ui-button.success>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.success::before{background:#e0f8ed}.vue-ui-button.success.vue-ui-dropdown-button{background:0 0}.vue-ui-button.success.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.success.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.success.flat{color:#42b983;background:0 0}.vue-ui-button.success.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.success.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.success.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-button.success.flat>.content>.button-icon svg{fill:#42b983}.vue-ui-button.success.flat>.content>.loading-secondary .animation,.vue-ui-button.success.flat>.vue-ui-loading-indicator .animation{border-right-color:#42b983}.vue-ui-button.success.flat>.content>.tag-wrapper>.tag{background:#42b983;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-button.success.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-button.success.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.success.flat::before{background:0 0}.vue-ui-button.success.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-button.success.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.success.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-button.success.flat:not(.ghost):active,.vue-ui-button.success.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost){color:#42b983;background:#e0f8ed}.vue-ui-button.success.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-button.success.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):not(.ghost){background:#e8faf2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-button.success.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-button.success.flat:not(.ghost):active:not(.ghost):active,.vue-ui-button.success.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost):not(.ghost):active{background:#c1f1db}.vue-ui-button.success.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-button.success.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost)>.content>.button-icon svg{fill:#42b983}.vue-ui-button.success.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-button.success.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-button.success.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-button.success.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#42b983}.vue-ui-button.success.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-button.success.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#42b983;color:#e0f8ed}.vue-ui-high-contrast .vue-ui-button.success.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-button.success.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-button.success.flat:not(.ghost):active::before,.vue-ui-button.success.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost)::before{background:#e0f8ed}.vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.success{border:solid 2px #e0f8ed;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-button.success .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-button.success .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-button.success:focus,.vue-ui-high-contrast .vue-ui-button.success:hover{background:#e0f8ed!important;color:#000!important}.vue-ui-high-contrast .vue-ui-button.success:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-button.success:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-button.success:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-button.success:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-dark-mode .vue-ui-button.success{color:#42b983;background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success:not(.ghost){background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.success:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.success:not(.ghost):active{background:#28394a}.vue-ui-dark-mode .vue-ui-button.success>.content>.button-icon svg{fill:#42b983}.vue-ui-dark-mode .vue-ui-button.success>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.success>.vue-ui-loading-indicator .animation{border-right-color:#42b983}.vue-ui-dark-mode .vue-ui-button.success>.content>.tag-wrapper>.tag{background:#42b983;color:#2c3e50}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.success::before{background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.success.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.success.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.success.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.success.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-button.success.flat{color:#42b983;background:0 0}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost){background:rgba(64,64,64,0)}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active{background:rgba(0,0,0,0)}.vue-ui-dark-mode .vue-ui-button.success.flat>.content>.button-icon svg{fill:#42b983}.vue-ui-dark-mode .vue-ui-button.success.flat>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.success.flat>.vue-ui-loading-indicator .animation{border-right-color:#42b983}.vue-ui-dark-mode .vue-ui-button.success.flat>.content>.tag-wrapper>.tag{background:#42b983;color:transparent;color:#fff}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.success.flat>.content>.tag-wrapper>.tag{color:#2c3e50!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success.flat>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.success.flat::before{background:0 0}.vue-ui-dark-mode .vue-ui-button.success.flat.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.success.flat.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.success.flat.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.success.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.success.flat.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost){color:#42b983;background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):not(.ghost){background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost):hover,.vue-ui-dark-mode .popover .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active:not(.ghost):active,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover:not(.ghost):active,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):not(.ghost):active{background:#28394a}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost)>.content>.button-icon svg{fill:#42b983}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active>.vue-ui-loading-indicator .animation,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover>.vue-ui-loading-indicator .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost)>.content>.loading-secondary .animation,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost)>.vue-ui-loading-indicator .animation{border-right-color:#42b983}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#42b983;color:#2c3e50}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover>.content>.tag-wrapper>.tag,.vue-ui-high-contrast .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active::before,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover::before,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost)::before{background:#2c3e50}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover),.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):active.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost):hover.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg,.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-button.success.flat:not(.ghost).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success{border:solid 2px #2c3e50;background:#000!important;color:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success .vue-ui-icon svg{fill:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success .vue-ui-loading-indicator .animation{border-right-color:#fff!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success:focus,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success:hover{background:#2c3e50!important;color:#000!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success:focus .vue-ui-icon svg,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success:hover .vue-ui-icon svg{fill:#000!important}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success:focus .vue-ui-loading-indicator .animation,.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-button.success:hover .vue-ui-loading-indicator .animation{border-right-color:#000!important}.vue-ui-button::-moz-focus-inner{border:0}.vue-ui-button:focus.focus-visible{z-index:1}.vue-ui-button:focus.focus-visible::after{content:'';display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:solid 1px;border-radius:4px;-webkit-animation:vue-ui-focus .6s forwards;animation:vue-ui-focus .6s forwards}.vue-ui-dark-mode .vue-ui-button:focus.focus-visible::after{-webkit-animation:vue-ui-focus-dark .6s forwards;animation:vue-ui-focus-dark .6s forwards}.vue-ui-dropdown{display:inline-block;vertical-align:middle;position:relative}.vue-ui-dropdown .trigger:focus{outline:0}.vue-ui-dropdown .trigger::-moz-focus-inner{border:0}.vue-ui-dropdown .dropdown-trigger:not(.icon-button),.vue-ui-dropdown .dropdown-trigger>:not(.icon-button),.vue-ui-dropdown .trigger:not(.icon-button){width:100%}.vue-ui-dropdown-content.vue-ui-disable{-webkit-box-sizing:border-box;box-sizing:border-box}.vue-ui-dropdown-content.vue-ui-disable>:not(.vue-ui-grid){display:block;width:100%;min-width:150px}.vue-ui-dropdown-content.vue-ui-disable>.vue-ui-grid.default-gap{padding:8px 12px}.vue-ui-dropdown-content.vue-ui-disable>.vue-ui-grid.big-gap{padding:20px 24px}.vue-ui-dropdown-content.vue-ui-disable>.section-title{padding:6px 14px;opacity:.8}.vue-ui-dropdown-content .vue-ui-dropdown-button.vue-ui-button{border-radius:0;-webkit-transition:background .1s,color .1s;transition:background .1s,color .1s;text-align:left}.vue-ui-dropdown-content .vue-ui-dropdown-button.vue-ui-button>.content>.button-icon svg{-webkit-transition:fill .1s;transition:fill .1s}.vue-ui-dropdown-content .vue-ui-dropdown-button.vue-ui-button>.content{min-width:100%;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.vue-ui-form-field>.wrapper,.vue-ui-form-field>.wrapper>.content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.vue-ui-form-field>.wrapper>*,.vue-ui-form-field>.wrapper>.content>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-form-field>.wrapper>.content{margin:6px 0}.vue-ui-form-field>.wrapper>.content>*{margin-bottom:8px}.vue-ui-form-field>.wrapper>.content>:last-child{margin-bottom:0}.vue-ui-form-field>.wrapper>.subtitle,.vue-ui-form-field>.wrapper>.title{-webkit-transition:opacity .3s;transition:opacity .3s}.vue-ui-form-field>.wrapper>.subtitle{font-size:14px}.vue-ui-form-field>.wrapper>.subtitle:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat){color:#4f6f7f}.vue-ui-form-field>.wrapper>.subtitle:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat) .vue-ui-icon svg{fill:#4f6f7f}.vue-ui-dark-mode .vue-ui-form-field>.wrapper>.subtitle:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat){color:#e0f8ed}.vue-ui-dark-mode .vue-ui-form-field>.wrapper>.subtitle:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat) .vue-ui-icon svg{fill:#e0f8ed}.vue-ui-form-field:not(.focused)>.wrapper>.subtitle,.vue-ui-form-field:not(.focused)>.wrapper>.title{opacity:.75}.vue-ui-group{position:relative}.vue-ui-group>.content-wrapper{position:relative}.vue-ui-group>.content-wrapper>.content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vue-ui-group>.content-wrapper>.content>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-group.start>.content-wrapper>.content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.vue-ui-group.end>.content-wrapper>.content{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.vue-ui-group.vertical>.content-wrapper>.content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.vue-ui-group.inline{display:inline-block;vertical-align:middle}.vue-ui-group>.indicator{position:absolute;-webkit-transition:top .15s ease-in-out,left .15s ease-in-out,width .15s ease-in-out,height .15s ease-in-out;transition:top .15s ease-in-out,left .15s ease-in-out,width .15s ease-in-out,height .15s ease-in-out;pointer-events:none;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vue-ui-group>.indicator>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-group>.indicator>.content{width:100%;height:100%}.vue-ui-group:not(.vertical):not(.top-indicator)>.indicator{padding-bottom:1px}.vue-ui-group:not(.vertical):not(.top-indicator)>.indicator>.content{border-bottom:solid 2px rgba(44,62,80,.7)}.vue-ui-dark-mode .vue-ui-group:not(.vertical):not(.top-indicator)>.indicator>.content{border-bottom-color:#fff}.vue-ui-group:not(.vertical):not(.top-indicator).primary>.indicator>.content{border-bottom-color:rgba(66,185,131,.7)}.vue-ui-group:not(.vertical):not(.top-indicator).accent>.indicator>.content{border-bottom-color:rgba(164,76,246,.7)}.vue-ui-dark-mode .vue-ui-group:not(.vertical):not(.top-indicator).accent>.indicator>.content{border-bottom-color:#c88eff}.vue-ui-group:not(.vertical).top-indicator>.indicator{padding-top:1px}.vue-ui-group:not(.vertical).top-indicator>.indicator>.content{border-top:solid 2px rgba(44,62,80,.7)}.vue-ui-dark-mode .vue-ui-group:not(.vertical).top-indicator>.indicator>.content{border-top-color:#fff}.vue-ui-group:not(.vertical).top-indicator.primary>.indicator>.content{border-top-color:rgba(66,185,131,.7)}.vue-ui-group:not(.vertical).top-indicator.accent>.indicator>.content{border-top-color:rgba(164,76,246,.7)}.vue-ui-dark-mode .vue-ui-group:not(.vertical).top-indicator.accent>.indicator>.content{border-top-color:#c88eff}.vue-ui-group:not(.vertical).small-indicator>.indicator>.content{width:12px}.vue-ui-group.vertical:not(.left-indicator)>.indicator{padding-right:1px}.vue-ui-group.vertical:not(.left-indicator)>.indicator>.content{border-right:solid 2px rgba(44,62,80,.7)}.vue-ui-dark-mode .vue-ui-group.vertical:not(.left-indicator)>.indicator>.content{border-right-color:#fff}.vue-ui-group.vertical:not(.left-indicator).primary>.indicator>.content{border-right-color:rgba(66,185,131,.7)}.vue-ui-group.vertical:not(.left-indicator).accent>.indicator>.content{border-right-color:rgba(164,76,246,.7)}.vue-ui-dark-mode .vue-ui-group.vertical:not(.left-indicator).accent>.indicator>.content{border-right-color:#c88eff}.vue-ui-group.vertical.left-indicator>.indicator{padding-left:1px}.vue-ui-group.vertical.left-indicator>.indicator>.content{border-left:solid 2px rgba(44,62,80,.7)}.vue-ui-dark-mode .vue-ui-group.vertical.left-indicator>.indicator>.content{border-left-color:#fff}.vue-ui-group.vertical.left-indicator.primary>.indicator>.content{border-left-color:rgba(66,185,131,.7)}.vue-ui-group.vertical.left-indicator.accent>.indicator>.content{border-left-color:rgba(164,76,246,.7)}.vue-ui-dark-mode .vue-ui-group.vertical.left-indicator.accent>.indicator>.content{border-left-color:#c88eff}.vue-ui-group.vertical.small-indicator>.indicator>.content{height:12px}.vue-ui-group.extend>.content-wrapper>.content>.vue-ui-button:not(.icon-button){-webkit-box-flex:100%;-ms-flex:100% 1 1;flex:100% 1 1;width:0}.vue-ui-group-button.vue-ui-button{-webkit-transition:background .1s,color .1s;transition:background .1s,color .1s}.vue-ui-group-button.vue-ui-button>.content>.button-icon svg{-webkit-transition:fill .1s;transition:fill .1s}.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat){color:#2c3e50;background:#e0f8ed}.vue-ui-dropdown.open .dropdown-trigger .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost),.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost):hover{background:#e8faf2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost):hover{background:#2c3e50!important}.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost):active{background:#c1f1db}.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.content>.loading-secondary .animation,.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.vue-ui-loading-indicator .animation{border-right-color:#2c3e50}.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.content>.tag-wrapper>.tag{background:#2c3e50;color:#e0f8ed}.vue-ui-high-contrast .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)::before{background:#e0f8ed}.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button{background:0 0}.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat){color:#fff;background:#2c3e50}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost){background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat):not(.ghost):active{background:#28394a}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.content>.tag-wrapper>.tag{background:#fff;color:#2c3e50}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat)::before{background:#2c3e50}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button{color:#fff;background:#4f6f7f}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button:not(.ghost){background:#7296a8}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button:not(.ghost):active{background:#496675}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button>.content>.tag-wrapper>.tag{background:#fff;color:#4f6f7f}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button::before{background:#4f6f7f}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group-button.vue-ui-button:not(.selected):not(.flat).vue-ui-select-button.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected{color:#42b983;background:#e0f8ed}.vue-ui-dropdown.open .dropdown-trigger .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost),.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost):hover{background:#e8faf2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost):hover{background:#2c3e50!important}.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost):active{background:#c1f1db}.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.content>.button-icon svg{fill:#42b983}.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.content>.loading-secondary .animation,.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.vue-ui-loading-indicator .animation{border-right-color:#42b983}.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.content>.tag-wrapper>.tag{background:#42b983;color:#e0f8ed}.vue-ui-high-contrast .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected::before{background:#e0f8ed}.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button{background:0 0}.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected{color:#42b983;background:#2c3e50}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost){background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected:not(.ghost):active{background:#28394a}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.content>.button-icon svg{fill:#42b983}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.vue-ui-loading-indicator .animation{border-right-color:#42b983}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.content>.tag-wrapper>.tag{background:#42b983;color:#2c3e50}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected::before{background:#2c3e50}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group.has-indicator.primary .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected{color:#a44cf6;background:#e0f8ed}.vue-ui-dropdown.open .dropdown-trigger .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost),.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost):hover{background:#e8faf2}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost):hover{background:#2c3e50!important}.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost):active{background:#c1f1db}.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.content>.button-icon svg{fill:#a44cf6}.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.content>.loading-secondary .animation,.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.vue-ui-loading-indicator .animation{border-right-color:#a44cf6}.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.content>.tag-wrapper>.tag{background:#a44cf6;color:#e0f8ed}.vue-ui-high-contrast .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected::before{background:#e0f8ed}.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button{background:0 0}.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected{color:#c88eff;background:#2c3e50}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost){background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected:not(.ghost):active{background:#28394a}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.content>.button-icon svg{fill:#c88eff}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.vue-ui-loading-indicator .animation{border-right-color:#c88eff}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.content>.tag-wrapper>.tag{background:#c88eff;color:#2c3e50}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected::before{background:#2c3e50}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group.has-indicator.accent .vue-ui-group-button.vue-ui-button.selected.vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat){color:#fff;background:#2c3e50}.vue-ui-dropdown.open .dropdown-trigger .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost),.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost):hover{background:#4e6e8e}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost):hover{background:#2c3e50!important}.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost):active{background:#28394a}.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.content>.button-icon svg{fill:#fff}.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.content>.loading-secondary .animation,.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.content>.tag-wrapper>.tag{background:#fff;color:#2c3e50}.vue-ui-high-contrast .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)::before{background:#2c3e50}.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button{background:0 0}.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat){color:#fff;background:#4f6f7f}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost):hover,.vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost){background:#7296a8}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost){background:#4f6f7f;color:#fff}.vue-ui-dark-mode .vue-ui-dropdown.open .dropdown-trigger .vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .popover .vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost):hover{background:#2c3e50!important}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat):not(.ghost):active{background:#496675}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.content>.button-icon svg{fill:#fff}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.content>.loading-secondary .animation,.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.vue-ui-loading-indicator .animation{border-right-color:#fff}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.content>.tag-wrapper>.tag{background:#fff;color:#4f6f7f}.vue-ui-high-contrast .vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)>.content>.tag-wrapper>.tag{background:#000!important;color:#fff!important}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat)::before{background:#4f6f7f}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button{background:0 0}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button:not(:hover){color:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button:not(:hover){color:#fff!important}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#2c3e50}.vue-ui-dark-mode .vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-dropdown-button:not(:hover)>.content>.button-icon svg{fill:#fff!important}.vue-ui-dark-mode .vue-ui-group:not(.has-indicator) .vue-ui-group-button.vue-ui-button.selected:not(.primary):not(.accent):not(.danger):not(.warning):not(.info):not(.success):not(.flat).vue-ui-select-button{background:#93b0be}.vue-ui-dark-mode .vue-ui-group.has-indicator .vue-ui-group-button.vue-ui-button.flat,.vue-ui-dark-mode .vue-ui-group.has-indicator .vue-ui-group-button.vue-ui-button.selected.flat,.vue-ui-group.has-indicator .vue-ui-group-button.vue-ui-button.flat,.vue-ui-group.has-indicator .vue-ui-group-button.vue-ui-button.selected.flat{background:0 0}.vue-ui-group:not(.vertical) .vue-ui-group-button.vue-ui-button:not(.flat):not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.vue-ui-group:not(.vertical) .vue-ui-group-button.vue-ui-button:not(.flat):not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.vue-ui-group:not(.vertical) .vue-ui-group-button.vue-ui-button:not(.flat).round:first-child{padding-left:18px}.vue-ui-group:not(.vertical) .vue-ui-group-button.vue-ui-button:not(.flat).round:last-child{padding-right:18px}.vue-ui-group:not(.vertical) .vue-ui-group-button.vue-ui-button:not(.flat).round.icon-button:first-child{padding-left:12px}.vue-ui-group:not(.vertical) .vue-ui-group-button.vue-ui-button:not(.flat).round.icon-button:last-child{padding-right:12px}.vue-ui-group.vertical .vue-ui-group-button.vue-ui-button{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-ui-group.vertical .vue-ui-group-button.vue-ui-button:not(.icon-button){width:100%}.vue-ui-group.vertical .vue-ui-group-button.vue-ui-button:not(.flat):not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.vue-ui-group.vertical .vue-ui-group-button.vue-ui-button:not(.flat):not(:last-child){border-bottom-left-radius:0;border-bottom-right-radius:0}.vue-ui-group.vertical .vue-ui-group-button.vue-ui-button:not(.flat).round.selected{background:#e0f8ed!important}.vue-ui-dark-mode .vue-ui-group.vertical .vue-ui-group-button.vue-ui-button:not(.flat).round.selected{background:#2c3e50!important}.vue-ui-high-contrast .vue-ui-group.vertical .vue-ui-group-button.vue-ui-button:not(.flat).round.selected{background:#fff!important}.vue-ui-group.vertical .vue-ui-group-button.vue-ui-button:not(.flat).round.selected::before{content:'';display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:0;border-radius:17px}.vue-ui-high-contrast .vue-ui-group.vertical .vue-ui-group-button.vue-ui-button:not(.flat).round.selected::before{display:none}.vue-ui-group.vertical .vue-ui-group-button.vue-ui-button:not(.flat).round.selected>.content{position:relative;z-index:1}.vue-ui-high-contrast .vue-ui-group-button.vue-ui-button.selected,.vue-ui-high-contrast .vue-ui-group.vertical .vue-ui-group-button.vue-ui-button.selected{background:#fff!important;color:#000!important;font-weight:700}.vue-ui-high-contrast .vue-ui-group-button.vue-ui-button.selected svg,.vue-ui-high-contrast .vue-ui-group.vertical .vue-ui-group-button.vue-ui-button.selected svg{fill:#000!important}.vue-ui-icon{display:inline-block;width:16px;height:16px;vertical-align:bottom}.vue-ui-icon svg{width:100%;height:100%;fill:#2c3e50;pointer-events:none}.vue-ui-dark-mode .vue-ui-icon svg{fill:#fff}.vue-ui-icon.primary svg{fill:#42b983}.vue-ui-icon.accent svg{fill:#a44cf6}.vue-ui-icon.danger svg{fill:#e83030}.vue-ui-icon.warning svg{fill:#ea6e00}.vue-ui-icon.info svg{fill:#03c2e6}.vue-ui-icon.success svg{fill:#42b983}.vue-ui-icon.top{position:relative;top:-.06rem}.vue-ui-icon.small{width:12px;height:12px}.vue-ui-icon.medium{width:18px;height:18px}.vue-ui-icon.big{width:24px;height:24px}.vue-ui-icon.large{width:32px;height:32px}.vue-ui-icon.huge{width:42px;height:42px}.vue-ui-icon.gigantic{width:64px;height:64px}.vue-ui-input{display:inline-block;vertical-align:middle;-webkit-box-sizing:border-box;box-sizing:border-box;width:auto;min-width:200px}.vue-ui-input>.content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 10px;border:solid 1px #e0f8ed;color:#2c3e50;border-radius:3px;-webkit-transition:background .3s;transition:background .3s;position:relative}.vue-ui-input>.content>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-dark-mode .vue-ui-input>.content{border-color:#3e5770;color:#fff}.vue-ui-input>.content>.input-wrapper{position:relative;width:0;-webkit-box-flex:1;-ms-flex:auto 1 1;flex:auto 1 1}.vue-ui-input>.content>.input-wrapper>.input{position:relative;z-index:1;font-family:inherit;font-size:14px;line-height:14px;color:#2c3e50;padding:0;width:100%;display:block;border:none;background:0 0;outline:0}.vue-ui-dark-mode .vue-ui-input>.content>.input-wrapper>.input{color:#fff}.vue-ui-input>.content>.input-wrapper>.input:not(textarea){height:30px}.vue-ui-input>.content>.input-wrapper>.input::-webkit-input-placeholder{color:#809fae}.vue-ui-input>.content>.input-wrapper>.input::-moz-placeholder{color:#809fae}.vue-ui-input>.content>.input-wrapper>.input:-ms-input-placeholder{color:#809fae}.vue-ui-input>.content>.input-wrapper>.input::-ms-input-placeholder{color:#809fae}.vue-ui-input>.content>.input-wrapper>.input::placeholder{color:#809fae}.vue-ui-dark-mode .vue-ui-input>.content>.input-wrapper>.input::-webkit-input-placeholder{color:#b6c6ce}.vue-ui-dark-mode .vue-ui-input>.content>.input-wrapper>.input::-moz-placeholder{color:#b6c6ce}.vue-ui-dark-mode .vue-ui-input>.content>.input-wrapper>.input:-ms-input-placeholder{color:#b6c6ce}.vue-ui-dark-mode .vue-ui-input>.content>.input-wrapper>.input::-ms-input-placeholder{color:#b6c6ce}.vue-ui-dark-mode .vue-ui-input>.content>.input-wrapper>.input::placeholder{color:#b6c6ce}.vue-ui-input>.content>.input-wrapper>.input::-moz-focus-inner{border:0}.vue-ui-input>.content>.input-wrapper>textarea.input{padding:8px 10px;resize:vertical;min-height:30px;-webkit-box-sizing:border-box;box-sizing:border-box;line-height:18px}.vue-ui-input>.content>.input-wrapper>.suggestion{position:absolute;z-index:0;top:0;left:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#809fae;pointer-events:none}.vue-ui-input>.content>.input-icon.left{margin-right:6px}.vue-ui-input>.content>.input-icon.right{margin-left:6px}.vue-ui-input>.content>.input-icon svg{fill:#809fae;-webkit-transition:fill .3s;transition:fill .3s}.vue-ui-input>.content>.vue-ui-loading-indicator.left{margin-right:8px}.vue-ui-input>.content>.vue-ui-loading-indicator.right{margin-left:8px}.vue-ui-input>.content>.vue-ui-loading-indicator .animation{border-right-color:#809fae;border-bottom-color:#809fae}.vue-ui-input>.content>.border{position:absolute;bottom:-1px;left:30%;right:30%;opacity:0;height:2px;pointer-events:none;-webkit-transition:left .15s,right .15s,opacity .15s;transition:left .15s,right .15s,opacity .15s}.vue-ui-input.type-textarea>.content{padding:0}.vue-ui-input:not(.flat)>.content{background:#fff}.vue-ui-dark-mode .vue-ui-input:not(.flat)>.content{background:#1d2935}.vue-ui-input.show-suggestion>.content>.input-wrapper>.input::-webkit-input-placeholder{color:transparent}.vue-ui-input.show-suggestion>.content>.input-wrapper>.input::-moz-placeholder{color:transparent}.vue-ui-input.show-suggestion>.content>.input-wrapper>.input:-ms-input-placeholder{color:transparent}.vue-ui-input.show-suggestion>.content>.input-wrapper>.input::-ms-input-placeholder{color:transparent}.vue-ui-input.show-suggestion>.content>.input-wrapper>.input::placeholder{color:transparent}.vue-ui-input>.content>.border{background:#42b983}.vue-ui-input.focused>.content>.vue-ui-loading-indicator .animation{border-right-color:#42b983;border-bottom-color:#42b983}.vue-ui-input.focused>.content>.input-icon svg{fill:rgba(66,185,131,.8)}.vue-ui-input.accent>.content>.border{background:#a44cf6}.vue-ui-input.accent.focused>.content>.vue-ui-loading-indicator .animation{border-right-color:#a44cf6;border-bottom-color:#a44cf6}.vue-ui-input.accent.focused>.content>.input-icon svg{fill:rgba(164,76,246,.8)}.vue-ui-dark-mode .vue-ui-input.accent>.content>.border{background:#c88eff}.vue-ui-dark-mode .vue-ui-input.accent.focused>.content>.vue-ui-loading-indicator .animation{border-right-color:#c88eff;border-bottom-color:#c88eff}.vue-ui-dark-mode .vue-ui-input.accent.focused>.content>.input-icon svg{fill:rgba(200,142,255,.8)}.vue-ui-input.danger>.content>.border,.vue-ui-input.status-danger>.content>.border{background:#e83030}.vue-ui-input.danger.focused>.content>.vue-ui-loading-indicator .animation,.vue-ui-input.status-danger.focused>.content>.vue-ui-loading-indicator .animation{border-right-color:#e83030;border-bottom-color:#e83030}.vue-ui-input.danger.focused>.content>.input-icon svg,.vue-ui-input.status-danger.focused>.content>.input-icon svg{fill:rgba(232,48,48,.8)}.vue-ui-input.status-warning>.content>.border,.vue-ui-input.warning>.content>.border{background:#ea6e00}.vue-ui-input.status-warning.focused>.content>.vue-ui-loading-indicator .animation,.vue-ui-input.warning.focused>.content>.vue-ui-loading-indicator .animation{border-right-color:#ea6e00;border-bottom-color:#ea6e00}.vue-ui-input.status-warning.focused>.content>.input-icon svg,.vue-ui-input.warning.focused>.content>.input-icon svg{fill:rgba(234,110,0,.8)}.vue-ui-input.info>.content>.border,.vue-ui-input.status-info>.content>.border{background:#03c2e6}.vue-ui-input.info.focused>.content>.vue-ui-loading-indicator .animation,.vue-ui-input.status-info.focused>.content>.vue-ui-loading-indicator .animation{border-right-color:#03c2e6;border-bottom-color:#03c2e6}.vue-ui-input.info.focused>.content>.input-icon svg,.vue-ui-input.status-info.focused>.content>.input-icon svg{fill:rgba(3,194,230,.8)}.vue-ui-input.status-success>.content>.border,.vue-ui-input.success>.content>.border{background:#42b983}.vue-ui-input.status-success.focused>.content>.vue-ui-loading-indicator .animation,.vue-ui-input.success.focused>.content>.vue-ui-loading-indicator .animation{border-right-color:#42b983;border-bottom-color:#42b983}.vue-ui-input.status-success.focused>.content>.input-icon svg,.vue-ui-input.success.focused>.content>.input-icon svg{fill:rgba(66,185,131,.8)}.vue-ui-input.focused:not(.flat)>.content>.border{left:0;right:0;opacity:1}.vue-ui-input.focused:not(.flat).round>.content>.border{display:none}.vue-ui-input.flat>.content{border-color:transparent}.vue-ui-input.flat>.content>.border{display:none}.vue-ui-input.big>.content{padding:0 14px}.vue-ui-input.big>.content>.input-wrapper>.input{font-size:16px}.vue-ui-input.big>.content>.input-wrapper>.input:not(textarea){height:42px}.vue-ui-input.big>.content>.input-wrapper>textarea.input{padding:14px 0}.vue-ui-input.big>.content>.input-icon{width:20px;height:20px}.vue-ui-input.big>.content>.input-icon.left{margin-right:10px}.vue-ui-input.big>.content>.input-icon.right{margin-left:10px}.vue-ui-input.round>.content{border-radius:17px}.vue-ui-input.round.big>.content{border-radius:22px}.vue-ui-input:not(.disabled){cursor:text}.vue-ui-input.disabled{opacity:.5}.vue-ui-dropdown-content>.vue-ui-input{min-width:200px;padding:0 4px 4px}.vue-ui-high-contrast .vue-ui-input>.content{border-width:2px;border-style:dashed;background:#000!important}.vue-ui-loading-bar{height:3px;position:relative;background:#e0f8ed}.vue-ui-loading-bar .bar{height:100%}.vue-ui-loading-bar .bar{background:#2c3e50}.vue-ui-dark-mode .vue-ui-loading-bar{background:#2c3e50}.vue-ui-dark-mode .vue-ui-loading-bar .bar{background:#4f6f7f}.vue-ui-loading-bar.primary{background:#e0f8ed}.vue-ui-loading-bar.primary .bar{background:#42b983}.vue-ui-dark-mode .vue-ui-loading-bar.primary{background:#2c3e50}.vue-ui-dark-mode .vue-ui-loading-bar.primary .bar{background:#42b983}.vue-ui-loading-bar.accent{background:#e0f8ed}.vue-ui-loading-bar.accent .bar{background:#a44cf6}.vue-ui-dark-mode .vue-ui-loading-bar.accent{background:#2c3e50}.vue-ui-dark-mode .vue-ui-loading-bar.accent .bar{background:#c88eff}.vue-ui-loading-bar.unknown .bar{position:absolute;top:0;-webkit-animation:bar-animation .8s infinite linear;animation:bar-animation .8s infinite linear}.vue-ui-loading-bar.ghost{height:0;z-index:300;background:0 0}.vue-ui-loading-bar.ghost .bar{height:3px}@-webkit-keyframes bar-animation{0%{left:0;right:100%}50%{left:0;right:0}100%{left:100%;right:0}}@keyframes bar-animation{0%{left:0;right:100%}50%{left:0;right:0}100%{left:100%;right:0}}.vue-ui-loading-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vue-ui-loading-indicator.inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.vue-ui-loading-indicator>.animation{-webkit-animation:rotating .7s linear infinite;animation:rotating .7s linear infinite;width:16px;height:16px;border-radius:50%;border:transparent 2px solid;border-color:rgba(44,62,80,.1);border-right-color:#2c3e50}.vue-ui-dark-mode .vue-ui-loading-indicator>.animation{border-color:rgba(79,111,127,.1);border-right-color:#4f6f7f}.vue-ui-loading-indicator.primary>.animation{border-color:rgba(66,185,131,.1);border-right-color:#42b983}.vue-ui-loading-indicator.accent>.animation{border-color:rgba(164,76,246,.1);border-right-color:#a44cf6}.vue-ui-dark-mode .vue-ui-loading-indicator.accent>.animation{border-color:rgba(200,142,255,.1);border-right-color:#c88eff}.vue-ui-loading-indicator.small>.animation{width:10px;height:10px}.vue-ui-loading-indicator.big>.animation{width:24px;height:24px;border-width:3px}.vue-ui-high-contrast .vue-ui-loading-indicator>.animation{border-width:4px}.vue-ui-loading-indicator.overlay{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1}.vue-ui-loading-indicator.overlay>.animation{margin-bottom:32px}.vue-ui-loading-indicator.overlay:not(.transparent){background:rgba(255,255,255,.95)}.vue-ui-dark-mode .vue-ui-loading-indicator.overlay:not(.transparent){background:rgba(29,41,53,.95)}.vue-ui-loading-indicator.overlay.fixed{position:fixed}@-webkit-keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.vue-ui-modal{position:fixed;top:0;left:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:100}.vue-ui-modal>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-modal>.backdrop{-webkit-box-flex:0;-ms-flex:none;flex:none;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(255,255,255,.9)}.vue-ui-dark-mode .vue-ui-modal>.backdrop{background:rgba(0,0,0,.7)}.vue-ui-modal>.shell{background:#fff;border-radius:6px;position:relative;max-width:calc(100vw - 100px);max-height:calc(100vh - 100px);-webkit-box-shadow:0 20px 60px rgba(0,0,0,.1);box-shadow:0 20px 60px rgba(0,0,0,.1);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.vue-ui-modal>.shell>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-dark-mode .vue-ui-modal>.shell{background:#1d2935;-webkit-box-shadow:0 20px 60px rgba(0,0,0,.5);box-shadow:0 20px 60px rgba(0,0,0,.5)}.vue-ui-modal>.shell>.close-button{position:absolute;top:20px;right:20px}.vue-ui-modal>.shell>.body>.default-body,.vue-ui-modal>.shell>.footer>.actions,.vue-ui-modal>.shell>.header{padding:24px}.vue-ui-modal>.shell>.header>.title{font-size:18px}.vue-ui-modal>.shell>.body{overflow-x:hidden;overflow-y:auto;-webkit-box-flex:1;-ms-flex:auto 1 1;flex:auto 1 1}.vue-ui-modal>.shell>.footer>.actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vue-ui-modal>.shell>.footer>.actions>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-modal>.shell>.footer>.actions>*{margin-right:12px}.vue-ui-modal>.shell>.footer>.actions>:last-child{margin-right:0}.vue-ui-modal>.shell>.footer>.actions.space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.vue-ui-modal>.shell>.footer>.actions.center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vue-ui-modal>.shell>.footer>.actions.start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.vue-ui-modal>.shell>.footer>.actions.end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.vue-ui-modal.small>.shell{max-width:500px;min-width:400px}.vue-ui-modal.medium>.shell{max-width:800px;min-width:700px}.vue-ui-modal-enter-active>.backdrop,.vue-ui-modal-leave-active>.backdrop{-webkit-transition:opacity .3s;transition:opacity .3s}.vue-ui-modal-enter-active>.shell,.vue-ui-modal-leave-active>.shell{-webkit-transition:opacity .3s,-webkit-transform .3s cubic-bezier(0,0,.2,1);transition:opacity .3s,-webkit-transform .3s cubic-bezier(0,0,.2,1);transition:opacity .3s,transform .3s cubic-bezier(0,0,.2,1);transition:opacity .3s,transform .3s cubic-bezier(0,0,.2,1),-webkit-transform .3s cubic-bezier(0,0,.2,1)}.vue-ui-modal-enter-active>.shell>.body,.vue-ui-modal-enter-active>.shell>.footer,.vue-ui-modal-leave-active>.shell>.body,.vue-ui-modal-leave-active>.shell>.footer{-webkit-transition:opacity .15s,-webkit-transform .8s cubic-bezier(0,1,0,1);transition:opacity .15s,-webkit-transform .8s cubic-bezier(0,1,0,1);transition:transform .8s cubic-bezier(0,1,0,1),opacity .15s;transition:transform .8s cubic-bezier(0,1,0,1),opacity .15s,-webkit-transform .8s cubic-bezier(0,1,0,1)}.vue-ui-modal-enter-active>.shell>.body,.vue-ui-modal-leave-active>.shell>.body{-webkit-transition-delay:.1s;transition-delay:.1s}.vue-ui-modal-enter-active>.shell>.footer,.vue-ui-modal-leave-active>.shell>.footer{-webkit-transition-delay:.2s;transition-delay:.2s}.vue-ui-modal-enter>.backdrop,.vue-ui-modal-enter>.shell,.vue-ui-modal-leave-to>.backdrop,.vue-ui-modal-leave-to>.shell{opacity:0}.vue-ui-modal-enter>.shell,.vue-ui-modal-leave-to>.shell{-webkit-transform:scale(.95);transform:scale(.95)}.vue-ui-modal-enter>.shell>.body,.vue-ui-modal-enter>.shell>.footer{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}.vue-ui-select .dropdown-trigger .vue-ui-button>.content>.default-slot{-webkit-box-flex:1;-ms-flex:auto 1 1;flex:auto 1 1}.vue-ui-select-popover-content{padding:0 4px;max-height:220px;overflow-y:auto}.vue-ui-select-button{border-radius:3px!important}.vue-ui-switch{display:inline-block;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;outline:0;-webkit-tap-highlight-color:rgba(255,255,255,0)}.vue-ui-switch::-moz-focus-inner{border:0}.vue-ui-switch>.content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.vue-ui-switch>.content>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-switch>.content>.vue-ui-icon{margin-right:6px}.vue-ui-switch>.content>.wrapper{width:32px;height:16px;margin-left:8px;border-radius:8px;background:#e0f8ed;-webkit-transition:background .3s;transition:background .3s;position:relative;padding:1px;-webkit-box-sizing:border-box;box-sizing:border-box}.vue-ui-dark-mode .vue-ui-switch>.content>.wrapper{background:#3e5770}.vue-ui-switch>.content>.wrapper .bullet{width:14px;height:14px;border-radius:50%;background:#2c3e50;-webkit-transition:margin-left .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:margin-left .2s ease-in-out,-webkit-transform .2s ease-in-out;transition:margin-left .2s ease-in-out,transform .2s ease-in-out;transition:margin-left .2s ease-in-out,transform .2s ease-in-out,-webkit-transform .2s ease-in-out}.vue-ui-dark-mode .vue-ui-switch>.content>.wrapper .bullet{background:#fff}.vue-ui-switch.no-margin>.content>.wrapper{margin:0}.vue-ui-switch.selected>.content>.wrapper{background:#42b983}.vue-ui-switch.selected>.content>.wrapper .bullet{margin-left:16px}.vue-ui-switch.extend-right>.content,.vue-ui-switch.right>.content{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.vue-ui-switch.extend-right>.content>.wrapper,.vue-ui-switch.right>.content>.wrapper{margin-left:0;margin-right:8px}.vue-ui-switch.extend-right>.content>.vue-ui-icon,.vue-ui-switch.right>.content>.vue-ui-icon{margin-right:0;margin-left:6px}.vue-ui-switch.right>.content{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.vue-ui-switch:not(.disabled){cursor:pointer}.vue-ui-switch:not(.disabled):hover>.content>.wrapper .bullet{background:#4f6f7f}.vue-ui-dark-mode .vue-ui-switch:not(.disabled):hover>.content>.wrapper .bullet{background:#e0e5e7}.vue-ui-switch:not(.disabled):active>.content>.wrapper .bullet{-webkit-transform:scale(.8);transform:scale(.8)}.vue-ui-switch.disabled{opacity:.5}.vue-ui-switch.extend-left>.content>.slot{-webkit-box-flex:100%;-ms-flex:100% 0 1;flex:100% 0 1}.vue-ui-switch.extend-left>.content>.wrapper{margin-right:0}.vue-ui-switch.extend-right>.content>.slot{-webkit-box-flex:100%;-ms-flex:100% 0 1;flex:100% 0 1;text-align:right}.vue-ui-switch.extend-right>.content>.wrapper{margin-left:0}.vue-ui-dropdown-content>.vue-ui-switch>.content{min-width:100%;padding:8px 14px;-webkit-box-sizing:border-box;box-sizing:border-box}.vue-ui-switch.focus>.content>.wrapper::after,.vue-ui-switch:focus.focus-visible>.content>.wrapper::after{content:'';display:block;position:absolute;top:-1px;bottom:-1px;left:-1px;right:-1px;border:1px solid;border-radius:9px;-webkit-animation:vue-ui-focus .6s forwards;animation:vue-ui-focus .6s forwards}.vue-ui-dark-mode .vue-ui-switch.focus>.content>.wrapper::after,.vue-ui-dark-mode .vue-ui-switch:focus.focus-visible>.content>.wrapper::after{-webkit-animation:vue-ui-focus-dark .6s forwards;animation:vue-ui-focus-dark .6s forwards}.vue-ui-tab{outline:0}.vue-ui-tabs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.vue-ui-tabs>*{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-ui-tabs>.tabs-content{-webkit-box-flex:100%;-ms-flex:100% 1 1;flex:100% 1 1}.vue-ui-tabs.animate>.tabs-content{position:relative}.vue-ui-tabs.animate .vue-ui-tab-enter-active,.vue-ui-tabs.animate .vue-ui-tab-leave-active{-webkit-transition:all .15s cubic-bezier(0,0,.2,1);transition:all .15s cubic-bezier(0,0,.2,1)}.vue-ui-tabs.animate .vue-ui-tab-leave-active{position:absolute;top:0;left:0;right:0;height:0}.vue-ui-tabs.animate .vue-ui-tab-enter,.vue-ui-tabs.animate .vue-ui-tab-leave-to{opacity:0}.vue-ui-tabs.animate.direction-to-right .vue-ui-tab-enter{-webkit-transform:translateX(50px);transform:translateX(50px)}.vue-ui-tabs.animate.direction-to-right .vue-ui-tab-leave-to{-webkit-transform:translateX(-50px);transform:translateX(-50px)}.vue-ui-tabs.animate.direction-to-left .vue-ui-tab-enter{-webkit-transform:translateX(-50px);transform:translateX(-50px)}.vue-ui-tabs.animate.direction-to-left .vue-ui-tab-leave-to{-webkit-transform:translateX(50px);transform:translateX(50px)}.vue-ui-type-ahead{display:inline-block;vertical-align:middle}.vue-ui-type-ahead>.vue-ui-dropdown{width:100%}",""])},function(t,e){t.exports="data:font/woff2;base64,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"},function(t,e,o){"use strict";o(48)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".app[data-v-44dacb3a] {\n width: 100%;\n height: 100%;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n background-color: #fff;\n display: flex;\n flex-direction: column;\n position: relative;\n}\n.vue-ui-dark-mode .app[data-v-44dacb3a] {\n background-color: #0b1015;\n}\n.vue-ui-high-contrast .app[data-v-44dacb3a] {\n background: #000;\n}\n.app.beta[data-v-44dacb3a]::after {\n display: block;\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n border-top: 2px rgba(255,107,0,0.4) solid;\n}\n.header[data-v-44dacb3a] {\n display: flex;\n align-items: center;\n box-shadow: 0 0 8px rgba(0,0,0,0.15);\n font-size: 14px;\n position: relative;\n}\n.vue-ui-dark-mode .header[data-v-44dacb3a] {\n border-bottom: 1px solid #141d25;\n}\n.logo[data-v-44dacb3a] {\n width: 30px;\n height: 30px;\n margin: 0 15px;\n}\n.message-container[data-v-44dacb3a] {\n height: 1em;\n cursor: default;\n display: none;\n}\n@media (min-width: 800px) {\n.message-container[data-v-44dacb3a] {\n display: block;\n}\n}\n.message[data-v-44dacb3a] {\n color: #3ba776;\n transition: all 0.3s ease;\n position: absolute;\n display: flex;\n align-items: center;\n}\n.badges[data-v-44dacb3a] {\n display: flex;\n align-items: center;\n}\n.badge[data-v-44dacb3a] {\n background: rgba(255,107,0,0.7);\n color: #fff;\n font-size: 10px;\n line-height: 10px;\n padding: 2px 6px;\n border-radius: 8px;\n margin-left: 6px;\n}\n.vue-ui-dark-mode .badge[data-v-44dacb3a] {\n opacity: 0.75;\n}\n.actions[data-v-44dacb3a] {\n flex: auto 1 1;\n display: flex;\n justify-content: flex-end;\n}\n.vue-ui-button[data-v-44dacb3a] {\n height: 38px;\n}\n@media (max-width: 1100px) {\n.vue-ui-button[data-v-44dacb3a] {\n width: 38px;\n}\n.vue-ui-button[data-v-44dacb3a] .button-icon.left {\n margin-right: 0 !important;\n}\n.vue-ui-button[data-v-44dacb3a] .default-slot {\n display: none;\n}\n}\n@media (min-height: 350px) {\n.vue-ui-button[data-v-44dacb3a] {\n height: 48px;\n}\n}\n@media (min-height: 350px) and (max-width: 1100px) {\n.vue-ui-button[data-v-44dacb3a] {\n width: 48px;\n}\n}\n.vue-ui-group[data-v-44dacb3a] > .indicator {\n padding-bottom: 0 !important;\n}\n.container[data-v-44dacb3a] {\n height: calc(100% - 60px);\n position: relative;\n overflow: hidden;\n flex: 1;\n}\n@media (max-width: 1100px) {\n.hide-below-wide[data-v-44dacb3a] {\n display: none;\n}\n}\n",""])},function(t,e,o){"use strict";o(49)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".split-pane[data-v-6dcc089c] {\n display: flex;\n height: 100%;\n}\n.split-pane.horizontal[data-v-6dcc089c] {\n flex-direction: column;\n}\n.split-pane.dragging .left[data-v-6dcc089c],\n.split-pane.dragging .right[data-v-6dcc089c] {\n pointer-events: none;\n}\n.split-pane.dragging.vertical[data-v-6dcc089c] {\n cursor: ew-resize;\n}\n.split-pane.dragging.horizontal[data-v-6dcc089c] {\n cursor: ns-resize;\n}\n.left[data-v-6dcc089c],\n.right[data-v-6dcc089c] {\n position: relative;\n height: 100%;\n}\n.horizontal .bottom[data-v-6dcc089c] {\n box-shadow: 0 -2px 10px rgba(0,0,0,0.1);\n border-top: 1px solid #eee;\n}\n.vue-ui-dark-mode .horizontal .bottom[data-v-6dcc089c] {\n border-top: 1px solid #141d25;\n}\n.vertical .left[data-v-6dcc089c] {\n border-right: 1px solid #eee;\n}\n.vue-ui-dark-mode .vertical .left[data-v-6dcc089c] {\n border-right: 1px solid #141d25;\n}\n.dragger[data-v-6dcc089c] {\n position: absolute;\n z-index: 99;\n}\n.vertical .dragger[data-v-6dcc089c] {\n top: 0;\n bottom: 0;\n right: -5px;\n width: 10px;\n cursor: ew-resize;\n}\n.horizontal .dragger[data-v-6dcc089c] {\n left: 0;\n right: 0;\n bottom: -5px;\n height: 10px;\n cursor: ns-resize;\n}\n",""])},function(t,e,o){"use strict";o(50)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".scroll-pane[data-v-4991849c] {\n display: flex;\n flex-direction: column;\n height: 100%;\n}\n.scroll[data-v-4991849c] {\n flex: 1;\n overflow: auto;\n}\n.vue-ui-dark-mode .scroll[data-v-4991849c]::-webkit-scrollbar,\n.vue-ui-dark-mode .scroll[data-v-4991849c] .vue-recycle-scroller::-webkit-scrollbar {\n background: #0b1015;\n border-left: 1px solid #141d25;\n}\n.vue-ui-dark-mode .scroll[data-v-4991849c]::-webkit-scrollbar-thumb,\n.vue-ui-dark-mode .scroll[data-v-4991849c] .vue-recycle-scroller::-webkit-scrollbar-thumb {\n background: #17212b;\n border: 1px solid #1f2d3a;\n}\n.scroll--themed[data-v-4991849c]::-webkit-scrollbar {\n width: 5px;\n height: 0;\n}\n.scroll--themed[data-v-4991849c]::-webkit-scrollbar-thumb {\n background: #3ba776;\n}\n.footer[data-v-4991849c] {\n border-top: 1px solid #eee;\n}\n.vue-ui-dark-mode .footer[data-v-4991849c] {\n border-top-color: #141d25;\n}\n",""])},function(t,e,o){"use strict";o(51)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".action-header[data-v-e04f8976] {\n display: flex;\n align-items: center;\n padding: 0 10px;\n font-size: 12px;\n border-bottom: 1px solid #eee;\n color: #666;\n height: 35px;\n}\n@media (min-height: 350px) {\n.action-header[data-v-e04f8976] {\n height: 50px;\n}\n}\n.vue-ui-dark-mode .action-header[data-v-e04f8976] {\n border-bottom: 1px solid #141d25;\n}\n.action-header.no-search .button[data-v-e04f8976]:first-of-type {\n margin-left: 0;\n}\n.title[data-v-e04f8976] {\n display: flex;\n align-items: center;\n font-size: 18px;\n color: #3ba776;\n}\n.title + .search[data-v-e04f8976] {\n margin-left: 10px;\n}\n.title-bracket[data-v-e04f8976] {\n color: #ccc;\n}\n.vue-ui-icon[data-v-e04f8976] {\n width: 16px;\n height: 16px;\n margin-right: 0;\n}\n@media (min-width: 1100px) {\n.vue-ui-icon[data-v-e04f8976] {\n margin-right: 5px;\n}\n}\n.button[data-v-e04f8976] {\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0 10px;\n transition: opacity 0.25s, color 0.25s;\n white-space: nowrap;\n opacity: 0.8;\n overflow: hidden;\n color: #42b983;\n}\n.button .vue-ui-icon[data-v-e04f8976] svg {\n transition: fill 0.25s;\n fill: #42b983;\n}\n.button[data-v-e04f8976]:first-of-type {\n margin-left: auto;\n}\n.button[data-v-e04f8976]:not(.disabled):hover,\n.button:not(.disabled).active[data-v-e04f8976] {\n opacity: 1;\n color: #3ba776;\n}\n.button:not(.disabled):hover .vue-ui-icon[data-v-e04f8976] svg,\n.button:not(.disabled).active .vue-ui-icon[data-v-e04f8976] svg {\n fill: #3ba776;\n}\n.vue-ui-dark-mode .button[data-v-e04f8976]:not(.disabled):hover,\n.vue-ui-dark-mode .button:not(.disabled).active[data-v-e04f8976] {\n color: #5dc596;\n}\n.vue-ui-dark-mode .button:not(.disabled):hover .vue-ui-icon[data-v-e04f8976] svg,\n.vue-ui-dark-mode .button:not(.disabled).active .vue-ui-icon[data-v-e04f8976] svg {\n fill: #5dc596;\n}\n.button.disabled[data-v-e04f8976] {\n opacity: 0.45;\n cursor: not-allowed;\n}\n.button span[data-v-e04f8976] {\n display: none;\n}\n@media (min-width: 1100px) {\n.button span[data-v-e04f8976] {\n display: inline;\n}\n}\n.vue-ui-button[data-v-e04f8976]:not(:last-child) {\n margin-right: 6px;\n}\n.search[data-v-e04f8976] {\n display: flex;\n align-items: center;\n flex: 1;\n}\n.search input[data-v-e04f8976] {\n flex: 1;\n height: 100%;\n background-color: transparent;\n border: 0;\n margin-left: 5px;\n font-size: inherit;\n color: inherit;\n outline: 0;\n transition: color 0.25s;\n}\n.search input[data-v-e04f8976]:focus {\n color: #3ba776;\n}\n.search input[data-v-e04f8976]::-webkit-input-placeholder {\n opacity: 0.8;\n}\n.search input[data-v-e04f8976]::-moz-placeholder {\n opacity: 0.8;\n}\n.search input[data-v-e04f8976]::placeholder {\n opacity: 0.8;\n}\n.search input.invalid[data-v-e04f8976] {\n color: #4d0a09;\n}\n",""])},function(t,e,o){"use strict";o(52)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".instance[data-v-3dec50ca] {\n font-family: dejavu sans mono, monospace;\n}\n.platform-mac .instance[data-v-3dec50ca] {\n font-family: Menlo, monospace;\n}\n.platform-windows .instance[data-v-3dec50ca] {\n font-family: Consolas, Lucida Console, Courier New, monospace;\n}\n.instance.inactive[data-v-3dec50ca] {\n opacity: 0.5;\n}\n.self[data-v-3dec50ca] {\n cursor: pointer;\n position: relative;\n overflow: hidden;\n z-index: 2;\n border-radius: 3px;\n font-size: 14px;\n line-height: 22px;\n height: 22px;\n white-space: nowrap;\n display: flex;\n align-items: center;\n padding-right: 6px;\n transition: font-size 0.15s, height 0.15s;\n}\n.self[data-v-3dec50ca]:hidden {\n display: none;\n}\n.high-density .self[data-v-3dec50ca] {\n font-size: 12px;\n height: 15px;\n}\n.children[data-v-3dec50ca] {\n position: relative;\n z-index: 1;\n}\n.content[data-v-3dec50ca] {\n position: relative;\n padding-left: 22px;\n}\n.info[data-v-3dec50ca] {\n color: #fff;\n font-size: 10px;\n padding: 3px 5px 2px;\n display: inline-block;\n line-height: 10px;\n border-radius: 3px;\n position: relative;\n top: -1px;\n}\n.high-density .info[data-v-3dec50ca] {\n padding: 1px 4px 0;\n top: 0;\n}\n.info.console[data-v-3dec50ca] {\n color: #fff;\n background-color: transparent;\n top: 0;\n}\n.info.router-view[data-v-3dec50ca] {\n background-color: #ff8344;\n}\n.info.fragment[data-v-3dec50ca] {\n background-color: #b3cbf7;\n}\n.info.inactive[data-v-3dec50ca] {\n background-color: #aaa;\n}\n.info.functional[data-v-3dec50ca] {\n background-color: rgba(0,0,0,0.06);\n color: rgba(0,0,0,0.5);\n}\n.vue-ui-dark-mode .info.functional[data-v-3dec50ca] {\n background-color: rgba(255,255,255,0.06);\n color: rgba(255,255,255,0.5);\n}\n.info[data-v-3dec50ca]:not(.console) {\n margin-left: 6px;\n}\n.arrow-wrapper[data-v-3dec50ca] {\n position: absolute;\n display: inline-block;\n width: 16px;\n height: 16px;\n top: 1px;\n left: 4px;\n}\n.arrow[data-v-3dec50ca] {\n position: absolute;\n top: 5px;\n left: 4px;\n transition: transform 0.1s ease;\n}\n.arrow.rotated[data-v-3dec50ca] {\n transform: rotate(90deg);\n}\n.angle-bracket[data-v-3dec50ca] {\n color: #ccc;\n}\n.item-name[data-v-3dec50ca] {\n color: #3ba776;\n margin: 0 1px;\n}\n.attr[data-v-3dec50ca] {\n opacity: 0.5;\n font-size: 12px;\n}\n.high-density .attr[data-v-3dec50ca] {\n font-size: 10px;\n}\n.attr-title[data-v-3dec50ca] {\n color: #800080;\n}\n.vue-ui-dark-mode .attr-title[data-v-3dec50ca] {\n color: #f6f;\n}\n.spacer[data-v-3dec50ca] {\n flex: auto 1 1;\n}\n.icon-button[data-v-3dec50ca] {\n width: 16px;\n height: 16px;\n}\n.self:not(:hover) .icon-button[data-v-3dec50ca] {\n visibility: hidden;\n}\n.self.selected .icon-button[data-v-3dec50ca] svg {\n fill: #fff;\n}\n.self:not(.selected) .info.console[data-v-3dec50ca] {\n color: #ccc;\n}\n.vue-ui-dark-mode .self:not(.selected) .info.console[data-v-3dec50ca] {\n color: #4d4d4d;\n}\n.self.selected .attr[data-v-3dec50ca] {\n opacity: 1;\n}\n.self.selected .attr-title[data-v-3dec50ca] {\n color: #e0d9ff;\n}\n.self.selected .info.functional[data-v-3dec50ca] {\n color: #fff;\n}\n",""])},function(t,e,o){"use strict";o(53)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".tree {\n padding: 5px;\n}\n.select-component.active {\n color: #3ba776;\n}\n.select-component.active .vue-ui-icon {\n animation: pulse 2s infinite linear;\n}\n",""])},function(t,e,o){"use strict";o(54)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".data-field[data-v-53dad005] {\n -webkit-user-select: text;\n -moz-user-select: text;\n user-select: text;\n font-size: 12px;\n font-family: Menlo, Consolas, monospace;\n cursor: pointer;\n}\n.self[data-v-53dad005] {\n height: 20px;\n line-height: 20px;\n position: relative;\n white-space: nowrap;\n padding-left: 14px;\n}\n.high-density .self[data-v-53dad005] {\n height: 14px;\n line-height: 14px;\n}\n.self span[data-v-53dad005],\n.self div[data-v-53dad005] {\n display: inline-block;\n vertical-align: middle;\n}\n.self .arrow[data-v-53dad005] {\n position: absolute;\n top: 7px;\n left: 0px;\n transition: transform 0.1s ease;\n}\n.self .arrow.rotated[data-v-53dad005] {\n transform: rotate(90deg);\n}\n.self .actions[data-v-53dad005] {\n visibility: hidden;\n display: inline-flex;\n align-items: center;\n position: relative;\n top: -1px;\n}\n.self .actions .icon-button[data-v-53dad005] {\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n width: 20px;\n height: 20px;\n}\n.self .actions .icon-button[data-v-53dad005]:first-child {\n margin-left: 6px;\n}\n.self .actions .icon-button[data-v-53dad005]:not(:last-child) {\n margin-right: 6px;\n}\n.self .actions .icon-button[data-v-53dad005] .vue-ui-icon,\n.self .actions .small-icon[data-v-53dad005] {\n width: 16px;\n height: 16px;\n}\n.self .actions .warning[data-v-53dad005] svg {\n fill: #ff6b00;\n}\n.self:hover .actions[data-v-53dad005],\n.self.force-toolbar .actions[data-v-53dad005] {\n visibility: visible;\n}\n.self .colon[data-v-53dad005] {\n margin-right: 0.5em;\n position: relative;\n}\n.self .type[data-v-53dad005] {\n color: #fff;\n padding: 3px 6px;\n font-size: 10px;\n line-height: 10px;\n height: 16px;\n border-radius: 3px;\n margin: 2px 6px;\n position: relative;\n background-color: #eee;\n}\n.self .type.prop[data-v-53dad005] {\n background-color: #96afdd;\n}\n.self .type.computed[data-v-53dad005] {\n background-color: #af90d5;\n}\n.self .type.vuex-getter[data-v-53dad005] {\n background-color: #5dd5d5;\n}\n.self .type.firebase-binding[data-v-53dad005] {\n background-color: #fc0;\n}\n.self .type.observable[data-v-53dad005] {\n background-color: #f99;\n}\n.vue-ui-dark-mode .self .type[data-v-53dad005] {\n color: #242424;\n}\n.self .edit-overlay[data-v-53dad005] {\n display: inline-flex;\n align-items: center;\n}\n.key[data-v-53dad005] {\n color: #881391;\n}\n.vue-ui-dark-mode .key[data-v-53dad005] {\n color: #e36eec;\n}\n.key.abstract[data-v-53dad005] {\n color: #486887;\n}\n.vue-ui-dark-mode .key.abstract[data-v-53dad005] {\n color: #6186ab;\n}\n.value[data-v-53dad005] {\n display: inline-block;\n color: #444;\n}\n.value.string[data-v-53dad005],\n.value.native[data-v-53dad005] {\n color: #c41a16;\n}\n.value.string[data-v-53dad005] span {\n color: #222;\n}\n.vue-ui-dark-mode .value.string[data-v-53dad005] span {\n color: #c41a16;\n}\n.value.null[data-v-53dad005] {\n color: #999;\n}\n.value.literal[data-v-53dad005] {\n color: #03c;\n}\n.value.raw-boolean[data-v-53dad005] {\n width: 36px;\n}\n.value.custom.type-component[data-v-53dad005] {\n color: #42b983;\n}\n.value.custom.type-component[data-v-53dad005]::before,\n.value.custom.type-component[data-v-53dad005]::after {\n color: #ccc;\n}\n.value.custom.type-component[data-v-53dad005]::before {\n content: '<';\n}\n.value.custom.type-component[data-v-53dad005]::after {\n content: '>';\n}\n.value.custom.type-function[data-v-53dad005] {\n font-style: italic;\n}\n.value.custom.type-function[data-v-53dad005] span {\n color: #03c;\n font-family: dejavu sans mono, monospace;\n}\n.platform-mac .value.custom.type-function[data-v-53dad005] span {\n font-family: Menlo, monospace;\n}\n.platform-windows .value.custom.type-function[data-v-53dad005] span {\n font-family: Consolas, Lucida Console, Courier New, monospace;\n}\n.vue-ui-dark-mode .value.custom.type-function[data-v-53dad005] span {\n color: #997fff;\n}\n.value.custom.type-component-definition[data-v-53dad005] {\n color: #42b983;\n}\n.value.custom.type-component-definition[data-v-53dad005] span {\n color: #aaa;\n}\n.value.custom.type-reference[data-v-53dad005] {\n opacity: 0.5;\n}\n.value.custom[data-v-53dad005] .attr-title {\n color: #800080;\n}\n.vue-ui-dark-mode .value.custom[data-v-53dad005] .attr-title {\n color: #e36eec;\n}\n.vue-ui-dark-mode .value[data-v-53dad005] {\n color: #bdc6cf;\n}\n.vue-ui-dark-mode .value.string[data-v-53dad005],\n.vue-ui-dark-mode .value.native[data-v-53dad005] {\n color: #e33e3a;\n}\n.vue-ui-dark-mode .value.null[data-v-53dad005] {\n color: #999;\n}\n.vue-ui-dark-mode .value.literal[data-v-53dad005] {\n color: #997fff;\n}\n.meta[data-v-53dad005] {\n font-size: 12px;\n font-family: Menlo, Consolas, monospace;\n min-width: 150px;\n}\n.meta .key[data-v-53dad005] {\n display: inline-block;\n width: 80px;\n color: #e785ef;\n}\n.vue-ui-dark-mode .meta .key[data-v-53dad005] {\n color: #881391;\n}\n.meta .value[data-v-53dad005] {\n color: #fff;\n}\n.vue-ui-dark-mode .meta .value[data-v-53dad005] {\n color: #000;\n}\n.meta-field[data-v-53dad005]:not(:last-child) {\n margin-bottom: 4px;\n}\n.edit-input[data-v-53dad005] {\n font-family: Menlo, Consolas, monospace;\n border: solid 1px #42b983;\n border-radius: 3px;\n padding: 2px;\n outline: none;\n}\n.edit-input.error[data-v-53dad005] {\n border-color: #ff6b00;\n}\n.value-input[data-v-53dad005] {\n width: 180px;\n}\n.key-input[data-v-53dad005] {\n width: 90px;\n color: #881391;\n}\n.remove-field[data-v-53dad005] {\n margin-left: 10px;\n}\n.context-menu-dropdown .vue-ui-button[data-v-53dad005] {\n display: block;\n width: 100%;\n}\n.more[data-v-53dad005] {\n width: 20px;\n height: 20px;\n}\n.more[data-v-53dad005] .vue-ui-icon {\n width: 16px;\n height: 16px;\n}\n",""])},function(t,e,o){"use strict";o(55)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".data-el {\n font-size: 15px;\n}\n.data-el.dim {\n opacity: 0.7;\n pointer-events: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n -webkit-filter: grayscale(50%);\n filter: grayscale(50%);\n}\n.data-el:not(:last-child) {\n border-bottom: rgba(221,221,221,0.4) solid 1px;\n}\n.vue-ui-dark-mode .data-el:not(:last-child) {\n border-bottom-color: rgba(221,221,221,0.07);\n}\n.vue-ui-dark-mode .data-el {\n box-shadow: none;\n}\n.data-el .data-type,\n.data-el .data-fields {\n margin: 5px;\n padding: 2px 9px 2px 21px;\n}\n@media (max-height: 350px) {\n.data-el .data-type,\n .data-el .data-fields {\n margin: 0;\n padding: 0 9px 0 21px;\n}\n}\n.data-el .data-type {\n color: #486887;\n position: relative;\n cursor: pointer;\n border-radius: 3px;\n display: flex;\n align-items: baseline;\n padding-left: 9px;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n.vue-ui-dark-mode .data-el .data-type {\n color: #7595b5;\n}\n.data-el .data-type .arrow {\n transition: transform 0.1s ease;\n margin-right: 8px;\n opacity: 0.7;\n}\n.data-el .data-type .arrow.rotated {\n transform: rotate(90deg);\n}\n.data-el .data-fields {\n padding-top: 0;\n}\n@media (max-height: 350px) {\n.data-el .data-fields {\n margin-bottom: 4px;\n}\n}\n",""])},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e,o){"use strict";o(56)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".title[data-v-5f05b454] {\n white-space: nowrap;\n position: relative;\n top: -1px;\n}\n",""])},function(t,e,o){"use strict";o(57)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".vue-recycle-scroller[data-v-1025673e] {\n height: 100%;\n}\n.entry[data-v-1025673e] {\n font-family: Menlo, Consolas, monospace;\n cursor: pointer;\n padding: 7px 20px;\n font-size: 12px;\n box-shadow: inset 0 1px 0px rgba(0,0,0,0.08);\n min-height: 34px;\n transition: padding 0.15s, min-height 0.15s;\n}\n.entry[data-v-1025673e]::after {\n content: '';\n display: table;\n clear: both;\n}\n.entry.active .time[data-v-1025673e] {\n color: #cbecdd;\n}\n.entry.active .action[data-v-1025673e] {\n color: #cbecdd;\n}\n.entry.active .action .vue-ui-icon[data-v-1025673e] svg {\n fill: #cbecdd;\n}\n.entry.active .action[data-v-1025673e]:hover {\n color: #f5fbf8;\n}\n.entry.active .action:hover .vue-ui-icon[data-v-1025673e] svg {\n fill: #f5fbf8;\n}\n.entry.active .label.inspected[data-v-1025673e] {\n background-color: #9c76cb;\n}\n.entry.special .mutation-type[data-v-1025673e] {\n font-style: italic;\n opacity: 0.75;\n}\n@media (max-width: 1100px) {\n.entry .label[data-v-1025673e] {\n display: none;\n}\n.entry.inspected[data-v-1025673e] {\n border-left: 4px solid #9369c6;\n padding-left: 16px;\n}\n}\n.entry .vue-ui-icon[data-v-1025673e],\n.entry span[data-v-1025673e],\n.entry a[data-v-1025673e] {\n display: inline-block;\n vertical-align: middle;\n}\n.entry .mutation-type[data-v-1025673e] {\n line-height: 20px;\n overflow-wrap: break-word;\n max-width: 100%;\n}\n.entry .entry-actions[data-v-1025673e] {\n display: none;\n}\n.entry:hover .entry-actions[data-v-1025673e] {\n display: inline-block;\n}\n.vue-ui-dark-mode .entry.active .mutation-type[data-v-1025673e] {\n color: #fff;\n}\n.high-density .entry[data-v-1025673e] {\n padding: 1px 20px;\n min-height: 22px;\n}\n.action[data-v-1025673e] {\n color: #999;\n font-size: 11px;\n display: inline-block;\n vertical-align: middle;\n margin-left: 10px;\n white-space: nowrap;\n}\n.action span[data-v-1025673e] {\n display: none;\n}\n@media (min-width: 1400px) {\n.action span[data-v-1025673e] {\n display: inline;\n}\n}\n.action .vue-ui-icon[data-v-1025673e] {\n width: 18px;\n height: 18px;\n margin-right: 2px;\n}\n.action[data-v-1025673e]:hover {\n color: #3ba776;\n}\n.action:hover .vue-ui-icon[data-v-1025673e] svg {\n fill: #3ba776;\n}\n.time[data-v-1025673e] {\n font-size: 11px;\n color: #999;\n float: right;\n margin-top: 3px;\n}\n.label[data-v-1025673e] {\n float: right;\n font-size: 10px;\n padding: 4px 8px;\n border-radius: 6px;\n margin-right: 8px;\n}\n.label.active[data-v-1025673e] {\n background-color: #2c7d59;\n}\n.label.inspected[data-v-1025673e] {\n color: #fff;\n background-color: #af90d5;\n}\n",""])},function(t,e,o){"use strict";o(58)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".state-info[data-v-9bf75054] {\n display: flex;\n align-items: center;\n padding: 2px 2px 2px 14px;\n min-height: 36px;\n font-size: 14px;\n}\n.state-info .label[data-v-9bf75054] {\n flex: 1;\n display: flex;\n align-items: center;\n color: #486887;\n}\n.state-info .label .vue-ui-icon[data-v-9bf75054] {\n margin-right: 8px;\n}\n.state-info .label .vue-ui-icon[data-v-9bf75054] svg {\n fill: #486887;\n}\n.state-info .note[data-v-9bf75054] {\n opacity: 0.7;\n margin-left: 4px;\n}\n.loading-vuex-state[data-v-9bf75054] {\n padding-right: 14px;\n}\n.pointer[data-v-9bf75054] {\n cursor: pointer;\n}\n.message[data-v-9bf75054] {\n margin-left: 5px;\n transition: all 0.3s ease;\n color: #44a1ff;\n}\n.invalid-json[data-v-9bf75054] {\n right: 20px;\n left: initial;\n top: 1px;\n font-size: 12px;\n color: #c41a16;\n background-color: #fff;\n}\n.vue-ui-dark-mode .invalid-json[data-v-9bf75054] {\n background-color: #0b1015;\n}\n.import-state[data-v-9bf75054] {\n transition: all 0.2s ease;\n width: 300px;\n position: absolute;\n z-index: 1;\n left: 220px;\n right: 10px;\n top: 45px;\n box-shadow: 4px 4px 6px 0 #eee;\n border: 1px solid #eee;\n padding: 3px;\n background-color: #fff;\n}\n.vue-ui-dark-mode .import-state[data-v-9bf75054] {\n background-color: #0b1015;\n box-shadow: 4px 4px 6px 0 #141d25;\n border: 1px solid #141d25;\n}\n.import-state[data-v-9bf75054]:after {\n content: 'Press ESC to close';\n position: absolute;\n bottom: 0;\n padding: 5px;\n color: inherit;\n opacity: 0.5;\n}\n.import-state textarea[data-v-9bf75054] {\n width: 100%;\n height: 100px;\n display: block;\n outline: none;\n border: none;\n resize: vertical;\n}\n.vue-ui-dark-mode .import-state textarea[data-v-9bf75054] {\n color: #ddd;\n background-color: #0b1015;\n}\n",""])},function(t,e,o){"use strict";o(59)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".vue-recycle-scroller[data-v-73ab8b5a] {\n height: 100%;\n}\n.no-events[data-v-73ab8b5a] {\n color: #ccc;\n text-align: center;\n margin-top: 50px;\n line-height: 30px;\n}\n.entry[data-v-73ab8b5a] {\n position: relative;\n font-family: Menlo, Consolas, monospace;\n cursor: pointer;\n padding: 10px 20px;\n font-size: 12px;\n box-shadow: inset 0 1px 0px rgba(0,0,0,0.08);\n transition: padding 0.15s;\n}\n.entry .event-name[data-v-73ab8b5a] {\n font-weight: 600;\n}\n.entry .event-source[data-v-73ab8b5a] {\n color: #999;\n}\n.entry .component-name[data-v-73ab8b5a] {\n color: #3ba776;\n}\n.entry .event-type[data-v-73ab8b5a] {\n color: #999;\n margin-left: 8px;\n}\n.entry.active .time[data-v-73ab8b5a],\n.entry.active .event-type[data-v-73ab8b5a],\n.entry.active .component-name[data-v-73ab8b5a] {\n color: #cbecdd;\n}\n.entry.active .event-name[data-v-73ab8b5a] {\n color: #fff;\n}\n.entry.active .event-source[data-v-73ab8b5a] {\n color: #ddd;\n}\n.high-density .entry[data-v-73ab8b5a] {\n padding: 4px 20px;\n}\n.time[data-v-73ab8b5a] {\n font-size: 11px;\n color: #999;\n float: right;\n}\n",""])},function(t,e,o){"use strict";o(60)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,"section[data-v-52054d48]:not(:last-child) {\n border-bottom: 1px solid #eee;\n}\n.vue-ui-dark-mode section[data-v-52054d48]:not(:last-child) {\n border-bottom: 1px solid #141d25;\n}\n.component-name[data-v-52054d48] {\n margin: 0 10px;\n}\n.string[data-v-52054d48] {\n color: #c41a16;\n}\n.literal[data-v-52054d48] {\n color: #03c;\n}\n.no-event-data[data-v-52054d48] {\n color: #ccc;\n text-align: center;\n margin-top: 50px;\n line-height: 30px;\n}\n",""])},function(t,e,o){"use strict";o(61)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".saved-benchmarks-select[data-v-c8c7caee] {\n width: 250px;\n}\n.stop-button[data-v-c8c7caee] .vue-ui-icon {\n border-radius: 50%;\n -webkit-filter: drop-shadow(0 0 3px rgba(255,0,0,0.4));\n filter: drop-shadow(0 0 3px rgba(255,0,0,0.4));\n animation: pulse-c8c7caee 3s linear infinite;\n}\n.stop-button[data-v-c8c7caee] .vue-ui-icon svg {\n fill: #f00 !important;\n}\n.benchmark-duration[data-v-c8c7caee] {\n margin-left: 32px;\n}\n@keyframes pulse-c8c7caee {\n0% {\n opacity: 1;\n}\n50% {\n opacity: 0.5;\n}\n100% {\n opacity: 1;\n}\n}\n",""])},function(t,e,o){"use strict";o(62)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".title[data-v-7d363b5c] {\n white-space: nowrap;\n position: relative;\n top: -1px;\n}\n.metrics[data-v-7d363b5c] {\n padding: 6px 0;\n font-size: 14px;\n}\n.metrics.high-density[data-v-7d363b5c] {\n font-size: 12px;\n}\n.header[data-v-7d363b5c],\n.metric[data-v-7d363b5c] {\n display: flex;\n}\n.header[data-v-7d363b5c] > *,\n.metric[data-v-7d363b5c] > * {\n flex: 25% 0 0;\n padding: 4px 10px;\n}\n.high-density .header[data-v-7d363b5c] > *,\n.high-density .metric[data-v-7d363b5c] > * {\n padding: 2px 10px;\n}\n.header[data-v-7d363b5c] > *:not(:first-child),\n.metric[data-v-7d363b5c] > *:not(:first-child) {\n text-align: right;\n}\n.header .dim[data-v-7d363b5c],\n.metric .dim[data-v-7d363b5c] {\n opacity: 0.4;\n}\n.header[data-v-7d363b5c] {\n color: #486887;\n margin-bottom: 6px;\n}\n.metric[data-v-7d363b5c] {\n font-family: Menlo, Consolas, monospace;\n}\n.type[data-v-7d363b5c] {\n color: #42b983;\n}\n",""])},function(t,e,o){"use strict";o(63)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".components[data-v-30f110f6] {\n height: 100%;\n}\n.component[data-v-30f110f6] {\n display: flex;\n align-items: center;\n padding: 0 20px;\n width: 100%;\n height: 34px;\n font-size: 14px;\n}\n.high-density .component[data-v-30f110f6] {\n height: 22px;\n}\n.component .name[data-v-30f110f6] {\n flex: 300px 0 0;\n font-family: Menlo, Consolas, monospace;\n color: #42b983;\n}\n.component .total-time[data-v-30f110f6] {\n flex: 100px 0 0;\n text-align: right;\n margin-right: 6px;\n}\n.component .bar-wrapper[data-v-30f110f6] {\n flex: 100% 1 1;\n}\n.component .bar-wrapper .bar[data-v-30f110f6] {\n height: 6px;\n background: #42b983;\n}\n.component.selected[data-v-30f110f6],\n.component.selected .name[data-v-30f110f6] {\n color: #fff;\n}\n.component.selected .bar[data-v-30f110f6] {\n background: #fff;\n}\n",""])},function(t,e,o){"use strict";o(64)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".framerate-marker-inspector[data-v-3d3aabec] {\n height: 100%;\n overflow: hidden;\n}\n.entries[data-v-3d3aabec],\n.state-inspector[data-v-3d3aabec] {\n height: 100%;\n overflow-y: auto;\n}\n.group-title[data-v-3d3aabec],\n.entry[data-v-3d3aabec] {\n padding: 7px 12px 6px;\n}\n.high-density .group-title[data-v-3d3aabec],\n.high-density .entry[data-v-3d3aabec] {\n padding: 3px 12px 2px;\n}\n.group[data-v-3d3aabec]:not(:first-child) {\n margin-top: 12px;\n}\n.group-title[data-v-3d3aabec] {\n color: #486887;\n font-size: 15px;\n}\n.entry[data-v-3d3aabec] {\n font-size: 12px;\n font-family: Menlo, Consolas, monospace;\n display: flex;\n}\n.entry .label[data-v-3d3aabec] {\n flex: auto 1 1;\n}\n.entry .time[data-v-3d3aabec] {\n color: #9e9e9e;\n}\n.entry.selected .time[data-v-3d3aabec] {\n color: #fff;\n}\n",""])},function(t,e,o){"use strict";o(65)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".fps[data-v-c7a70828] {\n height: 100%;\n}\n.chart[data-v-c7a70828] {\n display: flex;\n flex-direction: column;\n height: 100%;\n overflow-x: auto;\n}\n.row[data-v-c7a70828] {\n display: flex;\n}\n.markers[data-v-c7a70828] {\n flex: 80px 0 0;\n position: relative;\n}\n.marker[data-v-c7a70828] {\n position: absolute;\n top: 0;\n padding-bottom: 8px;\n display: flex;\n flex-direction: column;\n justify-content: flex-end;\n align-items: center;\n cursor: pointer;\n height: 100%;\n pointer-events: none;\n}\n.marker:hover .bubble[data-v-c7a70828] {\n transform: scale(1.2);\n}\n.marker.selected .bubble[data-v-c7a70828] {\n background: #42b983 !important;\n transform: scale(1.3);\n}\n.marker .bubble[data-v-c7a70828] {\n position: relative;\n z-index: 1;\n pointer-events: all;\n width: 18px;\n height: 18px;\n border-radius: 50%;\n transition: transform 0.2s ease-in-out;\n}\n.marker .bubble[data-v-c7a70828]:not(:last-child) {\n margin-bottom: 5px;\n}\n.marker .label[data-v-c7a70828] {\n font-size: 11px;\n line-height: 11px;\n color: #fff;\n text-align: center;\n position: relative;\n top: 4px;\n text-transform: uppercase;\n font-weight: bold;\n}\n.bars[data-v-c7a70828] {\n flex: 100% 1 1;\n}\n.bar-wrapper[data-v-c7a70828] {\n display: flex;\n align-items: flex-end;\n height: 100%;\n}\n.bar-wrapper[data-v-c7a70828]:hover {\n background: rgba(66,185,131,0.1);\n}\n.bar-wrapper:hover .bar[data-v-c7a70828] {\n background: #42b983 !important;\n}\n.bar[data-v-c7a70828] {\n flex: auto 0 0;\n min-width: 12px;\n}\n",""])},function(t,e,o){"use strict";o(66)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".vue-recycle-scroller[data-v-3ae9ab77] {\n height: 100%;\n}\n.no-routes[data-v-3ae9ab77] {\n color: #ccc;\n text-align: center;\n margin-top: 50px;\n line-height: 30px;\n}\n.entry[data-v-3ae9ab77] {\n font-family: Menlo, Consolas, monospace;\n cursor: pointer;\n padding: 7px 20px;\n font-size: 12px;\n line-height: 20px;\n box-shadow: inset 0 1px 0px rgba(0,0,0,0.08);\n min-height: 34px;\n transition: padding 0.15s, min-height 0.15s;\n}\n.entry[data-v-3ae9ab77]::after {\n content: '';\n display: table;\n clear: both;\n}\n.entry.active .time[data-v-3ae9ab77] {\n color: #cbecdd;\n}\n.entry.active .action[data-v-3ae9ab77] {\n color: #cbecdd;\n}\n.entry.active .action .vue-ui-icon[data-v-3ae9ab77] svg {\n fill: #cbecdd;\n}\n.entry.active .action[data-v-3ae9ab77]:hover {\n color: #f5fbf8;\n}\n.entry.active .action:hover .vue-ui-icon[data-v-3ae9ab77] svg {\n fill: #f5fbf8;\n}\n.high-density .entry[data-v-3ae9ab77] {\n padding: 1px 20px;\n min-height: 22px;\n}\n.entry span[data-v-3ae9ab77] {\n display: inline-block;\n vertical-align: middle;\n}\n.route-name[data-v-3ae9ab77] {\n font-weight: 600;\n}\n.time[data-v-3ae9ab77] {\n font-size: 11px;\n color: #999;\n float: right;\n}\n.label[data-v-3ae9ab77] {\n float: right;\n font-size: 10px;\n padding: 4px 8px;\n border-radius: 6px;\n margin-right: 8px;\n margin-top: 1px;\n line-height: 1;\n color: #fff;\n}\n.label.name[data-v-3ae9ab77] {\n background-color: #997fff;\n}\n.label.alias[data-v-3ae9ab77] {\n background-color: #ff6b00;\n}\n.label.redirect[data-v-3ae9ab77] {\n background-color: #aaa;\n}\n",""])},function(t,e,o){"use strict";o(67)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".no-route-data[data-v-a8272b66] {\n color: #ccc;\n text-align: center;\n margin-top: 50px;\n line-height: 30px;\n}\n",""])},function(t,e,o){"use strict";o(68)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".instance[data-v-62177412] {\n font-family: Menlo, Consolas, monospace;\n}\n.self[data-v-62177412] {\n cursor: pointer;\n position: relative;\n overflow: hidden;\n z-index: 2;\n transition: background-color 0.1s ease;\n border-radius: 3px;\n font-size: 14px;\n line-height: 22px;\n height: 22px;\n white-space: nowrap;\n display: flex;\n align-items: center;\n}\n.self.selected .instance-name[data-v-62177412] {\n color: #fff;\n}\n.high-density .self[data-v-62177412] {\n font-size: 12px;\n height: 15px;\n}\n.arrow[data-v-62177412] {\n position: absolute;\n top: 5px;\n left: 4px;\n transition: transform 0.1s ease, border-left-color 0.1s ease;\n}\n.arrow.rotated[data-v-62177412] {\n transform: rotate(90deg);\n}\n.arrow-wrapper[data-v-62177412] {\n position: absolute;\n display: inline-block;\n width: 16px;\n height: 16px;\n top: 0;\n left: 4px;\n}\n.children[data-v-62177412] {\n position: relative;\n z-index: 1;\n}\n.content[data-v-62177412] {\n position: relative;\n padding-left: 22px;\n}\n.instance-name[data-v-62177412] {\n color: #3ba776;\n margin: 0 1px;\n transition: color 0.1s ease;\n}\n.info[data-v-62177412] {\n color: #fff;\n font-size: 10px;\n padding: 3px 5px 2px;\n display: inline-block;\n line-height: 10px;\n border-radius: 3px;\n position: relative;\n top: -1px;\n margin-left: 6px;\n}\n.high-density .info[data-v-62177412] {\n padding: 1px 4px 0;\n top: 0;\n}\n.info.name[data-v-62177412] {\n background-color: #997fff;\n}\n.info.alias[data-v-62177412] {\n background-color: #ff6b00;\n}\n.info.redirect[data-v-62177412] {\n background-color: #aaa;\n}\n.info.active[data-v-62177412] {\n background-color: #c41a16;\n}\n",""])},function(t,e,o){"use strict";o(69)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".route-heading[data-v-166c22ae] {\n padding: 0px 10px;\n}\n.tree[data-v-166c22ae] {\n padding: 5px;\n}\n",""])},function(t,e,o){"use strict";o(70)},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".no-route-data[data-v-61ca398b] {\n color: #ccc;\n text-align: center;\n margin-top: 50px;\n line-height: 30px;\n}\n",""])},function(t,e,o){"use strict";function n(t){var e=this;if(e instanceof n||(e=new n),e.tail=null,e.head=null,e.length=0,t&&"function"===typeof t.forEach)t.forEach(function(t){e.push(t)});else if(arguments.length>0)for(var o=0,i=arguments.length;o<i;o++)e.push(arguments[o]);return e}function i(t,e,o){var n=e===t.head?new u(o,null,e,t):new u(o,e,e.next,t);return null===n.next&&(t.tail=n),null===n.prev&&(t.head=n),t.length++,n}function r(t,e){t.tail=new u(e,t.tail,null,t),t.head||(t.head=t.tail),t.length++}function a(t,e){t.head=new u(e,null,t.head,t),t.tail||(t.tail=t.head),t.length++}function u(t,e,o,n){if(!(this instanceof u))return new u(t,e,o,n);this.list=n,this.value=t,e?(e.next=this,this.prev=e):this.prev=null,o?(o.prev=this,this.next=o):this.next=null}t.exports=n,n.Node=u,n.create=n,n.prototype.removeNode=function(t){if(t.list!==this)throw new Error("removing node which does not belong to this list");var e=t.next,o=t.prev;return e&&(e.prev=o),o&&(o.next=e),t===this.head&&(this.head=e),t===this.tail&&(this.tail=o),t.list.length--,t.next=null,t.prev=null,t.list=null,e},n.prototype.unshiftNode=function(t){if(t!==this.head){t.list&&t.list.removeNode(t);var e=this.head;t.list=this,t.next=e,e&&(e.prev=t),this.head=t,this.tail||(this.tail=t),this.length++}},n.prototype.pushNode=function(t){if(t!==this.tail){t.list&&t.list.removeNode(t);var e=this.tail;t.list=this,t.prev=e,e&&(e.next=t),this.tail=t,this.head||(this.head=t),this.length++}},n.prototype.push=function(){for(var t=0,e=arguments.length;t<e;t++)r(this,arguments[t]);return this.length},n.prototype.unshift=function(){for(var t=0,e=arguments.length;t<e;t++)a(this,arguments[t]);return this.length},n.prototype.pop=function(){if(this.tail){var t=this.tail.value;return this.tail=this.tail.prev,this.tail?this.tail.next=null:this.head=null,this.length--,t}},n.prototype.shift=function(){if(this.head){var t=this.head.value;return this.head=this.head.next,this.head?this.head.prev=null:this.tail=null,this.length--,t}},n.prototype.forEach=function(t,e){e=e||this;for(var o=this.head,n=0;null!==o;n++)t.call(e,o.value,n,this),o=o.next},n.prototype.forEachReverse=function(t,e){e=e||this;for(var o=this.tail,n=this.length-1;null!==o;n--)t.call(e,o.value,n,this),o=o.prev},n.prototype.get=function(t){for(var e=0,o=this.head;null!==o&&e<t;e++)o=o.next;if(e===t&&null!==o)return o.value},n.prototype.getReverse=function(t){for(var e=0,o=this.tail;null!==o&&e<t;e++)o=o.prev;if(e===t&&null!==o)return o.value},n.prototype.map=function(t,e){e=e||this;for(var o=new n,i=this.head;null!==i;)o.push(t.call(e,i.value,this)),i=i.next;return o},n.prototype.mapReverse=function(t,e){e=e||this;for(var o=new n,i=this.tail;null!==i;)o.push(t.call(e,i.value,this)),i=i.prev;return o},n.prototype.reduce=function(t,e){var o,n=this.head;if(arguments.length>1)o=e;else{if(!this.head)throw new TypeError("Reduce of empty list with no initial value");n=this.head.next,o=this.head.value}for(var i=0;null!==n;i++)o=t(o,n.value,i),n=n.next;return o},n.prototype.reduceReverse=function(t,e){var o,n=this.tail;if(arguments.length>1)o=e;else{if(!this.tail)throw new TypeError("Reduce of empty list with no initial value");n=this.tail.prev,o=this.tail.value}for(var i=this.length-1;null!==n;i--)o=t(o,n.value,i),n=n.prev;return o},n.prototype.toArray=function(){for(var t=new Array(this.length),e=0,o=this.head;null!==o;e++)t[e]=o.value,o=o.next;return t},n.prototype.toArrayReverse=function(){for(var t=new Array(this.length),e=0,o=this.tail;null!==o;e++)t[e]=o.value,o=o.prev;return t},n.prototype.slice=function(t,e){e=e||this.length,e<0&&(e+=this.length),t=t||0,t<0&&(t+=this.length);var o=new n;if(e<t||e<0)return o;t<0&&(t=0),e>this.length&&(e=this.length);for(var i=0,r=this.head;null!==r&&i<t;i++)r=r.next;for(;null!==r&&i<e;i++,r=r.next)o.push(r.value);return o},n.prototype.sliceReverse=function(t,e){e=e||this.length,e<0&&(e+=this.length),t=t||0,t<0&&(t+=this.length);var o=new n;if(e<t||e<0)return o;t<0&&(t=0),e>this.length&&(e=this.length);for(var i=this.length,r=this.tail;null!==r&&i>e;i--)r=r.prev;for(;null!==r&&i>t;i--,r=r.prev)o.push(r.value);return o},n.prototype.splice=function(t,e){t>this.length&&(t=this.length-1),t<0&&(t=this.length+t);for(var o=0,n=this.head;null!==n&&o<t;o++)n=n.next;var r=[];for(o=0;n&&o<e;o++)r.push(n.value),n=this.removeNode(n);null===n&&(n=this.tail),n!==this.head&&n!==this.tail&&(n=n.prev);for(o=2;o<arguments.length;o++)n=i(this,n,arguments[o]);return r},n.prototype.reverse=function(){for(var t=this.head,e=this.tail,o=t;null!==o;o=o.prev){var n=o.prev;o.prev=o.next,o.next=n}return this.head=e,this.tail=t,this};try{o(153)(n)}catch(t){}},function(t,e,o){"use strict";t.exports=function(t){t.prototype[Symbol.iterator]=function*(){for(let t=this.head;t;t=t.next)yield t.value}}},function(t,e,o){(function(t,e){e()})(0,function(){"use strict";function t(){var t=!0,e=!1,o=null,n={text:!0,search:!0,url:!0,tel:!0,email:!0,password:!0,number:!0,date:!0,month:!0,week:!0,time:!0,datetime:!0,"datetime-local":!0};function i(t){return!!(t&&t!==document&&"HTML"!==t.nodeName&&"BODY"!==t.nodeName&&"classList"in t&&"contains"in t.classList)}function r(t){var e=t.type,o=t.tagName;return!("INPUT"!=o||!n[e]||t.readOnly)||("TEXTAREA"==o&&!t.readOnly||!!t.isContentEditable)}function a(t){t.classList.contains("focus-visible")||(t.classList.add("focus-visible"),t.setAttribute("data-focus-visible-added",""))}function u(t){t.hasAttribute("data-focus-visible-added")&&(t.classList.remove("focus-visible"),t.removeAttribute("data-focus-visible-added"))}function s(e){i(document.activeElement)&&a(document.activeElement),t=!0}function c(e){t=!1}function l(e){i(e.target)&&(t||r(e.target))&&a(e.target)}function d(t){i(t.target)&&(t.target.classList.contains("focus-visible")||t.target.hasAttribute("data-focus-visible-added"))&&(e=!0,window.clearTimeout(o),o=window.setTimeout(function(){e=!1,window.clearTimeout(o)},100),u(t.target))}function v(o){"hidden"==document.visibilityState&&(e&&(t=!0),h())}function h(){document.addEventListener("mousemove",f),document.addEventListener("mousedown",f),document.addEventListener("mouseup",f),document.addEventListener("pointermove",f),document.addEventListener("pointerdown",f),document.addEventListener("pointerup",f),document.addEventListener("touchmove",f),document.addEventListener("touchstart",f),document.addEventListener("touchend",f)}function p(){document.removeEventListener("mousemove",f),document.removeEventListener("mousedown",f),document.removeEventListener("mouseup",f),document.removeEventListener("pointermove",f),document.removeEventListener("pointerdown",f),document.removeEventListener("pointerup",f),document.removeEventListener("touchmove",f),document.removeEventListener("touchstart",f),document.removeEventListener("touchend",f)}function f(e){"html"!==e.target.nodeName.toLowerCase()&&(t=!1,p())}document.addEventListener("keydown",s,!0),document.addEventListener("mousedown",c,!0),document.addEventListener("pointerdown",c,!0),document.addEventListener("touchstart",c,!0),document.addEventListener("focus",l,!0),document.addEventListener("blur",d,!0),document.addEventListener("visibilitychange",v,!0),h(),document.body.classList.add("js-focus-visible")}function e(t){var e;function o(){e||(e=!0,t())}["interactive","complete"].indexOf(document.readyState)>=0?t():(e=!1,document.addEventListener("DOMContentLoaded",o,!1),window.addEventListener("load",o,!1))}"undefined"!==typeof document&&e(t)})},function(t,e,o){var n=o(156);n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=o(8).default;i("04618570",n,!0,{})},function(t,e,o){e=t.exports=o(7)(!1),e.push([t.i,".vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-recycle-scroller__slot{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-recycle-scroller__item-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}",""])},function(t,e,o){var n={"./en":71,"./en.js":71};function i(t){var e=r(t);return o(e)}function r(t){if(!o.o(n,t)){var e=new Error("Cannot find module '"+t+"'");throw e.code="MODULE_NOT_FOUND",e}return n[t]}i.keys=function(){return Object.keys(n)},i.resolve=r,t.exports=i,i.id=157},,,,,function(t,e,o){"use strict";o.r(e);var n={};o.r(n),o.d(n,"commitAll",function(){return $f}),o.d(n,"revertAll",function(){return tm}),o.d(n,"commit",function(){return em}),o.d(n,"revert",function(){return om}),o.d(n,"inspect",function(){return nm}),o.d(n,"timeTravelTo",function(){return im}),o.d(n,"updateFilter",function(){return rm}),o.d(n,"editState",function(){return am});var i={};o.r(i),o.d(i,"formatTime",function(){return Rm});var r=o(5),a=function(){var t=this,e=t._self._c;return e("div",{staticClass:"app",class:{beta:t.isBeta},attrs:{id:"app"}},[e("datalist",{attrs:{id:"special-tokens"}},t._l(t.specialTokens,function(t,o){return e("option",{key:o,domProps:{value:o}})}),0),e("div",{staticClass:"header"},[e("img",{staticClass:"logo",attrs:{src:o(93),alt:"Vue"}}),e("span",{staticClass:"message-container"},[e("transition",{attrs:{name:"slide-up"}},[e("span",{key:t.message,staticClass:"message"},[e("span",{staticClass:"text"},[t._v(t._s(t.message))]),e("span",{staticClass:"badges"},[t.isBeta?e("span",{staticClass:"badge"},[t._v("\n beta devtools\n ")]):t._e()])])])],1),e("div",{staticClass:"actions"},[e("VueGroup",{staticClass:"primary inline",attrs:{indicator:""},model:{value:t.routeModel,callback:function(e){t.routeModel=e},expression:"routeModel"}},[e("VueGroupButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("App.components.tooltip"),expression:"$t('App.components.tooltip')"}],staticClass:"components-tab flat",class:{"icon-button":!t.$responsive.wide},attrs:{value:"components","icon-left":"device_hub"}},[t._v("\n Components\n ")]),e("VueGroupButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("App.vuex.tooltip"),expression:"$t('App.vuex.tooltip')"}],staticClass:"vuex-tab flat",class:{"icon-button":!t.$responsive.wide},attrs:{value:"vuex","icon-left":"restore"}},[t._v("\n Vuex\n ")]),e("VueGroupButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("App.events.tooltip"),expression:"$t('App.events.tooltip')"}],staticClass:"events-tab flat big-tag",class:{"icon-button":!t.$responsive.wide},attrs:{tag:t.newEventCount>0?t.newEventCount:null,value:"events","icon-left":"grain"},nativeOn:{focus:function(e){t.isRouterGroupOpen=!1}}},[t._v("\n Events\n ")]),e("GroupDropdown",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("App.routing.tooltip"),expression:"$t('App.routing.tooltip')"}],attrs:{"is-open":t.isRouterGroupOpen,options:t.routingTabs,value:t.routeModel},on:{update:function(e){t.isRouterGroupOpen=e},select:function(e){t.routeModel=e}},scopedSlots:t._u([{key:"option",fn:function(o){var n=o.option;return[e("VueGroupButton",{staticClass:"router-tab flat big-tag",staticStyle:{width:"100%"},attrs:{value:n.name,"icon-left":n.icon},on:{selected:function(e){t.isRouterGroupOpen=!1}}},[t._v("\n "+t._s(n.label)+"\n ")])]}}])},[e("template",{slot:"header"},[e("VueIcon",{staticClass:"left-icon",attrs:{icon:"directions"}}),e("span",{staticClass:"hide-below-wide"},[t._v("\n Routing\n ")]),e("VueIcon",{staticClass:"right-icon",attrs:{icon:"keyboard_arrow_down"}})],1)],2),e("VueGroupButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("App.perf.tooltip"),expression:"$t('App.perf.tooltip')"}],staticClass:"perf-tab flat",class:{"icon-button":!t.$responsive.wide},attrs:{value:"perf","icon-left":"assessment"}},[t._v("\n Performance\n ")]),e("VueGroupButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("App.settings.tooltip"),expression:"$t('App.settings.tooltip')"}],staticClass:"settings-tab flat",class:{"icon-button":!t.$responsive.wide,info:t.hasNewSettings},attrs:{tag:t.hasNewSettings?"new":null,value:"settings","icon-left":"settings_applications"},nativeOn:{focus:function(e){t.isRouterGroupOpen=!1}}},[t._v("\n Settings\n ")])],1),e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("App.refresh.tooltip"),expression:"$t('App.refresh.tooltip')"}],ref:"refresh",staticClass:"refresh-button flat",class:{"icon-button":!t.$responsive.wide},attrs:{"icon-left":"refresh"},on:{click:t.refresh}},[t._v("\n Refresh\n ")])],1)]),e("router-view",{staticClass:"container"})],1)},u=[],s=o(0),c="ArrowLeft",l="ArrowUp",d="ArrowRight",v="ArrowDown",h="Enter",p="Delete",f="Backspace",m=[];function g(t,e){if("INPUT"!==t.target.tagName&&"TEXTAREA"!==t.target.tagName){var o=[];(t.ctrlKey||t.metaKey)&&o.push("ctrl"),t.shiftKey&&o.push("shift"),t.altKey&&o.push("alt");var n={key:t.key,code:t.code,modifiers:o.join("+")},i=!0;m.forEach(t=>{if(t[e]){var o=t[e].call(t.vm,n);!1===o&&(i=!1)}}),i||t.preventDefault()}}document.addEventListener("keydown",t=>{g(t,"onKeyDown")});var b=function(t){return{mounted(){m.push(Object.assign({},{vm:this},t))},destroyed(){var t=m.findIndex(t=>t.vm===this);t>=0&&m.splice(t,1)}}},y=function(){var t=this,e=t._self._c;return e("div",{staticClass:"group-dropdown",class:{selected:t.isValueInOptions},attrs:{tabindex:t.isOpen?-1:0},on:{mouseenter:function(e){return t.$emit("update",!0)},mouseleave:function(e){return t.$emit("update",!1)},focus:function(e){return t.$emit("update",!0)}}},[e("div",{staticClass:"header",on:{click:t.selectDefault}},[t._t("header")],2),e("div",{directives:[{name:"show",rawName:"v-show",value:t.isOpen,expression:"isOpen"}],staticClass:"group-dropdown-options"},[t._l(t.options,function(e){return[t._t("option",null,{option:e})]})],2)])},w=[],x={props:{isOpen:{type:Boolean,default:!1},options:{type:Array,required:!0},value:{type:String,required:!0}},computed:{isValueInOptions(){return this.options.find(t=>t.name===this.value)}},watch:{isOpen(t){t?window.addEventListener("click",this.outsideClickHandler):window.removeEventListener("click",this.outsideClickHandler)}},methods:{outsideClickHandler(t){this.$el.contains(t.target)||this.$emit("update",!1)},selectDefault(){var t=this.options.findIndex(t=>t.name===this.value);-1===t?t=0:(t++,t===this.options.length&&(t=0)),this.$emit("select",this.options[t].name),this.$el.blur()}}},_=x;o(94);function z(t,e,o,n,i,r,a,u){var s,c="function"===typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=o,c._compiled=!0),n&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),a?(s=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},c._ssrRegister=s):i&&(s=u?function(){i.call(this,(c.functional?this.parent:this).$root.$options.shadowRoot)}:i),s)if(c.functional){c._injectStyles=s;var l=c.render;c.render=function(t,e){return s.call(e),l(t,e)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,s):[s]}return{exports:t,options:c}}var k=z(_,y,w,!1,null,"a10d3724",null),M=k.exports,V=o(3),H=function(){var t=this,e=t._self._c;return e("div",{staticClass:"settings grid"},[e("GlobalPreferences")],1)},C=[],L=function(){var t=this,e=t._self._c;return e("div",{staticClass:"global-preferences preferences"},[e("VueFormField",{attrs:{title:"Normalize component names"}},[e("VueGroup",{staticClass:"extend",model:{value:t.$shared.componentNameStyle,callback:function(e){t.$set(t.$shared,"componentNameStyle",e)},expression:"$shared.componentNameStyle"}},[e("VueGroupButton",{attrs:{value:"original",label:"Original name"}}),e("VueGroupButton",{attrs:{value:"class",label:"Pascal case"}}),e("VueGroupButton",{attrs:{value:"kebab",label:"Kebab case"}})],1)],1),e("VueFormField",{attrs:{title:"Theme"}},[e("VueGroup",{staticClass:"extend",model:{value:t.$shared.theme,callback:function(e){t.$set(t.$shared,"theme",e)},expression:"$shared.theme"}},[e("VueGroupButton",{attrs:{value:"auto",label:"Auto"}}),e("VueGroupButton",{attrs:{value:"light",label:"Light"}}),e("VueGroupButton",{attrs:{value:"dark",label:"Dark"}}),e("VueGroupButton",{attrs:{value:"high-contrast",label:"High contrast"}})],1)],1),e("VueFormField",{attrs:{title:"Display density"}},[e("VueGroup",{staticClass:"extend",model:{value:t.$shared.displayDensity,callback:function(e){t.$set(t.$shared,"displayDensity",e)},expression:"$shared.displayDensity"}},[e("VueGroupButton",{attrs:{value:"auto",label:"Auto"}}),e("VueGroupButton",{attrs:{value:"low",label:"Low"}}),e("VueGroupButton",{attrs:{value:"high",label:"High"}})],1)],1),e("VueFormField",{attrs:{title:"Editable props"},scopedSlots:t._u([{key:"subtitle",fn:function(){return[e("VueIcon",{staticClass:"medium",attrs:{icon:"warning"}}),t._v("\n May print warnings in the console\n ")]},proxy:!0}])},[e("VueSwitch",{model:{value:t.$shared.editableProps,callback:function(e){t.$set(t.$shared,"editableProps",e)},expression:"$shared.editableProps"}},[t._v("\n Enable\n ")])],1),e("VueFormField",{attrs:{title:"Time Format"}},[e("VueSwitch",{attrs:{value:"ms"===t.$shared.timeFormat},on:{update:e=>t.$shared.timeFormat=e?"ms":"default"}},[t._v("\n Display milliseconds\n ")])],1),e("VueFormField",{attrs:{title:"Detected Vue message"}},[e("VueSwitch",{model:{value:t.$shared.logDetected,callback:function(e){t.$set(t.$shared,"logDetected",e)},expression:"$shared.logDetected"}},[t._v("\n Display in browser console\n ")])],1),e("VueFormField",{scopedSlots:t._u([{key:"title",fn:function(){return[t._v("\n New Vuex backend\n "),e("NewTag",{attrs:{version:1}})]},proxy:!0},{key:"subtitle",fn:function(){return[t._v("\n Faster and less memory-intensive\n ")]},proxy:!0}])},[e("VueSwitch",{model:{value:t.$shared.vuexNewBackend,callback:function(e){t.$set(t.$shared,"vuexNewBackend",e)},expression:"$shared.vuexNewBackend"}},[t._v("\n Enable\n ")])],1),e("VueFormField",{attrs:{title:"Autoload Vuex state"},scopedSlots:t._u([{key:"subtitle",fn:function(){return[e("VueIcon",{staticClass:"medium",attrs:{icon:"warning"}}),t._v("\n May impact performance or cause crashes\n ")]},proxy:!0}])},[e("VueSwitch",{model:{value:t.$shared.vuexAutoload,callback:function(e){t.$set(t.$shared,"vuexAutoload",e)},expression:"$shared.vuexAutoload"}},[t._v("\n Enable\n ")])],1)],1)},S=[],B=function(){var t=this,e=t._self._c;return t.version>t.currentSettingsVersion?e("div",{staticClass:"new-tag"},[t._v("\n New\n")]):t._e()},E=[],O={inject:["currentSettingsVersion"],props:{version:{type:Number,required:!0}}},A=O,T=(o(96),z(A,B,E,!1,null,"5ddc270f",null)),I=T.exports,j={components:{NewTag:I}},N=j,R=z(N,L,S,!1,null,null,null),P=R.exports,D=1,U="vue-devtools-settings-version",F={components:{GlobalPreferences:P},provide(){return{settingsVersion:D,currentSettingsVersion:parseInt(localStorage.getItem(U))||0}},computed:Object(V["e"])("events",["enabled"])},q=F,K=(o(98),z(q,H,C,!1,null,"2770cc6a",null)),Y=K.exports,G={name:"App",components:{GroupDropdown:M},mixins:[b({onKeyDown(t){var e=t.key,o=t.code,n=t.modifiers;switch(n){case"ctrl+alt":if("r"===e||"KeyR"===o)return this.refresh(),!1;break;case"ctrl":if("Digit1"===o)return this.$router.push({name:"components"}),!1;if("Digit2"===o)return this.$router.push({name:"vuex"}),!1;if("Digit3"===o)return this.$router.push({name:"events"}),!1;if("Digit4"===o)return"router"!==this.$route.name?this.$router.push({name:"router"}):this.$router.push({name:"routes"}),!1;if("Digit5"===o)return this.$router.push({name:"perf"}),!1;if("Digit6"===o)return this.$router.push({name:"settings"}),!1;if("p"===e||"KeyP"===o)return!1}}})],data(){return{isRouterGroupOpen:!1,routingTabs:[{name:"router",label:"History",icon:"directions"},{name:"routes",label:"Routes",icon:"book"}],settingsVersion:parseInt(localStorage.getItem(U))}},computed:Object.assign({},Object(V["e"])({message:t=>t.message,newEventCount:t=>t.events.newEventCount,view:t=>t.view}),{specialTokens(){return s["d"]},routeModel:{get(){return this.$route.matched[0].name},set(t){this.$router.push({name:t}),this.$nextTick(()=>{"settings"===t&&(this.settingsVersion=D,localStorage.setItem(U,D))})}},hasNewSettings(){return this.settingsVersion!==D}}),watch:{"$route.name"(t){bridge.send("switch-tab",t),"events"===t&&this.$store.commit("events/RESET_NEW_EVENT_COUNT")}},mounted(){this.mediaQuery=window.matchMedia("(min-width: 685px)"),this.switchView(this.mediaQuery),this.mediaQuery.addListener(this.switchView)},destroyed(){this.mediaQuery.removeListener(this.switchView)},methods:{refresh(){var t=this.$refs.refresh.$el.querySelector(".vue-ui-icon");t.style.animation="none",bridge.send("refresh"),bridge.once("flush",()=>{t.style.animation="rotate 1s"})},switchView(t){this.$store.commit("SWITCH_VIEW",t.matches?"vertical":"horizontal")}}},W=G,Q=(o(100),o(105),z(W,a,u,!1,null,"44dacb3a",null)),J=Q.exports;function X(t,e){for(var o in e)t[o]=e[o];return t}var Z=/[!'()*]/g,$=function(t){return"%"+t.charCodeAt(0).toString(16)},tt=/%2C/g,et=function(t){return encodeURIComponent(t).replace(Z,$).replace(tt,",")};function ot(t){try{return decodeURIComponent(t)}catch(t){0}return t}function nt(t,e,o){void 0===e&&(e={});var n,i=o||rt;try{n=i(t||"")}catch(t){n={}}for(var r in e){var a=e[r];n[r]=Array.isArray(a)?a.map(it):it(a)}return n}var it=function(t){return null==t||"object"===typeof t?t:String(t)};function rt(t){var e={};return t=t.trim().replace(/^(\?|#|&)/,""),t?(t.split("&").forEach(function(t){var o=t.replace(/\+/g," ").split("="),n=ot(o.shift()),i=o.length>0?ot(o.join("=")):null;void 0===e[n]?e[n]=i:Array.isArray(e[n])?e[n].push(i):e[n]=[e[n],i]}),e):e}function at(t){var e=t?Object.keys(t).map(function(e){var o=t[e];if(void 0===o)return"";if(null===o)return et(e);if(Array.isArray(o)){var n=[];return o.forEach(function(t){void 0!==t&&(null===t?n.push(et(e)):n.push(et(e)+"="+et(t)))}),n.join("&")}return et(e)+"="+et(o)}).filter(function(t){return t.length>0}).join("&"):null;return e?"?"+e:""}var ut=/\/?$/;function st(t,e,o,n){var i=n&&n.options.stringifyQuery,r=e.query||{};try{r=ct(r)}catch(t){}var a={name:e.name||t&&t.name,meta:t&&t.meta||{},path:e.path||"/",hash:e.hash||"",query:r,params:e.params||{},fullPath:vt(e,i),matched:t?dt(t):[]};return o&&(a.redirectedFrom=vt(o,i)),Object.freeze(a)}function ct(t){if(Array.isArray(t))return t.map(ct);if(t&&"object"===typeof t){var e={};for(var o in t)e[o]=ct(t[o]);return e}return t}var lt=st(null,{path:"/"});function dt(t){var e=[];while(t)e.unshift(t),t=t.parent;return e}function vt(t,e){var o=t.path,n=t.query;void 0===n&&(n={});var i=t.hash;void 0===i&&(i="");var r=e||at;return(o||"/")+r(n)+i}function ht(t,e,o){return e===lt?t===e:!!e&&(t.path&&e.path?t.path.replace(ut,"")===e.path.replace(ut,"")&&(o||t.hash===e.hash&&pt(t.query,e.query)):!(!t.name||!e.name)&&(t.name===e.name&&(o||t.hash===e.hash&&pt(t.query,e.query)&&pt(t.params,e.params))))}function pt(t,e){if(void 0===t&&(t={}),void 0===e&&(e={}),!t||!e)return t===e;var o=Object.keys(t).sort(),n=Object.keys(e).sort();return o.length===n.length&&o.every(function(o,i){var r=t[o],a=n[i];if(a!==o)return!1;var u=e[o];return null==r||null==u?r===u:"object"===typeof r&&"object"===typeof u?pt(r,u):String(r)===String(u)})}function ft(t,e){return 0===t.path.replace(ut,"/").indexOf(e.path.replace(ut,"/"))&&(!e.hash||t.hash===e.hash)&&mt(t.query,e.query)}function mt(t,e){for(var o in e)if(!(o in t))return!1;return!0}function gt(t){for(var e=0;e<t.matched.length;e++){var o=t.matched[e];for(var n in o.instances){var i=o.instances[n],r=o.enteredCbs[n];if(i&&r){delete o.enteredCbs[n];for(var a=0;a<r.length;a++)i._isBeingDestroyed||r[a](i)}}}}var bt={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(t,e){var o=e.props,n=e.children,i=e.parent,r=e.data;r.routerView=!0;var a=i.$createElement,u=o.name,s=i.$route,c=i._routerViewCache||(i._routerViewCache={}),l=0,d=!1;while(i&&i._routerRoot!==i){var v=i.$vnode?i.$vnode.data:{};v.routerView&&l++,v.keepAlive&&i._directInactive&&i._inactive&&(d=!0),i=i.$parent}if(r.routerViewDepth=l,d){var h=c[u],p=h&&h.component;return p?(h.configProps&&yt(p,r,h.route,h.configProps),a(p,r,n)):a()}var f=s.matched[l],m=f&&f.components[u];if(!f||!m)return c[u]=null,a();c[u]={component:m},r.registerRouteInstance=function(t,e){var o=f.instances[u];(e&&o!==t||!e&&o===t)&&(f.instances[u]=e)},(r.hook||(r.hook={})).prepatch=function(t,e){f.instances[u]=e.componentInstance},r.hook.init=function(t){t.data.keepAlive&&t.componentInstance&&t.componentInstance!==f.instances[u]&&(f.instances[u]=t.componentInstance),gt(s)};var g=f.props&&f.props[u];return g&&(X(c[u],{route:s,configProps:g}),yt(m,r,s,g)),a(m,r,n)}};function yt(t,e,o,n){var i=e.props=wt(o,n);if(i){i=e.props=X({},i);var r=e.attrs=e.attrs||{};for(var a in i)t.props&&a in t.props||(r[a]=i[a],delete i[a])}}function wt(t,e){switch(typeof e){case"undefined":return;case"object":return e;case"function":return e(t);case"boolean":return e?t.params:void 0;default:0}}function xt(t,e,o){var n=t.charAt(0);if("/"===n)return t;if("?"===n||"#"===n)return e+t;var i=e.split("/");o&&i[i.length-1]||i.pop();for(var r=t.replace(/^\//,"").split("/"),a=0;a<r.length;a++){var u=r[a];".."===u?i.pop():"."!==u&&i.push(u)}return""!==i[0]&&i.unshift(""),i.join("/")}function _t(t){var e="",o="",n=t.indexOf("#");n>=0&&(e=t.slice(n),t=t.slice(0,n));var i=t.indexOf("?");return i>=0&&(o=t.slice(i+1),t=t.slice(0,i)),{path:t,query:o,hash:e}}function zt(t){return t.replace(/\/(?:\s*\/)+/g,"/")}var kt=Array.isArray||function(t){return"[object Array]"==Object.prototype.toString.call(t)},Mt=qt,Vt=Bt,Ht=Et,Ct=Tt,Lt=Ft,St=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function Bt(t,e){var o,n=[],i=0,r=0,a="",u=e&&e.delimiter||"/";while(null!=(o=St.exec(t))){var s=o[0],c=o[1],l=o.index;if(a+=t.slice(r,l),r=l+s.length,c)a+=c[1];else{var d=t[r],v=o[2],h=o[3],p=o[4],f=o[5],m=o[6],g=o[7];a&&(n.push(a),a="");var b=null!=v&&null!=d&&d!==v,y="+"===m||"*"===m,w="?"===m||"*"===m,x=o[2]||u,_=p||f;n.push({name:h||i++,prefix:v||"",delimiter:x,optional:w,repeat:y,partial:b,asterisk:!!g,pattern:_?jt(_):g?".*":"[^"+It(x)+"]+?"})}}return r<t.length&&(a+=t.substr(r)),a&&n.push(a),n}function Et(t,e){return Tt(Bt(t,e),e)}function Ot(t){return encodeURI(t).replace(/[\/?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function At(t){return encodeURI(t).replace(/[?#]/g,function(t){return"%"+t.charCodeAt(0).toString(16).toUpperCase()})}function Tt(t,e){for(var o=new Array(t.length),n=0;n<t.length;n++)"object"===typeof t[n]&&(o[n]=new RegExp("^(?:"+t[n].pattern+")$",Rt(e)));return function(e,n){for(var i="",r=e||{},a=n||{},u=a.pretty?Ot:encodeURIComponent,s=0;s<t.length;s++){var c=t[s];if("string"!==typeof c){var l,d=r[c.name];if(null==d){if(c.optional){c.partial&&(i+=c.prefix);continue}throw new TypeError('Expected "'+c.name+'" to be defined')}if(kt(d)){if(!c.repeat)throw new TypeError('Expected "'+c.name+'" to not repeat, but received `'+JSON.stringify(d)+"`");if(0===d.length){if(c.optional)continue;throw new TypeError('Expected "'+c.name+'" to not be empty')}for(var v=0;v<d.length;v++){if(l=u(d[v]),!o[s].test(l))throw new TypeError('Expected all "'+c.name+'" to match "'+c.pattern+'", but received `'+JSON.stringify(l)+"`");i+=(0===v?c.prefix:c.delimiter)+l}}else{if(l=c.asterisk?At(d):u(d),!o[s].test(l))throw new TypeError('Expected "'+c.name+'" to match "'+c.pattern+'", but received "'+l+'"');i+=c.prefix+l}}else i+=c}return i}}function It(t){return t.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function jt(t){return t.replace(/([=!:$\/()])/g,"\\$1")}function Nt(t,e){return t.keys=e,t}function Rt(t){return t&&t.sensitive?"":"i"}function Pt(t,e){var o=t.source.match(/\((?!\?)/g);if(o)for(var n=0;n<o.length;n++)e.push({name:n,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return Nt(t,e)}function Dt(t,e,o){for(var n=[],i=0;i<t.length;i++)n.push(qt(t[i],e,o).source);var r=new RegExp("(?:"+n.join("|")+")",Rt(o));return Nt(r,e)}function Ut(t,e,o){return Ft(Bt(t,o),e,o)}function Ft(t,e,o){kt(e)||(o=e||o,e=[]),o=o||{};for(var n=o.strict,i=!1!==o.end,r="",a=0;a<t.length;a++){var u=t[a];if("string"===typeof u)r+=It(u);else{var s=It(u.prefix),c="(?:"+u.pattern+")";e.push(u),u.repeat&&(c+="(?:"+s+c+")*"),c=u.optional?u.partial?s+"("+c+")?":"(?:"+s+"("+c+"))?":s+"("+c+")",r+=c}}var l=It(o.delimiter||"/"),d=r.slice(-l.length)===l;return n||(r=(d?r.slice(0,-l.length):r)+"(?:"+l+"(?=$))?"),r+=i?"$":n&&d?"":"(?="+l+"|$)",Nt(new RegExp("^"+r,Rt(o)),e)}function qt(t,e,o){return kt(e)||(o=e||o,e=[]),o=o||{},t instanceof RegExp?Pt(t,e):kt(t)?Dt(t,e,o):Ut(t,e,o)}Mt.parse=Vt,Mt.compile=Ht,Mt.tokensToFunction=Ct,Mt.tokensToRegExp=Lt;var Kt=Object.create(null);function Yt(t,e,o){e=e||{};try{var n=Kt[t]||(Kt[t]=Mt.compile(t));return"string"===typeof e.pathMatch&&(e[0]=e.pathMatch),n(e,{pretty:!0})}catch(t){return""}finally{delete e[0]}}function Gt(t,e,o,n){var i="string"===typeof t?{path:t}:t;if(i._normalized)return i;if(i.name){i=X({},t);var r=i.params;return r&&"object"===typeof r&&(i.params=X({},r)),i}if(!i.path&&i.params&&e){i=X({},i),i._normalized=!0;var a=X(X({},e.params),i.params);if(e.name)i.name=e.name,i.params=a;else if(e.matched.length){var u=e.matched[e.matched.length-1].path;i.path=Yt(u,a,"path "+e.path)}else 0;return i}var s=_t(i.path||""),c=e&&e.path||"/",l=s.path?xt(s.path,c,o||i.append):c,d=nt(s.query,i.query,n&&n.options.parseQuery),v=i.hash||s.hash;return v&&"#"!==v.charAt(0)&&(v="#"+v),{_normalized:!0,path:l,query:d,hash:v}}var Wt,Qt=[String,Object],Jt=[String,Array],Xt=function(){},Zt={name:"RouterLink",props:{to:{type:Qt,required:!0},tag:{type:String,default:"a"},custom:Boolean,exact:Boolean,exactPath:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:{type:String,default:"page"},event:{type:Jt,default:"click"}},render:function(t){var e=this,o=this.$router,n=this.$route,i=o.resolve(this.to,n,this.append),r=i.location,a=i.route,u=i.href,s={},c=o.options.linkActiveClass,l=o.options.linkExactActiveClass,d=null==c?"router-link-active":c,v=null==l?"router-link-exact-active":l,h=null==this.activeClass?d:this.activeClass,p=null==this.exactActiveClass?v:this.exactActiveClass,f=a.redirectedFrom?st(null,Gt(a.redirectedFrom),null,o):a;s[p]=ht(n,f,this.exactPath),s[h]=this.exact||this.exactPath?s[p]:ft(n,f);var m=s[p]?this.ariaCurrentValue:null,g=function(t){$t(t)&&(e.replace?o.replace(r,Xt):o.push(r,Xt))},b={click:$t};Array.isArray(this.event)?this.event.forEach(function(t){b[t]=g}):b[this.event]=g;var y={class:s},w=!this.$scopedSlots.$hasNormal&&this.$scopedSlots.default&&this.$scopedSlots.default({href:u,route:a,navigate:g,isActive:s[h],isExactActive:s[p]});if(w){if(1===w.length)return w[0];if(w.length>1||!w.length)return 0===w.length?t():t("span",{},w)}if("a"===this.tag)y.on=b,y.attrs={href:u,"aria-current":m};else{var x=te(this.$slots.default);if(x){x.isStatic=!1;var _=x.data=X({},x.data);for(var z in _.on=_.on||{},_.on){var k=_.on[z];z in b&&(_.on[z]=Array.isArray(k)?k:[k])}for(var M in b)M in _.on?_.on[M].push(b[M]):_.on[M]=g;var V=x.data.attrs=X({},x.data.attrs);V.href=u,V["aria-current"]=m}else y.on=b}return t(this.tag,y,this.$slots.default)}};function $t(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&(void 0===t.button||0===t.button)){if(t.currentTarget&&t.currentTarget.getAttribute){var e=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(e))return}return t.preventDefault&&t.preventDefault(),!0}}function te(t){if(t)for(var e,o=0;o<t.length;o++){if(e=t[o],"a"===e.tag)return e;if(e.children&&(e=te(e.children)))return e}}function ee(t){if(!ee.installed||Wt!==t){ee.installed=!0,Wt=t;var e=function(t){return void 0!==t},o=function(t,o){var n=t.$options._parentVnode;e(n)&&e(n=n.data)&&e(n=n.registerRouteInstance)&&n(t,o)};t.mixin({beforeCreate:function(){e(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),t.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,o(this,this)},destroyed:function(){o(this)}}),Object.defineProperty(t.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(t.prototype,"$route",{get:function(){return this._routerRoot._route}}),t.component("RouterView",bt),t.component("RouterLink",Zt);var n=t.config.optionMergeStrategies;n.beforeRouteEnter=n.beforeRouteLeave=n.beforeRouteUpdate=n.created}}var oe="undefined"!==typeof window;function ne(t,e,o,n,i){var r=e||[],a=o||Object.create(null),u=n||Object.create(null);t.forEach(function(t){ie(r,a,u,t,i)});for(var s=0,c=r.length;s<c;s++)"*"===r[s]&&(r.push(r.splice(s,1)[0]),c--,s--);return{pathList:r,pathMap:a,nameMap:u}}function ie(t,e,o,n,i,r){var a=n.path,u=n.name;var s=n.pathToRegexpOptions||{},c=ae(a,i,s.strict);"boolean"===typeof n.caseSensitive&&(s.sensitive=n.caseSensitive);var l={path:c,regex:re(c,s),components:n.components||{default:n.component},alias:n.alias?"string"===typeof n.alias?[n.alias]:n.alias:[],instances:{},enteredCbs:{},name:u,parent:i,matchAs:r,redirect:n.redirect,beforeEnter:n.beforeEnter,meta:n.meta||{},props:null==n.props?{}:n.components?n.props:{default:n.props}};if(n.children&&n.children.forEach(function(n){var i=r?zt(r+"/"+n.path):void 0;ie(t,e,o,n,l,i)}),e[l.path]||(t.push(l.path),e[l.path]=l),void 0!==n.alias)for(var d=Array.isArray(n.alias)?n.alias:[n.alias],v=0;v<d.length;++v){var h=d[v];0;var p={path:h,children:n.children};ie(t,e,o,p,i,l.path||"/")}u&&(o[u]||(o[u]=l))}function re(t,e){var o=Mt(t,[],e);return o}function ae(t,e,o){return o||(t=t.replace(/\/$/,"")),"/"===t[0]?t:null==e?t:zt(e.path+"/"+t)}function ue(t,e){var o=ne(t),n=o.pathList,i=o.pathMap,r=o.nameMap;function a(t){ne(t,n,i,r)}function u(t,e){var o="object"!==typeof t?r[t]:void 0;ne([e||t],n,i,r,o),o&&o.alias.length&&ne(o.alias.map(function(t){return{path:t,children:[e]}}),n,i,r,o)}function s(){return n.map(function(t){return i[t]})}function c(t,o,a){var u=Gt(t,o,!1,e),s=u.name;if(s){var c=r[s];if(!c)return v(null,u);var l=c.regex.keys.filter(function(t){return!t.optional}).map(function(t){return t.name});if("object"!==typeof u.params&&(u.params={}),o&&"object"===typeof o.params)for(var d in o.params)!(d in u.params)&&l.indexOf(d)>-1&&(u.params[d]=o.params[d]);return u.path=Yt(c.path,u.params,'named route "'+s+'"'),v(c,u,a)}if(u.path){u.params={};for(var h=0;h<n.length;h++){var p=n[h],f=i[p];if(se(f.regex,u.path,u.params))return v(f,u,a)}}return v(null,u)}function l(t,o){var n=t.redirect,i="function"===typeof n?n(st(t,o,null,e)):n;if("string"===typeof i&&(i={path:i}),!i||"object"!==typeof i)return v(null,o);var a=i,u=a.name,s=a.path,l=o.query,d=o.hash,h=o.params;if(l=a.hasOwnProperty("query")?a.query:l,d=a.hasOwnProperty("hash")?a.hash:d,h=a.hasOwnProperty("params")?a.params:h,u){r[u];return c({_normalized:!0,name:u,query:l,hash:d,params:h},void 0,o)}if(s){var p=ce(s,t),f=Yt(p,h,'redirect route with path "'+p+'"');return c({_normalized:!0,path:f,query:l,hash:d},void 0,o)}return v(null,o)}function d(t,e,o){var n=Yt(o,e.params,'aliased route with path "'+o+'"'),i=c({_normalized:!0,path:n});if(i){var r=i.matched,a=r[r.length-1];return e.params=i.params,v(a,e)}return v(null,e)}function v(t,o,n){return t&&t.redirect?l(t,n||o):t&&t.matchAs?d(t,o,t.matchAs):st(t,o,n,e)}return{match:c,addRoute:u,getRoutes:s,addRoutes:a}}function se(t,e,o){var n=e.match(t);if(!n)return!1;if(!o)return!0;for(var i=1,r=n.length;i<r;++i){var a=t.keys[i-1];a&&(o[a.name||"pathMatch"]="string"===typeof n[i]?ot(n[i]):n[i])}return!0}function ce(t,e){return xt(t,e.parent?e.parent.path:"/",!0)}var le=oe&&window.performance&&window.performance.now?window.performance:Date;function de(){return le.now().toFixed(3)}var ve=de();function he(){return ve}function pe(t){return ve=t}var fe=Object.create(null);function me(){"scrollRestoration"in window.history&&(window.history.scrollRestoration="manual");var t=window.location.protocol+"//"+window.location.host,e=window.location.href.replace(t,""),o=X({},window.history.state);return o.key=he(),window.history.replaceState(o,"",e),window.addEventListener("popstate",ye),function(){window.removeEventListener("popstate",ye)}}function ge(t,e,o,n){if(t.app){var i=t.options.scrollBehavior;i&&t.app.$nextTick(function(){var r=we(),a=i.call(t,e,o,n?r:null);a&&("function"===typeof a.then?a.then(function(t){He(t,r)}).catch(function(t){0}):He(a,r))})}}function be(){var t=he();t&&(fe[t]={x:window.pageXOffset,y:window.pageYOffset})}function ye(t){be(),t.state&&t.state.key&&pe(t.state.key)}function we(){var t=he();if(t)return fe[t]}function xe(t,e){var o=document.documentElement,n=o.getBoundingClientRect(),i=t.getBoundingClientRect();return{x:i.left-n.left-e.x,y:i.top-n.top-e.y}}function _e(t){return Me(t.x)||Me(t.y)}function ze(t){return{x:Me(t.x)?t.x:window.pageXOffset,y:Me(t.y)?t.y:window.pageYOffset}}function ke(t){return{x:Me(t.x)?t.x:0,y:Me(t.y)?t.y:0}}function Me(t){return"number"===typeof t}var Ve=/^#\d/;function He(t,e){var o="object"===typeof t;if(o&&"string"===typeof t.selector){var n=Ve.test(t.selector)?document.getElementById(t.selector.slice(1)):document.querySelector(t.selector);if(n){var i=t.offset&&"object"===typeof t.offset?t.offset:{};i=ke(i),e=xe(n,i)}else _e(t)&&(e=ze(t))}else o&&_e(t)&&(e=ze(t));e&&("scrollBehavior"in document.documentElement.style?window.scrollTo({left:e.x,top:e.y,behavior:t.behavior}):window.scrollTo(e.x,e.y))}var Ce=oe&&function(){var t=window.navigator.userAgent;return(-1===t.indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&(window.history&&"function"===typeof window.history.pushState)}();function Le(t,e){be();var o=window.history;try{if(e){var n=X({},o.state);n.key=he(),o.replaceState(n,"",t)}else o.pushState({key:pe(de())},"",t)}catch(o){window.location[e?"replace":"assign"](t)}}function Se(t){Le(t,!0)}var Be={redirected:2,aborted:4,cancelled:8,duplicated:16};function Ee(t,e){return Ie(t,e,Be.redirected,'Redirected when going from "'+t.fullPath+'" to "'+Ne(e)+'" via a navigation guard.')}function Oe(t,e){var o=Ie(t,e,Be.duplicated,'Avoided redundant navigation to current location: "'+t.fullPath+'".');return o.name="NavigationDuplicated",o}function Ae(t,e){return Ie(t,e,Be.cancelled,'Navigation cancelled from "'+t.fullPath+'" to "'+e.fullPath+'" with a new navigation.')}function Te(t,e){return Ie(t,e,Be.aborted,'Navigation aborted from "'+t.fullPath+'" to "'+e.fullPath+'" via a navigation guard.')}function Ie(t,e,o,n){var i=new Error(n);return i._isRouter=!0,i.from=t,i.to=e,i.type=o,i}var je=["params","query","hash"];function Ne(t){if("string"===typeof t)return t;if("path"in t)return t.path;var e={};return je.forEach(function(o){o in t&&(e[o]=t[o])}),JSON.stringify(e,null,2)}function Re(t){return Object.prototype.toString.call(t).indexOf("Error")>-1}function Pe(t,e){return Re(t)&&t._isRouter&&(null==e||t.type===e)}function De(t,e,o){var n=function(i){i>=t.length?o():t[i]?e(t[i],function(){n(i+1)}):n(i+1)};n(0)}function Ue(t){return function(e,o,n){var i=!1,r=0,a=null;Fe(t,function(t,e,o,u){if("function"===typeof t&&void 0===t.cid){i=!0,r++;var s,c=Ge(function(e){Ye(e)&&(e=e.default),t.resolved="function"===typeof e?e:Wt.extend(e),o.components[u]=e,r--,r<=0&&n()}),l=Ge(function(t){var e="Failed to resolve async component "+u+": "+t;a||(a=Re(t)?t:new Error(e),n(a))});try{s=t(c,l)}catch(t){l(t)}if(s)if("function"===typeof s.then)s.then(c,l);else{var d=s.component;d&&"function"===typeof d.then&&d.then(c,l)}}}),i||n()}}function Fe(t,e){return qe(t.map(function(t){return Object.keys(t.components).map(function(o){return e(t.components[o],t.instances[o],t,o)})}))}function qe(t){return Array.prototype.concat.apply([],t)}var Ke="function"===typeof Symbol&&"symbol"===typeof Symbol.toStringTag;function Ye(t){return t.__esModule||Ke&&"Module"===t[Symbol.toStringTag]}function Ge(t){var e=!1;return function(){var o=[],n=arguments.length;while(n--)o[n]=arguments[n];if(!e)return e=!0,t.apply(this,o)}}var We=function(t,e){this.router=t,this.base=Qe(e),this.current=lt,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[],this.listeners=[]};function Qe(t){if(!t)if(oe){var e=document.querySelector("base");t=e&&e.getAttribute("href")||"/",t=t.replace(/^https?:\/\/[^\/]+/,"")}else t="/";return"/"!==t.charAt(0)&&(t="/"+t),t.replace(/\/$/,"")}function Je(t,e){var o,n=Math.max(t.length,e.length);for(o=0;o<n;o++)if(t[o]!==e[o])break;return{updated:e.slice(0,o),activated:e.slice(o),deactivated:t.slice(o)}}function Xe(t,e,o,n){var i=Fe(t,function(t,n,i,r){var a=Ze(t,e);if(a)return Array.isArray(a)?a.map(function(t){return o(t,n,i,r)}):o(a,n,i,r)});return qe(n?i.reverse():i)}function Ze(t,e){return"function"!==typeof t&&(t=Wt.extend(t)),t.options[e]}function $e(t){return Xe(t,"beforeRouteLeave",eo,!0)}function to(t){return Xe(t,"beforeRouteUpdate",eo)}function eo(t,e){if(e)return function(){return t.apply(e,arguments)}}function oo(t){return Xe(t,"beforeRouteEnter",function(t,e,o,n){return no(t,o,n)})}function no(t,e,o){return function(n,i,r){return t(n,i,function(t){"function"===typeof t&&(e.enteredCbs[o]||(e.enteredCbs[o]=[]),e.enteredCbs[o].push(t)),r(t)})}}We.prototype.listen=function(t){this.cb=t},We.prototype.onReady=function(t,e){this.ready?t():(this.readyCbs.push(t),e&&this.readyErrorCbs.push(e))},We.prototype.onError=function(t){this.errorCbs.push(t)},We.prototype.transitionTo=function(t,e,o){var n,i=this;try{n=this.router.match(t,this.current)}catch(t){throw this.errorCbs.forEach(function(e){e(t)}),t}var r=this.current;this.confirmTransition(n,function(){i.updateRoute(n),e&&e(n),i.ensureURL(),i.router.afterHooks.forEach(function(t){t&&t(n,r)}),i.ready||(i.ready=!0,i.readyCbs.forEach(function(t){t(n)}))},function(t){o&&o(t),t&&!i.ready&&(Pe(t,Be.redirected)&&r===lt||(i.ready=!0,i.readyErrorCbs.forEach(function(e){e(t)})))})},We.prototype.confirmTransition=function(t,e,o){var n=this,i=this.current;this.pending=t;var r=function(t){!Pe(t)&&Re(t)&&(n.errorCbs.length?n.errorCbs.forEach(function(e){e(t)}):console.error(t)),o&&o(t)},a=t.matched.length-1,u=i.matched.length-1;if(ht(t,i)&&a===u&&t.matched[a]===i.matched[u])return this.ensureURL(),t.hash&&ge(this.router,i,t,!1),r(Oe(i,t));var s=Je(this.current.matched,t.matched),c=s.updated,l=s.deactivated,d=s.activated,v=[].concat($e(l),this.router.beforeHooks,to(c),d.map(function(t){return t.beforeEnter}),Ue(d)),h=function(e,o){if(n.pending!==t)return r(Ae(i,t));try{e(t,i,function(e){!1===e?(n.ensureURL(!0),r(Te(i,t))):Re(e)?(n.ensureURL(!0),r(e)):"string"===typeof e||"object"===typeof e&&("string"===typeof e.path||"string"===typeof e.name)?(r(Ee(i,t)),"object"===typeof e&&e.replace?n.replace(e):n.push(e)):o(e)})}catch(t){r(t)}};De(v,h,function(){var o=oo(d),a=o.concat(n.router.resolveHooks);De(a,h,function(){if(n.pending!==t)return r(Ae(i,t));n.pending=null,e(t),n.router.app&&n.router.app.$nextTick(function(){gt(t)})})})},We.prototype.updateRoute=function(t){this.current=t,this.cb&&this.cb(t)},We.prototype.setupListeners=function(){},We.prototype.teardown=function(){this.listeners.forEach(function(t){t()}),this.listeners=[],this.current=lt,this.pending=null};var io=function(t){function e(e,o){t.call(this,e,o),this._startLocation=ro(this.base)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,o=e.options.scrollBehavior,n=Ce&&o;n&&this.listeners.push(me());var i=function(){var o=t.current,i=ro(t.base);t.current===lt&&i===t._startLocation||t.transitionTo(i,function(t){n&&ge(e,t,o,!0)})};window.addEventListener("popstate",i),this.listeners.push(function(){window.removeEventListener("popstate",i)})}},e.prototype.go=function(t){window.history.go(t)},e.prototype.push=function(t,e,o){var n=this,i=this,r=i.current;this.transitionTo(t,function(t){Le(zt(n.base+t.fullPath)),ge(n.router,t,r,!1),e&&e(t)},o)},e.prototype.replace=function(t,e,o){var n=this,i=this,r=i.current;this.transitionTo(t,function(t){Se(zt(n.base+t.fullPath)),ge(n.router,t,r,!1),e&&e(t)},o)},e.prototype.ensureURL=function(t){if(ro(this.base)!==this.current.fullPath){var e=zt(this.base+this.current.fullPath);t?Le(e):Se(e)}},e.prototype.getCurrentLocation=function(){return ro(this.base)},e}(We);function ro(t){var e=window.location.pathname,o=e.toLowerCase(),n=t.toLowerCase();return!t||o!==n&&0!==o.indexOf(zt(n+"/"))||(e=e.slice(t.length)),(e||"/")+window.location.search+window.location.hash}var ao=function(t){function e(e,o,n){t.call(this,e,o),n&&uo(this.base)||so()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.setupListeners=function(){var t=this;if(!(this.listeners.length>0)){var e=this.router,o=e.options.scrollBehavior,n=Ce&&o;n&&this.listeners.push(me());var i=function(){var e=t.current;so()&&t.transitionTo(co(),function(o){n&&ge(t.router,o,e,!0),Ce||ho(o.fullPath)})},r=Ce?"popstate":"hashchange";window.addEventListener(r,i),this.listeners.push(function(){window.removeEventListener(r,i)})}},e.prototype.push=function(t,e,o){var n=this,i=this,r=i.current;this.transitionTo(t,function(t){vo(t.fullPath),ge(n.router,t,r,!1),e&&e(t)},o)},e.prototype.replace=function(t,e,o){var n=this,i=this,r=i.current;this.transitionTo(t,function(t){ho(t.fullPath),ge(n.router,t,r,!1),e&&e(t)},o)},e.prototype.go=function(t){window.history.go(t)},e.prototype.ensureURL=function(t){var e=this.current.fullPath;co()!==e&&(t?vo(e):ho(e))},e.prototype.getCurrentLocation=function(){return co()},e}(We);function uo(t){var e=ro(t);if(!/^\/#/.test(e))return window.location.replace(zt(t+"/#"+e)),!0}function so(){var t=co();return"/"===t.charAt(0)||(ho("/"+t),!1)}function co(){var t=window.location.href,e=t.indexOf("#");return e<0?"":(t=t.slice(e+1),t)}function lo(t){var e=window.location.href,o=e.indexOf("#"),n=o>=0?e.slice(0,o):e;return n+"#"+t}function vo(t){Ce?Le(lo(t)):window.location.hash=t}function ho(t){Ce?Se(lo(t)):window.location.replace(lo(t))}var po=function(t){function e(e,o){t.call(this,e,o),this.stack=[],this.index=-1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.push=function(t,e,o){var n=this;this.transitionTo(t,function(t){n.stack=n.stack.slice(0,n.index+1).concat(t),n.index++,e&&e(t)},o)},e.prototype.replace=function(t,e,o){var n=this;this.transitionTo(t,function(t){n.stack=n.stack.slice(0,n.index).concat(t),e&&e(t)},o)},e.prototype.go=function(t){var e=this,o=this.index+t;if(!(o<0||o>=this.stack.length)){var n=this.stack[o];this.confirmTransition(n,function(){var t=e.current;e.index=o,e.updateRoute(n),e.router.afterHooks.forEach(function(e){e&&e(n,t)})},function(t){Pe(t,Be.duplicated)&&(e.index=o)})}},e.prototype.getCurrentLocation=function(){var t=this.stack[this.stack.length-1];return t?t.fullPath:"/"},e.prototype.ensureURL=function(){},e}(We),fo=function(t){void 0===t&&(t={}),this.app=null,this.apps=[],this.options=t,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=ue(t.routes||[],this);var e=t.mode||"hash";switch(this.fallback="history"===e&&!Ce&&!1!==t.fallback,this.fallback&&(e="hash"),oe||(e="abstract"),this.mode=e,e){case"history":this.history=new io(this,t.base);break;case"hash":this.history=new ao(this,t.base,this.fallback);break;case"abstract":this.history=new po(this,t.base);break;default:0}},mo={currentRoute:{configurable:!0}};fo.prototype.match=function(t,e,o){return this.matcher.match(t,e,o)},mo.currentRoute.get=function(){return this.history&&this.history.current},fo.prototype.init=function(t){var e=this;if(this.apps.push(t),t.$once("hook:destroyed",function(){var o=e.apps.indexOf(t);o>-1&&e.apps.splice(o,1),e.app===t&&(e.app=e.apps[0]||null),e.app||e.history.teardown()}),!this.app){this.app=t;var o=this.history;if(o instanceof io||o instanceof ao){var n=function(t){var n=o.current,i=e.options.scrollBehavior,r=Ce&&i;r&&"fullPath"in t&&ge(e,t,n,!1)},i=function(t){o.setupListeners(),n(t)};o.transitionTo(o.getCurrentLocation(),i,i)}o.listen(function(t){e.apps.forEach(function(e){e._route=t})})}},fo.prototype.beforeEach=function(t){return bo(this.beforeHooks,t)},fo.prototype.beforeResolve=function(t){return bo(this.resolveHooks,t)},fo.prototype.afterEach=function(t){return bo(this.afterHooks,t)},fo.prototype.onReady=function(t,e){this.history.onReady(t,e)},fo.prototype.onError=function(t){this.history.onError(t)},fo.prototype.push=function(t,e,o){var n=this;if(!e&&!o&&"undefined"!==typeof Promise)return new Promise(function(e,o){n.history.push(t,e,o)});this.history.push(t,e,o)},fo.prototype.replace=function(t,e,o){var n=this;if(!e&&!o&&"undefined"!==typeof Promise)return new Promise(function(e,o){n.history.replace(t,e,o)});this.history.replace(t,e,o)},fo.prototype.go=function(t){this.history.go(t)},fo.prototype.back=function(){this.go(-1)},fo.prototype.forward=function(){this.go(1)},fo.prototype.getMatchedComponents=function(t){var e=t?t.matched?t:this.resolve(t).route:this.currentRoute;return e?[].concat.apply([],e.matched.map(function(t){return Object.keys(t.components).map(function(e){return t.components[e]})})):[]},fo.prototype.resolve=function(t,e,o){e=e||this.history.current;var n=Gt(t,e,o,this),i=this.match(n,e),r=i.redirectedFrom||i.fullPath,a=this.history.base,u=yo(a,r,this.mode);return{location:n,route:i,href:u,normalizedTo:n,resolved:i}},fo.prototype.getRoutes=function(){return this.matcher.getRoutes()},fo.prototype.addRoute=function(t,e){this.matcher.addRoute(t,e),this.history.current!==lt&&this.history.transitionTo(this.history.getCurrentLocation())},fo.prototype.addRoutes=function(t){this.matcher.addRoutes(t),this.history.current!==lt&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(fo.prototype,mo);var go=fo;function bo(t,e){return t.push(e),function(){var o=t.indexOf(e);o>-1&&t.splice(o,1)}}function yo(t,e,o){var n="hash"===o?"#"+e:e;return t?zt(t+"/"+n):n}fo.install=ee,fo.version="3.6.5",fo.isNavigationFailure=Pe,fo.NavigationFailureType=Be,fo.START_LOCATION=lt,oe&&window.Vue&&window.Vue.use(fo);var wo=function(){var t=this,e=t._self._c;return e("div",[e("split-pane",[t.defer(2)?e("component-tree",{attrs:{slot:"left",instances:t.instances},slot:"left"}):t._e(),t.defer(3)?e("component-inspector",{attrs:{slot:"right",target:t.inspectedInstance,loading:t.loading},slot:"right"}):t._e()],1)],1)},xo=[],_o=function(t=10){return{data(){return{displayPriority:0}},mounted(){this.runDisplayPriority()},methods:{runDisplayPriority(){var e=()=>{requestAnimationFrame(()=>{this.displayPriority++,this.displayPriority<t&&e()})};e()},defer(t){return this.displayPriority>=t}}}},zo=function(){var t=this,e=t._self._c;return e("div",{staticClass:"split-pane",class:t.classes,on:{mousemove:t.dragMove,mouseup:t.dragEnd,mouseleave:t.dragEnd}},[e("div",{staticClass:"left top",style:t.leftStyles},[t._t("left"),e("div",{staticClass:"dragger",on:{mousedown:function(e){return e.preventDefault(),t.dragStart.apply(null,arguments)}}})],2),e("div",{staticClass:"right bottom",style:t.rightStyles},[t._t("right")],2)])},ko=[],Mo={data(){return{split:50,dragging:!1}},computed:Object.assign({},Object(V["e"])(["view"]),{leftStyles(){var t={["vertical"===this.view?"width":"height"]:`${this.boundSplit}%`};return t},rightStyles(){var t={["vertical"===this.view?"width":"height"]:`${100-this.boundSplit}%`};return t},classes(){return[{dragging:this.dragging},this.view]},boundSplit(){var t=this.split;return t<20?20:t>80?80:t}}),methods:{dragStart(t){this.dragging=!0,this.startPosition="vertical"===this.view?t.pageX:t.pageY,this.startSplit=this.boundSplit},dragMove(t){if(this.dragging){var e,o;"vertical"===this.view?(e=t.pageX,o=this.$el.offsetWidth):(e=t.pageY,o=this.$el.offsetHeight);var n=e-this.startPosition;this.split=this.startSplit+~~(n/o*100)}},dragEnd(){this.dragging=!1}}},Vo=Mo,Ho=(o(107),z(Vo,zo,ko,!1,null,"6dcc089c",null)),Co=Ho.exports,Lo=function(){var t=this,e=t._self._c;return e("scroll-pane",[e("action-header",{attrs:{slot:"header"},slot:"header"},[e("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("ComponentTree.filter.tooltip"),expression:"$t('ComponentTree.filter.tooltip')"}],staticClass:"search"},[e("VueIcon",{attrs:{icon:"search"}}),e("input",{ref:"filterInstances",attrs:{placeholder:"Filter components"},on:{input:t.filterInstances}})],1),e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("ComponentTree.select.tooltip"),expression:"$t('ComponentTree.select.tooltip')"}],staticClass:"button select-component",class:{active:t.selecting},on:{click:function(e){return t.setSelecting(!t.selecting)}}},[e("VueIcon",{attrs:{icon:t.selecting?"gps_fixed":"gps_not_fixed"}}),e("span",[t._v("Select")])],1)]),e("div",{staticClass:"tree",class:{"high-density":t.finalHighDensity},attrs:{slot:"scroll"},slot:"scroll"},t._l(t.instances,function(t){return e("component-instance",{key:t.id,ref:"instances",refInFor:!0,attrs:{instance:t,depth:0}})}),1)],1)},So=[],Bo=function(){var t=this,e=t._self._c;return e("div",{staticClass:"scroll-pane"},[e("div",{staticClass:"header"},[t._t("header")],2),t.defer(2)?e("div",{staticClass:"scroll"},[t._t("scroll")],2):t._e(),t.$slots.footer?e("div",{staticClass:"footer"},[t._t("footer")],2):t._e()])},Eo=[],Oo={mixins:[_o()]},Ao=Oo,To=(o(109),z(Ao,Bo,Eo,!1,null,"4991849c",null)),Io=To.exports,jo=function(){var t=this,e=t._self._c;return e("div",{staticClass:"action-header"},[t._t("default")],2)},No=[],Ro=(o(111),{}),Po=z(Ro,jo,No,!1,null,"e04f8976",null),Do=Po.exports,Uo=function(){var t=this,e=t._self._c;return e("div",{staticClass:"instance",class:{inactive:t.instance.inactive&&!t.instance.parent.inactive,selected:t.selected}},[e("div",{ref:"self",staticClass:"self selectable-item",class:{selected:t.selected},style:{paddingLeft:15*t.depth+"px"},on:{click:function(e){return e.stopPropagation(),t.select.apply(null,arguments)},dblclick:function(e){return e.stopPropagation(),t.toggle.apply(null,arguments)},mouseenter:t.enter,mouseleave:t.leave}},[e("span",{staticClass:"content"},[t.instance.children.length?e("span",{staticClass:"arrow-wrapper",on:{click:function(e){return e.stopPropagation(),t.toggle.apply(null,arguments)}}},[e("span",{staticClass:"arrow right",class:{rotated:t.expanded}})]):t._e(),e("span",{staticClass:"angle-bracket"},[t._v("<")]),e("span",{staticClass:"item-name"},[t._v(t._s(t.displayName))]),t.componentHasKey?e("span",{staticClass:"attr"},[e("span",{staticClass:"attr-title"},[t._v(" key")]),t._v("="),e("span",{staticClass:"attr-value"},[t._v(t._s(t.instance.renderKey))])]):t._e(),e("span",{staticClass:"angle-bracket"},[t._v(">")])]),t.instance.consoleId?e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("ComponentInstance.consoleId.tooltip",{id:t.instance.consoleId}),expression:"$t('ComponentInstance.consoleId.tooltip', { id: instance.consoleId })"}],staticClass:"info console"},[t._v("\n = "+t._s(t.instance.consoleId)+"\n ")]):t._e(),t.instance.isRouterView?e("span",{staticClass:"info router-view"},[t._v("\n router-view"+t._s(t.instance.matchedRouteSegment?": "+t.instance.matchedRouteSegment:null)+"\n ")]):t._e(),t.instance.isFragment?e("span",{staticClass:"info fragment"},[t._v("\n fragment\n ")]):t._e(),t.instance.functional?e("span",{staticClass:"info functional"},[t._v("\n functional\n ")]):t._e(),t.instance.inactive?e("span",{staticClass:"info inactive"},[t._v("\n inactive\n ")]):t._e(),e("span",{staticClass:"spacer"}),e("VueIcon",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Scroll into view",expression:"'Scroll into view'"}],staticClass:"icon-button",attrs:{icon:"visibility"},on:{click:t.scrollToInstance}})],1),t.expanded?e("div",t._l(t.sortedChildren,function(o){return e("component-instance",{key:o.id,attrs:{instance:o,depth:t.depth+1}})}),1):t._e()])},Fo=[],qo={name:"ComponentInstance",props:{instance:{type:Object,required:!0},depth:{type:Number,required:!0}},computed:Object.assign({},Object(V["e"])("components",["expansionMap","inspectedInstance","inspectedInstanceId","scrollToExpanded"]),{expanded(){return!!this.expansionMap[this.instance.id]},selected(){return this.instance.id===this.inspectedInstanceId},sortedChildren(){return this.instance.children.slice().sort((t,e)=>{return t.top===e.top?t.id-e.id:t.top-e.top})},displayName(){return Object(s["l"])(this.instance.name,this.$shared.componentNameStyle)},componentHasKey(){return(0===this.instance.renderKey||!!this.instance.renderKey)&&this.instance.renderKey!==s["e"]}}),watch:{scrollToExpanded:{handler(t,e){t!==e&&t===this.instance.id&&this.scrollIntoView()},immediate:!0}},created(){0===this.depth&&this.expand()},methods:Object.assign({},Object(V["d"])("components",{inspectInstance:"INSPECT_INSTANCE"}),{toggle(t){this.toggleWithValue(!this.expanded,t.altKey)},expand(){this.toggleWithValue(!0)},collapse(){this.toggleWithValue(!1)},toggleWithValue(t,e=!1){this.$store.dispatch("components/toggleInstance",{instance:this.instance,expanded:t,recursive:e})},select(){this.inspectInstance(this.instance),bridge.send("select-instance",this.instance.id)},enter(){bridge.send("enter-instance",this.instance.id)},leave(){bridge.send("leave-instance",this.instance.id)},scrollToInstance(){bridge.send("scroll-to-instance",this.instance.id)},scrollIntoView(t=!0){this.$nextTick(()=>{Object(s["t"])(this.$globalRefs.leftScroll,this.$refs.self,t)})}})},Ko=qo,Yo=(o(113),z(Ko,Uo,Fo,!1,null,"3dec50ca",null)),Go=Yo.exports,Wo={components:{ScrollPane:Io,ActionHeader:Do,ComponentInstance:Go},mixins:[b({onKeyDown(t){var e=t.key,o=t.modifiers;switch(o){case"ctrl":if("f"===e)return Object(s["j"])(this.$refs.filterInstances),!1;break;case"":if([c,d,l,v].includes(e)){var n=Jo(this.$refs.instances);if(!n.length)return;var i,{current:r,currentIndex:a}=Xo(n,t=>t.selected);if(!r)return;return e===c?r.expanded&&r.$children.filter(Qo).length?r.collapse():r.$parent&&r.$parent.expanded&&(i=r.$parent):e===d?r.expanded&&r.$children.filter(Qo).length?i=Zo(n,a+1):r.expand():e===l?i=Zo(n,a-1):e===v&&(i=Zo(n,a+1)),i&&(i.select(),i.scrollIntoView(!1)),!1}"s"===e&&this.setSelecting(!this.selecting)}}})],props:{instances:{type:Array,required:!0}},data(){return{selecting:!1,highDensity:!1}},computed:Object.assign({},Object(V["e"])("components",["expansionMap"]),Object(V["c"])("components",["totalCount"]),{finalHighDensity(){return"auto"===this.$shared.displayDensity?this.highDensity:"high"===this.$shared.displayDensity}}),watch:{expansionMap:{handler:"updateAutoDensity",deep:!0,immediate:!0},totalCount:"updateAutoDensity","$responsive.height":"updateAutoDensity"},mounted(){bridge.on("instance-selected",this.stopSelector),bridge.on("stop-component-selector",this.stopSelector)},beforeDestroy(){this.setSelecting(!1),bridge.off("instance-selected",this.stopSelector),bridge.off("stop-selector",this.stopSelector)},methods:{stopSelector(){this.setSelecting(!1)},filterInstances(t){bridge.send("filter-instances",Object(s["g"])(t.target.value))},setSelecting(t){this.selecting!==t&&(this.selecting=t,this.selecting?bridge.send("start-component-selector"):bridge.send("stop-component-selector"))},updateAutoDensity(){"auto"===this.$shared.displayDensity&&this.$nextTick(()=>{var t=this.$isChrome?this.$responsive.height:this.$root.$el.offsetHeight,e=this.$el.querySelectorAll(".instance").length,o=22*e,n=t-(t<=350?76:111);this.highDensity=o>=n})}}},Qo=t=>"undefined"!==typeof t&&"undefined"!==typeof t.instance,Jo=t=>t.reduce((t,e)=>{return Qo(e)&&t.push(e),t=t.concat(Jo(e.$children)),t},[]);function Xo(t,e){for(var o=0;o<t.length;o++)if(e(t[o]))return{current:t[o],currentIndex:o};return{current:null,currentIndex:-1}}function Zo(t,e){return e<0?t[0]:e>=t.length?t[t.length-1]:t[e]}var $o=Wo,tn=(o(115),z($o,Lo,So,!1,null,null,null)),en=tn.exports,on=function(){var t=this,e=t._self._c;return e("scroll-pane",[e("action-header",{directives:[{name:"show",rawName:"v-show",value:t.hasTarget,expression:"hasTarget"}],attrs:{slot:"header"},slot:"header"},[e("span",{staticClass:"title"},[e("span",{staticClass:"title-bracket"},[t._v("<")]),e("span",[t._v(t._s(t.targetName))]),e("span",{staticClass:"title-bracket"},[t._v(">")])]),e("div",{staticClass:"search"},[e("VueIcon",{attrs:{icon:"search"}}),e("input",{directives:[{name:"model",rawName:"v-model.trim",value:t.filter,expression:"filter",modifiers:{trim:!0}}],attrs:{placeholder:"Filter inspected data"},domProps:{value:t.filter},on:{input:function(e){e.target.composing||(t.filter=e.target.value.trim())},blur:function(e){return t.$forceUpdate()}}})],1),t.loading?e("VueLoadingIndicator",{staticClass:"primary"}):t._e(),t.$isChrome?e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Inspect DOM",expression:"'Inspect DOM'"}],staticClass:"button inspect",on:{click:t.inspectDOM}},[e("VueIcon",{attrs:{icon:"code"}}),e("span",[t._v("Inspect DOM")])],1):t._e(),t.fileIsPath?e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("ComponentInspector.openInEditor.tooltip",{file:t.target.file}),expression:"$t('ComponentInspector.openInEditor.tooltip', { file: target.file })"}],staticClass:"button",on:{click:t.openInEditor}},[e("VueIcon",{attrs:{icon:"launch"}}),e("span",[t._v("Open in editor")])],1):t._e()],1),e("template",{slot:"scroll"},[t.hasTarget?t.target.state&&t.target.state.length?e("section",{staticClass:"data"},[e("state-inspector",{staticClass:"component-state-inspector",attrs:{state:t.filteredState}})],1):e("div",{staticClass:"notice"},[e("div",[t._v("This instance has no reactive state.")])]):e("section",{staticClass:"notice"},[e("div",[t._v("Select a component instance to inspect.")])])])],2)},nn=[],rn=function(){var t=this,e=t._self._c;return e("div",{staticClass:"data-wrapper"},t._l(t.dataTypes,function(o,n){return e("div",{key:o,class:["data-el",t.toDisplayType(o,!0),{"high-density":t.highDensity,dim:-1!==t.dimAfter&&n>=t.dimAfter}]},[e("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("StateInspector.dataType.tooltip"),expression:"$t('StateInspector.dataType.tooltip')"}],staticClass:"data-type selectable-item",on:{click:function(e){return t.toggle(o,e)}}},[e("span",{staticClass:"arrow right",class:{rotated:t.isExpanded(o)}}),e("span",{staticClass:"key"},[t._v(t._s(t.toDisplayType(o)))])]),e("div",{directives:[{name:"show",rawName:"v-show",value:t.isExpanded(o),expression:"isExpanded(dataType)"}],staticClass:"data-fields"},[Array.isArray(t.state[o])?t._l(t.state[o],function(o){return e("data-field",{key:o.key,attrs:{field:o,depth:0,path:o.key,editable:o.editable,"force-collapse":t.forceCollapse,"is-state-field":t.isStateField(o)}})}):t._l(t.state[o],function(t,o){return e("data-field",{key:o,attrs:{field:{value:t,key:o},depth:0,path:o,editable:!1}})})],2)])}),0)},an=[],un=function(){var t=this,e=t._self._c;return e("div",{staticClass:"data-field"},[e("VTooltip",{staticClass:"self",class:{"force-toolbar":t.contextMenuOpen||t.editing},style:{marginLeft:14*t.depth+"px"},attrs:{disabled:!t.field.meta,placement:"left",offset:"24"},nativeOn:{click:function(e){return t.onClick.apply(null,arguments)},mouseenter:function(e){return t.onContextMenuMouseEnter.apply(null,arguments)},mouseleave:function(e){return t.onContextMenuMouseLeave.apply(null,arguments)}},scopedSlots:t._u([{key:"popper",fn:function(){return[t.field.meta?e("div",{staticClass:"meta"},t._l(t.field.meta,function(o,n){return e("div",{key:n,staticClass:"meta-field"},[e("span",{staticClass:"key"},[t._v(t._s(n))]),e("span",{staticClass:"value"},[t._v(t._s(o))])])}),0):t._e()]},proxy:!0}])},[e("span",{directives:[{name:"show",rawName:"v-show",value:t.isExpandableType,expression:"isExpandableType"}],staticClass:"arrow right",class:{rotated:t.expanded}}),t.editing&&t.renamable?e("span",[e("input",{directives:[{name:"model",rawName:"v-model",value:t.editedKey,expression:"editedKey"}],ref:"keyInput",staticClass:"edit-input key-input",class:{error:!t.keyValid},domProps:{value:t.editedKey},on:{"!keydown":function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:(e.stopPropagation(),e.preventDefault(),t.cancelEdit())},keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.submitEdit()},input:function(e){e.target.composing||(t.editedKey=e.target.value)}}})]):e("span",{staticClass:"key",class:{abstract:t.fieldOptions.abstract}},[t._v(t._s(t.field.key))]),t.fieldOptions.abstract?t._e():e("span",{staticClass:"colon"},[t._v(":")]),t.editing?e("span",{staticClass:"edit-overlay"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.editedValue,expression:"editedValue"}],ref:"editInput",staticClass:"edit-input value-input",class:{error:!t.valueValid},attrs:{list:"special-tokens"},domProps:{value:t.editedValue},on:{"!keydown":function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:(e.stopPropagation(),e.preventDefault(),t.cancelEdit())},keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.submitEdit()},input:function(e){e.target.composing||(t.editedValue=e.target.value)}}}),e("span",{staticClass:"actions"},[t.editValid?[e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("DataField.edit.cancel.tooltip"),expression:"$t('DataField.edit.cancel.tooltip')"}],staticClass:"icon-button flat",attrs:{"icon-left":"cancel"},on:{click:function(e){return t.cancelEdit()}}}),e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("DataField.edit.submit.tooltip"),expression:"$t('DataField.edit.submit.tooltip')"}],staticClass:"icon-button flat",attrs:{"icon-left":"save"},on:{click:function(e){return t.submitEdit()}}})]:e("VueIcon",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.editErrorMessage,expression:"editErrorMessage"}],staticClass:"small-icon warning",attrs:{icon:"warning"}})],2)]):[e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.valueTooltip,expression:"valueTooltip"}],staticClass:"value",class:t.valueClass,domProps:{innerHTML:t._s(t.formattedValue)},on:{dblclick:function(e){return t.openEdit()}}}),e("span",{staticClass:"actions"},[t.isValueEditable?e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Edit value",expression:"'Edit value'"}],staticClass:"edit-value icon-button flat",attrs:{"icon-left":"edit"},on:{click:function(e){return t.openEdit()}}}):t._e(),t.quickEdits?t._l(t.quickEdits,function(o,n){return e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:o.title||"Quick edit",expression:"info.title || 'Quick edit'"}],key:n,staticClass:"quick-edit icon-button flat",class:o.class,attrs:{"icon-left":o.icon},on:{click:function(e){return t.quickEdit(o,e)}}})}):t._e(),t.isSubfieldsEditable&&!t.addingValue?e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Add new value",expression:"'Add new value'"}],staticClass:"add-value icon-button flat",attrs:{"icon-left":"add_circle"},on:{click:function(e){return t.addNewValue()}}}):t._e(),t.removable?e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Remove value",expression:"'Remove value'"}],staticClass:"remove-field icon-button flat",attrs:{"icon-left":"delete"},on:{click:function(e){return t.removeField()}}}):t._e(),e("VueDropdown",{attrs:{open:t.contextMenuOpen},on:{"update:open":function(e){t.contextMenuOpen=e}}},[e("VueButton",{staticClass:"icon-button flat",attrs:{slot:"trigger","icon-left":"more_vert"},slot:"trigger"}),e("div",{staticClass:"context-menu-dropdown",on:{mouseenter:t.onContextMenuMouseEnter,mouseleave:t.onContextMenuMouseLeave}},[e("VueDropdownButton",{attrs:{"icon-left":"flip_to_front"},on:{click:t.copyToClipboard}},[t._v("\n "+t._s(t.$t("DataField.contextMenu.copyValue"))+"\n ")])],1)],1)],2)]],2),t.expanded&&t.isExpandableType?e("div",{staticClass:"children"},[t._l(t.formattedSubFields,function(o){return e("data-field",{key:o.key,attrs:{field:o,"parent-field":t.field,depth:t.depth+1,path:`${t.path}.${o.key}`,editable:t.isEditable,removable:t.isSubfieldsEditable,renamable:t.editable&&"plain-object"===t.valueType,"force-collapse":t.forceCollapse,"is-state-field":t.isStateField}})}),t.subFieldCount>t.limit?e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Show more",expression:"'Show more'"}],staticClass:"icon-button flat more",style:{marginLeft:t.depthMargin+"px"},attrs:{"icon-left":"more_horiz"},on:{click:function(e){return t.showMoreSubfields()}}}):t._e(),t.isSubfieldsEditable&&t.addingValue?e("data-field",{ref:"newField",attrs:{field:t.newField,depth:t.depth+1,path:`${t.path}.${t.newField.key}`,renamable:"plain-object"===t.valueType,"force-collapse":t.forceCollapse,editable:"",removable:"","is-state-field":t.isStateField},on:{"cancel-edit":function(e){t.addingValue=!1},"submit-edit":function(e){t.addingValue=!1}}}):t._e()],2):t._e()],1)},sn=[],cn=null;function ln(t){var e=1;return(t.ctrlKey||t.metaKey)&&(e*=5),t.shiftKey&&(e*=10),t.altKey&&(e*=100),e}var dn={inject:{InspectorInjection:{default:null}},props:{editable:{type:Boolean,default:!1},removable:{type:Boolean,default:!1},renamable:{type:Boolean,default:!1}},data(){return{editing:!1,editedValue:null,editedKey:null,addingValue:!1,newField:null}},computed:{cssClass(){return{editing:this.editing}},isEditable(){return!(this.InspectorInjection&&!this.InspectorInjection.editable)&&(this.editable&&!this.fieldOptions.abstract&&!this.fieldOptions.readOnly&&("string"!==typeof this.field.key||"$"!==this.field.key.charAt(0)))},isValueEditable(){var t=this.valueType;return this.isEditable&&("null"===t||"literal"===t||"string"===t||"array"===t||"plain-object"===t)},isSubfieldsEditable(){return this.isEditable&&("array"===this.valueType||"plain-object"===this.valueType)},valueValid(){try{return Object(s["s"])(this.transformSpecialTokens(this.editedValue,!1)),!0}catch(t){return!1}},duplicateKey(){return this.parentField&&this.parentField.value.hasOwnProperty(this.editedKey)},keyValid(){return this.editedKey&&(this.editedKey===this.field.key||!this.duplicateKey)},editValid(){return this.valueValid&&(!this.renamable||this.keyValid)},quickEdits(){if(this.isValueEditable){var t=this.field.value,e=typeof t;if("boolean"===e)return[{icon:t?"check_box":"check_box_outline_blank",newValue:!t}];if("number"===e)return[{icon:"remove",class:"big",title:this.quickEditNumberTooltip("-"),newValue:e=>t-ln(e)},{icon:"add",class:"big",title:this.quickEditNumberTooltip("+"),newValue:e=>t+ln(e)}]}return null}},methods:{openEdit(t=!1){this.isValueEditable&&(cn&&cn!==this&&cn.cancelEdit(),this.editedValue=this.transformSpecialTokens(JSON.stringify(this.field.value),!0),this.editedKey=this.field.key,this.editing=!0,cn=this,this.$nextTick(()=>{var e=this.$refs[t&&this.renamable?"keyInput":"editInput"];e.focus(),e.setSelectionRange(0,e.value.length)}))},cancelEdit(){this.editing=!1,this.$emit("cancel-edit"),cn=null},submitEdit(){if(this.editValid){this.editing=!1;var t=this.transformSpecialTokens(this.editedValue,!1),e=this.editedKey!==this.field.key?this.editedKey:void 0;this.sendEdit({value:t,newKey:e}),this.$emit("submit-edit")}},sendEdit(t){this.isStateField?this.$store.dispatch("vuex/editState",{path:this.path,args:t}):bridge.send("set-instance-data",Object.assign({},{id:this.inspectedInstance.id,path:this.path},t))},transformSpecialTokens(t,e){return Object.keys(s["d"]).forEach(o=>{var n,i,r=JSON.stringify(s["d"][o]);e?(n=r,i=o):(n=o,i=r),t=t.replace(new RegExp(n,"g"),i)}),t},quickEdit(t,e){var o;o="function"===typeof t.newValue?t.newValue(e):t.newValue,this.sendEdit({value:JSON.stringify(o)})},removeField(){this.sendEdit({remove:!0})},addNewValue(){var t;if("array"===this.valueType)t=this.field.value.length;else if("plain-object"===this.valueType){var e=1;while(this.field.value.hasOwnProperty(t=`prop${e}`))e++}this.newField={key:t,value:s["e"]},this.expanded=!0,this.addingValue=!0,this.$nextTick(()=>{this.$refs.newField.openEdit(!0)})},containsEdition(){return cn&&0===cn.path.indexOf(this.path)},cancelCurrentEdition(){this.containsEdition()&&cn.cancelEdit()},quickEditNumberTooltip(t){return this.$t("DataField.quickEdit.number.tooltip",{operator:t})}}},vn=/^\[object (\w+)]$/,hn=/^\[native (\w+) (.*)\]$/;function pn(t){return Array.isArray(t)?t.length:t&&"object"===typeof t?Object.keys(t).length:0}var fn={name:"DataField",mixins:[dn],props:{field:{type:Object,required:!0},depth:{type:Number,required:!0},path:{type:String,required:!0},forceCollapse:{type:String,default:null},isStateField:{type:Boolean,default:!1}},data(){return{contextMenuOpen:!1,limit:20,expanded:0===this.depth&&"$route"!==this.field.key&&pn(this.field.value)<5}},computed:Object.assign({},Object(V["e"])("components",["inspectedInstance"]),{depthMargin(){return 14*(this.depth+1)+10},valueType(){var t=this.field.value,e=typeof t;if(null==t||t===s["e"])return"null";if("boolean"===e||"number"===e||t===s["a"]||t===s["c"]||t===s["b"])return"literal";if(t&&t._custom)return"custom";if("string"===e){if(hn.test(t)){var[,o]=hn.exec(t);return`native ${o}`}return"string"}return Array.isArray(t)||t&&t._isArray?"array":Object(s["q"])(t)?"plain-object":"unknown"},rawValueType(){return typeof this.field.value},isExpandableType(){var t=this.field.value;"custom"===this.valueType&&(t=t._custom.value);var e=this.fieldOptions.closed,o="undefined"!==typeof e;return!o&&(Array.isArray(t)||Object(s["q"])(t))||o&&!e},formattedValue(){var t,e=this.field.value;if(this.fieldOptions.abstract)return"";if(t=Object(s["x"])(e))return t;if("custom"===this.valueType)return e._custom.display;if("array"===this.valueType)return"Array["+e.length+"]";if("plain-object"===this.valueType)return"Object"+(Object.keys(e).length?"":" (empty)");if(this.valueType.includes("native"))return Object(s["i"])(hn.exec(e)[2]);if("string"===typeof e){var o=e.match(vn);e=o?Object(s["i"])(o[1]):`<span>"</span>${Object(s["i"])(e)}<span>"</span>`,e=e.replace(/ /g,"&nbsp;").replace(/\n/g,"<span>\\n</span>")}return e},rawValue(){var t=this.field.value,e="custom"===this.valueType,o={};return e&&(o=t._custom.fields||{},t=t._custom.value),t&&t._isArray&&(t=t.items),{value:t,inherit:o}},formattedSubFields(){var{value:t,inherit:e}=this.rawValue;return Array.isArray(t)?t.slice(0,this.limit).map((t,o)=>Object.assign({},{key:o,value:t},e)):("object"===typeof t&&(t=Object.keys(t).map(o=>Object.assign({},{key:o,value:t[o]},e)),"custom"!==this.valueType&&(t=Object(s["w"])(t))),t.slice(0,this.limit))},subFieldCount(){var{value:t}=this.rawValue;return pn(t)},valueTooltip(){var t=this.valueType;return"custom"===t?this.field.value._custom.tooltip:0===t.indexOf("native ")?t.substr("native ".length):null},fieldOptions(){return"custom"===this.valueType?Object.assign({},this.field,this.field.value._custom):this.field},editErrorMessage(){return this.valueValid?this.keyValid?"":this.duplicateKey?"Duplicate key":"Invalid key":"Invalid value (must be valid JSON)"},valueClass(){var t=[this.valueType,`raw-${this.rawValueType}`];if("custom"===this.valueType){var e=this.field.value;e._custom.type&&t.push(`type-${e._custom.type}`),e._custom.class&&t.push(e._custom.class)}return t}}),watch:{forceCollapse:{handler(t){"expand"===t&&this.depth<4?this.expanded=!0:"collapse"===t&&(this.expanded=!1)},immediate:!0}},methods:{copyToClipboard(){Object(s["h"])(this.field.value)},onClick(t){if("INPUT"!==t.target.tagName&&!t.target.className.includes("button")){if("custom"===this.valueType&&this.fieldOptions.file)return Object(s["r"])(this.fieldOptions.file);if("custom"===this.valueType&&"$refs"===this.fieldOptions["type"])if(this.$isChrome){var e=`inspect(window.__VUE_DEVTOOLS_INSTANCE_MAP__.get("${this.fieldOptions.uid}").$refs["${this.fieldOptions.key}"])`;console.log(e),chrome.devtools.inspectedWindow.eval(e)}else window.alert("DOM inspection is not supported in this shell.");this.toggle()}},toggle(){this.isExpandableType&&(this.expanded=!this.expanded,!this.expanded&&this.cancelCurrentEdition())},hyphen:t=>t.replace(/\s/g,"-"),onContextMenuMouseEnter(){clearTimeout(this.$_contextMenuTimer)},onContextMenuMouseLeave(){clearTimeout(this.$_contextMenuTimer),this.$_contextMenuTimer=setTimeout(()=>{this.contextMenuOpen=!1},4e3)},showMoreSubfields(){this.limit+=20}}},mn=fn,gn=(o(117),z(mn,un,sn,!1,null,"53dad005",null)),bn=gn.exports,yn={props:1,undefined:3,computed:4,"register module":1,"unregister module":1,state:2,getters:3,mutation:1,"vuex bindings":5,$refs:6,$attrs:7},wn={components:{DataField:bn},props:{state:{type:Object,required:!0},dimAfter:{type:Number,default:-1}},data(){return{expandedState:{},forceCollapse:null}},computed:{dataTypes(){return Object.keys(this.state).sort((t,e)=>{return(yn[t]||t.charCodeAt(0)+999)-(yn[e]||e.charCodeAt(0)+999)})},totalCount(){return Object.keys(this.state).reduce((t,e)=>t+e.length,0)},highDensity(){var t=this.$shared.displayDensity;return"auto"===t&&this.totalCount>12||"high"===t}},watch:{state(){this.forceCollapse=null}},methods:{toDisplayType(t,e){return"undefined"===t?"data":e?t.replace(/\s/g,"-"):t},isExpanded(t){var e=this.expandedState[t];return"undefined"===typeof e||e},toggle(t,e=null){if(e){if(e.ctrlKey||e.metaKey)return this.setExpandToAll(!1);if(e.shiftKey)return this.setExpandToAll(!0)}r["a"].set(this.expandedState,t,!this.isExpanded(t))},setExpandToAll(t){this.dataTypes.forEach(e=>{this.forceCollapse=t?"expand":"collapse",r["a"].set(this.expandedState,e,t)})},isStateField(t){return t&&"state"===t.type}}},xn=wn,_n=(o(119),z(xn,rn,an,!1,null,null,null)),zn=_n.exports,kn=o(29),Mn=o.n(kn),Vn={components:{ScrollPane:Io,ActionHeader:Do,StateInspector:zn},props:{target:{type:Object,required:!0},loading:{type:Boolean,default:!1}},data(){return{filter:""}},computed:{hasTarget(){return null!=this.target.id},targetName(){return Object(s["l"])(this.target.name,this.$shared.componentNameStyle)},filteredState(){return Mn()(Object(s["w"])(this.target.state.filter(t=>{return Object(s["u"])({[t.key]:t.value},this.filter)})),"type")},fileIsPath(){return this.target.file&&/[/\\]/.test(this.target.file)}},methods:{inspectDOM(){this.hasTarget&&(this.$isChrome?chrome.devtools.inspectedWindow.eval(`inspect(window.__VUE_DEVTOOLS_INSTANCE_MAP__.get("${this.target.id}").$el)`):window.alert("DOM inspection is not supported in this shell."))},openInEditor(){var t=this.target.file;Object(s["r"])(t)}}},Hn=Vn,Cn=(o(122),z(Hn,on,nn,!1,null,"5f05b454",null)),Ln=Cn.exports,Sn={data(){return{foo:"bar"}}},Bn={components:{ComponentTree:en,ComponentInspector:Ln,SplitPane:Co},extends:Sn,mixins:[_o()],computed:Object(V["e"])("components",["instances","inspectedInstance","loading"])},En=Bn,On=z(En,wo,xo,!1,null,null,null),An=On.exports,Tn=function(){var t=this,e=t._self._c;return e("div",[t.hasVuex?e("split-pane",[t.defer(3)?e("vuex-history",{attrs:{slot:"left"},slot:"left"}):t._e(),e("vuex-state-inspector",{attrs:{slot:"right"},slot:"right"})],1):e("div",{staticClass:"notice"},[e("div",[t._v("\n No Vuex store detected.\n ")])])],1)},In=[],jn=function(){var t=this,e=t._self._c;return e("scroll-pane",[e("action-header",{attrs:{slot:"header"},slot:"header"},[e("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("VuexHistory.filter.tooltip"),expression:"$t('VuexHistory.filter.tooltip')"}],staticClass:"search"},[e("VueIcon",{attrs:{icon:"search"}}),e("input",{directives:[{name:"model",rawName:"v-model.trim",value:t.filter,expression:"filter",modifiers:{trim:!0}}],ref:"filterMutations",class:{invalid:t.filterRegexInvalid},attrs:{placeholder:"Filter mutations"},domProps:{value:t.filter},on:{input:function(e){e.target.composing||(t.filter=e.target.value.trim())},blur:function(e){return t.$forceUpdate()}}})],1),e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("VuexHistory.commitAll.tooltip"),expression:"$t('VuexHistory.commitAll.tooltip')"}],staticClass:"button commit-all",class:{disabled:!t.history.length},on:{click:t.commitAll}},[e("VueIcon",{attrs:{icon:"get_app"}}),e("span",[t._v("Commit All")])],1),e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("VuexHistory.revertAll.tooltip"),expression:"$t('VuexHistory.revertAll.tooltip')"}],staticClass:"button reset",class:{disabled:!t.history.length},on:{click:t.revertAll}},[e("VueIcon",{staticClass:"small",attrs:{icon:"do_not_disturb"}}),e("span",[t._v("Revert All")])],1),e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t(`VuexHistory.${t.$shared.recordVuex?"stopRecording":"startRecording"}.tooltip`),expression:"$t(`VuexHistory.${$shared.recordVuex ? 'stopRecording' : 'startRecording'}.tooltip`)"}],staticClass:"button toggle-recording",on:{click:t.toggleRecording}},[e("VueIcon",{staticClass:"small",class:{enabled:t.$shared.recordVuex},attrs:{icon:"lens"}}),e("span",[t._v(t._s(t.$shared.recordVuex?"Recording":"Paused"))])],1)]),e("RecycleScroller",{staticClass:"history",class:{"high-density":t.highDensity},attrs:{slot:"scroll",items:t.filter?t.filteredHistory:[{id:-1}].concat(t.filteredHistory),"item-size":t.highDensity?22:34},slot:"scroll",scopedSlots:t._u([{key:"default",fn:function(o){var n=o.item,i=o.index,r=o.active;return[n.mutation?e("div",{staticClass:"entry list-item",class:{inspected:t.isInspected(i,n),active:t.isActive(i,n),special:t.isSpecial(n)},attrs:{"data-active":r,"data-index":i},on:{click:function(e){return t.inspect(n)}}},[e("span",{staticClass:"mutation-type"},[t._v(t._s(n.mutation.type))]),e("span",{staticClass:"entry-actions"},[e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Commit This Mutation",expression:"'Commit This Mutation'"}],staticClass:"action action-commit",on:{click:function(e){t.commit(n),e.stopImmediatePropagation()}}},[e("VueIcon",{staticClass:"medium",attrs:{icon:"get_app"}}),e("span",[t._v("Commit")])],1),e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Revert This Mutation",expression:"'Revert This Mutation'"}],staticClass:"action action-revert",on:{click:function(e){t.revert(n),e.stopImmediatePropagation()}}},[e("VueIcon",{staticClass:"small",attrs:{icon:"do_not_disturb"}}),e("span",[t._v("Revert")])],1),t.isActive(i,n)?t._e():e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Time Travel to This State",expression:"'Time Travel to This State'"}],staticClass:"action action-time-travel",on:{click:function(e){return t.timeTravelTo(n)}}},[e("VueIcon",{staticClass:"medium",attrs:{icon:"restore"}}),e("span",[t._v("Time Travel")])],1)]),e("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:n.timestamp,expression:"entry.timestamp"}],staticClass:"time"},[t._v("\n "+t._s(t._f("formatTime")(n.timestamp,t.$shared.timeFormat))+"\n ")]),t.isActive(i,n)?e("span",{staticClass:"label active"},[t._v("active")]):t._e(),t.isInspected(i,n)?e("span",{staticClass:"label inspected"},[t._v("inspected")]):t._e()]):e("div",{staticClass:"entry list-item special",class:{active:-1===t.activeIndex,inspected:-1===t.inspectedIndex},attrs:{"data-active":r,"data-index":i},on:{click:function(e){return t.inspect(null)}}},[e("span",{staticClass:"mutation-type"},[t._v("Base State")]),e("span",{staticClass:"entry-actions"},[e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Time Travel to This State",expression:"'Time Travel to This State'"}],staticClass:"action action-time-travel",on:{click:function(e){return e.stopPropagation(),t.timeTravelTo(null)}}},[e("VueIcon",{staticClass:"medium",attrs:{icon:"restore"}}),e("span",[t._v("Time Travel")])],1)]),e("span",{staticClass:"time"},[t._v("\n "+t._s(t._f("formatTime")(t.lastCommit,t.$shared.timeFormat))+"\n ")]),-1===t.activeIndex?e("span",{staticClass:"label active"},[t._v("active")]):t._e(),-1===t.inspectedIndex?e("span",{staticClass:"label inspected"},[t._v("inspected")]):t._e()])]}}])})],1)},Nn=[],Rn=o(25),Pn=o.n(Rn),Dn=function(t){void 0===t&&(t={});var e=t.indexOffset;return void 0===e&&(e=0),{watch:{inspectedIndex(t){this.scrollIntoInspected(t)}},mounted(){requestAnimationFrame(()=>{this.inspectedIndex&&this.scrollIntoInspected(this.inspectedIndex)})},methods:{scrollIntoInspected:Pn()(function(t){t+=e,this.$nextTick(()=>{var e=this.$globalRefs.leftRecycleList||this.$globalRefs.leftScroll,o=e.offsetHeight,n=this.highDensity?22:34,i=t*n,r=e.scrollTop;i<r?e.scrollTop=i:i+n>r+o&&(e.scrollTop=i+n-o)})},30)}}},Un={components:{ActionHeader:Do,ScrollPane:Io},mixins:[b({onKeyDown(t){var e=t.key,o=t.modifiers;switch(o){case"ctrl":if(e===h)return this.commitAll(),!1;if(e===p||e===f)return this.revertAll(),!1;if("f"===e)return Object(s["j"])(this.$refs.filterMutations),!1;break;case"":if(e===l)return this.inspect(this.inspectedIndex-1),!1;if(e===v)return this.inspect(this.inspectedIndex+1),!1;"r"===e&&this.toggleRecording()}}}),Dn({indexOffset:1})],computed:Object.assign({},Object(V["e"])("vuex",["enabled","history","lastCommit","inspectedIndex","activeIndex","filterRegex","filterRegexInvalid"]),Object(V["c"])("vuex",["filteredHistory"]),{filter:{get(){return this.$store.state.vuex.filter},set(t){this.$store.dispatch("vuex/updateFilter",t),this.$store.dispatch("vuex/inspect",t?-1:this.history.length-1)}},highDensity(){var t=this.$shared.displayDensity;return"auto"===t&&this.filteredHistory.length>7||"high"===t}}),methods:Object.assign({},Object(V["b"])("vuex",["commitAll","revertAll","commit","revert","inspect","timeTravelTo","updateFilter"]),{isActive(t,e){return this.activeIndex===t-(this.filter?0:1)},isInspected(t,e){return this.inspectedIndex===t-(this.filter?0:1)},isSpecial(t){return t.options.registerModule||t.options.unregisterModule},toggleRecording(){this.$shared.recordVuex=!this.$shared.recordVuex}})},Fn=Un,qn=(o(124),z(Fn,jn,Nn,!1,null,"1025673e",null)),Kn=qn.exports,Yn=function(){var t=this,e=t._self._c;return e("scroll-pane",[e("action-header",{attrs:{slot:"header"},slot:"header"},[e("div",{staticClass:"search"},[e("VueIcon",{attrs:{icon:"search"}}),e("input",{directives:[{name:"model",rawName:"v-model.trim",value:t.filter,expression:"filter",modifiers:{trim:!0}}],attrs:{placeholder:"Filter inspected state"},domProps:{value:t.filter},on:{input:function(e){e.target.composing||(t.filter=e.target.value.trim())},blur:function(e){return t.$forceUpdate()}}})],1),e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Export Vuex State",expression:"'Export Vuex State'"}],staticClass:"button export",on:{click:t.copyStateToClipboard}},[e("VueIcon",{attrs:{icon:"content_copy"}}),e("span",[t._v("Export")]),e("transition",{attrs:{name:"slide-up"}},[e("span",{directives:[{name:"show",rawName:"v-show",value:t.showStateCopiedMessage,expression:"showStateCopiedMessage"}],staticClass:"message"},[t._v("\n (Copied to clipboard!)\n ")])])],1),e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Import Vuex State",expression:"'Import Vuex State'"}],staticClass:"button import",on:{click:t.toggleImportStatePopup}},[e("VueIcon",{attrs:{icon:"content_paste"}}),e("span",[t._v("Import")])],1),e("transition",{attrs:{name:"slide-down"}},[t.showImportStatePopup?e("div",{staticClass:"import-state"},[e("textarea",{attrs:{placeholder:"Paste state object here to import it..."},on:{input:t.importState,keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"esc",27,e.key,["Esc","Escape"])?null:(e.stopPropagation(),t.closeImportStatePopup.apply(null,arguments))}}}),e("span",{directives:[{name:"show",rawName:"v-show",value:t.showBadJSONMessage,expression:"showBadJSONMessage"}],staticClass:"message invalid-json"},[t._v("\n INVALID JSON!\n ")])]):t._e()])],1),e("div",{staticClass:"vuex-state-inspector",class:{pointer:t.isOnlyMutationPayload},attrs:{slot:"scroll"},on:{click:function(e){t.isOnlyMutationPayload&&t.loadState()}},slot:"scroll"},[e("state-inspector",{attrs:{state:t.filteredState,"dim-after":t.isOnlyMutationPayload?1:-1}})],1),t.$shared.snapshotLoading?e("div",{staticClass:"state-info loading-vuex-state",attrs:{slot:"footer"},slot:"footer"},[e("div",{staticClass:"label"},[t._v("\n Loading state...\n ")]),e("VueLoadingIndicator")],1):t.isOnlyMutationPayload?e("div",{staticClass:"state-info recording-vuex-state",attrs:{slot:"footer"},slot:"footer"},[e("div",{staticClass:"label"},[e("VueIcon",{staticClass:"medium",attrs:{icon:"cached"}}),e("span",[t._v("Recording state on-demand...")]),t.lastReceivedState?e("span",{staticClass:"note"},[t._v("displaying last received state")]):t._e()],1),e("div",[e("VueButton",{staticClass:"accent flat",attrs:{"data-id":"load-vuex-state","icon-left":"arrow_forward"},on:{click:function(e){return t.loadState()}}},[t._v("\n Load state\n ")])],1)]):t._e()],1)},Gn=[],Wn={components:{ScrollPane:Io,ActionHeader:Do,StateInspector:zn},provide(){return{InspectorInjection:this.injection}},data(){return{showStateCopiedMessage:!1,showBadJSONMessage:!1,showImportStatePopup:!1,filter:"",injection:{editable:!1}}},computed:Object.assign({},Object(V["e"])("vuex",["activeIndex","inspectedIndex","lastReceivedState"]),Object(V["c"])("vuex",["inspectedState","filteredHistory","inspectedEntry"]),{filteredState(){var t=this.isOnlyMutationPayload&&this.inspectedState.mutation?Object.assign({},{mutation:this.inspectedState.mutation},this.lastReceivedState):this.inspectedState,e=(t,e)=>{return Array.isArray(t)?t:Object.keys(t).map(o=>({key:o,editable:!this.isOnlyMutationPayload&&"state"===e,value:t[o]}))},o=[].concat(...Object.keys(t).map(o=>{var n,i=t[o];if("mutation"===o&&this.inspectedEntry){var{options:r}=this.inspectedEntry;(r.registerModule||r.unregisterModule)&&(n=e(i.payload,o),o=r.registerModule?"register module":"unregister module")}return n||(n=e(i,o)),n.map(t=>Object.assign({},{type:o},t))}));return Mn()(Object(s["w"])(o.filter(t=>Object(s["u"])({[t.key]:t.value},this.filter))),"type")},isOnlyMutationPayload(){return 1===Object.keys(this.inspectedState).length&&!!this.inspectedState.mutation||Object.keys(this.inspectedState).length<1},isActive(){return this.activeIndex===this.inspectedIndex}}),watch:{showImportStatePopup(t){t&&this.$nextTick(()=>{this.$el.querySelector("textarea").focus()})},isActive:{handler(t){this.injection.editable=t},immediate:!0}},mounted(){bridge.on("vuex:mutation",this.onMutation),this.isOnlyMutationPayload&&this.$shared.vuexAutoload&&this.loadState(),bridge.on("vuex:init",this.onVuexInit)},destroyed(){bridge.off("vuex:mutation",this.onMutation),bridge.off("vuex:init",this.onVuexInit)},methods:Object.assign({},Object(V["b"])("vuex",["inspect"]),{copyStateToClipboard(){Qn(this.inspectedState.state),this.showStateCopiedMessage=!0,window.setTimeout(()=>{this.showStateCopiedMessage=!1},2e3)},toggleImportStatePopup(){this.showImportStatePopup?this.closeImportStatePopup():this.showImportStatePopup=!0},closeImportStatePopup(){this.showImportStatePopup=!1},importState:Pn()(function(t){var e=t.target.value;if(0===e.length)this.showBadJSONMessage=!1;else try{Object(s["s"])(e,!0),bridge.send("vuex:import-state",e),this.showBadJSONMessage=!1}catch(t){this.showBadJSONMessage=!0}},250),loadState(){var t=this.filteredHistory;this.inspect(t[t.length-1])},onMutation:Pn()(function(){this.$shared.vuexAutoload&&this.loadState()},300),onVuexInit(){this.$shared.vuexAutoload&&this.loadState()}})};function Qn(t){var e=document.createElement("textarea");e.textContent=Object(s["y"])(t),document.body.appendChild(e),e.select(),document.execCommand("copy"),document.body.removeChild(e)}var Jn=Wn,Xn=(o(126),z(Jn,Yn,Gn,!1,null,"9bf75054",null)),Zn=Xn.exports,$n={components:{SplitPane:Co,VuexHistory:Kn,VuexStateInspector:Zn},mixins:[_o()],computed:Object(V["e"])("vuex",{hasVuex:t=>t.hasVuex})},ti=$n,ei=z(ti,Tn,In,!1,null,null,null),oi=ei.exports,ni=function(){var t=this,e=t._self._c;return e("div",[e("split-pane",[t.defer(3)?e("events-history",{attrs:{slot:"left"},slot:"left"}):t._e(),e("event-inspector",{attrs:{slot:"right"},slot:"right"})],1)],1)},ii=[],ri=function(){var t=this,e=t._self._c;return e("scroll-pane",[e("action-header",{attrs:{slot:"header"},slot:"header"},[e("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("EventsHistory.filter.tooltip"),expression:"$t('EventsHistory.filter.tooltip')"}],staticClass:"search"},[e("VueIcon",{attrs:{icon:"search"}}),e("input",{directives:[{name:"model",rawName:"v-model.trim",value:t.filter,expression:"filter",modifiers:{trim:!0}}],ref:"filterEvents",attrs:{placeholder:"Filter events"},domProps:{value:t.filter},on:{input:function(e){e.target.composing||(t.filter=e.target.value.trim())},blur:function(e){return t.$forceUpdate()}}})],1),e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t("EventsHistory.clear.tooltip"),expression:"$t('EventsHistory.clear.tooltip')"}],staticClass:"button reset",class:{disabled:!t.events.length},on:{click:t.reset}},[e("VueIcon",{staticClass:"small",attrs:{icon:"do_not_disturb"}}),e("span",[t._v("Clear")])],1),e("a",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.$t(`EventsHistory.${t.enabled?"stopRecording":"startRecording"}.tooltip`),expression:"$t(`EventsHistory.${enabled ? 'stopRecording' : 'startRecording'}.tooltip`)"}],staticClass:"button toggle-recording",on:{click:t.toggleRecording}},[e("VueIcon",{staticClass:"small",class:{enabled:t.enabled},attrs:{icon:"lens"}}),e("span",[t._v(t._s(t.enabled?"Recording":"Paused"))])],1)]),e("RecycleScroller",{staticClass:"history",class:{"high-density":t.highDensity},attrs:{slot:"scroll",items:t.filteredEvents,"item-size":t.highDensity?22:34},slot:"scroll",scopedSlots:t._u([{key:"default",fn:function(o){var n=o.item,i=o.index,r=o.active;return[e("div",{staticClass:"entry list-item",class:{active:t.inspectedIndex===i},attrs:{"data-active":r},on:{click:function(e){t.inspect(t.filteredEvents.indexOf(n))}}},[e("span",{staticClass:"event-name"},[t._v(t._s(n.eventName))]),e("span",{staticClass:"event-type"},[t._v(t._s(n.type))]),e("span",{staticClass:"event-source"},[t._v("\n by\n "),e("span",[t._v("<")]),e("span",{staticClass:"component-name"},[t._v(t._s(t.displayComponentName(n.instanceName)))]),e("span",[t._v(">")])]),e("span",{staticClass:"time"},[t._v(t._s(t._f("formatTime")(n.timestamp,t.$shared.timeFormat)))])])]}}])},[0===t.filteredEvents.length?e("div",{staticClass:"no-events",attrs:{slot:"after-container"},slot:"after-container"},[t._v("\n No events found"),t.enabled?t._e():e("span",[e("br"),t._v("(Recording is paused)")])]):t._e()])],1)},ai=[],ui={components:{ScrollPane:Io,ActionHeader:Do},mixins:[b({onKeyDown(t){var e=t.key,o=t.modifiers;switch(o){case"ctrl":if(e===p||e===f)return this.reset(),!1;if("f"===e)return Object(s["j"])(this.$refs.filterEvents),!1;break;case"":if(e===l)return this.inspect(this.inspectedIndex-1),!1;if(e===v)return this.inspect(this.inspectedIndex+1),!1;"r"===e&&this.toggleRecording()}}}),Dn()],computed:Object.assign({},Object(V["e"])("events",["enabled","events","inspectedIndex"]),Object(V["c"])("events",["filteredEvents"]),{filter:{get(){return this.$store.state.events.filter},set(t){this.$store.commit("events/UPDATE_FILTER",t),this.$store.dispatch("events/inspect",t?-1:this.events.length-1)}},highDensity(){var t=this.$shared.displayDensity;return"auto"===t&&this.filteredEvents.length>8||"high"===t}}),methods:Object.assign({},Object(V["d"])("events",{reset:"RESET",toggleRecording:"TOGGLE"}),Object(V["b"])("events",["inspect"]),{displayComponentName(t){return Object(s["l"])(t,this.$shared.componentNameStyle)}})},si=ui,ci=(o(128),z(si,ri,ai,!1,null,"73ab8b5a",null)),li=ci.exports,di=function(){var t=this,e=t._self._c;return e("scroll-pane",[t.activeEvent?e("div",{attrs:{slot:"scroll"},slot:"scroll"},[e("state-inspector",{attrs:{state:{"event info":t.sortedEventData}}})],1):e("div",{staticClass:"no-event-data",attrs:{slot:"scroll"},slot:"scroll"},[t._v("\n No event selected\n ")])])},vi=[],hi={components:{ScrollPane:Io,StateInspector:zn},computed:Object.assign({},Object(V["c"])("events",["activeEvent"]),{sortedEventData(){return this.activeEvent?{name:this.activeEvent.eventName,type:this.activeEvent.type,source:"<"+this.activeEvent.instanceName+">",payload:this.activeEvent.payload}:{}}})},pi=hi,fi=(o(130),z(pi,di,vi,!1,null,"52054d48",null)),mi=fi.exports,gi={components:{SplitPane:Co,EventsHistory:li,EventInspector:mi},mixins:[_o()],computed:Object(V["e"])("events",["enabled"])},bi=gi,yi=z(bi,ni,ii,!1,null,null,null),wi=yi.exports,xi=function(){var t=this,e=t._self._c;return e("div",{staticClass:"perf-tab"},[e("ScrollPane",[e("ActionHeader",{staticClass:"no-search",attrs:{slot:"header"},slot:"header"},[t.$shared.recordPerf?e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Stop benchmark",expression:"'Stop benchmark'"}],staticClass:"flat stop-button",attrs:{"icon-left":"lens"},on:{click:function(e){return t.stop()}}},[t._v("\n Stop\n ")]):e("VueButton",{directives:[{name:"tooltip",rawName:"v-tooltip",value:"Start benchmark",expression:"'Start benchmark'"}],staticClass:"flat",attrs:{"icon-left":"lens"},on:{click:function(e){return t.start()}}},[t._v("\n Start\n ")]),e("VueSelect",{staticClass:"saved-benchmarks-select",attrs:{disabled:t.$shared.recordPerf,placeholder:"Select saved benchmark...","button-class":"flat"},model:{value:t.currentBenchmarkModel,callback:function(e){t.currentBenchmarkModel=e},expression:"currentBenchmarkModel"}},[t._l(t.benchmarks,function(t,o){return e("VueSelectButton",{key:o,attrs:{value:t,label:t.label}})}),t.benchmarks.length?t._e():e("div",{staticClass:"vue-ui-empty"},[t._v("\n No saved benchmark yet\n ")])],2),t.currentBenchmark&&t.$responsive.width>900?e("div",{staticClass:"benchmark-duration"},[t._v("\n Total duration: "+t._s(Math.round(t.benchmarkDuration/1e3))+"s\n ")]):t._e(),e("div",{staticClass:"vue-ui-spacer"}),e("VueGroup",{model:{value:t.routeModel,callback:function(e){t.routeModel=e},expression:"routeModel"}},[e("VueGroupButton",{attrs:{value:"fps"}},[t._v("\n Frames per second\n ")]),e("VueGroupButton",{attrs:{value:"component-render"}},[t._v("\n Component render\n ")])],1)],1),e("router-view",{attrs:{slot:"scroll"},slot:"scroll"})],1)],1)},_i=[],zi="fps",ki=3e5,Mi={components:{ScrollPane:Io,ActionHeader:Do},data(){return{now:Date.now()}},computed:Object.assign({},Object(V["e"])("perf",["currentBenchmark","benchmarks"]),{currentBenchmarkModel:{get(){return this.currentBenchmark},set(t){this.setCurrentBenchmark(t)}},routeModel:{get(){return this.$route.name},set(t){this.$router.push({name:t})}},benchmarkDuration(){var t;return this.currentBenchmark?(t=this.currentBenchmark.end?this.currentBenchmark.end:this.now,t-this.currentBenchmark.start):0}}),created(){this.$route.matched.length<=1&&this.$router.replace({name:zi})},methods:Object.assign({},Object(V["d"])("perf",{setCurrentBenchmark:"SET_CURRENT_BENCHMARK",updateBenchmark:"UPDATE_BENCHMARK",addBenchmark:"ADD_BENCHMARK"}),{start(){var t={start:Date.now(),end:null,label:(new Date).toLocaleString(),metrics:{fps:[],componentRender:[]}};this.addBenchmark(t),this.currentBenchmarkModel=t,this.$shared.recordPerf=!0,this.now=Date.now(),this.$_timer=setTimeout(()=>this.stop(),ki),this.$_secondTimer=setInterval(()=>{this.now=Date.now()},1e3)},stop(){this.updateBenchmark({end:Date.now()}),clearTimeout(this.$_timer),clearInterval(this.$_secondTimer),this.$shared.recordPerf=!1}})},Vi=Mi,Hi=(o(132),z(Vi,xi,_i,!1,null,"c8c7caee",null)),Ci=Hi.exports,Li=function(){var t=this,e=t._self._c;return e("SplitPane",[e("ScrollPane",{attrs:{slot:"left"},slot:"left"},[e("ActionHeader",{attrs:{slot:"header"},slot:"header"},[e("div",{staticClass:"search"},[e("VueIcon",{attrs:{icon:"search"}}),e("input",{directives:[{name:"model",rawName:"v-model.trim",value:t.filter,expression:"filter",modifiers:{trim:!0}}],attrs:{placeholder:"Filter components"},domProps:{value:t.filter},on:{input:function(e){e.target.composing||(t.filter=e.target.value.trim())},blur:function(e){return t.$forceUpdate()}}})],1)]),t.filteredItems?e("RecycleScroller",{staticClass:"components",class:{"high-density":t.highDensity},attrs:{slot:"scroll",items:t.filteredItems,"item-size":t.highDensity?22:34},slot:"scroll",scopedSlots:t._u([{key:"default",fn:function(o){var n=o.item,i=o.index,r=o.active;return[e("div",{staticClass:"component selectable-item",class:{selected:t.selectedEntry===n},attrs:{"data-active":r,"data-index":i},on:{click:function(e){t.selectedEntry=n}}},[e("div",{staticClass:"name"},[t._v("\n <"+t._s(t.getComponentName(n))+">\n ")]),e("div",{staticClass:"total-time"},[t._v("\n "+t._s(Math.round(n.totalTime))+" ms\n ")]),e("div",{staticClass:"bar-wrapper"},[e("div",{staticClass:"bar",style:t.getTotalTimeBarStyle(n)})])])]}}],null,!1,3935340999)}):t._e()],1),e("ComponentRenderDetails",{attrs:{slot:"right",entry:t.selectedEntry},slot:"right"})],1)},Si=[],Bi=function(t,e){return t<e?-1:t>e?1:t>=e?0:NaN},Ei=function(t){return 1===t.length&&(t=Oi(t)),{left:function(e,o,n,i){null==n&&(n=0),null==i&&(i=e.length);while(n<i){var r=n+i>>>1;t(e[r],o)<0?n=r+1:i=r}return n},right:function(e,o,n,i){null==n&&(n=0),null==i&&(i=e.length);while(n<i){var r=n+i>>>1;t(e[r],o)>0?i=r:n=r+1}return n}}};function Oi(t){return function(e,o){return Bi(t(e),o)}}var Ai=Ei(Bi),Ti=Ai.right,Ii=(Ai.left,Ti);var ji=function(t,e){var o,n,i,r=t.length,a=-1;if(null==e){while(++a<r)if(null!=(o=t[a])&&o>=o){n=i=o;while(++a<r)null!=(o=t[a])&&(n>o&&(n=o),i<o&&(i=o))}}else while(++a<r)if(null!=(o=e(t[a],a,t))&&o>=o){n=i=o;while(++a<r)null!=(o=e(t[a],a,t))&&(n>o&&(n=o),i<o&&(i=o))}return[n,i]},Ni=Array.prototype,Ri=(Ni.slice,Ni.map,Math.sqrt(50)),Pi=Math.sqrt(10),Di=Math.sqrt(2),Ui=function(t,e,o){var n,i,r,a,u=-1;if(e=+e,t=+t,o=+o,t===e&&o>0)return[t];if((n=e<t)&&(i=t,t=e,e=i),0===(a=Fi(t,e,o))||!isFinite(a))return[];if(a>0){t=Math.ceil(t/a),e=Math.floor(e/a),r=new Array(i=Math.ceil(e-t+1));while(++u<i)r[u]=(t+u)*a}else{t=Math.floor(t*a),e=Math.ceil(e*a),r=new Array(i=Math.ceil(t-e+1));while(++u<i)r[u]=(t-u)/a}return n&&r.reverse(),r};function Fi(t,e,o){var n=(e-t)/Math.max(0,o),i=Math.floor(Math.log(n)/Math.LN10),r=n/Math.pow(10,i);return i>=0?(r>=Ri?10:r>=Pi?5:r>=Di?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(r>=Ri?10:r>=Pi?5:r>=Di?2:1)}function qi(t,e,o){var n=Math.abs(e-t)/Math.max(0,o),i=Math.pow(10,Math.floor(Math.log(n)/Math.LN10)),r=n/i;return r>=Ri?i*=10:r>=Pi?i*=5:r>=Di&&(i*=2),e<t?-i:i}var Ki=function(t,e){var o,n,i=t.length,r=-1;if(null==e){while(++r<i)if(null!=(o=t[r])&&o>=o){n=o;while(++r<i)null!=(o=t[r])&&o>n&&(n=o)}}else while(++r<i)if(null!=(o=e(t[r],r,t))&&o>=o){n=o;while(++r<i)null!=(o=e(t[r],r,t))&&o>n&&(n=o)}return n};Array.prototype.slice;var Yi={value:function(){}};function Gi(){for(var t,e=0,o=arguments.length,n={};e<o;++e){if(!(t=arguments[e]+"")||t in n||/[\s.]/.test(t))throw new Error("illegal type: "+t);n[t]=[]}return new Wi(n)}function Wi(t){this._=t}function Qi(t,e){return t.trim().split(/^|\s+/).map(function(t){var o="",n=t.indexOf(".");if(n>=0&&(o=t.slice(n+1),t=t.slice(0,n)),t&&!e.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:o}})}function Ji(t,e){for(var o,n=0,i=t.length;n<i;++n)if((o=t[n]).name===e)return o.value}function Xi(t,e,o){for(var n=0,i=t.length;n<i;++n)if(t[n].name===e){t[n]=Yi,t=t.slice(0,n).concat(t.slice(n+1));break}return null!=o&&t.push({name:e,value:o}),t}Wi.prototype=Gi.prototype={constructor:Wi,on:function(t,e){var o,n=this._,i=Qi(t+"",n),r=-1,a=i.length;if(!(arguments.length<2)){if(null!=e&&"function"!==typeof e)throw new Error("invalid callback: "+e);while(++r<a)if(o=(t=i[r]).type)n[o]=Xi(n[o],t.name,e);else if(null==e)for(o in n)n[o]=Xi(n[o],t.name,null);return this}while(++r<a)if((o=(t=i[r]).type)&&(o=Ji(n[o],t.name)))return o},copy:function(){var t={},e=this._;for(var o in e)t[o]=e[o].slice();return new Wi(t)},call:function(t,e){if((o=arguments.length-2)>0)for(var o,n,i=new Array(o),r=0;r<o;++r)i[r]=arguments[r+2];if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(n=this._[t],r=0,o=n.length;r<o;++r)n[r].value.apply(e,i)},apply:function(t,e,o){if(!this._.hasOwnProperty(t))throw new Error("unknown type: "+t);for(var n=this._[t],i=0,r=n.length;i<r;++i)n[i].value.apply(e,o)}};var Zi=Gi;function $i(){}var tr=function(t){return null==t?$i:function(){return this.querySelector(t)}},er=function(t){"function"!==typeof t&&(t=tr(t));for(var e=this._groups,o=e.length,n=new Array(o),i=0;i<o;++i)for(var r,a,u=e[i],s=u.length,c=n[i]=new Array(s),l=0;l<s;++l)(r=u[l])&&(a=t.call(r,r.__data__,l,u))&&("__data__"in r&&(a.__data__=r.__data__),c[l]=a);return new Pa(n,this._parents)};function or(){return[]}var nr=function(t){return null==t?or:function(){return this.querySelectorAll(t)}},ir=function(t){"function"!==typeof t&&(t=nr(t));for(var e=this._groups,o=e.length,n=[],i=[],r=0;r<o;++r)for(var a,u=e[r],s=u.length,c=0;c<s;++c)(a=u[c])&&(n.push(t.call(a,a.__data__,c,u)),i.push(a));return new Pa(n,i)},rr=function(t){return function(){return this.matches(t)}},ar=function(t){"function"!==typeof t&&(t=rr(t));for(var e=this._groups,o=e.length,n=new Array(o),i=0;i<o;++i)for(var r,a=e[i],u=a.length,s=n[i]=[],c=0;c<u;++c)(r=a[c])&&t.call(r,r.__data__,c,a)&&s.push(r);return new Pa(n,this._parents)},ur=function(t){return new Array(t.length)},sr=function(){return new Pa(this._enter||this._groups.map(ur),this._parents)};function cr(t,e){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=e}cr.prototype={constructor:cr,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,e){return this._parent.insertBefore(t,e)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var lr=function(t){return function(){return t}},dr="$";function vr(t,e,o,n,i,r){for(var a,u=0,s=e.length,c=r.length;u<c;++u)(a=e[u])?(a.__data__=r[u],n[u]=a):o[u]=new cr(t,r[u]);for(;u<s;++u)(a=e[u])&&(i[u]=a)}function hr(t,e,o,n,i,r,a){var u,s,c,l={},d=e.length,v=r.length,h=new Array(d);for(u=0;u<d;++u)(s=e[u])&&(h[u]=c=dr+a.call(s,s.__data__,u,e),c in l?i[u]=s:l[c]=s);for(u=0;u<v;++u)c=dr+a.call(t,r[u],u,r),(s=l[c])?(n[u]=s,s.__data__=r[u],l[c]=null):o[u]=new cr(t,r[u]);for(u=0;u<d;++u)(s=e[u])&&l[h[u]]===s&&(i[u]=s)}var pr=function(t,e){if(!t)return h=new Array(this.size()),c=-1,this.each(function(t){h[++c]=t}),h;var o=e?hr:vr,n=this._parents,i=this._groups;"function"!==typeof t&&(t=lr(t));for(var r=i.length,a=new Array(r),u=new Array(r),s=new Array(r),c=0;c<r;++c){var l=n[c],d=i[c],v=d.length,h=t.call(l,l&&l.__data__,c,n),p=h.length,f=u[c]=new Array(p),m=a[c]=new Array(p),g=s[c]=new Array(v);o(l,d,f,m,g,h,e);for(var b,y,w=0,x=0;w<p;++w)if(b=f[w]){w>=x&&(x=w+1);while(!(y=m[x])&&++x<p);b._next=y||null}}return a=new Pa(a,n),a._enter=u,a._exit=s,a},fr=function(){return new Pa(this._exit||this._groups.map(ur),this._parents)},mr=function(t,e,o){var n=this.enter(),i=this,r=this.exit();return n="function"===typeof t?t(n):n.append(t+""),null!=e&&(i=e(i)),null==o?r.remove():o(r),n&&i?n.merge(i).order():i},gr=function(t){for(var e=this._groups,o=t._groups,n=e.length,i=o.length,r=Math.min(n,i),a=new Array(n),u=0;u<r;++u)for(var s,c=e[u],l=o[u],d=c.length,v=a[u]=new Array(d),h=0;h<d;++h)(s=c[h]||l[h])&&(v[h]=s);for(;u<n;++u)a[u]=e[u];return new Pa(a,this._parents)},br=function(){for(var t=this._groups,e=-1,o=t.length;++e<o;)for(var n,i=t[e],r=i.length-1,a=i[r];--r>=0;)(n=i[r])&&(a&&4^n.compareDocumentPosition(a)&&a.parentNode.insertBefore(n,a),a=n);return this},yr=function(t){function e(e,o){return e&&o?t(e.__data__,o.__data__):!e-!o}t||(t=wr);for(var o=this._groups,n=o.length,i=new Array(n),r=0;r<n;++r){for(var a,u=o[r],s=u.length,c=i[r]=new Array(s),l=0;l<s;++l)(a=u[l])&&(c[l]=a);c.sort(e)}return new Pa(i,this._parents).order()};function wr(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}var xr=function(){var t=arguments[0];return arguments[0]=this,t.apply(null,arguments),this},_r=function(){var t=new Array(this.size()),e=-1;return this.each(function(){t[++e]=this}),t},zr=function(){for(var t=this._groups,e=0,o=t.length;e<o;++e)for(var n=t[e],i=0,r=n.length;i<r;++i){var a=n[i];if(a)return a}return null},kr=function(){var t=0;return this.each(function(){++t}),t},Mr=function(){return!this.node()},Vr=function(t){for(var e=this._groups,o=0,n=e.length;o<n;++o)for(var i,r=e[o],a=0,u=r.length;a<u;++a)(i=r[a])&&t.call(i,i.__data__,a,r);return this},Hr="http://www.w3.org/1999/xhtml",Cr={svg:"http://www.w3.org/2000/svg",xhtml:Hr,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},Lr=function(t){var e=t+="",o=e.indexOf(":");return o>=0&&"xmlns"!==(e=t.slice(0,o))&&(t=t.slice(o+1)),Cr.hasOwnProperty(e)?{space:Cr[e],local:t}:t};function Sr(t){return function(){this.removeAttribute(t)}}function Br(t){return function(){this.removeAttributeNS(t.space,t.local)}}function Er(t,e){return function(){this.setAttribute(t,e)}}function Or(t,e){return function(){this.setAttributeNS(t.space,t.local,e)}}function Ar(t,e){return function(){var o=e.apply(this,arguments);null==o?this.removeAttribute(t):this.setAttribute(t,o)}}function Tr(t,e){return function(){var o=e.apply(this,arguments);null==o?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,o)}}var Ir=function(t,e){var o=Lr(t);if(arguments.length<2){var n=this.node();return o.local?n.getAttributeNS(o.space,o.local):n.getAttribute(o)}return this.each((null==e?o.local?Br:Sr:"function"===typeof e?o.local?Tr:Ar:o.local?Or:Er)(o,e))},jr=function(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView};function Nr(t){return function(){this.style.removeProperty(t)}}function Rr(t,e,o){return function(){this.style.setProperty(t,e,o)}}function Pr(t,e,o){return function(){var n=e.apply(this,arguments);null==n?this.style.removeProperty(t):this.style.setProperty(t,n,o)}}var Dr=function(t,e,o){return arguments.length>1?this.each((null==e?Nr:"function"===typeof e?Pr:Rr)(t,e,null==o?"":o)):Ur(this.node(),t)};function Ur(t,e){return t.style.getPropertyValue(e)||jr(t).getComputedStyle(t,null).getPropertyValue(e)}function Fr(t){return function(){delete this[t]}}function qr(t,e){return function(){this[t]=e}}function Kr(t,e){return function(){var o=e.apply(this,arguments);null==o?delete this[t]:this[t]=o}}var Yr=function(t,e){return arguments.length>1?this.each((null==e?Fr:"function"===typeof e?Kr:qr)(t,e)):this.node()[t]};function Gr(t){return t.trim().split(/^|\s+/)}function Wr(t){return t.classList||new Qr(t)}function Qr(t){this._node=t,this._names=Gr(t.getAttribute("class")||"")}function Jr(t,e){var o=Wr(t),n=-1,i=e.length;while(++n<i)o.add(e[n])}function Xr(t,e){var o=Wr(t),n=-1,i=e.length;while(++n<i)o.remove(e[n])}function Zr(t){return function(){Jr(this,t)}}function $r(t){return function(){Xr(this,t)}}function ta(t,e){return function(){(e.apply(this,arguments)?Jr:Xr)(this,t)}}Qr.prototype={add:function(t){var e=this._names.indexOf(t);e<0&&(this._names.push(t),this._node.setAttribute("class",this._names.join(" ")))},remove:function(t){var e=this._names.indexOf(t);e>=0&&(this._names.splice(e,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var ea=function(t,e){var o=Gr(t+"");if(arguments.length<2){var n=Wr(this.node()),i=-1,r=o.length;while(++i<r)if(!n.contains(o[i]))return!1;return!0}return this.each(("function"===typeof e?ta:e?Zr:$r)(o,e))};function oa(){this.textContent=""}function na(t){return function(){this.textContent=t}}function ia(t){return function(){var e=t.apply(this,arguments);this.textContent=null==e?"":e}}var ra=function(t){return arguments.length?this.each(null==t?oa:("function"===typeof t?ia:na)(t)):this.node().textContent};function aa(){this.innerHTML=""}function ua(t){return function(){this.innerHTML=t}}function sa(t){return function(){var e=t.apply(this,arguments);this.innerHTML=null==e?"":e}}var ca=function(t){return arguments.length?this.each(null==t?aa:("function"===typeof t?sa:ua)(t)):this.node().innerHTML};function la(){this.nextSibling&&this.parentNode.appendChild(this)}var da=function(){return this.each(la)};function va(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}var ha=function(){return this.each(va)};function pa(t){return function(){var e=this.ownerDocument,o=this.namespaceURI;return o===Hr&&e.documentElement.namespaceURI===Hr?e.createElement(t):e.createElementNS(o,t)}}function fa(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}var ma=function(t){var e=Lr(t);return(e.local?fa:pa)(e)},ga=function(t){var e="function"===typeof t?t:ma(t);return this.select(function(){return this.appendChild(e.apply(this,arguments))})};function ba(){return null}var ya=function(t,e){var o="function"===typeof t?t:ma(t),n=null==e?ba:"function"===typeof e?e:tr(e);return this.select(function(){return this.insertBefore(o.apply(this,arguments),n.apply(this,arguments)||null)})};function wa(){var t=this.parentNode;t&&t.removeChild(this)}var xa=function(){return this.each(wa)};function _a(){var t=this.cloneNode(!1),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function za(){var t=this.cloneNode(!0),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}var ka=function(t){return this.select(t?za:_a)},Ma=function(t){return arguments.length?this.property("__data__",t):this.node().__data__},Va={},Ha=null;if("undefined"!==typeof document){var Ca=document.documentElement;"onmouseenter"in Ca||(Va={mouseenter:"mouseover",mouseleave:"mouseout"})}function La(t,e,o){return t=Sa(t,e,o),function(e){var o=e.relatedTarget;o&&(o===this||8&o.compareDocumentPosition(this))||t.call(this,e)}}function Sa(t,e,o){return function(n){var i=Ha;Ha=n;try{t.call(this,this.__data__,e,o)}finally{Ha=i}}}function Ba(t){return t.trim().split(/^|\s+/).map(function(t){var e="",o=t.indexOf(".");return o>=0&&(e=t.slice(o+1),t=t.slice(0,o)),{type:t,name:e}})}function Ea(t){return function(){var e=this.__on;if(e){for(var o,n=0,i=-1,r=e.length;n<r;++n)o=e[n],t.type&&o.type!==t.type||o.name!==t.name?e[++i]=o:this.removeEventListener(o.type,o.listener,o.capture);++i?e.length=i:delete this.__on}}}function Oa(t,e,o){var n=Va.hasOwnProperty(t.type)?La:Sa;return function(i,r,a){var u,s=this.__on,c=n(e,r,a);if(s)for(var l=0,d=s.length;l<d;++l)if((u=s[l]).type===t.type&&u.name===t.name)return this.removeEventListener(u.type,u.listener,u.capture),this.addEventListener(u.type,u.listener=c,u.capture=o),void(u.value=e);this.addEventListener(t.type,c,o),u={type:t.type,name:t.name,value:e,listener:c,capture:o},s?s.push(u):this.__on=[u]}}var Aa=function(t,e,o){var n,i,r=Ba(t+""),a=r.length;if(!(arguments.length<2)){for(u=e?Oa:Ea,null==o&&(o=!1),n=0;n<a;++n)this.each(u(r[n],e,o));return this}var u=this.node().__on;if(u)for(var s,c=0,l=u.length;c<l;++c)for(n=0,s=u[c];n<a;++n)if((i=r[n]).type===s.type&&i.name===s.name)return s.value};function Ta(t,e,o){var n=jr(t),i=n.CustomEvent;"function"===typeof i?i=new i(e,o):(i=n.document.createEvent("Event"),o?(i.initEvent(e,o.bubbles,o.cancelable),i.detail=o.detail):i.initEvent(e,!1,!1)),t.dispatchEvent(i)}function Ia(t,e){return function(){return Ta(this,t,e)}}function ja(t,e){return function(){return Ta(this,t,e.apply(this,arguments))}}var Na=function(t,e){return this.each(("function"===typeof e?ja:Ia)(t,e))},Ra=[null];function Pa(t,e){this._groups=t,this._parents=e}function Da(){return new Pa([[document.documentElement]],Ra)}Pa.prototype=Da.prototype={constructor:Pa,select:er,selectAll:ir,filter:ar,data:pr,enter:sr,exit:fr,join:mr,merge:gr,order:br,sort:yr,call:xr,nodes:_r,node:zr,size:kr,empty:Mr,each:Vr,attr:Ir,style:Dr,property:Yr,classed:ea,text:ra,html:ca,raise:da,lower:ha,append:ga,insert:ya,remove:xa,clone:ka,datum:Ma,on:Aa,dispatch:Na};var Ua=Da;var Fa=function(t,e,o){t.prototype=e.prototype=o,o.constructor=t};function qa(t,e){var o=Object.create(t.prototype);for(var n in e)o[n]=e[n];return o}function Ka(){}var Ya=.7,Ga=1/Ya,Wa="\\s*([+-]?\\d+)\\s*",Qa="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*",Ja="\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*",Xa=/^#([0-9a-f]{3,8})$/,Za=new RegExp("^rgb\\("+[Wa,Wa,Wa]+"\\)$"),$a=new RegExp("^rgb\\("+[Ja,Ja,Ja]+"\\)$"),tu=new RegExp("^rgba\\("+[Wa,Wa,Wa,Qa]+"\\)$"),eu=new RegExp("^rgba\\("+[Ja,Ja,Ja,Qa]+"\\)$"),ou=new RegExp("^hsl\\("+[Qa,Ja,Ja]+"\\)$"),nu=new RegExp("^hsla\\("+[Qa,Ja,Ja,Qa]+"\\)$"),iu={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function ru(){return this.rgb().formatHex()}function au(){return bu(this).formatHsl()}function uu(){return this.rgb().formatRgb()}function su(t){var e,o;return t=(t+"").trim().toLowerCase(),(e=Xa.exec(t))?(o=e[1].length,e=parseInt(e[1],16),6===o?cu(e):3===o?new hu(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===o?lu(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===o?lu(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=Za.exec(t))?new hu(e[1],e[2],e[3],1):(e=$a.exec(t))?new hu(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=tu.exec(t))?lu(e[1],e[2],e[3],e[4]):(e=eu.exec(t))?lu(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=ou.exec(t))?gu(e[1],e[2]/100,e[3]/100,1):(e=nu.exec(t))?gu(e[1],e[2]/100,e[3]/100,e[4]):iu.hasOwnProperty(t)?cu(iu[t]):"transparent"===t?new hu(NaN,NaN,NaN,0):null}function cu(t){return new hu(t>>16&255,t>>8&255,255&t,1)}function lu(t,e,o,n){return n<=0&&(t=e=o=NaN),new hu(t,e,o,n)}function du(t){return t instanceof Ka||(t=su(t)),t?(t=t.rgb(),new hu(t.r,t.g,t.b,t.opacity)):new hu}function vu(t,e,o,n){return 1===arguments.length?du(t):new hu(t,e,o,null==n?1:n)}function hu(t,e,o,n){this.r=+t,this.g=+e,this.b=+o,this.opacity=+n}function pu(){return"#"+mu(this.r)+mu(this.g)+mu(this.b)}function fu(){var t=this.opacity;return t=isNaN(t)?1:Math.max(0,Math.min(1,t)),(1===t?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function mu(t){return t=Math.max(0,Math.min(255,Math.round(t)||0)),(t<16?"0":"")+t.toString(16)}function gu(t,e,o,n){return n<=0?t=e=o=NaN:o<=0||o>=1?t=e=NaN:e<=0&&(t=NaN),new wu(t,e,o,n)}function bu(t){if(t instanceof wu)return new wu(t.h,t.s,t.l,t.opacity);if(t instanceof Ka||(t=su(t)),!t)return new wu;if(t instanceof wu)return t;t=t.rgb();var e=t.r/255,o=t.g/255,n=t.b/255,i=Math.min(e,o,n),r=Math.max(e,o,n),a=NaN,u=r-i,s=(r+i)/2;return u?(a=e===r?(o-n)/u+6*(o<n):o===r?(n-e)/u+2:(e-o)/u+4,u/=s<.5?r+i:2-r-i,a*=60):u=s>0&&s<1?0:a,new wu(a,u,s,t.opacity)}function yu(t,e,o,n){return 1===arguments.length?bu(t):new wu(t,e,o,null==n?1:n)}function wu(t,e,o,n){this.h=+t,this.s=+e,this.l=+o,this.opacity=+n}function xu(t,e,o){return 255*(t<60?e+(o-e)*t/60:t<180?o:t<240?e+(o-e)*(240-t)/60:e)}function _u(t,e,o,n,i){var r=t*t,a=r*t;return((1-3*t+3*r-a)*e+(4-6*r+3*a)*o+(1+3*t+3*r-3*a)*n+a*i)/6}Fa(Ka,su,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:ru,formatHex:ru,formatHsl:au,formatRgb:uu,toString:uu}),Fa(hu,vu,qa(Ka,{brighter:function(t){return t=null==t?Ga:Math.pow(Ga,t),new hu(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?Ya:Math.pow(Ya,t),new hu(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:pu,formatHex:pu,formatRgb:fu,toString:fu})),Fa(wu,yu,qa(Ka,{brighter:function(t){return t=null==t?Ga:Math.pow(Ga,t),new wu(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?Ya:Math.pow(Ya,t),new wu(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,o=this.l,n=o+(o<.5?o:1-o)*e,i=2*o-n;return new hu(xu(t>=240?t-240:t+120,i,n),xu(t,i,n),xu(t<120?t+240:t-120,i,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return t=isNaN(t)?1:Math.max(0,Math.min(1,t)),(1===t?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var zu=function(t){var e=t.length-1;return function(o){var n=o<=0?o=0:o>=1?(o=1,e-1):Math.floor(o*e),i=t[n],r=t[n+1],a=n>0?t[n-1]:2*i-r,u=n<e-1?t[n+2]:2*r-i;return _u((o-n/e)*e,a,i,r,u)}},ku=function(t){var e=t.length;return function(o){var n=Math.floor(((o%=1)<0?++o:o)*e),i=t[(n+e-1)%e],r=t[n%e],a=t[(n+1)%e],u=t[(n+2)%e];return _u((o-n/e)*e,i,r,a,u)}},Mu=function(t){return function(){return t}};function Vu(t,e){return function(o){return t+o*e}}function Hu(t,e,o){return t=Math.pow(t,o),e=Math.pow(e,o)-t,o=1/o,function(n){return Math.pow(t+n*e,o)}}function Cu(t){return 1===(t=+t)?Lu:function(e,o){return o-e?Hu(e,o,t):Mu(isNaN(e)?o:e)}}function Lu(t,e){var o=e-t;return o?Vu(t,o):Mu(isNaN(t)?e:t)}var Su=function t(e){var o=Cu(e);function n(t,e){var n=o((t=vu(t)).r,(e=vu(e)).r),i=o(t.g,e.g),r=o(t.b,e.b),a=Lu(t.opacity,e.opacity);return function(e){return t.r=n(e),t.g=i(e),t.b=r(e),t.opacity=a(e),t+""}}return n.gamma=t,n}(1);function Bu(t){return function(e){var o,n,i=e.length,r=new Array(i),a=new Array(i),u=new Array(i);for(o=0;o<i;++o)n=vu(e[o]),r[o]=n.r||0,a[o]=n.g||0,u[o]=n.b||0;return r=t(r),a=t(a),u=t(u),n.opacity=1,function(t){return n.r=r(t),n.g=a(t),n.b=u(t),n+""}}}Bu(zu),Bu(ku);var Eu=function(t,e){e||(e=[]);var o,n=t?Math.min(e.length,t.length):0,i=e.slice();return function(r){for(o=0;o<n;++o)i[o]=t[o]*(1-r)+e[o]*r;return i}};function Ou(t){return ArrayBuffer.isView(t)&&!(t instanceof DataView)}function Au(t,e){var o,n=e?e.length:0,i=t?Math.min(n,t.length):0,r=new Array(i),a=new Array(n);for(o=0;o<i;++o)r[o]=Ku(t[o],e[o]);for(;o<n;++o)a[o]=e[o];return function(t){for(o=0;o<i;++o)a[o]=r[o](t);return a}}var Tu=function(t,e){var o=new Date;return t=+t,e=+e,function(n){return o.setTime(t*(1-n)+e*n),o}},Iu=function(t,e){return t=+t,e=+e,function(o){return t*(1-o)+e*o}},ju=function(t,e){var o,n={},i={};for(o in null!==t&&"object"===typeof t||(t={}),null!==e&&"object"===typeof e||(e={}),e)o in t?n[o]=Ku(t[o],e[o]):i[o]=e[o];return function(t){for(o in n)i[o]=n[o](t);return i}},Nu=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,Ru=new RegExp(Nu.source,"g");function Pu(t){return function(){return t}}function Du(t){return function(e){return t(e)+""}}var Uu,Fu,qu=function(t,e){var o,n,i,r=Nu.lastIndex=Ru.lastIndex=0,a=-1,u=[],s=[];t+="",e+="";while((o=Nu.exec(t))&&(n=Ru.exec(e)))(i=n.index)>r&&(i=e.slice(r,i),u[a]?u[a]+=i:u[++a]=i),(o=o[0])===(n=n[0])?u[a]?u[a]+=n:u[++a]=n:(u[++a]=null,s.push({i:a,x:Iu(o,n)})),r=Ru.lastIndex;return r<e.length&&(i=e.slice(r),u[a]?u[a]+=i:u[++a]=i),u.length<2?s[0]?Du(s[0].x):Pu(e):(e=s.length,function(t){for(var o,n=0;n<e;++n)u[(o=s[n]).i]=o.x(t);return u.join("")})},Ku=function(t,e){var o,n=typeof e;return null==e||"boolean"===n?Mu(e):("number"===n?Iu:"string"===n?(o=su(e))?(e=o,Su):qu:e instanceof su?Su:e instanceof Date?Tu:Ou(e)?Eu:Array.isArray(e)?Au:"function"!==typeof e.valueOf&&"function"!==typeof e.toString||isNaN(e)?ju:Iu)(t,e)},Yu=0,Gu=0,Wu=0,Qu=1e3,Ju=0,Xu=0,Zu=0,$u="object"===typeof performance&&performance.now?performance:Date,ts="object"===typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function es(){return Xu||(ts(os),Xu=$u.now()+Zu)}function os(){Xu=0}function ns(){this._call=this._time=this._next=null}function is(t,e,o){var n=new ns;return n.restart(t,e,o),n}function rs(){es(),++Yu;var t,e=Uu;while(e)(t=Xu-e._time)>=0&&e._call.call(null,t),e=e._next;--Yu}function as(){Xu=(Ju=$u.now())+Zu,Yu=Gu=0;try{rs()}finally{Yu=0,ss(),Xu=0}}function us(){var t=$u.now(),e=t-Ju;e>Qu&&(Zu-=e,Ju=t)}function ss(){var t,e,o=Uu,n=1/0;while(o)o._call?(n>o._time&&(n=o._time),t=o,o=o._next):(e=o._next,o._next=null,o=t?t._next=e:Uu=e);Fu=t,cs(n)}function cs(t){if(!Yu){Gu&&(Gu=clearTimeout(Gu));var e=t-Xu;e>24?(t<1/0&&(Gu=setTimeout(as,t-$u.now()-Zu)),Wu&&(Wu=clearInterval(Wu))):(Wu||(Ju=$u.now(),Wu=setInterval(us,Qu)),Yu=1,ts(as))}}ns.prototype=is.prototype={constructor:ns,restart:function(t,e,o){if("function"!==typeof t)throw new TypeError("callback is not a function");o=(null==o?es():+o)+(null==e?0:+e),this._next||Fu===this||(Fu?Fu._next=this:Uu=this,Fu=this),this._call=t,this._time=o,cs()},stop:function(){this._call&&(this._call=null,this._time=1/0,cs())}};var ls=function(t,e,o){var n=new ns;return e=null==e?0:+e,n.restart(function(o){n.stop(),t(o+e)},e,o),n},ds=Zi("start","end","cancel","interrupt"),vs=[],hs=0,ps=1,fs=2,ms=3,gs=4,bs=5,ys=6,ws=function(t,e,o,n,i,r){var a=t.__transition;if(a){if(o in a)return}else t.__transition={};ks(t,o,{name:e,index:n,group:i,on:ds,tween:vs,time:r.time,delay:r.delay,duration:r.duration,ease:r.ease,timer:null,state:hs})};function xs(t,e){var o=zs(t,e);if(o.state>hs)throw new Error("too late; already scheduled");return o}function _s(t,e){var o=zs(t,e);if(o.state>ms)throw new Error("too late; already running");return o}function zs(t,e){var o=t.__transition;if(!o||!(o=o[e]))throw new Error("transition not found");return o}function ks(t,e,o){var n,i=t.__transition;function r(t){o.state=ps,o.timer.restart(a,o.delay,o.time),o.delay<=t&&a(t-o.delay)}function a(r){var c,l,d,v;if(o.state!==ps)return s();for(c in i)if(v=i[c],v.name===o.name){if(v.state===ms)return ls(a);v.state===gs?(v.state=ys,v.timer.stop(),v.on.call("interrupt",t,t.__data__,v.index,v.group),delete i[c]):+c<e&&(v.state=ys,v.timer.stop(),v.on.call("cancel",t,t.__data__,v.index,v.group),delete i[c])}if(ls(function(){o.state===ms&&(o.state=gs,o.timer.restart(u,o.delay,o.time),u(r))}),o.state=fs,o.on.call("start",t,t.__data__,o.index,o.group),o.state===fs){for(o.state=ms,n=new Array(d=o.tween.length),c=0,l=-1;c<d;++c)(v=o.tween[c].value.call(t,t.__data__,o.index,o.group))&&(n[++l]=v);n.length=l+1}}function u(e){var i=e<o.duration?o.ease.call(null,e/o.duration):(o.timer.restart(s),o.state=bs,1),r=-1,a=n.length;while(++r<a)n[r].call(t,i);o.state===bs&&(o.on.call("end",t,t.__data__,o.index,o.group),s())}function s(){for(var n in o.state=ys,o.timer.stop(),delete i[e],i)return;delete t.__transition}i[e]=o,o.timer=is(r,0,o.time)}var Ms,Vs,Hs,Cs,Ls=function(t,e){var o,n,i,r=t.__transition,a=!0;if(r){for(i in e=null==e?null:e+"",r)(o=r[i]).name===e?(n=o.state>fs&&o.state<bs,o.state=ys,o.timer.stop(),o.on.call(n?"interrupt":"cancel",t,t.__data__,o.index,o.group),delete r[i]):a=!1;a&&delete t.__transition}},Ss=function(t){return this.each(function(){Ls(this,t)})},Bs=180/Math.PI,Es={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1},Os=function(t,e,o,n,i,r){var a,u,s;return(a=Math.sqrt(t*t+e*e))&&(t/=a,e/=a),(s=t*o+e*n)&&(o-=t*s,n-=e*s),(u=Math.sqrt(o*o+n*n))&&(o/=u,n/=u,s/=u),t*n<e*o&&(t=-t,e=-e,s=-s,a=-a),{translateX:i,translateY:r,rotate:Math.atan2(e,t)*Bs,skewX:Math.atan(s)*Bs,scaleX:a,scaleY:u}};function As(t){return"none"===t?Es:(Ms||(Ms=document.createElement("DIV"),Vs=document.documentElement,Hs=document.defaultView),Ms.style.transform=t,t=Hs.getComputedStyle(Vs.appendChild(Ms),null).getPropertyValue("transform"),Vs.removeChild(Ms),t=t.slice(7,-1).split(","),Os(+t[0],+t[1],+t[2],+t[3],+t[4],+t[5]))}function Ts(t){return null==t?Es:(Cs||(Cs=document.createElementNS("http://www.w3.org/2000/svg","g")),Cs.setAttribute("transform",t),(t=Cs.transform.baseVal.consolidate())?(t=t.matrix,Os(t.a,t.b,t.c,t.d,t.e,t.f)):Es)}function Is(t,e,o,n){function i(t){return t.length?t.pop()+" ":""}function r(t,n,i,r,a,u){if(t!==i||n!==r){var s=a.push("translate(",null,e,null,o);u.push({i:s-4,x:Iu(t,i)},{i:s-2,x:Iu(n,r)})}else(i||r)&&a.push("translate("+i+e+r+o)}function a(t,e,o,r){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),r.push({i:o.push(i(o)+"rotate(",null,n)-2,x:Iu(t,e)})):e&&o.push(i(o)+"rotate("+e+n)}function u(t,e,o,r){t!==e?r.push({i:o.push(i(o)+"skewX(",null,n)-2,x:Iu(t,e)}):e&&o.push(i(o)+"skewX("+e+n)}function s(t,e,o,n,r,a){if(t!==o||e!==n){var u=r.push(i(r)+"scale(",null,",",null,")");a.push({i:u-4,x:Iu(t,o)},{i:u-2,x:Iu(e,n)})}else 1===o&&1===n||r.push(i(r)+"scale("+o+","+n+")")}return function(e,o){var n=[],i=[];return e=t(e),o=t(o),r(e.translateX,e.translateY,o.translateX,o.translateY,n,i),a(e.rotate,o.rotate,n,i),u(e.skewX,o.skewX,n,i),s(e.scaleX,e.scaleY,o.scaleX,o.scaleY,n,i),e=o=null,function(t){var e,o=-1,r=i.length;while(++o<r)n[(e=i[o]).i]=e.x(t);return n.join("")}}}var js=Is(As,"px, ","px)","deg)"),Ns=Is(Ts,", ",")",")");function Rs(t,e){var o,n;return function(){var i=_s(this,t),r=i.tween;if(r!==o){n=o=r;for(var a=0,u=n.length;a<u;++a)if(n[a].name===e){n=n.slice(),n.splice(a,1);break}}i.tween=n}}function Ps(t,e,o){var n,i;if("function"!==typeof o)throw new Error;return function(){var r=_s(this,t),a=r.tween;if(a!==n){i=(n=a).slice();for(var u={name:e,value:o},s=0,c=i.length;s<c;++s)if(i[s].name===e){i[s]=u;break}s===c&&i.push(u)}r.tween=i}}var Ds=function(t,e){var o=this._id;if(t+="",arguments.length<2){for(var n,i=zs(this.node(),o).tween,r=0,a=i.length;r<a;++r)if((n=i[r]).name===t)return n.value;return null}return this.each((null==e?Rs:Ps)(o,t,e))};function Us(t,e,o){var n=t._id;return t.each(function(){var t=_s(this,n);(t.value||(t.value={}))[e]=o.apply(this,arguments)}),function(t){return zs(t,n).value[e]}}var Fs=function(t,e){var o;return("number"===typeof e?Iu:e instanceof su?Su:(o=su(e))?(e=o,Su):qu)(t,e)};function qs(t){return function(){this.removeAttribute(t)}}function Ks(t){return function(){this.removeAttributeNS(t.space,t.local)}}function Ys(t,e,o){var n,i,r=o+"";return function(){var a=this.getAttribute(t);return a===r?null:a===n?i:i=e(n=a,o)}}function Gs(t,e,o){var n,i,r=o+"";return function(){var a=this.getAttributeNS(t.space,t.local);return a===r?null:a===n?i:i=e(n=a,o)}}function Ws(t,e,o){var n,i,r;return function(){var a,u,s=o(this);if(null!=s)return a=this.getAttribute(t),u=s+"",a===u?null:a===n&&u===i?r:(i=u,r=e(n=a,s));this.removeAttribute(t)}}function Qs(t,e,o){var n,i,r;return function(){var a,u,s=o(this);if(null!=s)return a=this.getAttributeNS(t.space,t.local),u=s+"",a===u?null:a===n&&u===i?r:(i=u,r=e(n=a,s));this.removeAttributeNS(t.space,t.local)}}var Js=function(t,e){var o=Lr(t),n="transform"===o?Ns:Fs;return this.attrTween(t,"function"===typeof e?(o.local?Qs:Ws)(o,n,Us(this,"attr."+t,e)):null==e?(o.local?Ks:qs)(o):(o.local?Gs:Ys)(o,n,e))};function Xs(t,e){return function(o){this.setAttribute(t,e.call(this,o))}}function Zs(t,e){return function(o){this.setAttributeNS(t.space,t.local,e.call(this,o))}}function $s(t,e){var o,n;function i(){var i=e.apply(this,arguments);return i!==n&&(o=(n=i)&&Zs(t,i)),o}return i._value=e,i}function tc(t,e){var o,n;function i(){var i=e.apply(this,arguments);return i!==n&&(o=(n=i)&&Xs(t,i)),o}return i._value=e,i}var ec=function(t,e){var o="attr."+t;if(arguments.length<2)return(o=this.tween(o))&&o._value;if(null==e)return this.tween(o,null);if("function"!==typeof e)throw new Error;var n=Lr(t);return this.tween(o,(n.local?$s:tc)(n,e))};function oc(t,e){return function(){xs(this,t).delay=+e.apply(this,arguments)}}function nc(t,e){return e=+e,function(){xs(this,t).delay=e}}var ic=function(t){var e=this._id;return arguments.length?this.each(("function"===typeof t?oc:nc)(e,t)):zs(this.node(),e).delay};function rc(t,e){return function(){_s(this,t).duration=+e.apply(this,arguments)}}function ac(t,e){return e=+e,function(){_s(this,t).duration=e}}var uc=function(t){var e=this._id;return arguments.length?this.each(("function"===typeof t?rc:ac)(e,t)):zs(this.node(),e).duration};function sc(t,e){if("function"!==typeof e)throw new Error;return function(){_s(this,t).ease=e}}var cc=function(t){var e=this._id;return arguments.length?this.each(sc(e,t)):zs(this.node(),e).ease},lc=function(t){"function"!==typeof t&&(t=rr(t));for(var e=this._groups,o=e.length,n=new Array(o),i=0;i<o;++i)for(var r,a=e[i],u=a.length,s=n[i]=[],c=0;c<u;++c)(r=a[c])&&t.call(r,r.__data__,c,a)&&s.push(r);return new Rc(n,this._parents,this._name,this._id)},dc=function(t){if(t._id!==this._id)throw new Error;for(var e=this._groups,o=t._groups,n=e.length,i=o.length,r=Math.min(n,i),a=new Array(n),u=0;u<r;++u)for(var s,c=e[u],l=o[u],d=c.length,v=a[u]=new Array(d),h=0;h<d;++h)(s=c[h]||l[h])&&(v[h]=s);for(;u<n;++u)a[u]=e[u];return new Rc(a,this._parents,this._name,this._id)};function vc(t){return(t+"").trim().split(/^|\s+/).every(function(t){var e=t.indexOf(".");return e>=0&&(t=t.slice(0,e)),!t||"start"===t})}function hc(t,e,o){var n,i,r=vc(e)?xs:_s;return function(){var a=r(this,t),u=a.on;u!==n&&(i=(n=u).copy()).on(e,o),a.on=i}}var pc=function(t,e){var o=this._id;return arguments.length<2?zs(this.node(),o).on.on(t):this.each(hc(o,t,e))};function fc(t){return function(){var e=this.parentNode;for(var o in this.__transition)if(+o!==t)return;e&&e.removeChild(this)}}var mc=function(){return this.on("end.remove",fc(this._id))},gc=function(t){var e=this._name,o=this._id;"function"!==typeof t&&(t=tr(t));for(var n=this._groups,i=n.length,r=new Array(i),a=0;a<i;++a)for(var u,s,c=n[a],l=c.length,d=r[a]=new Array(l),v=0;v<l;++v)(u=c[v])&&(s=t.call(u,u.__data__,v,c))&&("__data__"in u&&(s.__data__=u.__data__),d[v]=s,ws(d[v],e,o,v,d,zs(u,o)));return new Rc(r,this._parents,e,o)},bc=function(t){var e=this._name,o=this._id;"function"!==typeof t&&(t=nr(t));for(var n=this._groups,i=n.length,r=[],a=[],u=0;u<i;++u)for(var s,c=n[u],l=c.length,d=0;d<l;++d)if(s=c[d]){for(var v,h=t.call(s,s.__data__,d,c),p=zs(s,o),f=0,m=h.length;f<m;++f)(v=h[f])&&ws(v,e,o,f,h,p);r.push(h),a.push(s)}return new Rc(r,a,e,o)},yc=Ua.prototype.constructor,wc=function(){return new yc(this._groups,this._parents)};function xc(t,e){var o,n,i;return function(){var r=Ur(this,t),a=(this.style.removeProperty(t),Ur(this,t));return r===a?null:r===o&&a===n?i:i=e(o=r,n=a)}}function _c(t){return function(){this.style.removeProperty(t)}}function zc(t,e,o){var n,i,r=o+"";return function(){var a=Ur(this,t);return a===r?null:a===n?i:i=e(n=a,o)}}function kc(t,e,o){var n,i,r;return function(){var a=Ur(this,t),u=o(this),s=u+"";return null==u&&(this.style.removeProperty(t),s=u=Ur(this,t)),a===s?null:a===n&&s===i?r:(i=s,r=e(n=a,u))}}function Mc(t,e){var o,n,i,r,a="style."+e,u="end."+a;return function(){var s=_s(this,t),c=s.on,l=null==s.value[a]?r||(r=_c(e)):void 0;c===o&&i===l||(n=(o=c).copy()).on(u,i=l),s.on=n}}var Vc=function(t,e,o){var n="transform"===(t+="")?js:Fs;return null==e?this.styleTween(t,xc(t,n)).on("end.style."+t,_c(t)):"function"===typeof e?this.styleTween(t,kc(t,n,Us(this,"style."+t,e))).each(Mc(this._id,t)):this.styleTween(t,zc(t,n,e),o).on("end.style."+t,null)};function Hc(t,e,o){return function(n){this.style.setProperty(t,e.call(this,n),o)}}function Cc(t,e,o){var n,i;function r(){var r=e.apply(this,arguments);return r!==i&&(n=(i=r)&&Hc(t,r,o)),n}return r._value=e,r}var Lc=function(t,e,o){var n="style."+(t+="");if(arguments.length<2)return(n=this.tween(n))&&n._value;if(null==e)return this.tween(n,null);if("function"!==typeof e)throw new Error;return this.tween(n,Cc(t,e,null==o?"":o))};function Sc(t){return function(){this.textContent=t}}function Bc(t){return function(){var e=t(this);this.textContent=null==e?"":e}}var Ec=function(t){return this.tween("text","function"===typeof t?Bc(Us(this,"text",t)):Sc(null==t?"":t+""))};function Oc(t){return function(e){this.textContent=t.call(this,e)}}function Ac(t){var e,o;function n(){var n=t.apply(this,arguments);return n!==o&&(e=(o=n)&&Oc(n)),e}return n._value=t,n}var Tc=function(t){var e="text";if(arguments.length<1)return(e=this.tween(e))&&e._value;if(null==t)return this.tween(e,null);if("function"!==typeof t)throw new Error;return this.tween(e,Ac(t))},Ic=function(){for(var t=this._name,e=this._id,o=Dc(),n=this._groups,i=n.length,r=0;r<i;++r)for(var a,u=n[r],s=u.length,c=0;c<s;++c)if(a=u[c]){var l=zs(a,e);ws(a,t,o,c,u,{time:l.time+l.delay+l.duration,delay:0,duration:l.duration,ease:l.ease})}return new Rc(n,this._parents,t,o)},jc=function(){var t,e,o=this,n=o._id,i=o.size();return new Promise(function(r,a){var u={value:a},s={value:function(){0===--i&&r()}};o.each(function(){var o=_s(this,n),i=o.on;i!==t&&(e=(t=i).copy(),e._.cancel.push(u),e._.interrupt.push(u),e._.end.push(s)),o.on=e})})},Nc=0;function Rc(t,e,o,n){this._groups=t,this._parents=e,this._name=o,this._id=n}function Pc(t){return Ua().transition(t)}function Dc(){return++Nc}var Uc=Ua.prototype;function Fc(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}Rc.prototype=Pc.prototype={constructor:Rc,select:gc,selectAll:bc,filter:lc,merge:dc,selection:wc,transition:Ic,call:Uc.call,nodes:Uc.nodes,node:Uc.node,size:Uc.size,empty:Uc.empty,each:Uc.each,on:pc,attr:Js,attrTween:ec,style:Vc,styleTween:Lc,text:Ec,textTween:Tc,remove:mc,tween:Ds,delay:ic,duration:uc,ease:cc,end:jc};var qc={time:null,delay:0,duration:250,ease:Fc};function Kc(t,e){var o;while(!(o=t.__transition)||!(o=o[e]))if(!(t=t.parentNode))return qc.time=es(),qc;return o}var Yc=function(t){var e,o;t instanceof Rc?(e=t._id,t=t._name):(e=Dc(),(o=qc).time=es(),t=null==t?null:t+"");for(var n=this._groups,i=n.length,r=0;r<i;++r)for(var a,u=n[r],s=u.length,c=0;c<s;++c)(a=u[c])&&ws(a,t,e,c,u,o||Kc(a,e));return new Rc(n,this._parents,t,e)};Ua.prototype.interrupt=Ss,Ua.prototype.transition=Yc;function Gc(t){return[+t[0],+t[1]]}function Wc(t){return[Gc(t[0]),Gc(t[1])]}["w","e"].map(Qc),["n","s"].map(Qc),["n","w","e","s","nw","ne","sw","se"].map(Qc);function Qc(t){return{type:t}}Math.cos,Math.sin,Math.PI,Math.max;Array.prototype.slice;var Jc=Math.PI,Xc=2*Jc,Zc=1e-6,$c=Xc-Zc;function tl(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function el(){return new tl}tl.prototype=el.prototype={constructor:tl,moveTo:function(t,e){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")},lineTo:function(t,e){this._+="L"+(this._x1=+t)+","+(this._y1=+e)},quadraticCurveTo:function(t,e,o,n){this._+="Q"+ +t+","+ +e+","+(this._x1=+o)+","+(this._y1=+n)},bezierCurveTo:function(t,e,o,n,i,r){this._+="C"+ +t+","+ +e+","+ +o+","+ +n+","+(this._x1=+i)+","+(this._y1=+r)},arcTo:function(t,e,o,n,i){t=+t,e=+e,o=+o,n=+n,i=+i;var r=this._x1,a=this._y1,u=o-t,s=n-e,c=r-t,l=a-e,d=c*c+l*l;if(i<0)throw new Error("negative radius: "+i);if(null===this._x1)this._+="M"+(this._x1=t)+","+(this._y1=e);else if(d>Zc)if(Math.abs(l*u-s*c)>Zc&&i){var v=o-r,h=n-a,p=u*u+s*s,f=v*v+h*h,m=Math.sqrt(p),g=Math.sqrt(d),b=i*Math.tan((Jc-Math.acos((p+d-f)/(2*m*g)))/2),y=b/g,w=b/m;Math.abs(y-1)>Zc&&(this._+="L"+(t+y*c)+","+(e+y*l)),this._+="A"+i+","+i+",0,0,"+ +(l*v>c*h)+","+(this._x1=t+w*u)+","+(this._y1=e+w*s)}else this._+="L"+(this._x1=t)+","+(this._y1=e);else;},arc:function(t,e,o,n,i,r){t=+t,e=+e,o=+o,r=!!r;var a=o*Math.cos(n),u=o*Math.sin(n),s=t+a,c=e+u,l=1^r,d=r?n-i:i-n;if(o<0)throw new Error("negative radius: "+o);null===this._x1?this._+="M"+s+","+c:(Math.abs(this._x1-s)>Zc||Math.abs(this._y1-c)>Zc)&&(this._+="L"+s+","+c),o&&(d<0&&(d=d%Xc+Xc),d>$c?this._+="A"+o+","+o+",0,1,"+l+","+(t-a)+","+(e-u)+"A"+o+","+o+",0,1,"+l+","+(this._x1=s)+","+(this._y1=c):d>Zc&&(this._+="A"+o+","+o+",0,"+ +(d>=Jc)+","+l+","+(this._x1=t+o*Math.cos(i))+","+(this._y1=e+o*Math.sin(i))))},rect:function(t,e,o,n){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +o+"v"+ +n+"h"+-o+"Z"},toString:function(){return this._}};var ol="$";function nl(){}function il(t,e){var o=new nl;if(t instanceof nl)t.each(function(t,e){o.set(e,t)});else if(Array.isArray(t)){var n,i=-1,r=t.length;if(null==e)while(++i<r)o.set(i,t[i]);else while(++i<r)o.set(e(n=t[i],i,t),n)}else if(t)for(var a in t)o.set(a,t[a]);return o}nl.prototype=il.prototype={constructor:nl,has:function(t){return ol+t in this},get:function(t){return this[ol+t]},set:function(t,e){return this[ol+t]=e,this},remove:function(t){var e=ol+t;return e in this&&delete this[e]},clear:function(){for(var t in this)t[0]===ol&&delete this[t]},keys:function(){var t=[];for(var e in this)e[0]===ol&&t.push(e.slice(1));return t},values:function(){var t=[];for(var e in this)e[0]===ol&&t.push(this[e]);return t},entries:function(){var t=[];for(var e in this)e[0]===ol&&t.push({key:e.slice(1),value:this[e]});return t},size:function(){var t=0;for(var e in this)e[0]===ol&&++t;return t},empty:function(){for(var t in this)if(t[0]===ol)return!1;return!0},each:function(t){for(var e in this)e[0]===ol&&t(this[e],e.slice(1),this)}};var rl=il;function al(){}var ul=rl.prototype;function sl(t,e){var o=new al;if(t instanceof al)t.each(function(t){o.add(t)});else if(t){var n=-1,i=t.length;if(null==e)while(++n<i)o.add(t[n]);else while(++n<i)o.add(e(t[n],n,t))}return o}al.prototype=sl.prototype={constructor:al,has:ul.has,add:function(t){return t+="",this[ol+t]=t,this},remove:ul.remove,clear:ul.clear,values:ul.keys,size:ul.size,empty:ul.empty,each:ul.each};var cl=Array.prototype;cl.slice;var ll=function(t){var e=+this._x.call(null,t),o=+this._y.call(null,t);return dl(this.cover(e,o),e,o,t)};function dl(t,e,o,n){if(isNaN(e)||isNaN(o))return t;var i,r,a,u,s,c,l,d,v,h=t._root,p={data:n},f=t._x0,m=t._y0,g=t._x1,b=t._y1;if(!h)return t._root=p,t;while(h.length)if((c=e>=(r=(f+g)/2))?f=r:g=r,(l=o>=(a=(m+b)/2))?m=a:b=a,i=h,!(h=h[d=l<<1|c]))return i[d]=p,t;if(u=+t._x.call(null,h.data),s=+t._y.call(null,h.data),e===u&&o===s)return p.next=h,i?i[d]=p:t._root=p,t;do{i=i?i[d]=new Array(4):t._root=new Array(4),(c=e>=(r=(f+g)/2))?f=r:g=r,(l=o>=(a=(m+b)/2))?m=a:b=a}while((d=l<<1|c)===(v=(s>=a)<<1|u>=r));return i[v]=h,i[d]=p,t}function vl(t){var e,o,n,i,r=t.length,a=new Array(r),u=new Array(r),s=1/0,c=1/0,l=-1/0,d=-1/0;for(o=0;o<r;++o)isNaN(n=+this._x.call(null,e=t[o]))||isNaN(i=+this._y.call(null,e))||(a[o]=n,u[o]=i,n<s&&(s=n),n>l&&(l=n),i<c&&(c=i),i>d&&(d=i));if(s>l||c>d)return this;for(this.cover(s,c).cover(l,d),o=0;o<r;++o)dl(this,a[o],u[o],t[o]);return this}var hl=function(t,e){if(isNaN(t=+t)||isNaN(e=+e))return this;var o=this._x0,n=this._y0,i=this._x1,r=this._y1;if(isNaN(o))i=(o=Math.floor(t))+1,r=(n=Math.floor(e))+1;else{var a,u,s=i-o,c=this._root;while(o>t||t>=i||n>e||e>=r)switch(u=(e<n)<<1|t<o,a=new Array(4),a[u]=c,c=a,s*=2,u){case 0:i=o+s,r=n+s;break;case 1:o=i-s,r=n+s;break;case 2:i=o+s,n=r-s;break;case 3:o=i-s,n=r-s;break}this._root&&this._root.length&&(this._root=c)}return this._x0=o,this._y0=n,this._x1=i,this._y1=r,this},pl=function(){var t=[];return this.visit(function(e){if(!e.length)do{t.push(e.data)}while(e=e.next)}),t},fl=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},ml=function(t,e,o,n,i){this.node=t,this.x0=e,this.y0=o,this.x1=n,this.y1=i},gl=function(t,e,o){var n,i,r,a,u,s,c,l=this._x0,d=this._y0,v=this._x1,h=this._y1,p=[],f=this._root;f&&p.push(new ml(f,l,d,v,h)),null==o?o=1/0:(l=t-o,d=e-o,v=t+o,h=e+o,o*=o);while(s=p.pop())if(!(!(f=s.node)||(i=s.x0)>v||(r=s.y0)>h||(a=s.x1)<l||(u=s.y1)<d))if(f.length){var m=(i+a)/2,g=(r+u)/2;p.push(new ml(f[3],m,g,a,u),new ml(f[2],i,g,m,u),new ml(f[1],m,r,a,g),new ml(f[0],i,r,m,g)),(c=(e>=g)<<1|t>=m)&&(s=p[p.length-1],p[p.length-1]=p[p.length-1-c],p[p.length-1-c]=s)}else{var b=t-+this._x.call(null,f.data),y=e-+this._y.call(null,f.data),w=b*b+y*y;if(w<o){var x=Math.sqrt(o=w);l=t-x,d=e-x,v=t+x,h=e+x,n=f.data}}return n},bl=function(t){if(isNaN(r=+this._x.call(null,t))||isNaN(a=+this._y.call(null,t)))return this;var e,o,n,i,r,a,u,s,c,l,d,v,h=this._root,p=this._x0,f=this._y0,m=this._x1,g=this._y1;if(!h)return this;if(h.length)while(1){if((c=r>=(u=(p+m)/2))?p=u:m=u,(l=a>=(s=(f+g)/2))?f=s:g=s,e=h,!(h=h[d=l<<1|c]))return this;if(!h.length)break;(e[d+1&3]||e[d+2&3]||e[d+3&3])&&(o=e,v=d)}while(h.data!==t)if(n=h,!(h=h.next))return this;return(i=h.next)&&delete h.next,n?(i?n.next=i:delete n.next,this):e?(i?e[d]=i:delete e[d],(h=e[0]||e[1]||e[2]||e[3])&&h===(e[3]||e[2]||e[1]||e[0])&&!h.length&&(o?o[v]=h:this._root=h),this):(this._root=i,this)};function yl(t){for(var e=0,o=t.length;e<o;++e)this.remove(t[e]);return this}var wl=function(){return this._root},xl=function(){var t=0;return this.visit(function(e){if(!e.length)do{++t}while(e=e.next)}),t},_l=function(t){var e,o,n,i,r,a,u=[],s=this._root;s&&u.push(new ml(s,this._x0,this._y0,this._x1,this._y1));while(e=u.pop())if(!t(s=e.node,n=e.x0,i=e.y0,r=e.x1,a=e.y1)&&s.length){var c=(n+r)/2,l=(i+a)/2;(o=s[3])&&u.push(new ml(o,c,l,r,a)),(o=s[2])&&u.push(new ml(o,n,l,c,a)),(o=s[1])&&u.push(new ml(o,c,i,r,l)),(o=s[0])&&u.push(new ml(o,n,i,c,l))}return this},zl=function(t){var e,o=[],n=[];this._root&&o.push(new ml(this._root,this._x0,this._y0,this._x1,this._y1));while(e=o.pop()){var i=e.node;if(i.length){var r,a=e.x0,u=e.y0,s=e.x1,c=e.y1,l=(a+s)/2,d=(u+c)/2;(r=i[0])&&o.push(new ml(r,a,u,l,d)),(r=i[1])&&o.push(new ml(r,l,u,s,d)),(r=i[2])&&o.push(new ml(r,a,d,l,c)),(r=i[3])&&o.push(new ml(r,l,d,s,c))}n.push(e)}while(e=n.pop())t(e.node,e.x0,e.y0,e.x1,e.y1);return this};function kl(t){return t[0]}var Ml=function(t){return arguments.length?(this._x=t,this):this._x};function Vl(t){return t[1]}var Hl=function(t){return arguments.length?(this._y=t,this):this._y};function Cl(t,e,o){var n=new Ll(null==e?kl:e,null==o?Vl:o,NaN,NaN,NaN,NaN);return null==t?n:n.addAll(t)}function Ll(t,e,o,n,i,r){this._x=t,this._y=e,this._x0=o,this._y0=n,this._x1=i,this._y1=r,this._root=void 0}function Sl(t){var e={data:t.data},o=e;while(t=t.next)o=o.next={data:t.data};return e}var Bl=Cl.prototype=Ll.prototype;Bl.copy=function(){var t,e,o=new Ll(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return o;if(!n.length)return o._root=Sl(n),o;t=[{source:n,target:o._root=new Array(4)}];while(n=t.pop())for(var i=0;i<4;++i)(e=n.source[i])&&(e.length?t.push({source:e,target:n.target[i]=new Array(4)}):n.target[i]=Sl(e));return o},Bl.add=ll,Bl.addAll=vl,Bl.cover=hl,Bl.data=pl,Bl.extent=fl,Bl.find=gl,Bl.remove=bl,Bl.removeAll=yl,Bl.root=wl,Bl.size=xl,Bl.visit=_l,Bl.visitAfter=zl,Bl.x=Ml,Bl.y=Hl;Math.PI,Math.sqrt(5);var El=function(){return Math.random()},Ol=(function t(e){function o(t,o){return t=null==t?0:+t,o=null==o?1:+o,1===arguments.length?(o=t,t=0):o-=t,function(){return e()*o+t}}return o.source=t,o}(El),function t(e){function o(t,o){var n,i;return t=null==t?0:+t,o=null==o?1:+o,function(){var r;if(null!=n)r=n,n=null;else do{n=2*e()-1,r=2*e()-1,i=n*n+r*r}while(!i||i>1);return t+o*r*Math.sqrt(-2*Math.log(i)/i)}}return o.source=t,o}(El)),Al=(function t(e){function o(){var t=Ol.source(e).apply(this,arguments);return function(){return Math.exp(t())}}return o.source=t,o}(El),function t(e){function o(t){return function(){for(var o=0,n=0;n<t;++n)o+=e();return o}}return o.source=t,o}(El));(function t(e){function o(t){var o=Al.source(e)(t);return function(){return o()/t}}return o.source=t,o})(El),function t(e){function o(t){return function(){return-Math.log(1-e())/t}}return o.source=t,o}(El);function Tl(t,e){switch(arguments.length){case 0:break;case 1:this.range(t);break;default:this.range(e).domain(t);break}return this}var Il=Array.prototype,jl=Il.map,Nl=Il.slice;var Rl=function(t,e){return t=+t,e=+e,function(o){return Math.round(t*(1-o)+e*o)}},Pl=function(t){return function(){return t}},Dl=function(t){return+t},Ul=[0,1];function Fl(t){return t}function ql(t,e){return(e-=t=+t)?function(o){return(o-t)/e}:Pl(isNaN(e)?NaN:.5)}function Kl(t){var e,o=t[0],n=t[t.length-1];return o>n&&(e=o,o=n,n=e),function(t){return Math.max(o,Math.min(n,t))}}function Yl(t,e,o){var n=t[0],i=t[1],r=e[0],a=e[1];return i<n?(n=ql(i,n),r=o(a,r)):(n=ql(n,i),r=o(r,a)),function(t){return r(n(t))}}function Gl(t,e,o){var n=Math.min(t.length,e.length)-1,i=new Array(n),r=new Array(n),a=-1;t[n]<t[0]&&(t=t.slice().reverse(),e=e.slice().reverse());while(++a<n)i[a]=ql(t[a],t[a+1]),r[a]=o(e[a],e[a+1]);return function(e){var o=Ii(t,e,1,n)-1;return r[o](i[o](e))}}function Wl(t,e){return e.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp()).unknown(t.unknown())}function Ql(){var t,e,o,n,i,r,a=Ul,u=Ul,s=Ku,c=Fl;function l(){return n=Math.min(a.length,u.length)>2?Gl:Yl,i=r=null,d}function d(e){return isNaN(e=+e)?o:(i||(i=n(a.map(t),u,s)))(t(c(e)))}return d.invert=function(o){return c(e((r||(r=n(u,a.map(t),Iu)))(o)))},d.domain=function(t){return arguments.length?(a=jl.call(t,Dl),c===Fl||(c=Kl(a)),l()):a.slice()},d.range=function(t){return arguments.length?(u=Nl.call(t),l()):u.slice()},d.rangeRound=function(t){return u=Nl.call(t),s=Rl,l()},d.clamp=function(t){return arguments.length?(c=t?Kl(a):Fl,d):c!==Fl},d.interpolate=function(t){return arguments.length?(s=t,l()):s},d.unknown=function(t){return arguments.length?(o=t,d):o},function(o,n){return t=o,e=n,l()}}function Jl(t,e){return Ql()(t,e)}var Xl=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Zl(t){if(!(e=Xl.exec(t)))throw new Error("invalid format: "+t);var e;return new $l({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}function $l(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}Zl.prototype=$l.prototype,$l.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var td=function(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)};function ed(t,e){if((o=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"))<0)return null;var o,n=t.slice(0,o);return[n.length>1?n[0]+n.slice(2):n,+t.slice(o+1)]}var od,nd,id,rd,ad=function(t){return t=ed(Math.abs(t)),t?t[1]:NaN},ud=function(t,e){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(ad(e)/3)))-ad(Math.abs(t)))},sd=function(t,e){return function(o,n){var i=o.length,r=[],a=0,u=t[0],s=0;while(i>0&&u>0){if(s+u+1>n&&(u=Math.max(1,n-s)),r.push(o.substring(i-=u,i+u)),(s+=u+1)>n)break;u=t[a=(a+1)%t.length]}return r.reverse().join(e)}},cd=function(t){return function(e){return e.replace(/[0-9]/g,function(e){return t[+e]})}},ld=function(t){t:for(var e,o=t.length,n=1,i=-1;n<o;++n)switch(t[n]){case".":i=e=n;break;case"0":0===i&&(i=n),e=n;break;default:if(!+t[n])break t;i>0&&(i=0);break}return i>0?t.slice(0,i)+t.slice(e+1):t},dd=function(t,e){var o=ed(t,e);if(!o)return t+"";var n=o[0],i=o[1],r=i-(od=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,a=n.length;return r===a?n:r>a?n+new Array(r-a+1).join("0"):r>0?n.slice(0,r)+"."+n.slice(r):"0."+new Array(1-r).join("0")+ed(t,Math.max(0,e+r-1))[0]},vd=function(t,e){var o=ed(t,e);if(!o)return t+"";var n=o[0],i=o[1];return i<0?"0."+new Array(-i).join("0")+n:n.length>i+1?n.slice(0,i+1)+"."+n.slice(i+1):n+new Array(i-n.length+2).join("0")},hd={"%":function(t,e){return(100*t).toFixed(e)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:td,e:function(t,e){return t.toExponential(e)},f:function(t,e){return t.toFixed(e)},g:function(t,e){return t.toPrecision(e)},o:function(t){return Math.round(t).toString(8)},p:function(t,e){return vd(100*t,e)},r:vd,s:dd,X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}},pd=function(t){return t},fd=Array.prototype.map,md=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"],gd=function(t){var e=void 0===t.grouping||void 0===t.thousands?pd:sd(fd.call(t.grouping,Number),t.thousands+""),o=void 0===t.currency?"":t.currency[0]+"",n=void 0===t.currency?"":t.currency[1]+"",i=void 0===t.decimal?".":t.decimal+"",r=void 0===t.numerals?pd:cd(fd.call(t.numerals,String)),a=void 0===t.percent?"%":t.percent+"",u=void 0===t.minus?"-":t.minus+"",s=void 0===t.nan?"NaN":t.nan+"";function c(t){t=Zl(t);var c=t.fill,l=t.align,d=t.sign,v=t.symbol,h=t.zero,p=t.width,f=t.comma,m=t.precision,g=t.trim,b=t.type;"n"===b?(f=!0,b="g"):hd[b]||(void 0===m&&(m=12),g=!0,b="g"),(h||"0"===c&&"="===l)&&(h=!0,c="0",l="=");var y="$"===v?o:"#"===v&&/[boxX]/.test(b)?"0"+b.toLowerCase():"",w="$"===v?n:/[%p]/.test(b)?a:"",x=hd[b],_=/[defgprs%]/.test(b);function z(t){var o,n,a,v=y,z=w;if("c"===b)z=x(t)+z,t="";else{t=+t;var k=t<0||1/t<0;if(t=isNaN(t)?s:x(Math.abs(t),m),g&&(t=ld(t)),k&&0===+t&&"+"!==d&&(k=!1),v=(k?"("===d?d:u:"-"===d||"("===d?"":d)+v,z=("s"===b?md[8+od/3]:"")+z+(k&&"("===d?")":""),_){o=-1,n=t.length;while(++o<n)if(a=t.charCodeAt(o),48>a||a>57){z=(46===a?i+t.slice(o+1):t.slice(o))+z,t=t.slice(0,o);break}}}f&&!h&&(t=e(t,1/0));var M=v.length+t.length+z.length,V=M<p?new Array(p-M+1).join(c):"";switch(f&&h&&(t=e(V+t,V.length?p-z.length:1/0),V=""),l){case"<":t=v+t+z+V;break;case"=":t=v+V+t+z;break;case"^":t=V.slice(0,M=V.length>>1)+v+t+z+V.slice(M);break;default:t=V+v+t+z;break}return r(t)}return m=void 0===m?6:/[gprs]/.test(b)?Math.max(1,Math.min(21,m)):Math.max(0,Math.min(20,m)),z.toString=function(){return t+""},z}function l(t,e){var o=c((t=Zl(t),t.type="f",t)),n=3*Math.max(-8,Math.min(8,Math.floor(ad(e)/3))),i=Math.pow(10,-n),r=md[8+n/3];return function(t){return o(i*t)+r}}return{format:c,formatPrefix:l}};function bd(t){return nd=gd(t),id=nd.format,rd=nd.formatPrefix,nd}bd({decimal:".",thousands:",",grouping:[3],currency:["$",""],minus:"-"});var yd=function(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,ad(e)-ad(t))+1},wd=function(t){return Math.max(0,-ad(Math.abs(t)))},xd=function(t,e,o,n){var i,r=qi(t,e,o);switch(n=Zl(null==n?",f":n),n.type){case"s":var a=Math.max(Math.abs(t),Math.abs(e));return null!=n.precision||isNaN(i=ud(r,a))||(n.precision=i),rd(n,a);case"":case"e":case"g":case"p":case"r":null!=n.precision||isNaN(i=yd(r,Math.max(Math.abs(t),Math.abs(e))))||(n.precision=i-("e"===n.type));break;case"f":case"%":null!=n.precision||isNaN(i=wd(r))||(n.precision=i-2*("%"===n.type));break}return id(n)};function _d(t){var e=t.domain;return t.ticks=function(t){var o=e();return Ui(o[0],o[o.length-1],null==t?10:t)},t.tickFormat=function(t,o){var n=e();return xd(n[0],n[n.length-1],null==t?10:t,o)},t.nice=function(o){null==o&&(o=10);var n,i=e(),r=0,a=i.length-1,u=i[r],s=i[a];return s<u&&(n=u,u=s,s=n,n=r,r=a,a=n),n=Fi(u,s,o),n>0?(u=Math.floor(u/n)*n,s=Math.ceil(s/n)*n,n=Fi(u,s,o)):n<0&&(u=Math.ceil(u*n)/n,s=Math.floor(s*n)/n,n=Fi(u,s,o)),n>0?(i[r]=Math.floor(u/n)*n,i[a]=Math.ceil(s/n)*n,e(i)):n<0&&(i[r]=Math.ceil(u*n)/n,i[a]=Math.floor(s*n)/n,e(i)),t},t}function zd(){var t=Jl(Fl,Fl);return t.copy=function(){return Wl(t,zd())},Tl.apply(t,arguments),_d(t)}var kd=new Date,Md=new Date;function Vd(t,e,o,n){function i(e){return t(e=0===arguments.length?new Date:new Date(+e)),e}return i.floor=function(e){return t(e=new Date(+e)),e},i.ceil=function(o){return t(o=new Date(o-1)),e(o,1),t(o),o},i.round=function(t){var e=i(t),o=i.ceil(t);return t-e<o-t?e:o},i.offset=function(t,o){return e(t=new Date(+t),null==o?1:Math.floor(o)),t},i.range=function(o,n,r){var a,u=[];if(o=i.ceil(o),r=null==r?1:Math.floor(r),!(o<n)||!(r>0))return u;do{u.push(a=new Date(+o)),e(o,r),t(o)}while(a<o&&o<n);return u},i.filter=function(o){return Vd(function(e){if(e>=e)while(t(e),!o(e))e.setTime(e-1)},function(t,n){if(t>=t)if(n<0)while(++n<=0)while(e(t,-1),!o(t));else while(--n>=0)while(e(t,1),!o(t));})},o&&(i.count=function(e,n){return kd.setTime(+e),Md.setTime(+n),t(kd),t(Md),Math.floor(o(kd,Md))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(n?function(e){return n(e)%t===0}:function(e){return i.count(0,e)%t===0}):i:null}),i}var Hd=Vd(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,e){t.setFullYear(t.getFullYear()+e)},function(t,e){return e.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});Hd.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Vd(function(e){e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)},function(e,o){e.setFullYear(e.getFullYear()+o*t)}):null};var Cd=Hd,Ld=(Hd.range,Vd(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,e){t.setMonth(t.getMonth()+e)},function(t,e){return e.getMonth()-t.getMonth()+12*(e.getFullYear()-t.getFullYear())},function(t){return t.getMonth()})),Sd=(Ld.range,1e3),Bd=6e4,Ed=36e5,Od=864e5,Ad=6048e5;function Td(t){return Vd(function(e){e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)},function(t,e){t.setDate(t.getDate()+7*e)},function(t,e){return(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*Bd)/Ad})}var Id=Td(0),jd=Td(1),Nd=Td(2),Rd=Td(3),Pd=Td(4),Dd=Td(5),Ud=Td(6),Fd=(Id.range,jd.range,Nd.range,Rd.range,Pd.range,Dd.range,Ud.range,Vd(function(t){t.setHours(0,0,0,0)},function(t,e){t.setDate(t.getDate()+e)},function(t,e){return(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*Bd)/Od},function(t){return t.getDate()-1})),qd=Fd,Kd=(Fd.range,Vd(function(t){t.setTime(t-t.getMilliseconds()-t.getSeconds()*Sd-t.getMinutes()*Bd)},function(t,e){t.setTime(+t+e*Ed)},function(t,e){return(e-t)/Ed},function(t){return t.getHours()})),Yd=(Kd.range,Vd(function(t){t.setTime(t-t.getMilliseconds()-t.getSeconds()*Sd)},function(t,e){t.setTime(+t+e*Bd)},function(t,e){return(e-t)/Bd},function(t){return t.getMinutes()})),Gd=(Yd.range,Vd(function(t){t.setTime(t-t.getMilliseconds())},function(t,e){t.setTime(+t+e*Sd)},function(t,e){return(e-t)/Sd},function(t){return t.getUTCSeconds()})),Wd=(Gd.range,Vd(function(){},function(t,e){t.setTime(+t+e)},function(t,e){return e-t}));Wd.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?Vd(function(e){e.setTime(Math.floor(e/t)*t)},function(e,o){e.setTime(+e+o*t)},function(e,o){return(o-e)/t}):Wd:null};Wd.range;function Qd(t){return Vd(function(e){e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)},function(t,e){t.setUTCDate(t.getUTCDate()+7*e)},function(t,e){return(e-t)/Ad})}var Jd=Qd(0),Xd=Qd(1),Zd=Qd(2),$d=Qd(3),tv=Qd(4),ev=Qd(5),ov=Qd(6),nv=(Jd.range,Xd.range,Zd.range,$d.range,tv.range,ev.range,ov.range,Vd(function(t){t.setUTCHours(0,0,0,0)},function(t,e){t.setUTCDate(t.getUTCDate()+e)},function(t,e){return(e-t)/Od},function(t){return t.getUTCDate()-1})),iv=nv,rv=(nv.range,Vd(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,e){t.setUTCFullYear(t.getUTCFullYear()+e)},function(t,e){return e.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()}));rv.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Vd(function(e){e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)},function(e,o){e.setUTCFullYear(e.getUTCFullYear()+o*t)}):null};var av=rv;rv.range;function uv(t){if(0<=t.y&&t.y<100){var e=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return e.setFullYear(t.y),e}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function sv(t){if(0<=t.y&&t.y<100){var e=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return e.setUTCFullYear(t.y),e}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function cv(t,e,o){return{y:t,m:e,d:o,H:0,M:0,S:0,L:0}}function lv(t){var e=t.dateTime,o=t.date,n=t.time,i=t.periods,r=t.days,a=t.shortDays,u=t.months,s=t.shortMonths,c=bv(i),l=yv(i),d=bv(r),v=yv(r),h=bv(a),p=yv(a),f=bv(u),m=yv(u),g=bv(s),b=yv(s),y={a:O,A:A,b:T,B:I,c:null,d:Pv,e:Pv,f:Kv,g:oh,G:ih,H:Dv,I:Uv,j:Fv,L:qv,m:Yv,M:Gv,p:j,q:N,Q:Hh,s:Ch,S:Wv,u:Qv,U:Jv,V:Zv,w:$v,W:th,x:null,X:null,y:eh,Y:nh,Z:rh,"%":Vh},w={a:R,A:P,b:D,B:U,c:null,d:ah,e:ah,f:dh,g:_h,G:kh,H:uh,I:sh,j:ch,L:lh,m:vh,M:hh,p:F,q:q,Q:Hh,s:Ch,S:ph,u:fh,U:mh,V:bh,w:yh,W:wh,x:null,X:null,y:xh,Y:zh,Z:Mh,"%":Vh},x={a:V,A:H,b:C,B:L,c:S,d:Sv,e:Sv,f:Iv,g:Vv,G:Mv,H:Ev,I:Ev,j:Bv,L:Tv,m:Lv,M:Ov,p:M,q:Cv,Q:Nv,s:Rv,S:Av,u:xv,U:_v,V:zv,w:wv,W:kv,x:B,X:E,y:Vv,Y:Mv,Z:Hv,"%":jv};function _(t,e){return function(o){var n,i,r,a=[],u=-1,s=0,c=t.length;o instanceof Date||(o=new Date(+o));while(++u<c)37===t.charCodeAt(u)&&(a.push(t.slice(s,u)),null!=(i=vv[n=t.charAt(++u)])?n=t.charAt(++u):i="e"===n?" ":"0",(r=e[n])&&(n=r(o,i)),a.push(n),s=u+1);return a.push(t.slice(s,u)),a.join("")}}function z(t,e){return function(o){var n,i,r=cv(1900,void 0,1),a=k(r,t,o+="",0);if(a!=o.length)return null;if("Q"in r)return new Date(r.Q);if("s"in r)return new Date(1e3*r.s+("L"in r?r.L:0));if(!e||"Z"in r||(r.Z=0),"p"in r&&(r.H=r.H%12+12*r.p),void 0===r.m&&(r.m="q"in r?r.q:0),"V"in r){if(r.V<1||r.V>53)return null;"w"in r||(r.w=1),"Z"in r?(n=sv(cv(r.y,0,1)),i=n.getUTCDay(),n=i>4||0===i?Xd.ceil(n):Xd(n),n=iv.offset(n,7*(r.V-1)),r.y=n.getUTCFullYear(),r.m=n.getUTCMonth(),r.d=n.getUTCDate()+(r.w+6)%7):(n=uv(cv(r.y,0,1)),i=n.getDay(),n=i>4||0===i?jd.ceil(n):jd(n),n=qd.offset(n,7*(r.V-1)),r.y=n.getFullYear(),r.m=n.getMonth(),r.d=n.getDate()+(r.w+6)%7)}else("W"in r||"U"in r)&&("w"in r||(r.w="u"in r?r.u%7:"W"in r?1:0),i="Z"in r?sv(cv(r.y,0,1)).getUTCDay():uv(cv(r.y,0,1)).getDay(),r.m=0,r.d="W"in r?(r.w+6)%7+7*r.W-(i+5)%7:r.w+7*r.U-(i+6)%7);return"Z"in r?(r.H+=r.Z/100|0,r.M+=r.Z%100,sv(r)):uv(r)}}function k(t,e,o,n){var i,r,a=0,u=e.length,s=o.length;while(a<u){if(n>=s)return-1;if(i=e.charCodeAt(a++),37===i){if(i=e.charAt(a++),r=x[i in vv?e.charAt(a++):i],!r||(n=r(t,o,n))<0)return-1}else if(i!=o.charCodeAt(n++))return-1}return n}function M(t,e,o){var n=c.exec(e.slice(o));return n?(t.p=l[n[0].toLowerCase()],o+n[0].length):-1}function V(t,e,o){var n=h.exec(e.slice(o));return n?(t.w=p[n[0].toLowerCase()],o+n[0].length):-1}function H(t,e,o){var n=d.exec(e.slice(o));return n?(t.w=v[n[0].toLowerCase()],o+n[0].length):-1}function C(t,e,o){var n=g.exec(e.slice(o));return n?(t.m=b[n[0].toLowerCase()],o+n[0].length):-1}function L(t,e,o){var n=f.exec(e.slice(o));return n?(t.m=m[n[0].toLowerCase()],o+n[0].length):-1}function S(t,o,n){return k(t,e,o,n)}function B(t,e,n){return k(t,o,e,n)}function E(t,e,o){return k(t,n,e,o)}function O(t){return a[t.getDay()]}function A(t){return r[t.getDay()]}function T(t){return s[t.getMonth()]}function I(t){return u[t.getMonth()]}function j(t){return i[+(t.getHours()>=12)]}function N(t){return 1+~~(t.getMonth()/3)}function R(t){return a[t.getUTCDay()]}function P(t){return r[t.getUTCDay()]}function D(t){return s[t.getUTCMonth()]}function U(t){return u[t.getUTCMonth()]}function F(t){return i[+(t.getUTCHours()>=12)]}function q(t){return 1+~~(t.getUTCMonth()/3)}return y.x=_(o,y),y.X=_(n,y),y.c=_(e,y),w.x=_(o,w),w.X=_(n,w),w.c=_(e,w),{format:function(t){var e=_(t+="",y);return e.toString=function(){return t},e},parse:function(t){var e=z(t+="",!1);return e.toString=function(){return t},e},utcFormat:function(t){var e=_(t+="",w);return e.toString=function(){return t},e},utcParse:function(t){var e=z(t+="",!0);return e.toString=function(){return t},e}}}var dv,vv={"-":"",_:" ",0:"0"},hv=/^\s*\d+/,pv=/^%/,fv=/[\\^$*+?|[\]().{}]/g;function mv(t,e,o){var n=t<0?"-":"",i=(n?-t:t)+"",r=i.length;return n+(r<o?new Array(o-r+1).join(e)+i:i)}function gv(t){return t.replace(fv,"\\$&")}function bv(t){return new RegExp("^(?:"+t.map(gv).join("|")+")","i")}function yv(t){var e={},o=-1,n=t.length;while(++o<n)e[t[o].toLowerCase()]=o;return e}function wv(t,e,o){var n=hv.exec(e.slice(o,o+1));return n?(t.w=+n[0],o+n[0].length):-1}function xv(t,e,o){var n=hv.exec(e.slice(o,o+1));return n?(t.u=+n[0],o+n[0].length):-1}function _v(t,e,o){var n=hv.exec(e.slice(o,o+2));return n?(t.U=+n[0],o+n[0].length):-1}function zv(t,e,o){var n=hv.exec(e.slice(o,o+2));return n?(t.V=+n[0],o+n[0].length):-1}function kv(t,e,o){var n=hv.exec(e.slice(o,o+2));return n?(t.W=+n[0],o+n[0].length):-1}function Mv(t,e,o){var n=hv.exec(e.slice(o,o+4));return n?(t.y=+n[0],o+n[0].length):-1}function Vv(t,e,o){var n=hv.exec(e.slice(o,o+2));return n?(t.y=+n[0]+(+n[0]>68?1900:2e3),o+n[0].length):-1}function Hv(t,e,o){var n=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(o,o+6));return n?(t.Z=n[1]?0:-(n[2]+(n[3]||"00")),o+n[0].length):-1}function Cv(t,e,o){var n=hv.exec(e.slice(o,o+1));return n?(t.q=3*n[0]-3,o+n[0].length):-1}function Lv(t,e,o){var n=hv.exec(e.slice(o,o+2));return n?(t.m=n[0]-1,o+n[0].length):-1}function Sv(t,e,o){var n=hv.exec(e.slice(o,o+2));return n?(t.d=+n[0],o+n[0].length):-1}function Bv(t,e,o){var n=hv.exec(e.slice(o,o+3));return n?(t.m=0,t.d=+n[0],o+n[0].length):-1}function Ev(t,e,o){var n=hv.exec(e.slice(o,o+2));return n?(t.H=+n[0],o+n[0].length):-1}function Ov(t,e,o){var n=hv.exec(e.slice(o,o+2));return n?(t.M=+n[0],o+n[0].length):-1}function Av(t,e,o){var n=hv.exec(e.slice(o,o+2));return n?(t.S=+n[0],o+n[0].length):-1}function Tv(t,e,o){var n=hv.exec(e.slice(o,o+3));return n?(t.L=+n[0],o+n[0].length):-1}function Iv(t,e,o){var n=hv.exec(e.slice(o,o+6));return n?(t.L=Math.floor(n[0]/1e3),o+n[0].length):-1}function jv(t,e,o){var n=pv.exec(e.slice(o,o+1));return n?o+n[0].length:-1}function Nv(t,e,o){var n=hv.exec(e.slice(o));return n?(t.Q=+n[0],o+n[0].length):-1}function Rv(t,e,o){var n=hv.exec(e.slice(o));return n?(t.s=+n[0],o+n[0].length):-1}function Pv(t,e){return mv(t.getDate(),e,2)}function Dv(t,e){return mv(t.getHours(),e,2)}function Uv(t,e){return mv(t.getHours()%12||12,e,2)}function Fv(t,e){return mv(1+qd.count(Cd(t),t),e,3)}function qv(t,e){return mv(t.getMilliseconds(),e,3)}function Kv(t,e){return qv(t,e)+"000"}function Yv(t,e){return mv(t.getMonth()+1,e,2)}function Gv(t,e){return mv(t.getMinutes(),e,2)}function Wv(t,e){return mv(t.getSeconds(),e,2)}function Qv(t){var e=t.getDay();return 0===e?7:e}function Jv(t,e){return mv(Id.count(Cd(t)-1,t),e,2)}function Xv(t){var e=t.getDay();return e>=4||0===e?Pd(t):Pd.ceil(t)}function Zv(t,e){return t=Xv(t),mv(Pd.count(Cd(t),t)+(4===Cd(t).getDay()),e,2)}function $v(t){return t.getDay()}function th(t,e){return mv(jd.count(Cd(t)-1,t),e,2)}function eh(t,e){return mv(t.getFullYear()%100,e,2)}function oh(t,e){return t=Xv(t),mv(t.getFullYear()%100,e,2)}function nh(t,e){return mv(t.getFullYear()%1e4,e,4)}function ih(t,e){var o=t.getDay();return t=o>=4||0===o?Pd(t):Pd.ceil(t),mv(t.getFullYear()%1e4,e,4)}function rh(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+mv(e/60|0,"0",2)+mv(e%60,"0",2)}function ah(t,e){return mv(t.getUTCDate(),e,2)}function uh(t,e){return mv(t.getUTCHours(),e,2)}function sh(t,e){return mv(t.getUTCHours()%12||12,e,2)}function ch(t,e){return mv(1+iv.count(av(t),t),e,3)}function lh(t,e){return mv(t.getUTCMilliseconds(),e,3)}function dh(t,e){return lh(t,e)+"000"}function vh(t,e){return mv(t.getUTCMonth()+1,e,2)}function hh(t,e){return mv(t.getUTCMinutes(),e,2)}function ph(t,e){return mv(t.getUTCSeconds(),e,2)}function fh(t){var e=t.getUTCDay();return 0===e?7:e}function mh(t,e){return mv(Jd.count(av(t)-1,t),e,2)}function gh(t){var e=t.getUTCDay();return e>=4||0===e?tv(t):tv.ceil(t)}function bh(t,e){return t=gh(t),mv(tv.count(av(t),t)+(4===av(t).getUTCDay()),e,2)}function yh(t){return t.getUTCDay()}function wh(t,e){return mv(Xd.count(av(t)-1,t),e,2)}function xh(t,e){return mv(t.getUTCFullYear()%100,e,2)}function _h(t,e){return t=gh(t),mv(t.getUTCFullYear()%100,e,2)}function zh(t,e){return mv(t.getUTCFullYear()%1e4,e,4)}function kh(t,e){var o=t.getUTCDay();return t=o>=4||0===o?tv(t):tv.ceil(t),mv(t.getUTCFullYear()%1e4,e,4)}function Mh(){return"+0000"}function Vh(){return"%"}function Hh(t){return+t}function Ch(t){return Math.floor(+t/1e3)}function Lh(t){return dv=lv(t),dv.format,dv.parse,dv.utcFormat,dv.utcParse,dv}Lh({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var Sh=Vd(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,e){t.setUTCMonth(t.getUTCMonth()+e)},function(t,e){return e.getUTCMonth()-t.getUTCMonth()+12*(e.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()}),Bh=(Sh.range,Vd(function(t){t.setUTCMinutes(0,0,0)},function(t,e){t.setTime(+t+e*Ed)},function(t,e){return(e-t)/Ed},function(t){return t.getUTCHours()})),Eh=(Bh.range,Vd(function(t){t.setUTCSeconds(0,0)},function(t,e){t.setTime(+t+e*Bd)},function(t,e){return(e-t)/Bd},function(t){return t.getUTCMinutes()}));Eh.range;function Oh(){this._=null}function Ah(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function Th(t,e){var o=e,n=e.R,i=o.U;i?i.L===o?i.L=n:i.R=n:t._=n,n.U=i,o.U=n,o.R=n.L,o.R&&(o.R.U=o),n.L=o}function Ih(t,e){var o=e,n=e.L,i=o.U;i?i.L===o?i.L=n:i.R=n:t._=n,n.U=i,o.U=n,o.L=n.R,o.L&&(o.L.U=o),n.R=o}function jh(t){while(t.L)t=t.L;return t}Oh.prototype={constructor:Oh,insert:function(t,e){var o,n,i;if(t){if(e.P=t,e.N=t.N,t.N&&(t.N.P=e),t.N=e,t.R){t=t.R;while(t.L)t=t.L;t.L=e}else t.R=e;o=t}else this._?(t=jh(this._),e.P=null,e.N=t,t.P=t.L=e,o=t):(e.P=e.N=null,this._=e,o=null);e.L=e.R=null,e.U=o,e.C=!0,t=e;while(o&&o.C)n=o.U,o===n.L?(i=n.R,i&&i.C?(o.C=i.C=!1,n.C=!0,t=n):(t===o.R&&(Th(this,o),t=o,o=t.U),o.C=!1,n.C=!0,Ih(this,n))):(i=n.L,i&&i.C?(o.C=i.C=!1,n.C=!0,t=n):(t===o.L&&(Ih(this,o),t=o,o=t.U),o.C=!1,n.C=!0,Th(this,n))),o=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var e,o,n,i=t.U,r=t.L,a=t.R;if(o=r?a?jh(a):r:a,i?i.L===t?i.L=o:i.R=o:this._=o,r&&a?(n=o.C,o.C=t.C,o.L=r,r.U=o,o!==a?(i=o.U,o.U=t.U,t=o.R,i.L=t,o.R=a,a.U=o):(o.U=i,i=o,t=o.R)):(n=t.C,t=o),t&&(t.U=i),!n)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===i.L){if(e=i.R,e.C&&(e.C=!1,i.C=!0,Th(this,i),e=i.R),e.L&&e.L.C||e.R&&e.R.C){e.R&&e.R.C||(e.L.C=!1,e.C=!0,Ih(this,e),e=i.R),e.C=i.C,i.C=e.R.C=!1,Th(this,i),t=this._;break}}else if(e=i.L,e.C&&(e.C=!1,i.C=!0,Ih(this,i),e=i.L),e.L&&e.L.C||e.R&&e.R.C){e.L&&e.L.C||(e.R.C=!1,e.C=!0,Th(this,e),e=i.L),e.C=i.C,i.C=e.L.C=!1,Ih(this,i),t=this._;break}e.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}};var Nh=Oh;function Rh(t,e,o,n){var i=[null,null],r=hp.push(i)-1;return i.left=t,i.right=e,o&&Dh(i,t,e,o),n&&Dh(i,e,t,n),dp[t.index].halfedges.push(r),dp[e.index].halfedges.push(r),i}function Ph(t,e,o){var n=[e,o];return n.left=t,n}function Dh(t,e,o,n){t[0]||t[1]?t.left===o?t[1]=n:t[0]=n:(t[0]=n,t.left=e,t.right=o)}function Uh(t,e,o,n,i){var r,a=t[0],u=t[1],s=a[0],c=a[1],l=u[0],d=u[1],v=0,h=1,p=l-s,f=d-c;if(r=e-s,p||!(r>0)){if(r/=p,p<0){if(r<v)return;r<h&&(h=r)}else if(p>0){if(r>h)return;r>v&&(v=r)}if(r=n-s,p||!(r<0)){if(r/=p,p<0){if(r>h)return;r>v&&(v=r)}else if(p>0){if(r<v)return;r<h&&(h=r)}if(r=o-c,f||!(r>0)){if(r/=f,f<0){if(r<v)return;r<h&&(h=r)}else if(f>0){if(r>h)return;r>v&&(v=r)}if(r=i-c,f||!(r<0)){if(r/=f,f<0){if(r>h)return;r>v&&(v=r)}else if(f>0){if(r<v)return;r<h&&(h=r)}return!(v>0||h<1)||(v>0&&(t[0]=[s+v*p,c+v*f]),h<1&&(t[1]=[s+h*p,c+h*f]),!0)}}}}}function Fh(t,e,o,n,i){var r=t[1];if(r)return!0;var a,u,s=t[0],c=t.left,l=t.right,d=c[0],v=c[1],h=l[0],p=l[1],f=(d+h)/2,m=(v+p)/2;if(p===v){if(f<e||f>=n)return;if(d>h){if(s){if(s[1]>=i)return}else s=[f,o];r=[f,i]}else{if(s){if(s[1]<o)return}else s=[f,i];r=[f,o]}}else if(a=(d-h)/(p-v),u=m-a*f,a<-1||a>1)if(d>h){if(s){if(s[1]>=i)return}else s=[(o-u)/a,o];r=[(i-u)/a,i]}else{if(s){if(s[1]<o)return}else s=[(i-u)/a,i];r=[(o-u)/a,o]}else if(v<p){if(s){if(s[0]>=n)return}else s=[e,a*e+u];r=[n,a*n+u]}else{if(s){if(s[0]<e)return}else s=[n,a*n+u];r=[e,a*e+u]}return t[0]=s,t[1]=r,!0}function qh(t,e,o,n){var i,r=hp.length;while(r--)Fh(i=hp[r],t,e,o,n)&&Uh(i,t,e,o,n)&&(Math.abs(i[0][0]-i[1][0])>pp||Math.abs(i[0][1]-i[1][1])>pp)||delete hp[r]}function Kh(t){return dp[t.index]={site:t,halfedges:[]}}function Yh(t,e){var o=t.site,n=e.left,i=e.right;return o===i&&(i=n,n=o),i?Math.atan2(i[1]-n[1],i[0]-n[0]):(o===n?(n=e[1],i=e[0]):(n=e[0],i=e[1]),Math.atan2(n[0]-i[0],i[1]-n[1]))}function Gh(t,e){return e[+(e.left!==t.site)]}function Wh(t,e){return e[+(e.left===t.site)]}function Qh(){for(var t,e,o,n,i=0,r=dp.length;i<r;++i)if((t=dp[i])&&(n=(e=t.halfedges).length)){var a=new Array(n),u=new Array(n);for(o=0;o<n;++o)a[o]=o,u[o]=Yh(t,hp[e[o]]);for(a.sort(function(t,e){return u[e]-u[t]}),o=0;o<n;++o)u[o]=e[a[o]];for(o=0;o<n;++o)e[o]=u[o]}}function Jh(t,e,o,n){var i,r,a,u,s,c,l,d,v,h,p,f,m=dp.length,g=!0;for(i=0;i<m;++i)if(r=dp[i]){a=r.site,s=r.halfedges,u=s.length;while(u--)hp[s[u]]||s.splice(u,1);u=0,c=s.length;while(u<c)h=Wh(r,hp[s[u]]),p=h[0],f=h[1],l=Gh(r,hp[s[++u%c]]),d=l[0],v=l[1],(Math.abs(p-d)>pp||Math.abs(f-v)>pp)&&(s.splice(u,0,hp.push(Ph(a,h,Math.abs(p-t)<pp&&n-f>pp?[t,Math.abs(d-t)<pp?v:n]:Math.abs(f-n)<pp&&o-p>pp?[Math.abs(v-n)<pp?d:o,n]:Math.abs(p-o)<pp&&f-e>pp?[o,Math.abs(d-o)<pp?v:e]:Math.abs(f-e)<pp&&p-t>pp?[Math.abs(v-e)<pp?d:t,e]:null))-1),++c);c&&(g=!1)}if(g){var b,y,w,x=1/0;for(i=0,g=null;i<m;++i)(r=dp[i])&&(a=r.site,b=a[0]-t,y=a[1]-e,w=b*b+y*y,w<x&&(x=w,g=r));if(g){var _=[t,e],z=[t,n],k=[o,n],M=[o,e];g.halfedges.push(hp.push(Ph(a=g.site,_,z))-1,hp.push(Ph(a,z,k))-1,hp.push(Ph(a,k,M))-1,hp.push(Ph(a,M,_))-1)}}for(i=0;i<m;++i)(r=dp[i])&&(r.halfedges.length||delete dp[i])}var Xh,Zh=[];function $h(){Ah(this),this.x=this.y=this.arc=this.site=this.cy=null}function tp(t){var e=t.P,o=t.N;if(e&&o){var n=e.site,i=t.site,r=o.site;if(n!==r){var a=i[0],u=i[1],s=n[0]-a,c=n[1]-u,l=r[0]-a,d=r[1]-u,v=2*(s*d-c*l);if(!(v>=-fp)){var h=s*s+c*c,p=l*l+d*d,f=(d*h-c*p)/v,m=(s*p-l*h)/v,g=Zh.pop()||new $h;g.arc=t,g.site=i,g.x=f+a,g.y=(g.cy=m+u)+Math.sqrt(f*f+m*m),t.circle=g;var b=null,y=vp._;while(y)if(g.y<y.y||g.y===y.y&&g.x<=y.x){if(!y.L){b=y.P;break}y=y.L}else{if(!y.R){b=y;break}y=y.R}vp.insert(b,g),b||(Xh=g)}}}}function ep(t){var e=t.circle;e&&(e.P||(Xh=e.N),vp.remove(e),Zh.push(e),Ah(e),t.circle=null)}var op=[];function np(){Ah(this),this.edge=this.site=this.circle=null}function ip(t){var e=op.pop()||new np;return e.site=t,e}function rp(t){ep(t),lp.remove(t),op.push(t),Ah(t)}function ap(t){var e=t.circle,o=e.x,n=e.cy,i=[o,n],r=t.P,a=t.N,u=[t];rp(t);var s=r;while(s.circle&&Math.abs(o-s.circle.x)<pp&&Math.abs(n-s.circle.cy)<pp)r=s.P,u.unshift(s),rp(s),s=r;u.unshift(s),ep(s);var c=a;while(c.circle&&Math.abs(o-c.circle.x)<pp&&Math.abs(n-c.circle.cy)<pp)a=c.N,u.push(c),rp(c),c=a;u.push(c),ep(c);var l,d=u.length;for(l=1;l<d;++l)c=u[l],s=u[l-1],Dh(c.edge,s.site,c.site,i);s=u[0],c=u[d-1],c.edge=Rh(s.site,c.site,null,i),tp(s),tp(c)}function up(t){var e,o,n,i,r=t[0],a=t[1],u=lp._;while(u)if(n=sp(u,a)-r,n>pp)u=u.L;else{if(i=r-cp(u,a),!(i>pp)){n>-pp?(e=u.P,o=u):i>-pp?(e=u,o=u.N):e=o=u;break}if(!u.R){e=u;break}u=u.R}Kh(t);var s=ip(t);if(lp.insert(e,s),e||o){if(e===o)return ep(e),o=ip(e.site),lp.insert(s,o),s.edge=o.edge=Rh(e.site,s.site),tp(e),void tp(o);if(o){ep(e),ep(o);var c=e.site,l=c[0],d=c[1],v=t[0]-l,h=t[1]-d,p=o.site,f=p[0]-l,m=p[1]-d,g=2*(v*m-h*f),b=v*v+h*h,y=f*f+m*m,w=[(m*b-h*y)/g+l,(v*y-f*b)/g+d];Dh(o.edge,c,p,w),s.edge=Rh(c,t,null,w),o.edge=Rh(t,p,null,w),tp(e),tp(o)}else s.edge=Rh(e.site,s.site)}}function sp(t,e){var o=t.site,n=o[0],i=o[1],r=i-e;if(!r)return n;var a=t.P;if(!a)return-1/0;o=a.site;var u=o[0],s=o[1],c=s-e;if(!c)return u;var l=u-n,d=1/r-1/c,v=l/c;return d?(-v+Math.sqrt(v*v-2*d*(l*l/(-2*c)-s+c/2+i-r/2)))/d+n:(n+u)/2}function cp(t,e){var o=t.N;if(o)return sp(o,e);var n=t.site;return n[1]===e?n[0]:1/0}var lp,dp,vp,hp,pp=1e-6,fp=1e-12;function mp(t,e,o){return(t[0]-o[0])*(e[1]-t[1])-(t[0]-e[0])*(o[1]-t[1])}function gp(t,e){return e[1]-t[1]||e[0]-t[0]}function bp(t,e){var o,n,i,r=t.sort(gp).pop();hp=[],dp=new Array(t.length),lp=new Nh,vp=new Nh;while(1)if(i=Xh,r&&(!i||r[1]<i.y||r[1]===i.y&&r[0]<i.x))r[0]===o&&r[1]===n||(up(r),o=r[0],n=r[1]),r=t.pop();else{if(!i)break;ap(i.arc)}if(Qh(),e){var a=+e[0][0],u=+e[0][1],s=+e[1][0],c=+e[1][1];qh(a,u,s,c),Jh(a,u,s,c)}this.edges=hp,this.cells=dp,lp=vp=hp=dp=null}bp.prototype={constructor:bp,polygons:function(){var t=this.edges;return this.cells.map(function(e){var o=e.halfedges.map(function(o){return Gh(e,t[o])});return o.data=e.site.data,o})},triangles:function(){var t=[],e=this.edges;return this.cells.forEach(function(o,n){if(r=(i=o.halfedges).length){var i,r,a,u=o.site,s=-1,c=e[i[r-1]],l=c.left===u?c.right:c.left;while(++s<r)a=l,c=e[i[s]],l=c.left===u?c.right:c.left,a&&l&&n<a.index&&n<l.index&&mp(u,a,l)<0&&t.push([u.data,a.data,l.data])}}),t},links:function(){return this.edges.filter(function(t){return t.right}).map(function(t){return{source:t.left.data,target:t.right.data}})},find:function(t,e,o){var n,i,r=this,a=r._found||0,u=r.cells.length;while(!(i=r.cells[a]))if(++a>=u)return null;var s=t-i.site[0],c=e-i.site[1],l=s*s+c*c;do{i=r.cells[n=a],a=null,i.halfedges.forEach(function(o){var n=r.edges[o],u=n.left;if(u!==i.site&&u||(u=n.right)){var s=t-u[0],c=e-u[1],d=s*s+c*c;d<l&&(l=d,a=u.index)}})}while(null!==a);return r._found=n,null==o||l<=o*o?i.site:null}};Math.SQRT2;function yp(t,e,o){this.k=t,this.x=e,this.y=o}yp.prototype={constructor:yp,scale:function(t){return 1===t?this:new yp(this.k*t,this.x,this.y)},translate:function(t,e){return 0===t&0===e?this:new yp(this.k,this.x+this.k*t,this.y+this.k*e)},apply:function(t){return[t[0]*this.k+this.x,t[1]*this.k+this.y]},applyX:function(t){return t*this.k+this.x},applyY:function(t){return t*this.k+this.y},invert:function(t){return[(t[0]-this.x)/this.k,(t[1]-this.y)/this.k]},invertX:function(t){return(t-this.x)/this.k},invertY:function(t){return(t-this.y)/this.k},rescaleX:function(t){return t.copy().domain(t.range().map(this.invertX,this).map(t.invert,t))},rescaleY:function(t){return t.copy().domain(t.range().map(this.invertY,this).map(t.invert,t))},toString:function(){return"translate("+this.x+","+this.y+") scale("+this.k+")"}};var wp=new yp(1,0,0);function xp(t){while(!t.__zoom)if(!(t=t.parentNode))return wp;return t.__zoom}xp.prototype=yp.prototype;var _p=function(){var t=this,e=t._self._c;return e("ScrollPane",{staticClass:"component-render-details"},[t.entry?[e("ActionHeader",{attrs:{slot:"header"},slot:"header"},[e("span",{staticClass:"title"},[e("span",{staticClass:"title-bracket"},[t._v("<")]),e("span",[t._v(t._s(t.componentName))]),e("span",{staticClass:"title-bracket"},[t._v(">")])])]),e("div",{staticClass:"metrics",class:{"high-density":t.highDensity},attrs:{slot:"scroll"},slot:"scroll"},[e("div",{staticClass:"header"},t._l(t.columns,function(o){return e("div",{key:o,staticClass:"column"},[t._v("\n "+t._s(o)+"\n ")])}),0),t._l(t.entries,function(o){return e("div",{key:o.id,staticClass:"metric selectable-item"},[e("div",{staticClass:"type",class:{dim:0===o.count}},[t._v("\n "+t._s(o.id)+"\n ")]),e("div",{staticClass:"count",class:{dim:0===o.count}},[t._v("\n "+t._s(o.count)+"\n ")]),e("div",{staticClass:"total-time",class:{dim:0===o.totalTime}},[t._v("\n "+t._s(Math.round(o.totalTime))+" ms\n ")]),e("div",{staticClass:"average-time",class:{dim:0===o.totalTime}},[t._v("\n "+t._s(Math.round(o.totalTime/Math.max(o.count,1)))+" ms\n ")])])})],2)]:e("div",{staticClass:"vue-ui-empty"},[t._v("\n No component selected\n ")])],2)},zp=[],kp=["beforeCreate","created","beforeMount","mountRender","mounted","beforeUpdate","updateRender","updated","beforeDestroyed","destroyed"],Mp=["type","count","total time","average time"],Vp={components:{ScrollPane:Io,ActionHeader:Do},props:{entry:{type:Object,default:null}},computed:{entries(){return kp.map(t=>Object.assign({},{id:t},this.entry.hooks[t]||{totalTime:0,count:0}))},componentName(){return Object(s["l"])(this.entry.id,this.$shared.componentNameStyle)||"Anonymous Component"},highDensity(){var t=this.$shared.displayDensity;return"auto"===t&&this.entries.length>8||"high"===t}},created(){this.columns=Mp}},Hp=Vp,Cp=(o(134),z(Hp,_p,zp,!1,null,"7d363b5c",null)),Lp=Cp.exports,Sp={components:{SplitPane:Co,ScrollPane:Io,ActionHeader:Do,ComponentRenderDetails:Lp},data(){return{filter:"",selectedEntry:null}},computed:Object.assign({},Object(V["e"])("perf",["currentBenchmark"]),Object(V["c"])("perf",["metrics"]),{highDensity(){var t=this.$shared.displayDensity;return"auto"===t&&this.metrics.componentRender.length>8||"high"===t},totalTimes(){return this.metrics.componentRender.map(t=>t.totalTime)},totalTimesScale(){return zd().domain(ji([0].concat(this.totalTimes))).range([0,100])},filteredItems(){var t=this.metrics.componentRender;if(t){if(this.filter){var e=new RegExp(this.filter,"i");t=t.filter(t=>e.test(t.id))}return t.sort((t,e)=>e.totalTime-t.totalTime),t}}}),watch:{currentBenchmark(){this.selectedEntry=null}},methods:{getTotalTimeBarStyle(t){return{width:`${this.totalTimesScale(t.totalTime)}%`}},getComponentName(t){return Object(s["l"])(t.id,this.$shared.componentNameStyle)||"Anonymous Component"}}},Bp=Sp,Ep=(o(136),z(Bp,Li,Si,!1,null,"30f110f6",null)),Op=Ep.exports,Ap=function(){var t=this,e=t._self._c;return e("SplitPane",{staticClass:"fps"},[e("div",{staticStyle:{height:"100%"},attrs:{slot:"left"},slot:"left"},[t.metrics.fps?e("div",{ref:"chart",staticClass:"chart",on:{wheel:t.onMouseWheel}},[e("div",{staticClass:"markers"},t._l(t.fpsMarkers,function(o){return e("div",{key:o.time,staticClass:"marker",class:{selected:t.selectedMarker===o},style:t.getMarkerStyle(o),on:{click:function(e){t.selectedMarker=o}}},t._l(o.bubbles,function(o){return e("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:`${o.entries.length} ${o.type}`,delay:{show:100,hide:0}},expression:"{\n content: `${bubble.entries.length} ${bubble.type}`,\n delay: { show: 100, hide: 0 }\n }"}],key:o.type,staticClass:"bubble",style:t.getBubbleStyle(o)},[e("div",{staticClass:"label"},[t._v("\n "+t._s(o.type.charAt(0))+"\n ")])])}),0)}),0),e("div",{staticClass:"row bars"},t._l(t.metrics.fps,function(o,n){return e("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:{content:t.getBarTootip(o),delay:{show:100,hide:0}},expression:"{\n content: getBarTootip(metric),\n delay: { show: 100, hide: 0 }\n }"}],key:n,staticClass:"bar-wrapper",on:{click:function(e){return t.onMetricClick(o)}}},[e("div",{staticClass:"bar",style:t.getMetricStyle(o)})])}),0)]):t._e()]),e("FramerateMarkerInspector",{attrs:{slot:"right",marker:t.selectedMarker},slot:"right"})],1)},Tp=[],Ip=1e3,jp={namespaced:!0,state:()=>({currentBenchmark:null,benchmarks:[]}),getters:{metrics:t=>t.currentBenchmark&&t.currentBenchmark.metrics||{},fpsMarkers(t,e,o){var{currentBenchmark:n}=t,i={};if(!n)return i;var r=(t,e,o)=>{for(var r of e)if(!(r.timestamp<n.start||null!=n.end&&r.timestamp>n.end)){var a=Math.round(r.timestamp/Ip)*Ip,u=i[a]=i[a]||{time:a,bubbles:{}},s=u.bubbles[t]=u.bubbles[t]||{type:t,entries:[]};s.entries.push(Object.assign({},o(r),{timestamp:r.timestamp}))}},{history:a}=o.vuex;r("mutations",a,t=>({label:t.mutation.type,state:{"mutation info":{payload:Object(s["s"])(t.mutation.payload)}}}));var{events:u}=o.events;r("events",u,t=>({label:t.eventName,state:{"event info":{name:t.eventName,type:t.type,source:`<${t.instanceName}>`,payload:t.payload}}}));var{routeChanges:c}=o.router;return r("routes",c,t=>({label:t.to.fullPath,state:{from:t.from,to:t.to}})),i}},mutations:{SET_CURRENT_BENCHMARK(t,e){t.currentBenchmark=e},UPDATE_BENCHMARK(t,e){Object.assign(t.currentBenchmark,e)},ADD_BENCHMARK(t,e){t.benchmarks.splice(0,0,e)},ADD_METRIC(t,e){t.currentBenchmark.metrics[e.type].push(e)},UPSERT_METRIC(t,e){var o=e.type,n=e.data,i=t.currentBenchmark.metrics[o],r=i.find(t=>t.id===n.id);r?Object.assign(r,n):i.push(n)}}},Np=function(){var t=this,e=t._self._c;return e("div",{staticClass:"framerate-marker-inspector"},[t.marker?e("SplitPane",[e("div",{staticClass:"entries",attrs:{slot:"left"},slot:"left"},t._l(t.marker.bubbles,function(o){return e("div",{key:o.type,staticClass:"group",class:{"high-density":t.finalHighDensity}},[e("div",{staticClass:"group-title"},[t._v("\n "+t._s(o.type)+"\n ")]),t._l(o.entries,function(o,n){return e("div",{key:n,staticClass:"entry list-item",class:{selected:t.selectedEntry===o},on:{click:function(e){t.selectedEntry=o}}},[e("div",{staticClass:"label"},[t._v("\n "+t._s(o.label)+"\n ")]),e("div",{staticClass:"time"},[t._v("\n "+t._s(t._f("formatTime")(o.timestamp,t.$shared.timeFormat))+"\n ")])])})],2)}),0),t.selectedEntry?e("StateInspector",{staticClass:"state-inspector",attrs:{slot:"right",state:t.selectedEntry.state},slot:"right"}):t._e()],1):e("div",{staticClass:"vue-ui-empty"},[t._v("\n No marker selected\n ")])],1)},Rp=[],Pp={components:{SplitPane:Co,StateInspector:zn},props:{marker:{type:Object,default:null}},data(){return{selectedEntry:null}},computed:{totalEntriesCount(){var t=0;for(var e of this.marker.bubbles)t+=e.entries.length;return t},finalHighDensity(){var t=this.$shared.displayDensity;return"auto"===t&&this.totalEntriesCount>8||"high"===t}},watch:{marker(){this.selectedEntry=null}}},Dp=Pp,Up=(o(138),z(Dp,Np,Rp,!1,null,"3d3aabec",null)),Fp=Up.exports,qp={mutations:"#FF6B00",events:"#997fff",routes:"#42B983"},Kp=500,Yp=12,Gp={components:{SplitPane:Co,FramerateMarkerInspector:Fp},data(){return{selectedMarker:null}},computed:Object.assign({},Object(V["e"])("perf",["currentBenchmark"]),Object(V["c"])("perf",["metrics","fpsMarkers"]),{values(){return this.metrics.fps.map(t=>t.value)},max(){return Ki(this.values)},scale(){return zd().domain(ji([0].concat(this.values))).range([0,100])},interpolateColor(){return Su("#C41A16","#44A1FF")}}),watch:{"metrics.fps"(){var t=this.$refs.chart;t&&t.scrollLeft>=t.scrollWidth-t.offsetWidth-100&&this.scrollToEnd()},currentBenchmark(){this.selectedMarker=null}},mounted(){this.scrollToEnd()},methods:{scrollToEnd(){requestAnimationFrame(()=>{var t=this.$refs.chart;t&&(t.scrollLeft=9999)})},getMetricStyle(t){var{value:e,start:o,end:n}=t,i=n-o;return{width:`${i/Kp*Yp}px`,height:`${this.scale(e)}%`,backgroundColor:this.interpolateColor(this.scale(e)/100)}},getBarTootip(t){return`\n <div>${t.value} frames per second</div>\n <div style="color:#999;">${this.$options.filters.formatTime(t.time,this.$shared.timeFormat)}</div>\n `},getMarkerStyle(t){var e=Math.round(this.currentBenchmark.start/Ip)*Ip;return{left:`${(t.time-e)/Kp*Yp-12}px`}},getBubbleStyle(t){return{backgroundColor:qp[t.type]}},onMouseWheel(t){var e=this.$refs.chart;e.scrollLeft+=5*(t.deltaX||t.deltaY),t.preventDefault()},onMetricClick(t){var e=Math.round(t.time/Ip)*Ip;this.selectedMarker=this.fpsMarkers[e]}}},Wp=Gp,Qp=(o(140),z(Wp,Ap,Tp,!1,null,"c7a70828",null)),Jp=Qp.exports,Xp=function(){var t=this,e=t._self._c;return e("div",[t.hasRouter?e("split-pane",[e("router-history",{attrs:{slot:"left"},slot:"left"}),e("router-meta",{attrs:{slot:"right"},slot:"right"})],1):e("div",{staticClass:"notice"},[e("div",[t._v("\n No router detected.\n ")])])],1)},Zp=[],$p=function(){var t=this,e=t._self._c;return e("scroll-pane",{attrs:{"scroll-event":"routes:init"}},[e("action-header",{attrs:{slot:"header"},slot:"header"},[e("div",{staticClass:"search"},[e("VueIcon",{attrs:{icon:"search"}}),e("input",{directives:[{name:"model",rawName:"v-model.trim",value:t.filter,expression:"filter",modifiers:{trim:!0}}],ref:"filterRoutes",attrs:{placeholder:"Filter routes"},domProps:{value:t.filter},on:{input:function(e){e.target.composing||(t.filter=e.target.value.trim())},blur:function(e){return t.$forceUpdate()}}})],1),e("a",{staticClass:"button reset",class:{disabled:!t.filteredRoutes.length},on:{click:t.reset}},[e("VueIcon",{staticClass:"small",attrs:{icon:"do_not_disturb"}}),e("span",[t._v("Clear")])],1),e("a",{staticClass:"button toggle-recording",on:{click:t.toggleRecording}},[e("VueIcon",{staticClass:"small",class:{enabled:t.enabled},attrs:{icon:"lens"}}),e("span",[t._v(t._s(t.enabled?"Recording":"Paused"))])],1)]),e("RecycleScroller",{staticClass:"history",class:{"high-density":t.highDensity},attrs:{slot:"scroll",items:t.filteredRoutes,"item-size":t.highDensity?22:34},slot:"scroll",scopedSlots:t._u([{key:"default",fn:function(o){var n=o.item,i=o.index,r=o.active;return[e("div",{staticClass:"entry list-item",class:{active:t.inspectedIndex===i},attrs:{"data-active":r},on:{click:function(e){t.inspect(t.routeChanges.indexOf(n))}}},[e("span",{staticClass:"route-name"},[t._v(t._s(n.to.path))]),e("span",{staticClass:"time"},[t._v(t._s(t._f("formatTime")(n.timestamp,t.$shared.timeFormat)))]),n.to.redirectedFrom?e("span",{staticClass:"label redirect"},[t._v("\n redirect\n ")]):t._e(),t.isNotEmpty(n.to.name)?e("span",{staticClass:"label name"},[t._v("\n "+t._s(n.to.name)+"\n ")]):t._e()])]}}])},[0===t.filteredRoutes.length?e("div",{staticClass:"no-routes",attrs:{slot:"after-container"},slot:"after-container"},[t._v("\n No route transitions found"),t.enabled?t._e():e("span",[e("br"),t._v("(Recording is paused)")])]):t._e()])],1)},tf=[],ef={components:{ScrollPane:Io,ActionHeader:Do},computed:Object.assign({},{filter:{get(){return this.$store.state.router.filter},set(t){this.$store.commit("router/UPDATE_FILTER",t)}},highDensity(){var t=this.$shared.displayDensity;return"auto"===t&&this.totalCount>12||"high"===t}},Object(V["e"])("router",["enabled","routeChanges","inspectedIndex"]),Object(V["c"])("router",["filteredRoutes"])),methods:Object.assign({},Object(V["d"])("router",{inspect:"INSPECT",reset:"RESET",toggleRecording:"TOGGLE"}),{isNotEmpty(t){return!!t&&t!==s["e"]}})},of=ef,nf=(o(142),z(of,$p,tf,!1,null,"3ae9ab77",null)),rf=nf.exports,af=function(){var t=this,e=t._self._c;return e("scroll-pane",[t.activeRouteChange?e("div",{attrs:{slot:"scroll"},slot:"scroll"},[e("state-inspector",{attrs:{state:{from:t.from,to:t.to}}})],1):e("div",{staticClass:"no-route-data",attrs:{slot:"scroll"},slot:"scroll"},[t._v("\n No route transition selected\n ")])])},uf=[],sf={components:{ScrollPane:Io,StateInspector:zn},computed:Object.assign({},Object(V["c"])("router",["activeRouteChange"]),{to(){return this.sanitizeRouteData(this.activeRouteChange.to)},from(){return this.sanitizeRouteData(this.activeRouteChange.from)}}),methods:{sanitizeRouteData(t){var e={path:t.path,fullPath:t.fullPath};return t.redirectedFrom&&(e.redirectedFrom=t.redirectedFrom),this.isEmptyObject(t.params)||(e.params=t.params),this.isEmptyObject(t.query)||(e.query=t.query),t.name&&t.name!==s["e"]&&(e.name=t.name),t.hash&&""!==t.hash&&(e.hash=t.hash),t.meta&&!this.isEmptyObject(t.meta)&&(e.meta=t.meta),t.matched&&t.matched.length>0&&(e.matched=this.sanitizeMatched(t.matched)),e},isEmptyObject(t){return 0===Object.keys(t).length},sanitizeMatched(t){for(var e=[],o=0;o<t.length;o++){var n={path:t[o].path};t[o].props&&!this.isEmptyObject(t[o].props)&&(n.props=t[o].props),e.push(n)}return e}}},cf=sf,lf=(o(144),z(cf,af,uf,!1,null,"a8272b66",null)),df=lf.exports,vf={components:{SplitPane:Co,RouterHistory:rf,RouterMeta:df},computed:Object(V["e"])("router",{hasRouter:t=>t.hasRouter})},hf=vf,pf=z(hf,Xp,Zp,!1,null,null,null),ff=pf.exports,mf=function(){var t=this,e=t._self._c;return e("div",[t.hasRouter?e("split-pane",[e("routes-tree",{attrs:{slot:"left"},slot:"left"}),e("routes-meta",{attrs:{slot:"right"},slot:"right"})],1):e("div",{staticClass:"notice"},[e("div",[t._v("\n No routes detected.\n ")])])],1)},gf=[],bf=function(){var t=this,e=t._self._c;return e("scroll-pane",{attrs:{"scroll-event":"routes:init"}},[e("action-header",{attrs:{slot:"header"},slot:"header"},[e("div",{staticClass:"search"},[e("VueIcon",{attrs:{icon:"search"}}),e("input",{directives:[{name:"model",rawName:"v-model.trim",value:t.filter,expression:"filter",modifiers:{trim:!0}}],ref:"filterRoutes",attrs:{placeholder:"Filter routes"},domProps:{value:t.filter},on:{input:function(e){e.target.composing||(t.filter=e.target.value.trim())},blur:function(e){return t.$forceUpdate()}}})],1)]),e("div",{staticClass:"tree",class:{"high-density":t.finalHighDensity},attrs:{slot:"scroll"},slot:"scroll"},t._l(t.filteredRoutes,function(o){return e("routes-tree-item",{key:o.path,ref:"instances",refInFor:!0,attrs:{route:o,"route-id":t.routeChanges.indexOf(o),depth:0}})}),1)],1)},yf=[],wf=function(){var t=this,e=t._self._c;return e("div",{staticClass:"instance",class:{selected:t.selected}},[e("div",{staticClass:"self selectable-item",class:{selected:t.selected},style:{paddingLeft:15*t.depth+"px"},on:{click:function(e){return e.stopPropagation(),t.inspect(t.routeId)},dblclick:t.toggleExpand}},[e("span",{staticClass:"content"},[t.route.children&&t.route.children.length?e("span",{staticClass:"arrow-wrapper",on:{click:t.toggleExpand}},[e("span",{staticClass:"arrow right",class:{rotated:t.expanded}})]):t._e(),e("span",{staticClass:"instance-name"},[t._v("\n "+t._s(t.route.path)+"\n ")])]),t.route.name?e("span",{staticClass:"info name"},[t._v("\n "+t._s(t.route.name)+"\n ")]):t._e(),t.route.alias?e("span",{staticClass:"info alias"},[t._v("\n alias: "),e("b",[t._v(t._s(t.route.alias))])]):t._e(),t.route.redirect?e("span",{staticClass:"info redirect"},[t._v("\n redirect: "),e("b",[t._v(t._s(t.route.redirect))])]):t._e(),t.isActive?e("span",{staticClass:"info active"},[t._v("\n active\n ")]):t._e()]),t.expanded?e("div",t._l(t.route.children,function(o,n){return e("routes-tree-item",{key:o.path,attrs:{route:o,"route-id":t.routeId+"_"+n,depth:t.depth+1}})}),1):t._e()])},xf=[],_f={name:"RoutesTreeItem",props:{routeId:{type:[String,Number],required:!0},route:{type:Object,required:!0},depth:{type:Number,required:!0}},data(){return{expanded:!1}},computed:Object.assign({},Object(V["e"])("routes",["inspectedIndex"]),Object(V["c"])("routes",["activeRoute"]),{selected(){return this.inspectedIndex===this.routeId},isActive(){return this.activeRoute&&this.activeRoute.path===this.route.path}}),methods:Object.assign({},Object(V["d"])("routes",{inspect:"INSPECT"}),{toggleExpand(){this.expanded=!this.expanded}})},zf=_f,kf=(o(146),z(zf,wf,xf,!1,null,"62177412",null)),Mf=kf.exports,Vf={components:{ScrollPane:Io,ActionHeader:Do,RoutesTreeItem:Mf},computed:Object.assign({},Object(V["e"])("routes",["routeChanges"]),Object(V["c"])("routes",["filteredRoutes"]),{filter:{get(){return this.$store.state.routes.filter},set(t){this.$store.commit("routes/UPDATE_FILTER",t)}},finalHighDensity(){return"auto"===this.$shared.displayDensity||"high"===this.$shared.displayDensity}})},Hf=Vf,Cf=(o(148),z(Hf,bf,yf,!1,null,"166c22ae",null)),Lf=Cf.exports,Sf=function(){var t=this,e=t._self._c;return e("scroll-pane",[t.activeRouteChange?e("div",{attrs:{slot:"scroll"},slot:"scroll"},[e("state-inspector",{attrs:{state:{options:t.options}}})],1):e("div",{staticClass:"no-route-data",attrs:{slot:"scroll"},slot:"scroll"},[t._v("\n No route selected\n ")])])},Bf=[],Ef={components:{ScrollPane:Io,StateInspector:zn},computed:Object.assign({},Object(V["c"])("routes",["activeRouteChange"]),{options(){return this.sanitizeRouteData(this.activeRouteChange)},to(){return this.sanitizeRouteData(this.activeRouteChange.to)},from(){return this.sanitizeRouteData(this.activeRouteChange.from)}}),methods:{sanitizeRouteData(t){console.log(t);var e={path:t.path};if(t.redirect&&(e.redirect=t.redirect),t.alias&&(e.alias=t.alias),this.isEmptyObject(t.props)||(e.props=t.props),t.name&&t.name!==s["e"]&&(e.name=t.name),t.component){var o={};t.component.template&&(o.template=t.component.template),t.component.props&&(o.props=t.component.props),this.isEmptyObject(o)||(e.component=o)}return t.children&&(e.children=[],t.children.forEach(t=>{e.children.push(this.sanitizeRouteData(t))})),e},isEmptyObject(t){return t===s["e"]||!t||0===Object.keys(t).length}}},Of=Ef,Af=(o(150),z(Of,Sf,Bf,!1,null,"61ca398b",null)),Tf=Af.exports,If={components:{SplitPane:Co,RoutesMeta:Tf,RoutesTree:Lf},computed:Object(V["e"])("routes",{hasRouter:t=>t.hasRouter})},jf=If,Nf=z(jf,mf,gf,!1,null,null,null),Rf=Nf.exports;r["a"].use(go);var Pf=[{path:"/",redirect:{name:"components"}},{path:"/components",name:"components",component:An},{path:"/vuex",name:"vuex",component:oi},{path:"/events",name:"events",component:wi},{path:"/router",name:"router",component:ff},{path:"/routes",name:"routes",component:Rf},{path:"/perf",component:Ci,name:"perf",children:[{path:"fps",name:"fps",component:Jp},{path:"component-render",name:"component-render",component:Op}]},{path:"/settings",name:"settings",component:Y},{path:"*",redirect:"/"}],Df=new go({routes:Pf}),Uf=Df,Ff={selected:null,inspectedInstance:{},inspectedInstanceId:null,loading:!1,instances:[],instancesMap:{},expansionMap:{},events:[],scrollToExpanded:null},qf={totalCount:t=>Object.keys(t.instancesMap).length},Kf={FLUSH(t,e){var o={};function n(t){o[t.id]=t,t.children&&t.children.forEach(e=>{e.parent=t,n(e)})}e.instances.forEach(n),t.instances=Object.freeze(e.instances),t.inspectedInstance=Object.freeze(e.inspectedInstance),t.inspectedInstanceId=t.inspectedInstance?t.inspectedInstance.id:null,t.instancesMap=Object.freeze(o),t.loading=!1},INSPECT_INSTANCE(t,e){t.inspectedInstanceId=e.id,t.loading=!0},RECEIVE_INSTANCE_DETAILS(t,e){t.inspectedInstance=Object.freeze(e),t.inspectedInstanceId=e.id,t.scrollToExpanded=null},TOGGLE_INSTANCE(t,e){void 0===e&&(e={});var o=e.id,n=e.expanded,i=e.scrollTo;void 0===i&&(i=null),r["a"].set(t.expansionMap,o,n),t.scrollToExpanded=i}},Yf={toggleInstance(t,e){var o=t.commit,n=t.dispatch;t.state;void 0===e&&(e={});var i=e.instance,r=e.expanded,a=e.recursive,u=e.parent;void 0===u&&(u=!1);var s=i.id;if(o("TOGGLE_INSTANCE",{id:s,expanded:r,scrollTo:u?s:null}),a&&i.children.forEach(t=>{n("toggleInstance",{instance:t,expanded:r,recursive:a})}),u){var c=i;while(c.parent)c=c.parent,o("TOGGLE_INSTANCE",{id:c.id,expanded:!0,scrollTo:s})}}},Gf={namespaced:!0,state:Ff,getters:qf,mutations:Kf,actions:Yf},Wf=o(73),Qf=o.n(Wf),Jf=new Qf.a({max:5}),Xf={travel:null},Zf=o(4);function $f(t){var e=t.commit,o=t.state;o.history.length>0&&um(o,e,o.history.length-1).then(()=>{Jf.reset(),bridge.send("vuex:commit-all"),e("COMMIT_ALL")})}function tm(t){var e=t.commit,o=t.state;o.history.length>0&&um(o,e,-1).then(()=>{Jf.reset(),bridge.send("vuex:revert-all"),e("REVERT_ALL")})}function em(t,e){var o=t.commit,n=t.state,i=n.history.indexOf(e);i>-1&&um(n,o,i,!1).then(()=>{Jf.reset(),bridge.send("vuex:commit",i),o("COMMIT",i),um(n,o,n.history.length-1)})}function om(t,e){var o=t.commit,n=t.state,i=n.history.indexOf(e);i>-1&&um(n,o,i-1).then(()=>{Jf.reset(),bridge.send("vuex:revert",i),o("REVERT",i)})}function nm(t,e){var o=t.commit,n=t.getters,i="number"===typeof e?e:n.filteredHistory.indexOf(e);i<-1&&(i=-1),i>=n.filteredHistory.length&&(i=n.filteredHistory.length-1),o("INSPECT",i);var r=n.filteredHistory[i],a=r?r.mutation.index:-1,u=Jf.get(a);u?o("UPDATE_INSPECTED_STATE",u):(Zf["a"].snapshotLoading=!0,o("UPDATE_INSPECTED_STATE",null),bridge.send("vuex:inspect-state",a))}function im(t,e){var o=t.state,n=t.commit;return um(o,n,o.history.indexOf(e))}function rm(t,e){var o=t.commit;o("UPDATE_FILTER",e)}function am(t,e){var o=t.state,n=e.path,i=e.args;-1!==o.inspectedIndex&&Jf.del(o.inspectedIndex),bridge.send("vuex:edit-state",Object.assign({},{index:o.inspectedIndex,path:n},i))}function um(t,e,o,n=!0){return new Promise(i=>{Xf.travel=i;var{inspectedIndex:r}=t;e("UPDATE_INSPECTED_STATE",null),Zf["a"].snapshotLoading=!0,bridge.send("vuex:travel-to-state",{index:o,apply:n}),o!==r&&e("INSPECT",o),e("TIME_TRAVEL",o)})}var sm=/^\/((?:(?:.*?)(?:\\\/)?)*?)\/(\w*)/,cm=new RegExp(".*","i"),lm=0,dm={hasVuex:!1,base:null,inspectedIndex:-1,activeIndex:-1,history:[],initialCommit:Date.now(),lastCommit:Date.now(),filter:"",filterRegex:cm,filterRegexInvalid:!1,inspectedState:null,lastReceivedState:null},vm={INIT(t){t.hasVuex=!0,Jf.reset(),hm(t)},RECEIVE_MUTATION(t,e){var o=t.inspectedIndex===t.history.length-1;e.id=lm++,t.history.push(e),t.filter||(t.activeIndex=t.history.length-1,o&&(t.inspectedIndex=t.activeIndex,t.inspectedState=null))},COMMIT_ALL(t){t.base=t.lastReceivedState,t.lastCommit=Date.now(),hm(t)},REVERT_ALL(t){hm(t)},COMMIT(t,e){t.base=t.lastReceivedState,t.lastCommit=Date.now(),t.history=t.history.slice(e+1),t.history.forEach((t,e)=>{var o=t.mutation;o.index=e}),t.inspectedIndex=-1},REVERT(t,e){t.history=t.history.slice(0,e),t.inspectedIndex=t.history.length-1},INSPECT(t,e){t.inspectedIndex=e},UPDATE_INSPECTED_STATE(t,e){t.inspectedState=Object(s["s"])(e)},RECEIVE_STATE(t,e){var o=e.index,n=e.snapshot;t.lastReceivedState=Object(s["s"])(n),Jf.set(o,n)},UPDATE_BASE_STATE(t,e){t.base=Object(s["s"])(e)},TIME_TRAVEL(t,e){t.activeIndex=e},UPDATE_FILTER(t,e){t.filter=e;var o=e.match(sm);if(null!==o)try{t.filterRegexInvalid=!1,t.filterRegex=new RegExp(o[1],o[2])}catch(e){t.filterRegexInvalid=!0,t.filterRegex=cm}else t.filterRegexInvalid=!1,t.filterRegex=new RegExp(pm(e),"i")}};function hm(t){t.history=[],t.inspectedIndex=t.activeIndex=-1,t.inspectedState=null,t.activeIndex=-1,Zf["a"].snapshotLoading=!1}function pm(t){return t.replace(/[-[\]/{}()*+?.\\^$|]/g,"\\$&")}var fm={inspectedState(t,e){var o=t.base,n=t.inspectedIndex,i=t.inspectedState,r=e.filteredHistory[n],a={};r&&(a.mutation={type:r.mutation.type,payload:r.mutation.payload?Object(s["s"])(r.mutation.payload):void 0});var u=r?i:o;return u&&(a.state=u.state,a.getters=u.getters),a},filteredHistory(t){var e=t.history,o=t.filterRegex;return e.filter(t=>o.test(t.mutation.type))},absoluteInspectedIndex(t,e){var o=t.history,n=t.inspectedIndex,i=e.filteredHistory,r=i[n];return r?o.indexOf(r):-1},inspectedEntry(t,e){var o=t.inspectedIndex,n=e.filteredHistory;return n[o]}},mm={namespaced:!0,state:dm,mutations:vm,actions:n,getters:fm},gm=o(10),bm="EVENTS_ENABLED",ym=/^\/((?:(?:.*?)(?:\\\/)?)*?)\/(\w*)/,wm=0,xm=()=>({enabled:gm["a"](bm,!0),events:[],inspectedIndex:-1,newEventCount:0,filter:""}),_m={RECEIVE_EVENT(t,e){e.id=wm++,t.events.push(e),t.filter||(t.inspectedIndex=t.events.length-1)},RESET(t){t.events=[],t.inspectedIndex=-1},INSPECT(t,e){t.inspectedIndex=e},RESET_NEW_EVENT_COUNT(t){t.newEventCount=0},INCREASE_NEW_EVENT_COUNT(t){t.newEventCount++},UPDATE_FILTER(t,e){t.filter=e},TOGGLE(t){gm["c"](bm,t.enabled=!t.enabled),bridge.send("events:toggle-recording",t.enabled)}},zm=t=>{var e=t.searchText,o=t.searchComponent,n=t.regEx;return t=>{var i=Zf["a"].componentNameStyle,r=o?Object(s["l"])(t.instanceName,i):t.eventName;if(n)try{return n.test(r)}catch(t){return r.toLowerCase().indexOf(e)>-1}return r.toLowerCase().indexOf(e)>-1}},km={activeEvent:(t,e)=>{return e.filteredEvents[t.inspectedIndex]},filteredEvents:(t,e,o)=>{var n=t.filter.toLowerCase(),i=/<|>/g.test(n);i&&(n=n.replace(/<|>/g,""));var r,a=t.filter.match(ym);return a&&(r=new RegExp(a[1],a[2])),t.events.filter(zm({searchText:n,searchComponent:i,regEx:r}))}},Mm={inspect:(t,e)=>{var o=t.commit,n=t.getters;e<0&&(e=0),e>=n.filteredEvents.length&&(e=n.filteredEvents.length-1),o("INSPECT",e)}},Vm={namespaced:!0,state:xm,mutations:_m,getters:km,actions:Mm},Hm="EVENTS_ENABLED",Cm=0,Lm=()=>({enabled:gm["a"](Hm,!0),hasRouter:!1,instances:[],routeChanges:[],inspectedIndex:-1,filter:""}),Sm={INIT(t,e){e.current.id=Cm++,t.instances=[],t.routeChanges=[e.current],t.inspectedIndex=-1,t.hasRouter=!0,t.instances.push(e)},RESET(t){t.routeChanges=[],t.inspectedIndex=-1},CHANGED(t,e){e.id=Cm++,t.routeChanges.push(e),t.filter||(t.inspectedIndex=t.routeChanges.length-1)},INSPECT(t,e){t.inspectedIndex=e},UPDATE_FILTER(t,e){t.filter=e},TOGGLE(t){gm["c"](Hm,t.enabled=!t.enabled),bridge.send("router:toggle-recording",t.enabled)}},Bm={activeRouteChange:t=>{return t.routeChanges[t.inspectedIndex]},filteredRoutes:t=>{return t.routeChanges.filter(e=>{return e.from.fullPath.indexOf(t.filter)>-1||e.to.fullPath.indexOf(t.filter)>-1})}},Em={namespaced:!0,state:Lm,mutations:Sm,getters:Bm},Om="EVENTS_ENABLED",Am=()=>({enabled:gm["a"](Om,!0),hasRouter:!1,routeChanges:[],inspectedIndex:-1,filter:""}),Tm={INIT(t,e){t.inspectedIndex=-1,t.hasRouter=!0,t.routeChanges=e.routeChanges},CHANGED(t,e){t.routeChanges.push(e)},INSPECT(t,e){t.inspectedIndex=e},UPDATE_FILTER(t,e){t.filter=e}},Im={activeRouteChange:t=>{if("string"===typeof t.inspectedIndex){for(var e=t.inspectedIndex.split("_"),o=t.routeChanges[parseInt(e[0])],n=1,i=e.length;n<i;++n)o=o.children[parseInt(e[n])];return o}return t.routeChanges[t.inspectedIndex]},activeRoute:(t,e,o)=>{return t.routeChanges.find(t=>o.router.routeChanges.find(e=>e.to.path===t.path))},filteredRoutes:t=>{return t.routeChanges.filter(e=>{return e.path.indexOf(t.filter)>-1})}},jm={namespaced:!0,state:Am,mutations:Tm,getters:Im};function Nm(){var t=new V["a"].Store({state:()=>({message:"",view:"vertical"}),mutations:{SHOW_MESSAGE(t,e){t.message=e},SWITCH_VIEW(t,e){t.view=e},RECEIVE_INSTANCE_DETAILS(t,e){t.message="Instance selected: "+e.name}},modules:{components:Gf,vuex:mm,events:Vm,router:Em,routes:jm,perf:jp}});return t}function Rm(t,e){var o=new Date(t);return`${o.toString().match(/\d\d:\d\d:\d\d/)[0]}${"ms"===e?"."+o.getMilliseconds():""}`}r["a"].use(V["a"]);var Pm,Dm,Um,Fm=o(37),qm=o(76),Km=o(2),Ym=/\{\{\s*([\w_.-]+)\s*\}\}/g;function Gm(t,e={}){e=Object.assign({},Dm,e);var o=Object(s["k"])(Pm,t);return o=o.replace(Ym,(t,o)=>{var n=Object(s["k"])(e,o);return"undefined"!==typeof n?n:t}),Um&&(o=Um(o)),o}var Wm,Qm={install(t,e){Pm=e.strings||{},Dm=e.defaultValues||{},Um=e.replacer,t.prototype.$t=Gm}},Jm={install(t,e){var o=Object.assign({},{computed:{}},e);Wm=new t({data(){return{width:window.innerWidth,height:window.innerHeight}},computed:o.computed}),Object.defineProperty(t.prototype,"$responsive",{get:()=>Wm}),window.addEventListener("resize",()=>{Wm.width=window.innerWidth,Wm.height=window.innerHeight})}},Xm={install(t,e){var{refs:o}=e,n={};Object.keys(o).forEach(t=>{var e=o[t];Object.defineProperty(n,t,{get:e})}),t.prototype.$globalRefs=n}};o(155);r["a"].use(Fm["a"]),r["a"].use(qm["a"]);var Zm="en",$m=o(157),tg=[{reg:/<input>/g,replace:'<span class="input-example">'},{reg:/<mono>/g,replace:'<span class="mono">'},{reg:/<\/(input|mono)>/g,replace:"</span>"},{reg:/\[\[(\S+)\]\]/g,replace:'<span class="keyboard">$1</span>'},{reg:/<<(\S+)>>/g,replace:(t,e)=>Object(Fm["b"])(e)}];for(var eg in r["a"].use(Qm,{strings:$m(`./${Zm}`).default,defaultValues:{keys:Km["e"]},replacer:t=>{for(var e of tg)t=t.replace(e.reg,e.replace);return t}}),r["a"].use(Jm,{computed:{wide(){return this.width>=1050},tall(){return this.height>=350}}}),r["a"].use(Xm,{refs:{leftScroll:()=>document.querySelector(".left .scroll"),leftRecycleList:()=>document.querySelector(".left .vue-recycle-scroller"),rightScroll:()=>document.querySelector(".right .scroll")}}),r["a"].use(Jm),i)r["a"].filter(eg,i[eg]);var og=!Km["c"],ng=null,ig=Km["c"]?chrome.devtools.panels.themeName:void 0,rg=!1;Km["c"]&&(r["a"].config.errorHandler=((t,e)=>{bridge.send("ERROR",{message:t.message,stack:t.stack,component:e.$options.name||e.$options._componentTag||"anonymous"})}),chrome.runtime.onMessage.addListener(t=>{"vue-panel-shown"===t?dg():"vue-panel-hidden"===t?vg():"vue-get-context-menu-target"===t&&cg()})),r["a"].options.renderError=((t,e)=>{return t("pre",{style:{backgroundColor:"red",color:"white",fontSize:"12px",padding:"10px"}},e.stack)});var ag=null;function ug(t){Object(gm["b"])().then(()=>{sg(t),t.onReload(()=>{ag&&ag.$destroy(),bridge.removeAllListeners(),sg(t)})})}function sg(t){t.connect(t=>{window.bridge=t,r["a"].prototype.hasOwnProperty("$shared")?Object(Zf["b"])():Object.defineProperty(r["a"].prototype,"$shared",{get:()=>Zf["a"]}),Object(Zf["c"])({bridge:t,Vue:r["a"],persist:!0}),Zf["a"].logDetected&&t.send("log-detected-vue");var e=Nm();t.once("ready",o=>{e.commit("SHOW_MESSAGE","Ready. Detected Vue "+o+"."),t.send("events:toggle-recording",e.state.events.enabled),Km["c"]&&chrome.runtime.sendMessage("vue-panel-load")}),t.once("proxy-fail",()=>{e.commit("SHOW_MESSAGE","Proxy injection failed.")}),t.on("flush",t=>{e.commit("components/FLUSH",Object(s["s"])(t))}),t.on("instance-details",t=>{e.commit("components/RECEIVE_INSTANCE_DETAILS",Object(s["s"])(t))}),t.on("toggle-instance",t=>{e.commit("components/TOGGLE_INSTANCE",Object(s["s"])(t))}),t.on("vuex:init",()=>{e.commit("vuex/INIT")}),t.on("vuex:mutation",t=>{e.commit("vuex/RECEIVE_MUTATION",t)}),t.on("vuex:inspected-state",t=>{var o=t.index,n=t.snapshot;e.commit("vuex/RECEIVE_STATE",{index:o,snapshot:n}),-1===o?e.commit("vuex/UPDATE_BASE_STATE",n):e.getters["vuex/absoluteInspectedIndex"]===o&&e.commit("vuex/UPDATE_INSPECTED_STATE",n),Xf.travel&&Xf.travel(n),requestAnimationFrame(()=>{Zf["a"].snapshotLoading=!1})}),t.on("event:triggered",t=>{e.commit("events/RECEIVE_EVENT",Object(s["s"])(t)),"events"!==Uf.currentRoute.name&&e.commit("events/INCREASE_NEW_EVENT_COUNT")}),t.on("router:init",t=>{e.commit("router/INIT",Object(s["s"])(t))}),t.on("router:changed",t=>{e.commit("router/CHANGED",Object(s["s"])(t))}),t.on("routes:init",t=>{e.commit("routes/INIT",Object(s["s"])(t))}),t.on("routes:changed",t=>{e.commit("routes/CHANGED",Object(s["s"])(t))}),t.on("events:reset",()=>{e.commit("events/RESET")}),t.on("inspect-instance",o=>{lg(()=>{t.send("select-instance",o),Uf.push({name:"components"});var n=e.state.components.instancesMap[o];n&&e.dispatch("components/toggleInstance",{instance:n,expanded:!0,parent:!0})})}),t.on("perf:add-metric",t=>{e.commit("perf/ADD_METRIC",t)}),t.on("perf:upsert-metric",t=>{var o=t.type,n=t.data;e.commit("perf/UPSERT_METRIC",{type:o,data:n})}),Object(Km["a"])(r["a"]),ag=new r["a"]({extends:J,router:Uf,store:e,data:{isBeta:rg},watch:{"$shared.theme":{handler(t){"dark"===t||"high-contrast"===t||"auto"===t&&"dark"===ig?document.body.classList.add("vue-ui-dark-mode"):document.body.classList.remove("vue-ui-dark-mode"),"high-contrast"===t?document.body.classList.add("vue-ui-high-contrast"):document.body.classList.remove("vue-ui-high-contrast")},immediate:!0}}}).$mount("#app")})}function cg(){bridge.send("get-context-menu-target")}function lg(t){og?t():ng=t}function dg(){og=!0,ng&&(ng(),ng=null)}function vg(){og=!1}var hg=o(23);function pg(t,e){var o=`\n (function() {\n var script = document.constructor.prototype.createElement.call(document, 'script');\n script.src = "${t}";\n document.documentElement.appendChild(script);\n script.parentNode.removeChild(script);\n })()\n `;chrome.devtools.inspectedWindow.eval(o,function(t,o){o&&console.log(o),e()})}ug({connect(t){pg(chrome.runtime.getURL("build/backend.js"),()=>{var e=chrome.runtime.connect({name:""+chrome.devtools.inspectedWindow.tabId}),o=!1;e.onDisconnect.addListener(()=>{o=!0});var n=new hg["a"]({listen(t){e.onMessage.addListener(t)},send(t){o||e.postMessage(t)}});t(n)})},onReload(t){chrome.devtools.network.onNavigated.addListener(t)}})},,function(t,e,o){"use strict";function n(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function i(t){var e=n(t).Element;return t instanceof e||t instanceof Element}function r(t){var e=n(t).HTMLElement;return t instanceof e||t instanceof HTMLElement}function a(t){if("undefined"===typeof ShadowRoot)return!1;var e=n(t).ShadowRoot;return t instanceof e||t instanceof ShadowRoot}o.d(e,"a",function(){return Rt});var u=Math.max,s=Math.min,c=Math.round;function l(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}function d(){return!/^((?!chrome|android).)*safari/i.test(l())}function v(t,e,o){void 0===e&&(e=!1),void 0===o&&(o=!1);var a=t.getBoundingClientRect(),u=1,s=1;e&&r(t)&&(u=t.offsetWidth>0&&c(a.width)/t.offsetWidth||1,s=t.offsetHeight>0&&c(a.height)/t.offsetHeight||1);var l=i(t)?n(t):window,v=l.visualViewport,h=!d()&&o,p=(a.left+(h&&v?v.offsetLeft:0))/u,f=(a.top+(h&&v?v.offsetTop:0))/s,m=a.width/u,g=a.height/s;return{width:m,height:g,top:f,right:p+m,bottom:f+g,left:p,x:p,y:f}}function h(t){var e=n(t),o=e.pageXOffset,i=e.pageYOffset;return{scrollLeft:o,scrollTop:i}}function p(t){return{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}}function f(t){return t!==n(t)&&r(t)?p(t):h(t)}function m(t){return t?(t.nodeName||"").toLowerCase():null}function g(t){return((i(t)?t.ownerDocument:t.document)||window.document).documentElement}function b(t){return v(g(t)).left+h(t).scrollLeft}function y(t){return n(t).getComputedStyle(t)}function w(t){var e=y(t),o=e.overflow,n=e.overflowX,i=e.overflowY;return/auto|scroll|overlay|hidden/.test(o+i+n)}function x(t){var e=t.getBoundingClientRect(),o=c(e.width)/t.offsetWidth||1,n=c(e.height)/t.offsetHeight||1;return 1!==o||1!==n}function _(t,e,o){void 0===o&&(o=!1);var n=r(e),i=r(e)&&x(e),a=g(e),u=v(t,i,o),s={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(n||!n&&!o)&&(("body"!==m(e)||w(a))&&(s=f(e)),r(e)?(c=v(e,!0),c.x+=e.clientLeft,c.y+=e.clientTop):a&&(c.x=b(a))),{x:u.left+s.scrollLeft-c.x,y:u.top+s.scrollTop-c.y,width:u.width,height:u.height}}function z(t){var e=v(t),o=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-o)<=1&&(o=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:o,height:n}}function k(t){return"html"===m(t)?t:t.assignedSlot||t.parentNode||(a(t)?t.host:null)||g(t)}function M(t){return["html","body","#document"].indexOf(m(t))>=0?t.ownerDocument.body:r(t)&&w(t)?t:M(k(t))}function V(t,e){var o;void 0===e&&(e=[]);var i=M(t),r=i===(null==(o=t.ownerDocument)?void 0:o.body),a=n(i),u=r?[a].concat(a.visualViewport||[],w(i)?i:[]):i,s=e.concat(u);return r?s:s.concat(V(k(u)))}function H(t){return["table","td","th"].indexOf(m(t))>=0}function C(t){return r(t)&&"fixed"!==y(t).position?t.offsetParent:null}function L(t){var e=/firefox/i.test(l()),o=/Trident/i.test(l());if(o&&r(t)){var n=y(t);if("fixed"===n.position)return null}var i=k(t);a(i)&&(i=i.host);while(r(i)&&["html","body"].indexOf(m(i))<0){var u=y(i);if("none"!==u.transform||"none"!==u.perspective||"paint"===u.contain||-1!==["transform","perspective"].indexOf(u.willChange)||e&&"filter"===u.willChange||e&&u.filter&&"none"!==u.filter)return i;i=i.parentNode}return null}function S(t){var e=n(t),o=C(t);while(o&&H(o)&&"static"===y(o).position)o=C(o);return o&&("html"===m(o)||"body"===m(o)&&"static"===y(o).position)?e:o||L(t)||e}var B=o(1);function E(t){var e=new Map,o=new Set,n=[];function i(t){o.add(t.name);var r=[].concat(t.requires||[],t.requiresIfExists||[]);r.forEach(function(t){if(!o.has(t)){var n=e.get(t);n&&i(n)}}),n.push(t)}return t.forEach(function(t){e.set(t.name,t)}),t.forEach(function(t){o.has(t.name)||i(t)}),n}function O(t){var e=E(t);return B["g"].reduce(function(t,o){return t.concat(e.filter(function(t){return t.phase===o}))},[])}function A(t){var e;return function(){return e||(e=new Promise(function(o){Promise.resolve().then(function(){e=void 0,o(t())})})),e}}function T(t){var e=t.reduce(function(t,e){var o=t[e.name];return t[e.name]=o?Object.assign({},o,e,{options:Object.assign({},o.options,e.options),data:Object.assign({},o.data,e.data)}):e,t},{});return Object.keys(e).map(function(t){return e[t]})}var I={placement:"bottom",modifiers:[],strategy:"absolute"};function j(){for(var t=arguments.length,e=new Array(t),o=0;o<t;o++)e[o]=arguments[o];return!e.some(function(t){return!(t&&"function"===typeof t.getBoundingClientRect)})}function N(t){void 0===t&&(t={});var e=t,o=e.defaultModifiers,n=void 0===o?[]:o,r=e.defaultOptions,a=void 0===r?I:r;return function(t,e,o){void 0===o&&(o=a);var r={placement:"bottom",orderedModifiers:[],options:Object.assign({},I,a),modifiersData:{},elements:{reference:t,popper:e},attributes:{},styles:{}},u=[],s=!1,c={state:r,setOptions:function(o){var u="function"===typeof o?o(r.options):o;d(),r.options=Object.assign({},a,r.options,u),r.scrollParents={reference:i(t)?V(t):t.contextElement?V(t.contextElement):[],popper:V(e)};var s=O(T([].concat(n,r.options.modifiers)));return r.orderedModifiers=s.filter(function(t){return t.enabled}),l(),c.update()},forceUpdate:function(){if(!s){var t=r.elements,e=t.reference,o=t.popper;if(j(e,o)){r.rects={reference:_(e,S(o),"fixed"===r.options.strategy),popper:z(o)},r.reset=!1,r.placement=r.options.placement,r.orderedModifiers.forEach(function(t){return r.modifiersData[t.name]=Object.assign({},t.data)});for(var n=0;n<r.orderedModifiers.length;n++)if(!0!==r.reset){var i=r.orderedModifiers[n],a=i.fn,u=i.options,l=void 0===u?{}:u,d=i.name;"function"===typeof a&&(r=a({state:r,options:l,name:d,instance:c})||r)}else r.reset=!1,n=-1}}},update:A(function(){return new Promise(function(t){c.forceUpdate(),t(r)})}),destroy:function(){d(),s=!0}};if(!j(t,e))return c;function l(){r.orderedModifiers.forEach(function(t){var e=t.name,o=t.options,n=void 0===o?{}:o,i=t.effect;if("function"===typeof i){var a=i({state:r,name:e,instance:c,options:n}),s=function(){};u.push(a||s)}})}function d(){u.forEach(function(t){return t()}),u=[]}return c.setOptions(o).then(function(t){!s&&o.onFirstUpdate&&o.onFirstUpdate(t)}),c}}var R={passive:!0};function P(t){var e=t.state,o=t.instance,i=t.options,r=i.scroll,a=void 0===r||r,u=i.resize,s=void 0===u||u,c=n(e.elements.popper),l=[].concat(e.scrollParents.reference,e.scrollParents.popper);return a&&l.forEach(function(t){t.addEventListener("scroll",o.update,R)}),s&&c.addEventListener("resize",o.update,R),function(){a&&l.forEach(function(t){t.removeEventListener("scroll",o.update,R)}),s&&c.removeEventListener("resize",o.update,R)}}var D={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:P,data:{}};function U(t){return t.split("-")[0]}function F(t){return t.split("-")[1]}function q(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function K(t){var e,o=t.reference,n=t.element,i=t.placement,r=i?U(i):null,a=i?F(i):null,u=o.x+o.width/2-n.width/2,s=o.y+o.height/2-n.height/2;switch(r){case B["m"]:e={x:u,y:o.y-n.height};break;case B["c"]:e={x:u,y:o.y+o.height};break;case B["k"]:e={x:o.x+o.width,y:s};break;case B["f"]:e={x:o.x-n.width,y:s};break;default:e={x:o.x,y:o.y}}var c=r?q(r):null;if(null!=c){var l="y"===c?"height":"width";switch(a){case B["l"]:e[c]=e[c]-(o[l]/2-n[l]/2);break;case B["e"]:e[c]=e[c]+(o[l]/2-n[l]/2);break;default:}}return e}function Y(t){var e=t.state,o=t.name;e.modifiersData[o]=K({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})}var G={name:"popperOffsets",enabled:!0,phase:"read",fn:Y,data:{}},W={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Q(t,e){var o=t.x,n=t.y,i=e.devicePixelRatio||1;return{x:c(o*i)/i||0,y:c(n*i)/i||0}}function J(t){var e,o=t.popper,i=t.popperRect,r=t.placement,a=t.variation,u=t.offsets,s=t.position,c=t.gpuAcceleration,l=t.adaptive,d=t.roundOffsets,v=t.isFixed,h=u.x,p=void 0===h?0:h,f=u.y,m=void 0===f?0:f,b="function"===typeof d?d({x:p,y:m}):{x:p,y:m};p=b.x,m=b.y;var w=u.hasOwnProperty("x"),x=u.hasOwnProperty("y"),_=B["f"],z=B["m"],k=window;if(l){var M=S(o),V="clientHeight",H="clientWidth";if(M===n(o)&&(M=g(o),"static"!==y(M).position&&"absolute"===s&&(V="scrollHeight",H="scrollWidth")),M=M,r===B["m"]||(r===B["f"]||r===B["k"])&&a===B["e"]){z=B["c"];var C=v&&M===k&&k.visualViewport?k.visualViewport.height:M[V];m-=C-i.height,m*=c?1:-1}if(r===B["f"]||(r===B["m"]||r===B["c"])&&a===B["e"]){_=B["k"];var L=v&&M===k&&k.visualViewport?k.visualViewport.width:M[H];p-=L-i.width,p*=c?1:-1}}var E,O=Object.assign({position:s},l&&W),A=!0===d?Q({x:p,y:m},n(o)):{x:p,y:m};return p=A.x,m=A.y,c?Object.assign({},O,(E={},E[z]=x?"0":"",E[_]=w?"0":"",E.transform=(k.devicePixelRatio||1)<=1?"translate("+p+"px, "+m+"px)":"translate3d("+p+"px, "+m+"px, 0)",E)):Object.assign({},O,(e={},e[z]=x?m+"px":"",e[_]=w?p+"px":"",e.transform="",e))}function X(t){var e=t.state,o=t.options,n=o.gpuAcceleration,i=void 0===n||n,r=o.adaptive,a=void 0===r||r,u=o.roundOffsets,s=void 0===u||u,c={placement:U(e.placement),variation:F(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:i,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,J(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:a,roundOffsets:s})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,J(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:s})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})}var Z={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:X,data:{}};function $(t){var e=t.state;Object.keys(e.elements).forEach(function(t){var o=e.styles[t]||{},n=e.attributes[t]||{},i=e.elements[t];r(i)&&m(i)&&(Object.assign(i.style,o),Object.keys(n).forEach(function(t){var e=n[t];!1===e?i.removeAttribute(t):i.setAttribute(t,!0===e?"":e)}))})}function tt(t){var e=t.state,o={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,o.popper),e.styles=o,e.elements.arrow&&Object.assign(e.elements.arrow.style,o.arrow),function(){Object.keys(e.elements).forEach(function(t){var n=e.elements[t],i=e.attributes[t]||{},a=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:o[t]),u=a.reduce(function(t,e){return t[e]="",t},{});r(n)&&m(n)&&(Object.assign(n.style,u),Object.keys(i).forEach(function(t){n.removeAttribute(t)}))})}}var et={name:"applyStyles",enabled:!0,phase:"write",fn:$,effect:tt,requires:["computeStyles"]};function ot(t,e,o){var n=U(t),i=[B["f"],B["m"]].indexOf(n)>=0?-1:1,r="function"===typeof o?o(Object.assign({},e,{placement:t})):o,a=r[0],u=r[1];return a=a||0,u=(u||0)*i,[B["f"],B["k"]].indexOf(n)>=0?{x:u,y:a}:{x:a,y:u}}function nt(t){var e=t.state,o=t.options,n=t.name,i=o.offset,r=void 0===i?[0,0]:i,a=B["h"].reduce(function(t,o){return t[o]=ot(o,e.rects,r),t},{}),u=a[e.placement],s=u.x,c=u.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=s,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=a}var it={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:nt},rt={left:"right",right:"left",bottom:"top",top:"bottom"};function at(t){return t.replace(/left|right|bottom|top/g,function(t){return rt[t]})}var ut={start:"end",end:"start"};function st(t){return t.replace(/start|end/g,function(t){return ut[t]})}function ct(t,e){var o=n(t),i=g(t),r=o.visualViewport,a=i.clientWidth,u=i.clientHeight,s=0,c=0;if(r){a=r.width,u=r.height;var l=d();(l||!l&&"fixed"===e)&&(s=r.offsetLeft,c=r.offsetTop)}return{width:a,height:u,x:s+b(t),y:c}}function lt(t){var e,o=g(t),n=h(t),i=null==(e=t.ownerDocument)?void 0:e.body,r=u(o.scrollWidth,o.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),a=u(o.scrollHeight,o.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0),s=-n.scrollLeft+b(t),c=-n.scrollTop;return"rtl"===y(i||o).direction&&(s+=u(o.clientWidth,i?i.clientWidth:0)-r),{width:r,height:a,x:s,y:c}}function dt(t,e){var o=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(o&&a(o)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function vt(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function ht(t,e){var o=v(t,!1,"fixed"===e);return o.top=o.top+t.clientTop,o.left=o.left+t.clientLeft,o.bottom=o.top+t.clientHeight,o.right=o.left+t.clientWidth,o.width=t.clientWidth,o.height=t.clientHeight,o.x=o.left,o.y=o.top,o}function pt(t,e,o){return e===B["o"]?vt(ct(t,o)):i(e)?ht(e,o):vt(lt(g(t)))}function ft(t){var e=V(k(t)),o=["absolute","fixed"].indexOf(y(t).position)>=0,n=o&&r(t)?S(t):t;return i(n)?e.filter(function(t){return i(t)&&dt(t,n)&&"body"!==m(t)}):[]}function mt(t,e,o,n){var i="clippingParents"===e?ft(t):[].concat(e),r=[].concat(i,[o]),a=r[0],c=r.reduce(function(e,o){var i=pt(t,o,n);return e.top=u(i.top,e.top),e.right=s(i.right,e.right),e.bottom=s(i.bottom,e.bottom),e.left=u(i.left,e.left),e},pt(t,a,n));return c.width=c.right-c.left,c.height=c.bottom-c.top,c.x=c.left,c.y=c.top,c}function gt(){return{top:0,right:0,bottom:0,left:0}}function bt(t){return Object.assign({},gt(),t)}function yt(t,e){return e.reduce(function(e,o){return e[o]=t,e},{})}function wt(t,e){void 0===e&&(e={});var o=e,n=o.placement,r=void 0===n?t.placement:n,a=o.strategy,u=void 0===a?t.strategy:a,s=o.boundary,c=void 0===s?B["d"]:s,l=o.rootBoundary,d=void 0===l?B["o"]:l,h=o.elementContext,p=void 0===h?B["i"]:h,f=o.altBoundary,m=void 0!==f&&f,b=o.padding,y=void 0===b?0:b,w=bt("number"!==typeof y?y:yt(y,B["b"])),x=p===B["i"]?B["j"]:B["i"],_=t.rects.popper,z=t.elements[m?x:p],k=mt(i(z)?z:z.contextElement||g(t.elements.popper),c,d,u),M=v(t.elements.reference),V=K({reference:M,element:_,strategy:"absolute",placement:r}),H=vt(Object.assign({},_,V)),C=p===B["i"]?H:M,L={top:k.top-C.top+w.top,bottom:C.bottom-k.bottom+w.bottom,left:k.left-C.left+w.left,right:C.right-k.right+w.right},S=t.modifiersData.offset;if(p===B["i"]&&S){var E=S[r];Object.keys(L).forEach(function(t){var e=[B["k"],B["c"]].indexOf(t)>=0?1:-1,o=[B["m"],B["c"]].indexOf(t)>=0?"y":"x";L[t]+=E[o]*e})}return L}function xt(t,e){void 0===e&&(e={});var o=e,n=o.placement,i=o.boundary,r=o.rootBoundary,a=o.padding,u=o.flipVariations,s=o.allowedAutoPlacements,c=void 0===s?B["h"]:s,l=F(n),d=l?u?B["n"]:B["n"].filter(function(t){return F(t)===l}):B["b"],v=d.filter(function(t){return c.indexOf(t)>=0});0===v.length&&(v=d);var h=v.reduce(function(e,o){return e[o]=wt(t,{placement:o,boundary:i,rootBoundary:r,padding:a})[U(o)],e},{});return Object.keys(h).sort(function(t,e){return h[t]-h[e]})}function _t(t){if(U(t)===B["a"])return[];var e=at(t);return[st(t),e,st(e)]}function zt(t){var e=t.state,o=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var i=o.mainAxis,r=void 0===i||i,a=o.altAxis,u=void 0===a||a,s=o.fallbackPlacements,c=o.padding,l=o.boundary,d=o.rootBoundary,v=o.altBoundary,h=o.flipVariations,p=void 0===h||h,f=o.allowedAutoPlacements,m=e.options.placement,g=U(m),b=g===m,y=s||(b||!p?[at(m)]:_t(m)),w=[m].concat(y).reduce(function(t,o){return t.concat(U(o)===B["a"]?xt(e,{placement:o,boundary:l,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:f}):o)},[]),x=e.rects.reference,_=e.rects.popper,z=new Map,k=!0,M=w[0],V=0;V<w.length;V++){var H=w[V],C=U(H),L=F(H)===B["l"],S=[B["m"],B["c"]].indexOf(C)>=0,E=S?"width":"height",O=wt(e,{placement:H,boundary:l,rootBoundary:d,altBoundary:v,padding:c}),A=S?L?B["k"]:B["f"]:L?B["c"]:B["m"];x[E]>_[E]&&(A=at(A));var T=at(A),I=[];if(r&&I.push(O[C]<=0),u&&I.push(O[A]<=0,O[T]<=0),I.every(function(t){return t})){M=H,k=!1;break}z.set(H,I)}if(k)for(var j=p?3:1,N=function(t){var e=w.find(function(e){var o=z.get(e);if(o)return o.slice(0,t).every(function(t){return t})});if(e)return M=e,"break"},R=j;R>0;R--){var P=N(R);if("break"===P)break}e.placement!==M&&(e.modifiersData[n]._skip=!0,e.placement=M,e.reset=!0)}}var kt={name:"flip",enabled:!0,phase:"main",fn:zt,requiresIfExists:["offset"],data:{_skip:!1}};function Mt(t){return"x"===t?"y":"x"}function Vt(t,e,o){return u(t,s(e,o))}function Ht(t,e,o){var n=Vt(t,e,o);return n>o?o:n}function Ct(t){var e=t.state,o=t.options,n=t.name,i=o.mainAxis,r=void 0===i||i,a=o.altAxis,c=void 0!==a&&a,l=o.boundary,d=o.rootBoundary,v=o.altBoundary,h=o.padding,p=o.tether,f=void 0===p||p,m=o.tetherOffset,g=void 0===m?0:m,b=wt(e,{boundary:l,rootBoundary:d,padding:h,altBoundary:v}),y=U(e.placement),w=F(e.placement),x=!w,_=q(y),k=Mt(_),M=e.modifiersData.popperOffsets,V=e.rects.reference,H=e.rects.popper,C="function"===typeof g?g(Object.assign({},e.rects,{placement:e.placement})):g,L="number"===typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),E=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,O={x:0,y:0};if(M){if(r){var A,T="y"===_?B["m"]:B["f"],I="y"===_?B["c"]:B["k"],j="y"===_?"height":"width",N=M[_],R=N+b[T],P=N-b[I],D=f?-H[j]/2:0,K=w===B["l"]?V[j]:H[j],Y=w===B["l"]?-H[j]:-V[j],G=e.elements.arrow,W=f&&G?z(G):{width:0,height:0},Q=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:gt(),J=Q[T],X=Q[I],Z=Vt(0,V[j],W[j]),$=x?V[j]/2-D-Z-J-L.mainAxis:K-Z-J-L.mainAxis,tt=x?-V[j]/2+D+Z+X+L.mainAxis:Y+Z+X+L.mainAxis,et=e.elements.arrow&&S(e.elements.arrow),ot=et?"y"===_?et.clientTop||0:et.clientLeft||0:0,nt=null!=(A=null==E?void 0:E[_])?A:0,it=N+$-nt-ot,rt=N+tt-nt,at=Vt(f?s(R,it):R,N,f?u(P,rt):P);M[_]=at,O[_]=at-N}if(c){var ut,st="x"===_?B["m"]:B["f"],ct="x"===_?B["c"]:B["k"],lt=M[k],dt="y"===k?"height":"width",vt=lt+b[st],ht=lt-b[ct],pt=-1!==[B["m"],B["f"]].indexOf(y),ft=null!=(ut=null==E?void 0:E[k])?ut:0,mt=pt?vt:lt-V[dt]-H[dt]-ft+L.altAxis,bt=pt?lt+V[dt]+H[dt]-ft-L.altAxis:ht,yt=f&&pt?Ht(mt,lt,bt):Vt(f?mt:vt,lt,f?bt:ht);M[k]=yt,O[k]=yt-lt}e.modifiersData[n]=O}}var Lt={name:"preventOverflow",enabled:!0,phase:"main",fn:Ct,requiresIfExists:["offset"]},St=function(t,e){return t="function"===typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t,bt("number"!==typeof t?t:yt(t,B["b"]))};function Bt(t){var e,o=t.state,n=t.name,i=t.options,r=o.elements.arrow,a=o.modifiersData.popperOffsets,u=U(o.placement),s=q(u),c=[B["f"],B["k"]].indexOf(u)>=0,l=c?"height":"width";if(r&&a){var d=St(i.padding,o),v=z(r),h="y"===s?B["m"]:B["f"],p="y"===s?B["c"]:B["k"],f=o.rects.reference[l]+o.rects.reference[s]-a[s]-o.rects.popper[l],m=a[s]-o.rects.reference[s],g=S(r),b=g?"y"===s?g.clientHeight||0:g.clientWidth||0:0,y=f/2-m/2,w=d[h],x=b-v[l]-d[p],_=b/2-v[l]/2+y,k=Vt(w,_,x),M=s;o.modifiersData[n]=(e={},e[M]=k,e.centerOffset=k-_,e)}}function Et(t){var e=t.state,o=t.options,n=o.element,i=void 0===n?"[data-popper-arrow]":n;null!=i&&("string"!==typeof i||(i=e.elements.popper.querySelector(i),i))&&dt(e.elements.popper,i)&&(e.elements.arrow=i)}var Ot={name:"arrow",enabled:!0,phase:"main",fn:Bt,effect:Et,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function At(t,e,o){return void 0===o&&(o={x:0,y:0}),{top:t.top-e.height-o.y,right:t.right-e.width+o.x,bottom:t.bottom-e.height+o.y,left:t.left-e.width-o.x}}function Tt(t){return[B["m"],B["k"],B["c"],B["f"]].some(function(e){return t[e]>=0})}function It(t){var e=t.state,o=t.name,n=e.rects.reference,i=e.rects.popper,r=e.modifiersData.preventOverflow,a=wt(e,{elementContext:"reference"}),u=wt(e,{altBoundary:!0}),s=At(a,n),c=At(u,i,r),l=Tt(s),d=Tt(c);e.modifiersData[o]={referenceClippingOffsets:s,popperEscapeOffsets:c,isReferenceHidden:l,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":l,"data-popper-escaped":d})}var jt={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:It},Nt=[D,G,Z,et,it,kt,Lt,Ot,jt],Rt=N({defaultModifiers:Nt})}]);