uikit 3.11.2-dev.31cd2ba38 → 3.11.2-dev.3dfa2c50b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +4 -49
- package/.prettierignore +14 -0
- package/.prettierrc.json +13 -0
- package/.webstorm.js +3 -3
- package/CHANGELOG.md +7 -11
- package/build/.eslintrc.json +1 -3
- package/build/build.js +26 -28
- package/build/icons.js +7 -11
- package/build/less.js +48 -36
- package/build/package.json +2 -2
- package/build/prefix.js +21 -18
- package/build/publishDev.js +6 -8
- package/build/release.js +20 -17
- package/build/scope.js +21 -11
- package/build/scss.js +72 -39
- package/build/util.js +71 -62
- package/build/wrapper/icons.js +0 -2
- package/dist/css/uikit-core-rtl.css +42 -17
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +42 -17
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +42 -17
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +42 -17
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +88 -133
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +409 -438
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +1116 -1305
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1164 -1383
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +94 -114
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +294 -345
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +292 -344
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +727 -850
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +292 -344
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +615 -799
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +588 -619
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +324 -356
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +155 -167
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +5266 -6572
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +7 -9
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +8126 -9876
- package/dist/js/uikit.min.js +1 -1
- package/jsconfig.json +1 -1
- package/package.json +64 -60
- package/src/js/api/boot.js +25 -32
- package/src/js/api/component.js +23 -27
- package/src/js/api/global.js +6 -12
- package/src/js/api/hooks.js +13 -32
- package/src/js/api/instance.js +7 -15
- package/src/js/api/state.js +79 -100
- package/src/js/components/countdown.js +24 -50
- package/src/js/components/filter.js +71 -66
- package/src/js/components/index.js +13 -13
- package/src/js/components/internal/lightbox-animations.js +11 -23
- package/src/js/components/internal/slider-transitioner.js +66 -45
- package/src/js/components/internal/slideshow-animations.js +42 -61
- package/src/js/components/lightbox-panel.js +135 -109
- package/src/js/components/lightbox.js +18 -39
- package/src/js/components/notification.js +49 -43
- package/src/js/components/parallax.js +16 -30
- package/src/js/components/slider-parallax.js +13 -23
- package/src/js/components/slider.js +75 -64
- package/src/js/components/slideshow-parallax.js +1 -1
- package/src/js/components/slideshow.js +8 -13
- package/src/js/components/sortable.js +125 -106
- package/src/js/components/tooltip.js +41 -31
- package/src/js/components/upload.js +52 -63
- package/src/js/core/accordion.js +53 -48
- package/src/js/core/alert.js +10 -17
- package/src/js/core/core.js +74 -53
- package/src/js/core/cover.js +11 -15
- package/src/js/core/drop.js +106 -92
- package/src/js/core/form-custom.js +20 -25
- package/src/js/core/gif.js +3 -7
- package/src/js/core/grid.js +57 -58
- package/src/js/core/height-match.js +16 -29
- package/src/js/core/height-viewport.js +28 -35
- package/src/js/core/icon.js +38 -50
- package/src/js/core/img.js +130 -105
- package/src/js/core/index.js +39 -39
- package/src/js/core/leader.js +9 -18
- package/src/js/core/margin.js +21 -37
- package/src/js/core/modal.js +50 -36
- package/src/js/core/nav.js +2 -4
- package/src/js/core/navbar.js +112 -88
- package/src/js/core/offcanvas.js +49 -53
- package/src/js/core/overflow-auto.js +13 -17
- package/src/js/core/responsive.js +14 -12
- package/src/js/core/scroll.js +10 -20
- package/src/js/core/scrollspy-nav.js +34 -31
- package/src/js/core/scrollspy.js +37 -54
- package/src/js/core/sticky.js +130 -91
- package/src/js/core/svg.js +60 -79
- package/src/js/core/switcher.js +47 -46
- package/src/js/core/tab.js +7 -10
- package/src/js/core/toggle.js +64 -66
- package/src/js/core/video.js +11 -22
- package/src/js/mixin/animate.js +19 -20
- package/src/js/mixin/class.js +2 -4
- package/src/js/mixin/container.js +7 -11
- package/src/js/mixin/internal/animate-fade.js +73 -30
- package/src/js/mixin/internal/animate-slide.js +61 -41
- package/src/js/mixin/internal/slideshow-animations.js +7 -14
- package/src/js/mixin/internal/slideshow-transitioner.js +10 -17
- package/src/js/mixin/media.js +5 -10
- package/src/js/mixin/modal.js +89 -66
- package/src/js/mixin/parallax.js +53 -48
- package/src/js/mixin/position.js +26 -20
- package/src/js/mixin/slider-autoplay.js +12 -21
- package/src/js/mixin/slider-drag.js +64 -65
- package/src/js/mixin/slider-nav.js +26 -35
- package/src/js/mixin/slider-reactive.js +2 -8
- package/src/js/mixin/slider.js +51 -50
- package/src/js/mixin/slideshow.js +13 -19
- package/src/js/mixin/togglable.js +90 -63
- package/src/js/uikit-core.js +2 -4
- package/src/js/uikit.js +2 -4
- package/src/js/util/ajax.js +27 -43
- package/src/js/util/animation.js +82 -75
- package/src/js/util/attr.js +17 -21
- package/src/js/util/class.js +14 -52
- package/src/js/util/dimensions.js +56 -43
- package/src/js/util/dom.js +40 -73
- package/src/js/util/env.js +7 -12
- package/src/js/util/event.js +60 -59
- package/src/js/util/fastdom.js +1 -6
- package/src/js/util/filter.js +17 -34
- package/src/js/util/index.js +0 -1
- package/src/js/util/lang.js +79 -119
- package/src/js/util/mouse.js +19 -17
- package/src/js/util/options.js +42 -47
- package/src/js/util/player.js +40 -36
- package/src/js/util/position.js +54 -46
- package/src/js/util/promise.js +0 -191
- package/src/js/util/selector.js +39 -48
- package/src/js/util/style.js +36 -46
- package/src/js/util/viewport.js +75 -64
- package/src/less/components/flex.less +0 -9
- package/src/less/components/navbar.less +0 -7
- package/src/less/components/utility.less +22 -0
- package/src/scss/components/flex.scss +0 -9
- package/src/scss/components/form.scss +3 -3
- package/src/scss/components/icon.scss +2 -2
- package/src/scss/components/navbar.scss +0 -7
- package/src/scss/components/search.scss +1 -1
- package/src/scss/components/utility.scss +22 -0
- package/src/scss/variables-theme.scss +6 -6
- package/src/scss/variables.scss +6 -6
- package/tests/image.html +38 -22
- package/tests/js/index.js +114 -85
- package/src/js/mixin/flex-bug.js +0 -56
- package/tests/images/test.avif +0 -0
- package/tests/images/test.webp +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! UIkit 3.11.2-dev.31cd2ba38 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(Bt,Gt){typeof exports=="object"&&typeof module<"u"?module.exports=Gt():typeof define=="function"&&define.amd?define("uikit",Gt):(Bt=typeof globalThis<"u"?globalThis:Bt||self,Bt.UIkit=Gt())})(this,function(){"use strict";var Bt=Object.prototype,Gt=Bt.hasOwnProperty;function vt(t,e){return Gt.call(t,e)}var Yi=/\B([A-Z])/g,kt=Z(function(t){return t.replace(Yi,"-$1").toLowerCase()}),Gi=/-(\w)/g,Dt=Z(function(t){return t.replace(Gi,Nn)}),ge=Z(function(t){return t.length?Nn(null,t.charAt(0))+t.slice(1):""});function Nn(t,e){return e?e.toUpperCase():""}var Ye=String.prototype,Xi=Ye.startsWith||function(t){return this.lastIndexOf(t,0)===0};function gt(t,e){return Xi.call(t,e)}var Ji=Ye.endsWith||function(t){return this.substr(-t.length)===t};function Tt(t,e){return Ji.call(t,e)}var Ge=Array.prototype,Mn=function(t,e){return!!~this.indexOf(t,e)},Ki=Ye.includes||Mn,Zi=Ge.includes||Mn;function m(t,e){return t&&(C(t)?Ki:Zi).call(t,e)}var Qi=Ge.findIndex||function(t){for(var e=arguments,n=0;n<this.length;n++)if(t.call(e[1],this[n],n,this))return n;return-1};function pe(t,e){return Qi.call(t,e)}var K=Array.isArray;function et(t){return typeof t=="function"}function st(t){return t!==null&&typeof t=="object"}var Ui=Bt.toString;function pt(t){return Ui.call(t)==="[object Object]"}function Xt(t){return st(t)&&t===t.window}function Ot(t){return Je(t)===9}function Xe(t){return Je(t)>=1}function Ft(t){return Je(t)===1}function Je(t){return!Xt(t)&&st(t)&&t.nodeType}function Jt(t){return typeof t=="boolean"}function C(t){return typeof t=="string"}function Ke(t){return typeof t=="number"}function Et(t){return Ke(t)||C(t)&&!isNaN(t-parseFloat(t))}function Ze(t){return!(K(t)?t.length:st(t)?Object.keys(t).length:!1)}function Y(t){return t===void 0}function Qe(t){return Jt(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Kt(t){var e=Number(t);return isNaN(e)?!1:e}function $(t){return parseFloat(t)||0}var Hn=Array.from||function(t){return Ge.slice.call(t)};function P(t){return w(t)[0]}function w(t){return t&&(Xe(t)?[t]:Hn(t).filter(Xe))||[]}function Ct(t){return Xt(t)?t:(t=P(t),t?(Ot(t)?t:t.ownerDocument).defaultView:window)}function Ue(t){return t?Tt(t,"ms")?$(t):$(t)*1e3:0}function Bn(t,e){return t===e||st(t)&&st(e)&&Object.keys(t).length===Object.keys(e).length&&it(t,function(n,i){return n===e[i]})}function tn(t,e,n){return t.replace(new RegExp(e+"|"+n,"g"),function(i){return i===e?n:e})}var N=Object.assign||function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];t=Object(t);for(var i=0;i<e.length;i++){var r=e[i];if(r!==null)for(var o in r)vt(r,o)&&(t[o]=r[o])}return t};function me(t){return t[t.length-1]}function it(t,e){for(var n in t)if(e(t[n],n)===!1)return!1;return!0}function en(t,e){return t.slice().sort(function(n,i){var r=n[e];r===void 0&&(r=0);var o=i[e];return o===void 0&&(o=0),r>o?1:o>r?-1:0})}function tr(t,e){var n=new Set;return t.filter(function(i){var r=i[e];return n.has(r)?!1:n.add(r)||!0})}function _t(t,e,n){return e===void 0&&(e=0),n===void 0&&(n=1),Math.min(Math.max(Kt(t)||0,e),n)}function lt(){}function Dn(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];return[["bottom","top"],["right","left"]].every(function(n){var i=n[0],r=n[1];return Math.min.apply(Math,t.map(function(o){var s=o[i];return s}))-Math.max.apply(Math,t.map(function(o){var s=o[r];return s}))>0})}function nn(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}var rn={ratio:function(t,e,n){var i,r=e==="width"?"height":"width";return i={},i[r]=t[e]?Math.round(n*t[r]/t[e]):t[r],i[e]=n,i},contain:function(t,e){var n=this;return t=N({},t),it(t,function(i,r){return t=t[r]>e[r]?n.ratio(t,r,e[r]):t}),t},cover:function(t,e){var n=this;return t=this.contain(t,e),it(t,function(i,r){return t=t[r]<e[r]?n.ratio(t,r,e[r]):t}),t}};function we(t,e,n,i){n===void 0&&(n=0),i===void 0&&(i=!1),e=w(e);var r=e.length;return r?(t=Et(t)?Kt(t):t==="next"?n+1:t==="previous"?n-1:e.indexOf(P(t)),i?_t(t,0,r-1):(t%=r,t<0?t+r:t)):-1}function Z(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}function T(t,e,n){if(st(e)){for(var i in e)T(t,i,e[i]);return}if(Y(n))return t=P(t),t&&t.getAttribute(e);w(t).forEach(function(r){et(n)&&(n=n.call(r,T(r,e))),n===null?on(r,e):r.setAttribute(e,n)})}function Zt(t,e){return w(t).some(function(n){return n.hasAttribute(e)})}function on(t,e){t=w(t),e.split(" ").forEach(function(n){return t.forEach(function(i){return i.hasAttribute(n)&&i.removeAttribute(n)})})}function mt(t,e){for(var n=0,i=[e,"data-"+e];n<i.length;n++)if(Zt(t,i[n]))return T(t,i[n])}var nt=typeof window<"u",be=nt&&/msie|trident/i.test(window.navigator.userAgent),Qt=nt&&T(document.documentElement,"dir")==="rtl",zt=nt&&"ontouchstart"in window,Lt=nt&&window.PointerEvent,er=nt&&(zt||window.DocumentTouch&&document instanceof DocumentTouch||navigator.maxTouchPoints),Rt=Lt?"pointerdown":zt?"touchstart":"mousedown",nr=Lt?"pointermove":zt?"touchmove":"mousemove",It=Lt?"pointerup":zt?"touchend":"mouseup",$e=Lt?"pointerenter":zt?"":"mouseenter",ye=Lt?"pointerleave":zt?"":"mouseleave",xe=Lt?"pointercancel":"touchcancel",ir={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function sn(t){return w(t).some(function(e){return ir[e.tagName.toLowerCase()]})}function M(t){return w(t).some(function(e){return e.offsetWidth||e.offsetHeight||e.getClientRects().length})}var Se="input,select,textarea,button";function On(t){return w(t).some(function(e){return B(e,Se)})}var ke=Se+",a[href],[tabindex]";function an(t){return B(t,ke)}function H(t){return t=P(t),t&&Ft(t.parentNode)&&t.parentNode}function Ut(t,e){return w(t).filter(function(n){return B(n,e)})}var Te=nt?Element.prototype:{},rr=Te.matches||Te.webkitMatchesSelector||Te.msMatchesSelector||lt;function B(t,e){return w(t).some(function(n){return rr.call(n,e)})}var or=Te.closest||function(t){var e=this;do if(B(e,t))return e;while(e=H(e))};function rt(t,e){return gt(e,">")&&(e=e.slice(1)),Ft(t)?or.call(t,e):w(t).map(function(n){return rt(n,e)}).filter(Boolean)}function I(t,e){return C(e)?B(t,e)||!!rt(t,e):t===e||(Ot(e)?e.documentElement:P(e)).contains(P(t))}function te(t,e){for(var n=[];t=H(t);)(!e||B(t,e))&&n.push(t);return n}function wt(t,e){t=P(t);var n=t?w(t.children):[];return e?Ut(n,e):n}function un(t,e){return e?w(t).indexOf(P(e)):wt(H(t)).indexOf(t)}function dt(t,e){return cn(t,Fn(t,e))}function ee(t,e){return ne(t,Fn(t,e))}function Fn(t,e){return e===void 0&&(e=document),C(t)&&Ln(t)||Ot(e)?e:e.ownerDocument}function cn(t,e){return P(zn(t,e,"querySelector"))}function ne(t,e){return w(zn(t,e,"querySelectorAll"))}function zn(t,e,n){if(e===void 0&&(e=document),!t||!C(t))return t;t=t.replace(ar,"$1 *"),Ln(t)&&(t=cr(t).map(function(i){var r=e;if(i[0]==="!"){var o=i.substr(1).trim().split(" ");r=rt(H(e),o[0]),i=o.slice(1).join(" ").trim()}if(i[0]==="-"){var s=i.substr(1).trim().split(" "),a=(r||e).previousElementSibling;r=B(a,i.substr(1))?a:null,i=s.slice(1).join(" ")}return r?fr(r)+" "+i:null}).filter(Boolean).join(","),e=document);try{return e[n](t)}catch{return null}}var sr=/(^|[^\\],)\s*[!>+~-]/,ar=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,Ln=Z(function(t){return t.match(sr)}),ur=/.*?[^\\](?:,|$)/g,cr=Z(function(t){return t.match(ur).map(function(e){return e.replace(/,$/,"").trim()})});function fr(t){for(var e=[];t.parentNode;){var n=T(t,"id");if(n){e.unshift("#"+ie(n));break}else{var i=t.tagName;i!=="HTML"&&(i+=":nth-child("+(un(t)+1)+")"),e.unshift(i),t=t.parentNode}}return e.join(" > ")}var hr=nt&&window.CSS&&CSS.escape||function(t){return t.replace(/([^\x7f-\uFFFF\w-])/g,function(e){return"\\"+e})};function ie(t){return C(t)?hr.call(null,t):""}function D(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var n=In(t),i=n[0],r=n[1],o=n[2],s=n[3],a=n[4];return i=Ee(i),s.length>1&&(s=dr(s)),a&&a.self&&(s=vr(s)),o&&(s=lr(o,s)),a=Wn(a),r.split(" ").forEach(function(c){return i.forEach(function(f){return f.addEventListener(c,s,a)})}),function(){return Rn(i,r,s,a)}}function Rn(t,e,n,i){i===void 0&&(i=!1),i=Wn(i),t=Ee(t),e.split(" ").forEach(function(r){return t.forEach(function(o){return o.removeEventListener(r,n,i)})})}function O(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var n=In(t),i=n[0],r=n[1],o=n[2],s=n[3],a=n[4],c=n[5],f=D(i,r,o,function(v){var u=!c||c(v);u&&(f(),s(v,u))},a);return f}function _(t,e,n){return Ee(t).reduce(function(i,r){return i&&r.dispatchEvent(fn(e,!0,!0,n))},!0)}function fn(t,e,n,i){if(e===void 0&&(e=!0),n===void 0&&(n=!1),C(t)){var r=document.createEvent("CustomEvent");r.initCustomEvent(t,e,n,i),t=r}return t}function In(t){return et(t[2])&&t.splice(2,0,!1),t}function lr(t,e){var n=this;return function(i){var r=t[0]===">"?ne(t,i.currentTarget).reverse().filter(function(o){return I(i.target,o)})[0]:rt(i.target,t);r&&(i.current=r,e.call(n,i))}}function dr(t){return function(e){return K(e.detail)?t.apply(void 0,[e].concat(e.detail)):t(e)}}function vr(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Wn(t){return t&&be&&!Jt(t)?!!t.capture:t}function jn(t){return t&&"addEventListener"in t}function gr(t){return jn(t)?t:P(t)}function Ee(t){return K(t)?t.map(gr).filter(Boolean):C(t)?ne(t):jn(t)?[t]:w(t)}function Wt(t){return t.pointerType==="touch"||!!t.touches}function Ce(t){var e=t.touches,n=t.changedTouches,i=e&&e[0]||n&&n[0]||t,r=i.clientX,o=i.clientY;return{x:r,y:o}}var y=nt&&window.Promise||Q,qn=function(){var t=this;this.promise=new y(function(e,n){t.reject=n,t.resolve=e})},Vn=0,Yn=1,_e=2,pr=nt&&window.setImmediate||setTimeout;function Q(t){this.state=_e,this.value=void 0,this.deferred=[];var e=this;try{t(function(n){e.resolve(n)},function(n){e.reject(n)})}catch(n){e.reject(n)}}Q.reject=function(t){return new Q(function(e,n){n(t)})},Q.resolve=function(t){return new Q(function(e,n){e(t)})},Q.all=function(e){return new Q(function(n,i){var r=[],o=0;e.length===0&&n(r);function s(c){return function(f){r[c]=f,o+=1,o===e.length&&n(r)}}for(var a=0;a<e.length;a+=1)Q.resolve(e[a]).then(s(a),i)})},Q.race=function(e){return new Q(function(n,i){for(var r=0;r<e.length;r+=1)Q.resolve(e[r]).then(n,i)})};var re=Q.prototype;re.resolve=function(e){var n=this;if(n.state===_e){if(e===n)throw new TypeError("Promise settled with itself.");var i=!1;try{var r=e&&e.then;if(e!==null&&st(e)&&et(r)){r.call(e,function(o){i||n.resolve(o),i=!0},function(o){i||n.reject(o),i=!0});return}}catch(o){i||n.reject(o);return}n.state=Vn,n.value=e,n.notify()}},re.reject=function(e){var n=this;if(n.state===_e){if(e===n)throw new TypeError("Promise settled with itself.");n.state=Yn,n.value=e,n.notify()}},re.notify=function(){var e=this;pr(function(){if(e.state!==_e)for(;e.deferred.length;){var n=e.deferred.shift(),i=n[0],r=n[1],o=n[2],s=n[3];try{e.state===Vn?et(i)?o(i.call(void 0,e.value)):o(e.value):e.state===Yn&&(et(r)?o(r.call(void 0,e.value)):s(e.value))}catch(a){s(a)}}})},re.then=function(e,n){var i=this;return new Q(function(r,o){i.deferred.push([e,n,r,o]),i.notify()})},re.catch=function(t){return this.then(void 0,t)};function Gn(t,e){var n=N({data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:lt,responseType:""},e);return y.resolve().then(function(){return n.beforeSend(n)}).then(function(){return mr(t,n)})}function mr(t,e){return new y(function(n,i){var r=e.xhr;for(var o in e)if(o in r)try{r[o]=e[o]}catch{}r.open(e.method.toUpperCase(),t);for(var s in e.headers)r.setRequestHeader(s,e.headers[s]);D(r,"load",function(){r.status===0||r.status>=200&&r.status<300||r.status===304?(e.responseType==="json"&&C(r.response)&&(r=N(br(r),{response:JSON.parse(r.response)})),n(r)):i(N(Error(r.statusText),{xhr:r,status:r.status}))}),D(r,"error",function(){return i(N(Error("Network Error"),{xhr:r}))}),D(r,"timeout",function(){return i(N(Error("Network Timeout"),{xhr:r}))}),r.send(e.data)})}function wr(t,e,n){return new y(function(i,r){var o=new Image;o.onerror=function(s){return r(s)},o.onload=function(){return i(o)},n&&(o.sizes=n),e&&(o.srcset=e),o.src=t})}function br(t){var e={};for(var n in t)e[n]=t[n];return e}function $r(t){if(document.readyState!=="loading"){t();return}O(document,"DOMContentLoaded",t)}function Xn(t){return t=b(t),t.innerHTML="",t}function Ae(t,e){return t=b(t),Y(e)?t.innerHTML:U(t.hasChildNodes()?Xn(t):t,e)}function yr(t,e){return t=b(t),t.hasChildNodes()?Me(e,function(n){return t.insertBefore(n,t.firstChild)}):U(t,e)}function U(t,e){return t=b(t),Me(e,function(n){return t.appendChild(n)})}function Pe(t,e){return t=b(t),Me(e,function(n){return t.parentNode.insertBefore(n,t)})}function Ne(t,e){return t=b(t),Me(e,function(n){return t.nextSibling?Pe(t.nextSibling,n):U(t.parentNode,n)})}function Me(t,e){return t=C(t)?At(t):t,t?"length"in t?w(t).map(e):e(t):null}function bt(t){w(t).forEach(function(e){return e.parentNode&&e.parentNode.removeChild(e)})}function He(t,e){for(e=P(Pe(t,e));e.firstChild;)e=e.firstChild;return U(e,t),e}function Jn(t,e){return w(w(t).map(function(n){return n.hasChildNodes?He(w(n.childNodes),e):U(n,e)}))}function Be(t){w(t).map(H).filter(function(e,n,i){return i.indexOf(e)===n}).forEach(function(e){Pe(e,e.childNodes),bt(e)})}var xr=/^\s*<(\w+|!)[^>]*>/,Sr=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function At(t){var e=Sr.exec(t);if(e)return document.createElement(e[1]);var n=document.createElement("div");return xr.test(t)?n.insertAdjacentHTML("beforeend",t.trim()):n.textContent=t,n.childNodes.length>1?w(n.childNodes):n.firstChild}function $t(t,e){if(!!Ft(t))for(e(t),t=t.firstElementChild;t;){var n=t.nextElementSibling;$t(t,e),t=n}}function b(t,e){return Kn(t)?P(At(t)):cn(t,e)}function W(t,e){return Kn(t)?w(At(t)):ne(t,e)}function Kn(t){return C(t)&&(t[0]==="<"||t.match(/^\s*</))}function S(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];Zn(t,e,"add")}function j(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];Zn(t,e,"remove")}function De(t,e){T(t,"class",function(n){return(n||"").replace(new RegExp("\\b"+e+"\\b","g"),"")})}function hn(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];e[0]&&j(t,e[0]),e[1]&&S(t,e[1])}function k(t,e){var n;n=ln(e),e=n[0];for(var i=w(t),r=0;r<i.length;r++)if(e&&i[r].classList.contains(e))return!0;return!1}function G(t,e,n){e=ln(e);for(var i=w(t),r=0;r<i.length;r++)for(var o=i[r].classList,s=0;s<e.length;s++)Y(n)?o.toggle(e[s]):Oe.Force?o.toggle(e[s],!!n):o[n?"add":"remove"](e[s])}function Zn(t,e,n){var i;e=e.reduce(function(a,c){return a.concat(ln(c))},[]);for(var r=w(t),o=function(a){Oe.Multiple?(i=r[a].classList)[n].apply(i,e):e.forEach(function(c){return r[a].classList[n](c)})},s=0;s<r.length;s++)o(s)}function ln(t){return String(t).split(/\s|,/).filter(Boolean)}var Oe={get Multiple(){return this.get("Multiple")},get Force(){return this.get("Force")},get:function(t){var e=document.createElement("_"),n=e.classList;return n.add("a","b"),n.toggle("c",!1),Oe={Multiple:n.contains("b"),Force:!n.contains("c")},Oe[t]}},kr={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function l(t,e,n,i){return i===void 0&&(i=""),w(t).map(function(r){if(C(e)){if(e=Fe(e),Y(n))return Qn(r,e);!n&&!Ke(n)?r.style.removeProperty(e):r.style.setProperty(e,Et(n)&&!kr[e]?n+"px":n,i)}else if(K(e)){var o=dn(r);return e.reduce(function(s,a){return s[a]=o[Fe(a)],s},{})}else st(e)&&(i=n,it(e,function(s,a){return l(r,a,s,i)}));return r})[0]}function dn(t,e){return Ct(t).getComputedStyle(t,e)}function Qn(t,e,n){return dn(t,n)[e]}var Tr=Z(function(t){var e=U(document.documentElement,At("<div>"));S(e,"uk-"+t);var n=Qn(e,"content",":before");return bt(e),n}),Er=/^\s*(["'])?(.*?)\1\s*$/;function vn(t){return(be?Tr(t):dn(document.documentElement).getPropertyValue("--uk-"+t)).replace(Er,"$2")}var Fe=Z(function(t){return Cr(t)}),Un=["webkit","moz","ms"];function Cr(t){t=kt(t);var e=document.documentElement,n=e.style;if(t in n)return t;for(var i=Un.length,r;i--;)if(r="-"+Un[i]+"-"+t,r in n)return r}function ti(t,e,n,i){return n===void 0&&(n=400),i===void 0&&(i="linear"),y.all(w(t).map(function(r){return new y(function(o,s){for(var a in e){var c=l(r,a);c===""&&l(r,a,c)}var f=setTimeout(function(){return _(r,"transitionend")},n);O(r,"transitionend transitioncanceled",function(v){var u=v.type;clearTimeout(f),j(r,"uk-transition"),l(r,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),u==="transitioncanceled"?s():o(r)},{self:!0}),S(r,"uk-transition"),l(r,N({transitionProperty:Object.keys(e).map(Fe).join(","),transitionDuration:n+"ms",transitionTimingFunction:i},e))})}))}var yt={start:ti,stop:function(t){return _(t,"transitionend"),y.resolve()},cancel:function(t){_(t,"transitioncanceled")},inProgress:function(t){return k(t,"uk-transition")}},oe="uk-animation-";function gn(t,e,n,i,r){return n===void 0&&(n=200),y.all(w(t).map(function(o){return new y(function(s,a){_(o,"animationcanceled");var c=setTimeout(function(){return _(o,"animationend")},n);O(o,"animationend animationcanceled",function(f){var v=f.type;clearTimeout(c),v==="animationcanceled"?a():s(o),l(o,"animationDuration",""),De(o,oe+"\\S*")},{self:!0}),l(o,"animationDuration",n+"ms"),S(o,e,oe+(r?"leave":"enter")),gt(e,oe)&&(i&&S(o,"uk-transform-origin-"+i),r&&S(o,oe+"reverse"))})}))}var _r=new RegExp(oe+"(enter|leave)"),at={in:gn,out:function(t,e,n,i){return gn(t,e,n,i,!0)},inProgress:function(t){return _r.test(T(t,"class"))},cancel:function(t){_(t,"animationcanceled")}},xt={width:["left","right"],height:["top","bottom"]};function ut(t){var e=Ft(t)?P(t).getBoundingClientRect():{height:F(t),width:ae(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function A(t,e){var n=ut(t);if(t){var i=Ct(t),r=i.pageYOffset,o=i.pageXOffset,s={height:r,width:o};for(var a in xt)for(var c in xt[a])n[xt[a][c]]+=s[a]}if(!e)return n;var f=l(t,"position");it(l(t,["left","top"]),function(v,u){return l(t,u,e[u]-n[u]+$(f==="absolute"&&v==="auto"?ei(t)[u]:v))})}function ei(t){for(var e=A(t),n=e.top,i=e.left,r=P(t),o=r.ownerDocument,s=o.body,a=o.documentElement,c=r.offsetParent,f=c||a;f&&(f===s||f===a)&&l(f,"position")==="static";)f=f.parentNode;if(Ft(f)){var v=A(f);n-=v.top+$(l(f,"borderTopWidth")),i-=v.left+$(l(f,"borderLeftWidth"))}return{top:n-$(l(t,"marginTop")),left:i-$(l(t,"marginLeft"))}}function se(t){var e=[0,0];t=P(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,l(t,"position")==="fixed"){var n=Ct(t);return e[0]+=n.pageYOffset,e[1]+=n.pageXOffset,e}while(t=t.offsetParent);return e}var F=ni("height"),ae=ni("width");function ni(t){var e=ge(t);return function(n,i){if(Y(i)){if(Xt(n))return n["inner"+e];if(Ot(n)){var r=n.documentElement;return Math.max(r["offset"+e],r["scroll"+e])}return n=P(n),i=l(n,t),i=i==="auto"?n["offset"+e]:$(i)||0,i-jt(n,t)}else return l(n,t,!i&&i!==0?"":+i+jt(n,t)+"px")}}function jt(t,e,n){return n===void 0&&(n="border-box"),l(t,"boxSizing")===n?xt[e].map(ge).reduce(function(i,r){return i+$(l(t,"padding"+r))+$(l(t,"border"+r+"Width"))},0):0}function pn(t){for(var e in xt)for(var n in xt[e])if(xt[e][n]===t)return xt[e][1-n];return t}function Pt(t,e,n,i){return e===void 0&&(e="width"),n===void 0&&(n=window),i===void 0&&(i=!1),C(t)?Pr(t).reduce(function(r,o){var s=Mr(o);return s&&(o=Hr(s==="vh"?F(Ct(n)):s==="vw"?ae(Ct(n)):i?n["offset"+ge(e)]:ut(n)[e],o)),r+$(o)},0):$(t)}var Ar=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,Pr=Z(function(t){return t.toString().replace(/\s/g,"").match(Ar)||[]}),Nr=/(?:v[hw]|%)$/,Mr=Z(function(t){return(t.match(Nr)||[])[0]});function Hr(t,e){return t*$(e)/100}var R={reads:[],writes:[],read:function(t){return this.reads.push(t),wn(),t},write:function(t){return this.writes.push(t),wn(),t},clear:function(t){ri(this.reads,t),ri(this.writes,t)},flush:mn};function mn(t){ii(R.reads),ii(R.writes.splice(0)),R.scheduled=!1,(R.reads.length||R.writes.length)&&wn(t+1)}var Br=4;function wn(t){R.scheduled||(R.scheduled=!0,t&&t<Br?y.resolve().then(function(){return mn(t)}):requestAnimationFrame(function(){return mn(1)}))}function ii(t){for(var e;e=t.shift();)try{e()}catch(n){console.error(n)}}function ri(t,e){var n=t.indexOf(e);return~n&&t.splice(n,1)}function bn(){}bn.prototype={positions:[],init:function(){var t=this;this.positions=[];var e;this.unbind=D(document,"mousemove",function(n){return e=Ce(n)}),this.interval=setInterval(function(){!e||(t.positions.push(e),t.positions.length>5&&t.positions.shift())},50)},cancel:function(){this.unbind&&this.unbind(),this.interval&&clearInterval(this.interval)},movesTo:function(t){if(this.positions.length<2)return!1;var e=t.getBoundingClientRect(),n=e.left,i=e.right,r=e.top,o=e.bottom,s=this.positions,a=s[0],c=me(this.positions),f=[a,c];if(nn(c,e))return!1;var v=[[{x:n,y:r},{x:i,y:o}],[{x:n,y:o},{x:i,y:r}]];return v.some(function(u){var h=Dr(f,u);return h&&nn(h,e)})}};function Dr(t,e){var n=t[0],i=n.x,r=n.y,o=t[1],s=o.x,a=o.y,c=e[0],f=c.x,v=c.y,u=e[1],h=u.x,d=u.y,g=(d-v)*(s-i)-(h-f)*(a-r);if(g===0)return!1;var p=((h-f)*(r-v)-(d-v)*(i-f))/g;return p<0?!1:{x:i+p*(s-i),y:r+p*(a-r)}}var q={};q.events=q.created=q.beforeConnect=q.connected=q.beforeDisconnect=q.disconnected=q.destroy=$n,q.args=function(t,e){return e!==!1&&$n(e||t)},q.update=function(t,e){return en($n(t,et(e)?{read:e}:e),"order")},q.props=function(t,e){return K(e)&&(e=e.reduce(function(n,i){return n[i]=String,n},{})),q.methods(t,e)},q.computed=q.methods=function(t,e){return e?t?N({},t,e):e:t},q.data=function(t,e,n){return n?oi(t,e,n):e?t?function(i){return oi(t,e,i)}:e:t};function oi(t,e,n){return q.computed(et(t)?t.call(n,n):t,et(e)?e.call(n,n):e)}function $n(t,e){return t=t&&!K(t)?[t]:t,e?t?t.concat(e):K(e)?e:[e]:t}function Or(t,e){return Y(e)?t:e}function qt(t,e,n){var i={};if(et(e)&&(e=e.options),e.extends&&(t=qt(t,e.extends,n)),e.mixins)for(var r=0,o=e.mixins.length;r<o;r++)t=qt(t,e.mixins[r],n);for(var s in t)c(s);for(var a in e)vt(t,a)||c(a);function c(f){i[f]=(q[f]||Or)(t[f],e[f],n)}return i}function yn(t,e){var n;e===void 0&&(e=[]);try{return t?t.match(/^[{[]/)?JSON.parse(t):e.length&&!m(t,":")?(n={},n[e[0]]=t,n):t.split(";").reduce(function(i,r){var o=r.split(/:(.*)/),s=o[0],a=o[1];return s&&!Y(a)&&(i[s.trim()]=a.trim()),i},{}):{}}catch{return{}}}function si(t){if(Le(t)&&xn(t,{func:"playVideo",method:"play"}),ze(t))try{t.play().catch(lt)}catch{}}function ai(t){Le(t)&&xn(t,{func:"pauseVideo",method:"pause"}),ze(t)&&t.pause()}function ui(t){Le(t)&&xn(t,{func:"mute",method:"setVolume",value:0}),ze(t)&&(t.muted=!0)}function ci(t){return ze(t)||Le(t)}function ze(t){return t&&t.tagName==="VIDEO"}function Le(t){return t&&t.tagName==="IFRAME"&&(fi(t)||hi(t))}function fi(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function hi(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}function xn(t,e){zr(t).then(function(){return li(t,e)})}function li(t,e){try{t.contentWindow.postMessage(JSON.stringify(N({event:"command"},e)),"*")}catch{}}var Sn="_ukPlayer",Fr=0;function zr(t){if(t[Sn])return t[Sn];var e=fi(t),n=hi(t),i=++Fr,r;return t[Sn]=new y(function(o){e&&O(t,"load",function(){var s=function(){return li(t,{event:"listening",id:i})};r=setInterval(s,100),s()}),O(window,"message",o,!1,function(s){var a=s.data;try{return a=JSON.parse(a),a&&(e&&a.id===i&&a.event==="onReady"||n&&Number(a.player_id)===i)}catch{}}),t.src=""+t.src+(m(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+i)}).then(function(){return clearInterval(r)})}function ue(t,e,n){return e===void 0&&(e=0),n===void 0&&(n=0),M(t)?Dn.apply(void 0,Vt(t).map(function(i){var r=A(fe(i)),o=r.top,s=r.left,a=r.bottom,c=r.right;return{top:o-e,left:s-n,bottom:a+e,right:c+n}}).concat(A(t))):!1}function ce(t,e){if(Xt(t)||Ot(t)?t=Yt(t):t=P(t),Y(e))return t.scrollTop;t.scrollTop=e}function kn(t,e){e===void 0&&(e={});var n=e.offset;n===void 0&&(n=0);var i=M(t)?Vt(t):[];return i.reduce(function(a,c,f){var v=c.scrollTop,u=c.scrollHeight,h=c.offsetHeight,d=u-he(c),g=A(i[f-1]||t),p=g.height,x=g.top,E=Math.ceil(x-A(fe(c)).top-n+v);return n>0&&h<p+n?E+=n:n=0,E>d?(n-=E-d,E=d):E<0&&(n-=E,E=0),function(){return r(c,E-v).then(a)}},function(){return y.resolve()})();function r(a,c){return new y(function(f){var v=a.scrollTop,u=o(Math.abs(c)),h=Date.now();(function d(){var g=s(_t((Date.now()-h)/u));ce(a,v+c*g),g===1?f():requestAnimationFrame(d)})()})}function o(a){return 40*Math.pow(a,.375)}function s(a){return .5*(1-Math.cos(Math.PI*a))}}function di(t,e,n){if(e===void 0&&(e=0),n===void 0&&(n=0),!M(t))return 0;var i=Vt(t,/auto|scroll/,!0),r=i[0],o=r.scrollHeight,s=r.scrollTop,a=he(r),c=o-a,f=se(t)[0]-se(r)[0],v=Math.max(0,f-a+e),u=Math.min(c,f+t.offsetHeight-n);return _t((s-v)/(u-v))}function Vt(t,e,n){e===void 0&&(e=/auto|scroll|hidden/),n===void 0&&(n=!1);var i=Yt(t),r=te(t).reverse();r=r.slice(r.indexOf(i)+1);var o=pe(r,function(s){return l(s,"position")==="fixed"});return~o&&(r=r.slice(o)),[i].concat(r.filter(function(s){return e.test(l(s,"overflow"))&&(!n||s.scrollHeight>he(s))})).reverse()}function fe(t){return t===Yt(t)?window:t}function he(t){return(t===Yt(t)?document.documentElement:t).clientHeight}function Yt(t){var e=Ct(t),n=e.document;return n.scrollingElement||n.documentElement}var le={width:["x","left","right"],height:["y","top","bottom"]};function vi(t,e,n,i,r,o,s,a){n=pi(n),i=pi(i);var c={element:n,target:i};if(!t||!e)return c;var f=A(t),v=A(e),u=v;if(gi(u,n,f,-1),gi(u,i,v,1),r=mi(r,f.width,f.height),o=mi(o,v.width,v.height),r.x+=o.x,r.y+=o.y,u.left+=r.x,u.top+=r.y,s){var h=Vt(t).map(fe);a&&!m(h,a)&&h.unshift(a),h=h.map(function(d){return A(d)}),it(le,function(d,g){var p=d[0],x=d[1],E=d[2];!(s===!0||m(s,p))||h.some(function(V){var z=n[p]===x?-f[g]:n[p]===E?f[g]:0,ht=i[p]===x?v[g]:i[p]===E?-v[g]:0;if(u[x]<V[x]||u[x]+f[g]>V[E]){var tt=f[g]/2,ot=i[p]==="center"?-v[g]/2:0;return n[p]==="center"&&(de(tt,ot)||de(-tt,-ot))||de(z,ht)}function de(ve,Ve){var Ht=$((u[x]+ve+Ve-r[p]*2).toFixed(4));if(Ht>=V[x]&&Ht+f[g]<=V[E])return u[x]=Ht,["element","target"].forEach(function(Pn){c[Pn][p]=ve?c[Pn][p]===le[g][1]?le[g][2]:le[g][1]:c[Pn][p]}),!0}})})}return A(t,u),c}function gi(t,e,n,i){it(le,function(r,o){var s=r[0],a=r[1],c=r[2];e[s]===c?t[a]+=n[o]*i:e[s]==="center"&&(t[a]+=n[o]*i/2)})}function pi(t){var e=/left|center|right/,n=/top|center|bottom/;return t=(t||"").split(" "),t.length===1&&(t=e.test(t[0])?t.concat("center"):n.test(t[0])?["center"].concat(t):["center","center"]),{x:e.test(t[0])?t[0]:"center",y:n.test(t[1])?t[1]:"center"}}function mi(t,e,n){var i=(t||"").split(" "),r=i[0],o=i[1];return{x:r?$(r)*(Tt(r,"%")?e/100:1):0,y:o?$(o)*(Tt(o,"%")?n/100:1):0}}var Lr=Object.freeze({__proto__:null,ajax:Gn,getImage:wr,transition:ti,Transition:yt,animate:gn,Animation:at,attr:T,hasAttr:Zt,removeAttr:on,data:mt,addClass:S,removeClass:j,removeClasses:De,replaceClass:hn,hasClass:k,toggleClass:G,dimensions:ut,offset:A,position:ei,offsetPosition:se,height:F,width:ae,boxModelAdjust:jt,flipPosition:pn,toPx:Pt,ready:$r,empty:Xn,html:Ae,prepend:yr,append:U,before:Pe,after:Ne,remove:bt,wrapAll:He,wrapInner:Jn,unwrap:Be,fragment:At,apply:$t,$:b,$$:W,inBrowser:nt,isIE:be,isRtl:Qt,hasTouch:er,pointerDown:Rt,pointerMove:nr,pointerUp:It,pointerEnter:$e,pointerLeave:ye,pointerCancel:xe,on:D,off:Rn,once:O,trigger:_,createEvent:fn,toEventTargets:Ee,isTouch:Wt,getEventPos:Ce,fastdom:R,isVoidElement:sn,isVisible:M,selInput:Se,isInput:On,selFocusable:ke,isFocusable:an,parent:H,filter:Ut,matches:B,closest:rt,within:I,parents:te,children:wt,index:un,hasOwn:vt,hyphenate:kt,camelize:Dt,ucfirst:ge,startsWith:gt,endsWith:Tt,includes:m,findIndex:pe,isArray:K,isFunction:et,isObject:st,isPlainObject:pt,isWindow:Xt,isDocument:Ot,isNode:Xe,isElement:Ft,isBoolean:Jt,isString:C,isNumber:Ke,isNumeric:Et,isEmpty:Ze,isUndefined:Y,toBoolean:Qe,toNumber:Kt,toFloat:$,toArray:Hn,toNode:P,toNodes:w,toWindow:Ct,toMs:Ue,isEqual:Bn,swap:tn,assign:N,last:me,each:it,sortBy:en,uniqueBy:tr,clamp:_t,noop:lt,intersectRect:Dn,pointInRect:nn,Dimensions:rn,getIndex:we,memoize:Z,MouseTracker:bn,mergeOptions:qt,parseOptions:yn,play:si,pause:ai,mute:ui,isVideo:ci,positionAt:vi,Promise:y,Deferred:qn,query:dt,queryAll:ee,find:cn,findAll:ne,escape:ie,css:l,getCssVar:vn,propName:Fe,isInView:ue,scrollTop:ce,scrollIntoView:kn,scrolledOver:di,scrollParents:Vt,getViewport:fe,getViewportClientHeight:he,getScrollingElement:Yt});function Rr(t){var e=t.data;t.use=function(r){if(!r.installed)return r.call(null,this),r.installed=!0,this},t.mixin=function(r,o){o=(C(o)?t.component(o):o)||this,o.options=qt(o.options,r)},t.extend=function(r){r=r||{};var o=this,s=function(c){this._init(c)};return s.prototype=Object.create(o.prototype),s.prototype.constructor=s,s.options=qt(o.options,r),s.super=o,s.extend=o.extend,s},t.update=function(r,o){r=r?P(r):document.body,te(r).reverse().forEach(function(s){return i(s[e],o)}),$t(r,function(s){return i(s[e],o)})};var n;Object.defineProperty(t,"container",{get:function(){return n||document.body},set:function(r){n=b(r)}});function i(r,o){if(!!r)for(var s in r)r[s]._connected&&r[s]._callUpdate(o)}}function Ir(t){t.prototype._callHook=function(i){var r=this,o=this.$options[i];o&&o.forEach(function(s){return s.call(r)})},t.prototype._callConnected=function(){this._connected||(this._data={},this._computeds={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(i){var r=this;i===void 0&&(i="update"),!!this._connected&&((i==="update"||i==="resize")&&this._callWatches(),!!this.$options.update&&(this._updates||(this._updates=new Set,R.read(function(){r._connected&&e.call(r,r._updates),delete r._updates})),this._updates.add(i.type||i)))},t.prototype._callWatches=function(){var i=this;if(!this._watch){var r=!vt(this,"_watch");this._watch=R.read(function(){i._connected&&n.call(i,r),i._watch=null})}};function e(i){for(var r=this,o=this.$options.update,s=function(c){var f=o[c],v=f.read,u=f.write,h=f.events;if(!(!i.has("update")&&(!h||!h.some(function(g){return i.has(g)})))){var d=void 0;v&&(d=v.call(r,r._data,i),d&&pt(d)&&N(r._data,d)),u&&d!==!1&&R.write(function(){return u.call(r,r._data,i)})}},a=0;a<o.length;a++)s(a)}function n(i){var r=this,o=r.$options.computed,s=N({},this._computeds);this._computeds={};for(var a in o){var c=o[a],f=c.watch,v=c.immediate;f&&(i&&v||vt(s,a)&&!Bn(s[a],this[a]))&&f.call(this,this[a],s[a])}}}function Wr(t){var e=0;t.prototype._init=function(u){u=u||{},u.data=c(u,this.constructor.options),this.$options=qt(this.constructor.options,u,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),u.el&&this.$mount(u.el)},t.prototype._initData=function(){var u=this.$options,h=u.data;h===void 0&&(h={});for(var d in h)this.$props[d]=this[d]=h[d]},t.prototype._initMethods=function(){var u=this.$options,h=u.methods;if(h)for(var d in h)this[d]=h[d].bind(this)},t.prototype._initComputeds=function(){var u=this.$options,h=u.computed;if(this._computeds={},h)for(var d in h)i(this,d,h[d])},t.prototype._initProps=function(u){var h;u=u||n(this.$options,this.$name);for(h in u)Y(u[h])||(this.$props[h]=u[h]);var d=[this.$options.computed,this.$options.methods];for(h in this.$props)h in u&&o(d,h)&&(this[h]=this.$props[h])},t.prototype._initEvents=function(){var u=this;this._events=[];var h=this.$options,d=h.events;d&&d.forEach(function(g){if(vt(g,"handler"))r(u,g);else for(var p in g)r(u,g[p],p)})},t.prototype._unbindEvents=function(){this._events.forEach(function(u){return u()}),delete this._events},t.prototype._initObservers=function(){this._observers=[f(this),v(this)]},t.prototype._disconnectObservers=function(){this._observers.forEach(function(u){return u&&u.disconnect()})};function n(u,h){var d={},g=u.args;g===void 0&&(g=[]);var p=u.props;p===void 0&&(p={});var x=u.el;if(!p)return d;for(var E in p){var V=kt(E),z=mt(x,V);Y(z)||(z=p[E]===Boolean&&z===""?!0:s(p[E],z),!(V==="target"&&(!z||gt(z,"_")))&&(d[E]=z))}var ht=yn(mt(x,h),g);for(var tt in ht){var ot=Dt(tt);p[ot]!==void 0&&(d[ot]=s(p[ot],ht[tt]))}return d}function i(u,h,d){Object.defineProperty(u,h,{enumerable:!0,get:function(){var g=u._computeds,p=u.$props,x=u.$el;return vt(g,h)||(g[h]=(d.get||d).call(u,p,x)),g[h]},set:function(g){var p=u._computeds;p[h]=d.set?d.set.call(u,g):g,Y(p[h])&&delete p[h]}})}function r(u,h,d){pt(h)||(h={name:d,handler:h});var g=h.name,p=h.el,x=h.handler,E=h.capture,V=h.passive,z=h.delegate,ht=h.filter,tt=h.self;if(p=et(p)?p.call(u):p||u.$el,K(p)){p.forEach(function(ot){return r(u,N({},h,{el:ot}),d)});return}!p||ht&&!ht.call(u)||u._events.push(D(p,g,z?C(z)?z:z.call(u):null,C(x)?u[x]:x.bind(u),{passive:V,capture:E,self:tt}))}function o(u,h){return u.every(function(d){return!d||!vt(d,h)})}function s(u,h){return u===Boolean?Qe(h):u===Number?Kt(h):u==="list"?a(h):u?u(h):h}function a(u){return K(u)?u:C(u)?u.split(/,(?![^(]*\))/).map(function(h){return Et(h)?Kt(h):Qe(h.trim())}):[u]}function c(u,h){var d=u.data,g=h.args,p=h.props;if(p===void 0&&(p={}),d=K(d)?Ze(g)?void 0:d.slice(0,g.length).reduce(function(E,V,z){return pt(V)?N(E,V):E[g[z]]=V,E},{}):d,d)for(var x in d)Y(d[x])?delete d[x]:d[x]=p[x]?s(p[x],d[x]):d[x];return d}function f(u){var h=u.$options,d=h.el,g=new MutationObserver(function(){return u.$emit()});return g.observe(d,{childList:!0,subtree:!0}),g}function v(u){var h=u.$name,d=u.$options,g=u.$props,p=d.attrs,x=d.props,E=d.el;if(!(!x||p===!1)){var V=K(p)?p:Object.keys(x),z=V.map(function(tt){return kt(tt)}).concat(h),ht=new MutationObserver(function(tt){var ot=n(d,h);tt.some(function(de){var ve=de.attributeName,Ve=ve.replace("data-","");return(Ve===h?V:[Dt(Ve),Dt(ve)]).some(function(Ht){return!Y(ot[Ht])&&ot[Ht]!==g[Ht]})})&&u.$reset()});return ht.observe(E,{attributes:!0,attributeFilter:z.concat(z.map(function(tt){return"data-"+tt}))}),ht}}}function jr(t){var e=t.data;t.prototype.$create=function(i,r,o){return t[i](r,o)},t.prototype.$mount=function(i){var r=this.$options,o=r.name;i[e]||(i[e]={}),!i[e][o]&&(i[e][o]=this,this.$el=this.$options.el=this.$options.el||i,I(i,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(i){i===void 0&&(i=!1);var r=this.$options,o=r.el,s=r.name;o&&this._callDisconnected(),this._callHook("destroy"),!(!o||!o[e])&&(delete o[e][s],Ze(o[e])||delete o[e],i&&bt(this.$el))},t.prototype.$emit=function(i){this._callUpdate(i)},t.prototype.$update=function(i,r){i===void 0&&(i=this.$el),t.update(i,r)},t.prototype.$getComponent=t.getComponent;var n=Z(function(i){return t.prefix+kt(i)});Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get:function(){return n(this.$options.name)}}})}function qr(t){var e=t.data,n={};t.component=function(i,r){var o=kt(i);if(i=Dt(o),!r)return pt(n[i])&&(n[i]=t.extend(n[i])),n[i];t[i]=function(a,c){for(var f=arguments.length,v=Array(f);f--;)v[f]=arguments[f];var u=t.component(i);return u.options.functional?new u({data:pt(a)?a:[].concat(v)}):a?W(a).map(h)[0]:h(a);function h(d){var g=t.getComponent(d,i);if(g)if(c)g.$destroy();else return g;return new u({el:d,data:c})}};var s=pt(r)?N({},r):r.options;return s.name=i,s.install&&s.install(t,s,i),t._initialized&&!s.functional&&R.read(function(){return t[i]("[uk-"+o+"],[data-uk-"+o+"]")}),n[i]=pt(r)?s:r},t.getComponents=function(i){return i&&i[e]||{}},t.getComponent=function(i,r){return t.getComponents(i)[r]},t.connect=function(i){if(i[e])for(var r in i[e])i[e][r]._callConnected();for(var o=0;o<i.attributes.length;o++){var s=wi(i.attributes[o].name);s&&s in n&&t[s](i)}},t.disconnect=function(i){for(var r in i[e])i[e][r]._callDisconnected()}}var wi=Z(function(t){return gt(t,"uk-")||gt(t,"data-uk-")?Dt(t.replace("data-uk-","").replace("uk-","")):!1}),X=function(t){this._init(t)};X.util=Lr,X.data="__uikit__",X.prefix="uk-",X.options={},X.version="3.11.2-dev.31cd2ba38",Rr(X),Ir(X),Wr(X),qr(X),jr(X);function Vr(t){if(!!nt){var e,n=function(){e||(e=!0,R.read(function(){return e=!1}),t.update(null,"resize"))};D(window,"load resize",n),D(document,"loadedmetadata load",n,!0),"ResizeObserver"in window&&new ResizeObserver(n).observe(document.documentElement);var i;D(window,"scroll",function(o){i||(i=!0,R.read(function(){return i=!1}),t.update(null,o.type))},{passive:!0,capture:!0});var r=0;D(document,"animationstart",function(o){var s=o.target;(l(s,"animationName")||"").match(/^uk-.*(left|right)/)&&(r++,l(document.documentElement,"overflowX","hidden"),setTimeout(function(){--r||l(document.documentElement,"overflowX","")},Ue(l(s,"animationDuration"))+100))},!0),D(document,Rt,function(o){if(!!Wt(o)){var s=Ce(o),a="tagName"in o.target?o.target:H(o.target);O(document,It+" "+xe+" scroll",function(c){var f=Ce(c),v=f.x,u=f.y;(c.type!=="scroll"&&a&&v&&Math.abs(s.x-v)>100||u&&Math.abs(s.y-u)>100)&&setTimeout(function(){_(a,"swipe"),_(a,"swipe"+Yr(s.x,s.y,v,u))})})}},{passive:!0})}}function Yr(t,e,n,i){return Math.abs(t-n)>=Math.abs(e-i)?t-n>0?"Left":"Right":e-i>0?"Up":"Down"}function Gr(t){var e=t.connect,n=t.disconnect;if(!nt||!window.MutationObserver)return;R.read(function(){document.body&&$t(document.body,e),new MutationObserver(function(o){return o.forEach(i)}).observe(document,{childList:!0,subtree:!0}),new MutationObserver(function(o){return o.forEach(r)}).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function i(o){for(var s=o.addedNodes,a=o.removedNodes,c=0;c<s.length;c++)$t(s[c],e);for(var f=0;f<a.length;f++)$t(a[f],n)}function r(o){var s=o.target,a=o.attributeName,c=wi(a);if(!(!c||!(c in t))){if(Zt(s,a)){t[c](s);return}var f=t.getComponent(s,c);f&&f.$destroy()}}}var ct={connected:function(){!k(this.$el,this.$name)&&S(this.$el,this.$name)}},Nt={props:{cls:Boolean,animation:"list",duration:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,origin:!1,transition:"linear",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",height:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:""},hideProps:{overflow:"hidden",height:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0}},computed:{hasAnimation:function(t){var e=t.animation;return!!e[0]},hasTransition:function(t){var e=t.animation;return this.hasAnimation&&e[0]===!0}},methods:{toggleElement:function(t,e,n){var i=this;return new y(function(r){return y.all(w(t).map(function(o){var s=Jt(e)?e:!i.isToggled(o);if(!_(o,"before"+(s?"show":"hide"),[i]))return y.reject();var a=(et(n)?n:n===!1||!i.hasAnimation?i._toggle:i.hasTransition?bi(i):Xr(i))(o,s),c=s?i.clsEnter:i.clsLeave;S(o,c),_(o,s?"show":"hide",[i]);var f=function(){j(o,c),_(o,s?"shown":"hidden",[i]),i.$update(o)};return a?a.then(f,function(){return j(o,c),y.reject()}):f()})).then(r,lt)})},isToggled:function(t){var e;return t===void 0&&(t=this.$el),e=w(t),t=e[0],k(t,this.clsEnter)?!0:k(t,this.clsLeave)?!1:this.cls?k(t,this.cls.split(" ")[0]):M(t)},_toggle:function(t,e){if(!!t){e=Boolean(e);var n;this.cls?(n=m(this.cls," ")||e!==k(t,this.cls),n&&G(t,this.cls,m(this.cls," ")?void 0:e)):(n=e===t.hidden,n&&(t.hidden=!e)),W("[autofocus]",t).some(function(i){return M(i)?i.focus()||!0:i.blur()}),n&&(_(t,"toggled",[e,this]),this.$update(t))}}}};function bi(t){var e=t.isToggled,n=t.duration,i=t.initProps,r=t.hideProps,o=t.transition,s=t._toggle;return function(a,c){var f=yt.inProgress(a),v=a.hasChildNodes?$(l(a.firstElementChild,"marginTop"))+$(l(a.lastElementChild,"marginBottom")):0,u=M(a)?F(a)+(f?0:v):0;yt.cancel(a),e(a)||s(a,!0),F(a,""),R.flush();var h=F(a)+(f?0:v);return F(a,u),(c?yt.start(a,N({},i,{overflow:"hidden",height:h}),Math.round(n*(1-u/h)),o):yt.start(a,r,Math.round(n*(u/h)),o).then(function(){return s(a,!1)})).then(function(){return l(a,i)})}}function Xr(t){return function(e,n){at.cancel(e);var i=t.animation,r=t.duration,o=t._toggle;return n?(o(e,!0),at.in(e,i[0],r,t.origin)):at.out(e,i[1]||i[0],r,t.origin).then(function(){return o(e,!1)})}}var $i={mixins:[ct,Nt],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,transition:String,offset:Number},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",transition:"ease",offset:0},computed:{items:{get:function(t,e){var n=t.targets;return W(n,e)},watch:function(t,e){var n=this;if(t.forEach(function(r){return Re(b(n.content,r),!k(r,n.clsOpen))}),!(e||k(t,this.clsOpen))){var i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)}},immediate:!0},toggles:function(t){var e=t.toggle;return this.items.map(function(n){return b(e,n)})}},events:[{name:"click",delegate:function(){return this.targets+" "+this.$props.toggle},handler:function(t){t.preventDefault(),this.toggle(un(this.toggles,t.current))}}],methods:{toggle:function(t,e){var n=this,i=[this.items[we(t,this.items)]],r=Ut(this.items,"."+this.clsOpen);!this.multiple&&!m(r,i[0])&&(i=i.concat(r)),!(!this.collapsible&&r.length<2&&!Ut(i,":not(."+this.clsOpen+")").length)&&i.forEach(function(o){return n.toggleElement(o,!k(o,n.clsOpen),function(s,a){G(s,n.clsOpen,a),T(b(n.$props.toggle,s),"aria-expanded",a);var c=b((s._wrapper?"> * ":"")+n.content,s);if(e===!1||!n.hasTransition){Re(c,!a);return}return s._wrapper||(s._wrapper=He(c,"<div"+(a?" hidden":"")+">")),Re(c,!1),bi(n)(s._wrapper,a).then(function(){if(Re(c,!a),delete s._wrapper,Be(c),a){var f=b(n.$props.toggle,s);ue(f)||kn(f,{offset:n.offset})}})})})}}};function Re(t,e){t&&(t.hidden=e)}var Jr={mixins:[ct,Nt],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:N({opacity:0},Nt.data.hideProps)},events:[{name:"click",delegate:function(){return this.selClose},handler:function(t){t.preventDefault(),this.close()}}],methods:{close:function(){var t=this;this.toggleElement(this.$el).then(function(){return t.$destroy(!0)})}}},yi={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView:function(t){var e=t.autoplay;return e==="inview"}},connected:function(){this.inView&&!Zt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&ui(this.$el)},update:{read:function(){return ci(this.$el)?{visible:M(this.$el)&&l(this.$el,"visibility")!=="hidden",inView:this.inView&&ue(this.$el)}:!1},write:function(t){var e=t.visible,n=t.inView;!e||this.inView&&!n?ai(this.$el):(this.autoplay===!0||this.inView&&n)&&si(this.$el)},events:["resize","scroll"]}},Kr={mixins:[yi],props:{width:Number,height:Number},data:{automute:!0},update:{read:function(){var t=this.$el,e=Zr(t)||H(t),n=e.offsetHeight,i=e.offsetWidth,r=rn.cover({width:this.width||t.naturalWidth||t.videoWidth||t.clientWidth,height:this.height||t.naturalHeight||t.videoHeight||t.clientHeight},{width:i+(i%2?1:0),height:n+(n%2?1:0)});return!r.width||!r.height?!1:r},write:function(t){var e=t.height,n=t.width;l(this.$el,{height:e,width:n})},events:["resize"]}};function Zr(t){for(;t=H(t);)if(l(t,"position")!=="static")return t}var Tn={props:{container:Boolean},data:{container:!0},computed:{container:function(t){var e=t.container;return e===!0&&this.$container||e&&b(e)}}},Qr={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(Qt?"right":"left"),flip:!0,offset:!1,clsPos:""},computed:{pos:function(t){var e=t.pos;return e.split("-").concat("center").slice(0,2)},dir:function(){return this.pos[0]},align:function(){return this.pos[1]}},methods:{positionAt:function(t,e,n){De(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");var i=this,r=i.offset,o=this.getAxis();if(!Et(r)){var s=b(r);r=s?A(s)[o==="x"?"left":"top"]-A(e)[o==="x"?"right":"bottom"]:0}var a=vi(t,e,o==="x"?pn(this.dir)+" "+this.align:this.align+" "+pn(this.dir),o==="x"?this.dir+" "+this.align:this.align+" "+this.dir,o==="x"?""+(this.dir==="left"?-r:r):" "+(this.dir==="top"?-r:r),null,this.flip,n).target,c=a.x,f=a.y;this.dir=o==="x"?c:f,this.align=o==="x"?f:c,G(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis:function(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}},L,xi={mixins:[Tn,Qr,Nt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,clsDrop:String},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary:function(t,e){var n=t.boundary;return n===!0?window:dt(n,e)},clsDrop:function(t){var e=t.clsDrop;return e||"uk-"+this.$options.name},clsPos:function(){return this.clsDrop}},created:function(){this.tracker=new bn},connected:function(){S(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",dt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,T(this.target,"aria-haspopup",!0))},disconnected:function(){this.isActive()&&(L=null)},events:[{name:"click",delegate:function(){return"."+this.clsDrop+"-close"},handler:function(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate:function(){return'a[href^="#"]'},handler:function(t){var e=t.defaultPrevented,n=t.current.hash;!e&&n&&!I(n,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler:function(){this.hide(!1)}},{name:"toggle",self:!0,handler:function(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e.$el,!1)}},{name:"toggleshow",self:!0,handler:function(t,e){t.preventDefault(),this.show(e.$el)}},{name:"togglehide",self:!0,handler:function(t){t.preventDefault(),B(this.$el,":focus,:hover")||this.hide()}},{name:$e+" focusin",filter:function(){return m(this.mode,"hover")},handler:function(t){Wt(t)||this.clearTimers()}},{name:ye+" focusout",filter:function(){return m(this.mode,"hover")},handler:function(t){!Wt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler:function(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler:function(){var t=this;L=this,this.tracker.init(),O(this.$el,"hide",D(document,Rt,function(e){var n=e.target;return!I(n,t.$el)&&O(document,It+" "+xe+" scroll",function(i){var r=i.defaultPrevented,o=i.type,s=i.target;!r&&o===It&&n===s&&!(t.target&&I(n,t.target))&&t.hide(!1)},!0)}),{self:!0}),O(this.$el,"hide",D(document,"keydown",function(e){e.keyCode===27&&t.hide(!1)}),{self:!0})}},{name:"beforehide",self:!0,handler:function(){this.clearTimers()}},{name:"hide",handler:function(t){var e=t.target;if(this.$el!==e){L=L===null&&I(e,this.$el)&&this.isToggled()?this:L;return}L=this.isActive()?null:L,this.tracker.cancel()}}],update:{write:function(){this.isToggled()&&!k(this.$el,this.clsEnter)&&this.position()},events:["resize"]},methods:{show:function(t,e){var n=this;if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1),this.target=t,this.clearTimers(),!this.isActive()){if(L){if(e&&L.isDelaying){this.showTimer=setTimeout(function(){return B(t,":hover")&&n.show()},10);return}for(var i;L&&i!==L&&!I(this.$el,L.$el);)i=L,L.hide(!1)}this.container&&H(this.$el)!==this.container&&U(this.container,this.$el),this.showTimer=setTimeout(function(){return n.toggleElement(n.$el,!0)},e&&this.delayShow||0)}},hide:function(t){var e=this;t===void 0&&(t=!0);var n=function(){return e.toggleElement(e.$el,!1,!1)};this.clearTimers(),this.isDelaying=Ur(this.$el).some(function(i){return e.tracker.movesTo(i)}),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(n,this.delayHide):n()},clearTimers:function(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive:function(){return L===this},position:function(){j(this.$el,this.clsDrop+"-stack"),G(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);var t=A(this.boundary),e=this.boundaryAlign?t:A(this.target);if(this.align==="justify"){var n=this.getAxis()==="y"?"width":"height";l(this.$el,n,e[n])}else this.boundary&&this.$el.offsetWidth>Math.max(t.right-e.left,e.right-t.left)&&S(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.target,this.boundary)}}};function Ur(t){var e=[];return $t(t,function(n){return l(n,"position")!=="static"&&e.push(n)}),e}var to={mixins:[ct],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:function(t,e){return b(Se,e)},state:function(){return this.input.nextElementSibling},target:function(t,e){var n=t.target;return n&&(n===!0&&H(this.input)===e&&this.input.nextElementSibling||dt(n,e))}},update:function(){var t=this,e=t.target,n=t.input;if(!!e){var i,r=On(e)?"value":"textContent",o=e[r],s=n.files&&n.files[0]?n.files[0].name:B(n,"select")&&(i=W("option",n).filter(function(a){return a.selected})[0])?i.textContent:n.value;o!==s&&(e[r]=s)}},events:[{name:"change",handler:function(){this.$update()}},{name:"reset",el:function(){return rt(this.$el,"form")},handler:function(){this.$update()}}]},eo={update:{read:function(t){var e=ue(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write:function(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},Si={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read:function(){var t=ki(this.$el.children);return{rows:t,columns:no(t)}},write:function(t){for(var e=t.columns,n=t.rows,i=0;i<n.length;i++)for(var r=0;r<n[i].length;r++)G(n[i][r],this.margin,i!==0),G(n[i][r],this.firstColumn,!!~e[0].indexOf(n[i][r]))},events:["resize"]}};function ki(t){return Ti(t,"top","bottom")}function no(t){for(var e=[],n=0;n<t.length;n++)for(var i=Ti(t[n],"left","right"),r=0;r<i.length;r++)e[r]=e[r]?e[r].concat(i[r]):i[r];return Qt?e.reverse():e}function Ti(t,e,n){for(var i=[[]],r=0;r<t.length;r++){var o=t[r];if(!!M(o))for(var s=Ie(o),a=i.length-1;a>=0;a--){var c=i[a];if(!c[0]){c.push(o);break}var f=void 0;if(c[0].offsetParent===o.offsetParent?f=Ie(c[0]):(s=Ie(o,!0),f=Ie(c[0],!0)),s[e]>=f[n]-1&&s[e]!==f[e]){i.push([o]);break}if(s[n]-1>f[e]||s[e]===f[e]){c.push(o);break}if(a===0){i.unshift([o]);break}}}return i}function Ie(t,e){var n;e===void 0&&(e=!1);var i=t.offsetTop,r=t.offsetLeft,o=t.offsetHeight,s=t.offsetWidth;return e&&(n=se(t),i=n[0],r=n[1]),{top:i,left:r,bottom:i+o,right:r+s}}var io={extends:Si,mixins:[ct],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected:function(){this.masonry&&S(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write:function(t){var e=t.columns;G(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read:function(t){var e=t.columns,n=t.rows;if(!e.length||!this.masonry&&!this.parallax||Ei(this.$el))return t.translates=!1,!1;var i=!1,r=wt(this.$el),o=so(e),s=oo(r,this.margin)*(n.length-1),a=Math.max.apply(Math,o)+s;this.masonry&&(e=e.map(function(f){return en(f,"offsetTop")}),i=ro(n,e));var c=Math.abs(this.parallax);return c&&(c=o.reduce(function(f,v,u){return Math.max(f,v+s+(u%2?c:c/8)-a)},0)),{padding:c,columns:e,translates:i,height:i?a:""}},write:function(t){var e=t.height,n=t.padding;l(this.$el,"paddingBottom",n||""),e!==!1&&l(this.$el,"height",e)},events:["resize"]},{read:function(t){return t.height,Ei(this.$el)?!1:{scrolled:this.parallax?di(this.$el)*Math.abs(this.parallax):!1}},write:function(t){var e=t.columns,n=t.scrolled,i=t.translates;n===!1&&!i||e.forEach(function(r,o){return r.forEach(function(s,a){return l(s,"transform",!n&&!i?"":"translateY("+((i&&-i[o][a])+(n?o%2?n:n/8:0))+"px)")})})},events:["scroll","resize"]}]};function Ei(t){return wt(t).some(function(e){return l(e,"position")==="absolute"})}function ro(t,e){var n=t.map(function(i){return Math.max.apply(Math,i.map(function(r){return r.offsetHeight}))});return e.map(function(i){var r=0;return i.map(function(o,s){return r+=s?n[s-1]-i[s-1].offsetHeight:0})})}function oo(t,e){var n=t.filter(function(r){return k(r,e)}),i=n[0];return $(i?l(i,"marginTop"):l(t[0],"paddingLeft"))}function so(t){return t.map(function(e){return e.reduce(function(n,i){return n+i.offsetHeight},0)})}var En=be?{props:{selMinHeight:String},data:{selMinHeight:!1,forceHeight:!1},computed:{elements:function(t,e){var n=t.selMinHeight;return n?W(n,e):[e]}},update:[{read:function(){l(this.elements,"height","")},order:-5,events:["resize"]},{write:function(){var t=this;this.elements.forEach(function(e){var n=$(l(e,"minHeight"));n&&(t.forceHeight||Math.round(n+jt(e,"height","content-box"))>=e.offsetHeight)&&l(e,"height",n)})},order:5,events:["resize"]}]}:{},ao={mixins:[En],args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements:function(t,e){var n=t.target;return W(n,e)}},update:{read:function(){return{rows:(this.row?ki(this.elements):[this.elements]).map(uo)}},write:function(t){var e=t.rows;e.forEach(function(n){var i=n.heights,r=n.elements;return r.forEach(function(o,s){return l(o,"minHeight",i[s])})})},events:["resize"]}};function uo(t){if(t.length<2)return{heights:[""],elements:t};var e=t.map(Ci),n=Math.max.apply(Math,e),i=t.some(function(o){return o.style.minHeight}),r=t.some(function(o,s){return!o.style.minHeight&&e[s]<n});return i&&r&&(l(t,"minHeight",""),e=t.map(Ci),n=Math.max.apply(Math,e)),e=t.map(function(o,s){return e[s]===n&&$(o.style.minHeight).toFixed(2)!==n.toFixed(2)?"":n}),{heights:e,elements:t}}function Ci(t){var e=!1;M(t)||(e=t.style.display,l(t,"display","block","important"));var n=ut(t).height-jt(t,"height","content-box");return e!==!1&&l(t,"display",e),n}var co={mixins:[En],props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},update:{read:function(t){var e=t.minHeight;if(!M(this.$el))return!1;var n="",i=jt(this.$el,"height","content-box");if(this.expand)n=F(window)-(ut(document.documentElement).height-ut(this.$el).height)-i||"";else{if(n="calc(100vh",this.offsetTop){var r=A(this.$el),o=r.top;n+=o>0&&o<F(window)/2?" - "+o+"px":""}this.offsetBottom===!0?n+=" - "+ut(this.$el.nextElementSibling).height+"px":Et(this.offsetBottom)?n+=" - "+this.offsetBottom+"vh":this.offsetBottom&&Tt(this.offsetBottom,"px")?n+=" - "+$(this.offsetBottom)+"px":C(this.offsetBottom)&&(n+=" - "+ut(dt(this.offsetBottom,this.$el)).height+"px"),n+=(i?" - "+i+"px":"")+")"}return{minHeight:n,prev:e}},write:function(t){var e=t.minHeight,n=t.prev;l(this.$el,{minHeight:e}),e!==n&&_(this.$el,"resize"),this.minHeight&&$(l(this.$el,"minHeight"))<this.minHeight&&l(this.$el,"minHeight",this.minHeight)},events:["resize"]}},_i={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect:function(){this.class+=" uk-svg"},connected:function(){var t=this,e;!this.icon&&m(this.src,"#")&&(e=this.src.split("#"),this.src=e[0],this.icon=e[1]),this.svg=this.getSvg().then(function(n){if(t._connected){var i=po(n,t.$el);return t.svgEl&&i!==t.svgEl&&bt(t.svgEl),t.applyAttributes(i,n),t.$emit(),t.svgEl=i}},lt)},disconnected:function(){var t=this;this.svg.then(function(e){t._connected||(sn(t.$el)&&(t.$el.hidden=!1),bt(e),t.svgEl=null)}),this.svg=null},update:{read:function(){return!!(this.strokeAnimation&&this.svgEl&&M(this.svgEl))},write:function(){vo(this.svgEl)},type:["resize"]},methods:{getSvg:function(){var t=this;return fo(this.src).then(function(e){return ho(e,t.icon)||y.reject("SVG not found.")})},applyAttributes:function(t,e){var n=this;for(var i in this.$options.props)m(this.include,i)&&i in this&&T(t,i,this[i]);for(var r in this.attributes){var o=this.attributes[r].split(":",2),s=o[0],a=o[1];T(t,s,a)}this.id||on(t,"id");var c=["width","height"],f=c.map(function(u){return n[u]});f.some(function(u){return u})||(f=c.map(function(u){return T(e,u)}));var v=T(e,"viewBox");v&&!f.some(function(u){return u})&&(f=v.split(" ").slice(2)),f.forEach(function(u,h){return T(t,c[h],$(u)*n.ratio||null)})}}},fo=Z(function(t){return new y(function(e,n){if(!t){n();return}gt(t,"data:")?e(decodeURIComponent(t.split(",")[1])):Gn(t).then(function(i){return e(i.response)},function(){return n("SVG not found.")})})});function ho(t,e){return e&&m(t,"<symbol")&&(t=lo(t,e)||t),t=b(t.substr(t.indexOf("<svg"))),t&&t.hasChildNodes()&&t}var Ai=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,We={};function lo(t,e){if(!We[t]){We[t]={},Ai.lastIndex=0;for(var n;n=Ai.exec(t);)We[t][n[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+n[1]+"svg>"}return We[t][e]}function vo(t){var e=go(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function go(t){return Math.ceil(Math.max.apply(Math,[0].concat(W("[stroke]",t).map(function(e){try{return e.getTotalLength()}catch{return 0}}))))}function po(t,e){if(sn(e)||e.tagName==="CANVAS"){e.hidden=!0;var n=e.nextElementSibling;return Pi(t,n)?n:Ne(e,t)}var i=e.lastElementChild;return Pi(t,i)?i:U(e,t)}function Pi(t,e){return Ni(t)&&Ni(e)&&Mi(t)===Mi(e)}function Ni(t){return t&&t.tagName==="svg"}function Mi(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var mo='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',wo='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',bo='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="4" width="1" height="11"/><rect x="4" y="9" width="11" height="1"/></svg>',$o='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect y="9" width="20" height="2"/><rect y="3" width="20" height="2"/><rect y="15" width="20" height="2"/></svg>',yo='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',xo='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',So='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',ko='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',To='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',Eo='<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',Co='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',_o='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',Ao='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',Po='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',No='<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',Mo='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>',je={spinner:No,totop:Mo,marker:bo,"close-icon":mo,"close-large":wo,"navbar-toggle-icon":$o,"overlay-icon":yo,"pagination-next":xo,"pagination-previous":So,"search-icon":ko,"search-large":To,"search-navbar":Eo,"slidenav-next":Co,"slidenav-next-large":_o,"slidenav-previous":Ao,"slidenav-previous-large":Po},Hi={install:Oo,extends:_i,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect:function(){S(this.$el,"uk-icon")},methods:{getSvg:function(){var t=Fo(this.icon);return t?y.resolve(t):y.reject("Icon not found.")}}},ft={args:!1,extends:Hi,data:function(t){return{icon:kt(t.constructor.options.name)}},beforeConnect:function(){S(this.$el,this.$name)}},Bi={extends:ft,beforeConnect:function(){S(this.$el,"uk-slidenav")},computed:{icon:function(t,e){var n=t.icon;return k(e,"uk-slidenav-large")?n+"-large":n}}},Ho={extends:ft,computed:{icon:function(t,e){var n=t.icon;return k(e,"uk-search-icon")&&te(e,".uk-search-large").length?"search-large":te(e,".uk-search-navbar").length?"search-navbar":n}}},Bo={extends:ft,computed:{icon:function(){return"close-"+(k(this.$el,"uk-close-large")?"large":"icon")}}},Do={extends:ft,connected:function(){var t=this;this.svg.then(function(e){return e&&t.ratio!==1&&l(b("circle",e),"strokeWidth",1/t.ratio)})}},qe={};function Oo(t){t.icon.add=function(e,n){var i,r=C(e)?(i={},i[e]=n,i):e;it(r,function(o,s){je[s]=o,delete qe[s]}),t._initialized&&$t(document.body,function(o){return it(t.getComponents(o),function(s){s.$options.isIcon&&s.icon in r&&s.$reset()})})}}function Fo(t){return je[t]?(qe[t]||(qe[t]=b((je[zo(t)]||je[t]).trim())),qe[t].cloneNode(!0)):null}function zo(t){return Qt?tn(tn(t,"left","right"),"previous","next"):t}var Lo={args:"dataSrc",props:{dataSrc:String,dataSources:String,offsetTop:String,offsetLeft:String,target:String},data:{dataSrc:"",dataSources:[],offsetTop:"50vh",offsetLeft:"50vw",target:!1},computed:{target:{get:function(t){var e=t.target;return[this.$el].concat(ee(e,this.$el))},watch:function(){this.observe()}}},connected:function(){if(!window.IntersectionObserver){Cn(this.$el,this.dataSrc);return}var t=Pt(this.offsetTop,"height")+"px "+Pt(this.offsetLeft,"width")+"px";this.observer=new IntersectionObserver(this.load,{rootMargin:t}),this.observe()},disconnected:function(){this.observer&&this.observer.disconnect()},update:{read:function(t){var e=t.image;if(!this.observer||_n(this.$el))return!1;Cn(this.$el,e&&e.currentSrc)},write:function(t){var e=mt(this.$el,"data-srcset");if(e&&window.devicePixelRatio!==1){var n=l(this.$el,"backgroundSize");(n.match(/^(auto\s?)+$/)||$(n)===t.bgSize)&&(t.bgSize=Go(e,mt(this.$el,"sizes")),l(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load:function(t){if(!!t.some(function(n){return Y(n.isIntersecting)||n.isIntersecting})){if(this._data.image)return this._data.image;var e=_n(this.$el)?this.$el:Io(this.$el,this.dataSrc,yn(this.dataSources));this._data.image=e,Cn(this.$el,e.currentSrc||this.dataSrc),this.observer.disconnect()}},observe:function(){var t=this;this._connected&&!this._data.image&&this.target.forEach(function(e){return t.observer.observe(e)})}}};function Cn(t,e){if(_n(t)){var n=H(t),i=Xo(n)?wt(n):[t];i.forEach(function(o){return Di(o,o)}),e&&T(t,"src",e)}else if(e){var r=!m(t.style.backgroundImage,e);r&&(l(t,"backgroundImage","url("+ie(e)+")"),_(t,fn("load",!1)))}}var Ro=["data-src","data-srcset","sizes"];function Di(t,e){Ro.forEach(function(n){var i=mt(t,n);i&&T(e,n.replace(/^(data-)+/,""),i)})}function Io(t,e,n){if(n===void 0&&(n=[]),!e)return!1;var i=new Image;if(!K(n)&&st(n)&&(n=[n]),n.length){var r=At("<picture>");n.forEach(function(o){var s=At("<source>");T(s,o),U(r,s)}),U(r,i)}return Di(t,i),T(i,"src",e),i}var Oi=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function Wo(t){var e;for(Oi.lastIndex=0;e=Oi.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=Vo(e[2]);break}return e||"100vw"}var jo=/\d+(?:\w+|%)/g,qo=/[+-]?(\d+)/g;function Vo(t){return gt(t,"calc")?t.slice(5,-1).replace(jo,function(e){return Pt(e)}).replace(/ /g,"").match(qo).reduce(function(e,n){return e+ +n},0):t}var Yo=/\s+\d+w\s*(?:,|$)/g;function Go(t,e){var n=Pt(Wo(e)),i=(t.match(Yo)||[]).map($).sort(function(r,o){return r-o});return i.filter(function(r){return r>=n})[0]||i.pop()||""}function Xo(t){return Fi(t,"PICTURE")}function _n(t){return Fi(t,"IMG")}function Fi(t,e){return t&&t.tagName===e}var An={props:{media:Boolean},data:{media:!1},computed:{matchMedia:function(){var t=Jo(this.media);return!t||window.matchMedia(t).matches}}};function Jo(t){if(C(t)){if(t[0]==="@"){var e="breakpoint-"+t.substr(1);t=$(vn(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var Ko={mixins:[ct,An],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill:function(t){var e=t.fill;return e||vn("leader-fill-content")}},connected:function(){var t;t=Jn(this.$el,'<span class="'+this.clsWrapper+'">'),this.wrapper=t[0]},disconnected:function(){Be(this.wrapper.childNodes)},update:{read:function(t){var e=t.changed,n=t.width,i=n;return n=Math.floor(this.$el.offsetWidth/2),{width:n,fill:this.fill,changed:e||i!==n,hide:!this.matchMedia}},write:function(t){G(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,T(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}},J=[],zi={mixins:[ct,Tn,Nt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel:function(t,e){var n=t.selPanel;return b(n,e)},transitionElement:function(){return this.panel},bgClose:function(t){var e=t.bgClose;return e&&this.panel}},beforeDisconnect:function(){m(J,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:function(){return this.selClose},handler:function(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler:function(t,e){t.defaultPrevented||(t.preventDefault(),this.isToggled()===m(J,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler:function(t){if(m(J,this))return!1;!this.stack&&J.length?(y.all(J.map(function(e){return e.hide()})).then(this.show),t.preventDefault()):J.push(this)}},{name:"show",self:!0,handler:function(){var t=this,e=document.documentElement;ae(window)>e.clientWidth&&this.overlay&&l(document.body,"overflowY","scroll"),this.stack&&l(this.$el,"zIndex",$(l(this.$el,"zIndex"))+J.length),S(e,this.clsPage),this.bgClose&&O(this.$el,"hide",D(document,Rt,function(n){var i=n.target;me(J)!==t||t.overlay&&!I(i,t.$el)||I(i,t.panel)||O(document,It+" "+xe+" scroll",function(r){var o=r.defaultPrevented,s=r.type,a=r.target;!o&&s===It&&i===a&&t.hide()},!0)}),{self:!0}),this.escClose&&O(this.$el,"hide",D(document,"keydown",function(n){n.keyCode===27&&me(J)===t&&t.hide()}),{self:!0})}},{name:"shown",self:!0,handler:function(){an(this.$el)||T(this.$el,"tabindex","-1"),b(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler:function(){var t=this;m(J,this)&&J.splice(J.indexOf(this),1),J.length||l(document.body,"overflowY",""),l(this.$el,"zIndex",""),J.some(function(e){return e.clsPage===t.clsPage})||j(document.documentElement,this.clsPage)}}],methods:{toggle:function(){return this.isToggled()?this.hide():this.show()},show:function(){var t=this;return this.container&&H(this.$el)!==this.container?(U(this.container,this.$el),new y(function(e){return requestAnimationFrame(function(){return t.show().then(e)})})):this.toggleElement(this.$el,!0,Li(this))},hide:function(){return this.toggleElement(this.$el,!1,Li(this))}}};function Li(t){var e=t.transitionElement,n=t._toggle;return function(i,r){return new y(function(o,s){return O(i,"show hide",function(){i._reject&&i._reject(),i._reject=s,n(i,r);var a=O(e,"transitionstart",function(){O(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(c)},{self:!0}),c=setTimeout(function(){a(),o()},Ue(l(e,"transitionDuration")))})}).then(function(){return delete i._reject})}}var Zo={install:Qo,mixins:[zi],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler:function(){k(this.panel,"uk-margin-auto-vertical")?S(this.$el,"uk-flex"):l(this.$el,"display","block"),F(this.$el)}},{name:"hidden",self:!0,handler:function(){l(this.$el,"display",""),j(this.$el,"uk-flex")}}]};function Qo(t){var e=t.modal;e.dialog=function(i,r){var o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+i+"</div> </div>",r);return o.show(),D(o.$el,"hidden",function(){return y.resolve().then(function(){return o.$destroy(!0)})},{self:!0}),o},e.alert=function(i,r){return n(function(o){var s=o.labels;return'<div class="uk-modal-body">'+(C(i)?i:Ae(i))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+s.ok+"</button> </div>"},r,function(o){return o.resolve()})},e.confirm=function(i,r){return n(function(o){var s=o.labels;return'<form> <div class="uk-modal-body">'+(C(i)?i:Ae(i))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+s.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+s.ok+"</button> </div> </form>"},r,function(o){return o.reject()})},e.prompt=function(i,r,o){return n(function(s){var a=s.labels;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(C(i)?i:Ae(i))+'</label> <input class="uk-input" value="'+(r||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,function(s){return s.resolve(null)},function(s){return b("input",s.$el).value})},e.labels={ok:"Ok",cancel:"Cancel"};function n(i,r,o,s){r=N({bgClose:!1,escClose:!0,labels:e.labels},r);var a=e.dialog(i(r),r),c=new qn,f=!1;return D(a.$el,"submit","form",function(v){v.preventDefault(),c.resolve(s&&s(a)),f=!0,a.hide()}),D(a.$el,"hide",function(){return!f&&o(c)}),c.promise.dialog=a,c.promise}}var Uo={extends:$i,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}},Ri=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",ts={mixins:[ct,Tn,En],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarMode:String,dropbarAnchor:Boolean,duration:Number},data:{dropdown:Ri,align:Qt?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarMode:"slide",dropbarAnchor:!1,duration:200,forceHeight:!0,selMinHeight:Ri,container:!1},computed:{boundary:function(t,e){var n=t.boundary,i=t.boundaryAlign;return n===!0||i?e:n},dropbarAnchor:function(t,e){var n=t.dropbarAnchor;return dt(n,e)},pos:function(t){var e=t.align;return"bottom-"+e},dropbar:{get:function(t){var e=t.dropbar;return e?(e=this._dropbar||dt(e,this.$el)||b("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=b("<div></div>"))):null},watch:function(t){S(t,"uk-navbar-dropbar")},immediate:!0},dropContainer:function(t,e){return this.container||e},dropdowns:{get:function(t,e){var n=this,i=t.clsDrop,r=W("."+i,e);return this.dropContainer!==e&&W("."+i,this.dropContainer).forEach(function(o){var s=n.getDropdown(o);!m(r,o)&&s&&s.target&&I(s.target,n.$el)&&r.push(o)}),r},watch:function(t){var e=this;this.$create("drop",t.filter(function(n){return!e.getDropdown(n)}),N({},this.$props,{boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset}))},immediate:!0},toggles:function(t,e){var n=t.dropdown;return W(n,e)}},disconnected:function(){this.dropbar&&bt(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate:function(){return this.dropdown},handler:function(t){var e=t.current,n=this.getActive();n&&m(n.mode,"hover")&&n.target&&!I(n.target,e)&&!n.isDelaying&&n.hide(!1)}},{name:"keydown",delegate:function(){return this.dropdown},handler:function(t){var e=t.current,n=t.keyCode,i=this.getActive();n===Mt.DOWN&&Zt(e,"aria-expanded")&&(t.preventDefault(),!i||i.target!==e?(e.click(),O(this.dropContainer,"show",function(r){var o=r.target;return Wi(o)})):Wi(i.$el)),Ii(t,this.toggles,i)}},{name:"keydown",el:function(){return this.dropContainer},delegate:function(){return"."+this.clsDrop},handler:function(t){var e=t.current,n=t.keyCode;if(!!m(this.dropdowns,e)){var i=this.getActive(),r=W(ke,e),o=pe(r,function(s){return B(s,":focus")});n===Mt.UP&&(t.preventDefault(),o>0&&r[o-1].focus()),n===Mt.DOWN&&(t.preventDefault(),o<r.length-1&&r[o+1].focus()),n===Mt.ESC&&i&&i.target&&i.target.focus(),Ii(t,this.toggles,i)}}},{name:"mouseleave",el:function(){return this.dropbar},filter:function(){return this.dropbar},handler:function(){var t=this.getActive();t&&m(t.mode,"hover")&&!this.dropdowns.some(function(e){return B(e,":hover")})&&t.hide()}},{name:"beforeshow",el:function(){return this.dropContainer},filter:function(){return this.dropbar},handler:function(){H(this.dropbar)||Ne(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el:function(){return this.dropContainer},filter:function(){return this.dropbar},handler:function(t,e){var n=e.$el,i=e.dir;!k(n,this.clsDrop)||(this.dropbarMode==="slide"&&S(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&S(n,this.clsDrop+"-dropbar"),i==="bottom"&&this.transitionTo(n.offsetHeight+$(l(n,"marginTop"))+$(l(n,"marginBottom")),n))}},{name:"beforehide",el:function(){return this.dropContainer},filter:function(){return this.dropbar},handler:function(t,e){var n=e.$el,i=this.getActive();B(this.dropbar,":hover")&&i&&i.$el===n&&!this.toggles.some(function(r){return i.target!==r&&B(r,":focus")})&&t.preventDefault()}},{name:"hide",el:function(){return this.dropContainer},filter:function(){return this.dropbar},handler:function(t,e){var n=e.$el;if(!!k(n,this.clsDrop)){var i=this.getActive();(!i||i&&i.$el===n)&&this.transitionTo(0)}}}],methods:{getActive:function(){return L&&I(L.target,this.$el)&&L},transitionTo:function(t,e){var n=this,i=this,r=i.dropbar,o=M(r)?F(r):0;return e=o<t&&e,l(e,"clip","rect(0,"+e.offsetWidth+"px,"+o+"px,0)"),F(r,o),yt.cancel([e,r]),y.all([yt.start(r,{height:t},this.duration),yt.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(lt).then(function(){l(e,{clip:""}),n.$update(r)})},getDropdown:function(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function Ii(t,e,n){var i=t.current,r=t.keyCode,o=n&&n.target||i,s=e.indexOf(o);r===Mt.LEFT&&s>0&&(n&&n.hide(!1),e[s-1].focus()),r===Mt.RIGHT&&s<e.length-1&&(n&&n.hide(!1),e[s+1].focus()),r===Mt.TAB&&(o.focus(),n&&n.hide(!1))}function Wi(t){if(!b(":focus",t)){var e=b(ke,t);e&&e.focus()}}var Mt={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40},es={mixins:[zi],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1},computed:{clsFlip:function(t){var e=t.flip,n=t.clsFlip;return e?n:""},clsOverlay:function(t){var e=t.overlay,n=t.clsOverlay;return e?n:""},clsMode:function(t){var e=t.mode,n=t.clsMode;return n+"-"+e},clsSidebarAnimation:function(t){var e=t.mode,n=t.clsSidebarAnimation;return e==="none"||e==="reveal"?"":n},clsContainerAnimation:function(t){var e=t.mode,n=t.clsContainerAnimation;return e!=="push"&&e!=="reveal"?"":n},transitionElement:function(t){var e=t.mode;return e==="reveal"?H(this.panel):this.panel}},update:{read:function(){this.isToggled()&&!M(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate:function(){return'a[href^="#"]'},handler:function(t){var e=t.current.hash,n=t.defaultPrevented;!n&&e&&b(e,document.body)&&this.hide()}},{name:"touchstart",passive:!0,el:function(){return this.panel},handler:function(t){var e=t.targetTouches;e.length===1&&(this.clientY=e[0].clientY)}},{name:"touchmove",self:!0,passive:!1,filter:function(){return this.overlay},handler:function(t){t.cancelable&&t.preventDefault()}},{name:"touchmove",passive:!1,el:function(){return this.panel},handler:function(t){if(t.targetTouches.length===1){var e=t.targetTouches[0].clientY-this.clientY,n=this.panel,i=n.scrollTop,r=n.scrollHeight,o=n.clientHeight;(o>=r||i===0&&e>0||r-i<=o&&e<0)&&t.cancelable&&t.preventDefault()}}},{name:"show",self:!0,handler:function(){this.mode==="reveal"&&!k(H(this.panel),this.clsMode)&&(He(this.panel,"<div>"),S(H(this.panel),this.clsMode)),l(document.documentElement,"overflowY",this.overlay?"hidden":""),S(document.body,this.clsContainer,this.clsFlip),l(document.body,"touch-action","pan-y pinch-zoom"),l(this.$el,"display","block"),S(this.$el,this.clsOverlay),S(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),F(document.body),S(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&ns()}},{name:"hide",self:!0,handler:function(){j(document.body,this.clsContainerAnimation),l(document.body,"touch-action","")}},{name:"hidden",self:!0,handler:function(){this.clsContainerAnimation&&is(),this.mode==="reveal"&&Be(this.panel),j(this.panel,this.clsSidebarAnimation,this.clsMode),j(this.$el,this.clsOverlay),l(this.$el,"display",""),j(document.body,this.clsContainer,this.clsFlip),l(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler:function(t){this.isToggled()&&Tt(t.type,"Left")^this.flip&&this.hide()}}]};function ns(){ji().content+=",user-scalable=0"}function is(){var t=ji();t.content=t.content.replace(/,user-scalable=0$/,"")}function ji(){return b('meta[name="viewport"]',document.head)||U(document.head,'<meta name="viewport">')}var rs={mixins:[ct],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container:function(t,e){var n=t.selContainer;return rt(e,n)},content:function(t,e){var n=t.selContent;return rt(e,n)}},connected:function(){l(this.$el,"minHeight",this.minHeight)},update:{read:function(){return!this.content||!this.container||!M(this.$el)?!1:{current:$(l(this.$el,"maxHeight")),max:Math.max(this.minHeight,F(this.container)-(ut(this.content).height-F(this.$el)))}},write:function(t){var e=t.current,n=t.max;l(this.$el,"maxHeight",n),Math.round(e)!==Math.round(n)&&_(this.$el,"resize")},events:["resize"]}},os={props:["width","height"],connected:function(){S(this.$el,"uk-responsive-width")},update:{read:function(){return M(this.$el)&&this.width&&this.height?{width:ae(H(this.$el)),height:this.height}:!1},write:function(t){F(this.$el,rn.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},ss={props:{offset:Number},data:{offset:0},methods:{scrollTo:function(t){var e=this;t=t&&b(t)||document.body,_(this.$el,"beforescroll",[this,t])&&kn(t,{offset:this.offset}).then(function(){return _(e.$el,"scrolled",[e,t])})}},events:{click:function(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+ie(decodeURIComponent((this.$el.hash||"").substr(1)))))}}},St="_ukScrollspy",as={args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:function(){return{cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}},computed:{elements:{get:function(t,e){var n=t.target;return n?W(n,e):[e]},watch:function(t){this.hidden&&l(Ut(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected:function(){var t=this;this.elements.forEach(function(e){j(e,t.inViewClass,e[St]?e[St].cls:""),delete e[St]})},update:[{read:function(t){var e=this;if(!t.update)return y.resolve().then(function(){e.$emit(),t.update=!0}),!1;this.elements.forEach(function(n){n[St]||(n[St]={cls:mt(n,"uk-scrollspy-class")||e.cls}),n[St].show=ue(n,e.offsetTop,e.offsetLeft)})},write:function(t){var e=this;this.elements.forEach(function(n){var i=n[St];i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||y.resolve()).then(function(){return new y(function(r){return setTimeout(r,e.delay)})}).then(function(){e.toggle(n,!0),setTimeout(function(){i.queued=!1,e.$emit()},300)})):!i.show&&i.inview&&!i.queued&&e.repeat&&e.toggle(n,!1)})},events:["scroll","resize"]}],methods:{toggle:function(t,e){var n=t[St];n.off&&n.off(),l(t,"visibility",!e&&this.hidden?"hidden":""),G(t,this.inViewClass,e),G(t,n.cls),/\buk-animation-/.test(n.cls)&&(n.off=O(t,"animationcancel animationend",function(){return De(t,"uk-animation-[\\w-]+")})),_(t,e?"inview":"outview"),n.inview=e,this.$update(t)}}},us={props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get:function(t,e){return W('a[href^="#"]',e).filter(function(n){return n.hash})},watch:function(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets:function(){return W(this.links.map(function(t){return ie(t.hash).substr(1)}).join(","))},elements:function(t){var e=t.closest;return rt(this.links,e||"*")}},update:[{read:function(){var t=this,e=this.targets,n=e.length;if(!n||!M(this.$el))return!1;var i=Vt(this.targets,/auto|scroll/,!0),r=i[0],o=r.scrollTop,s=r.scrollHeight,a=s-he(r),c=!1;return o===a?c=n-1:(this.targets.every(function(f,v){if(A(f).top-A(fe(r)).top-t.offset<=0)return c=v,!0}),c===!1&&this.overflow&&(c=0)),{active:c}},write:function(t){var e=t.active,n=e!==!1&&!k(this.elements[e],this.cls);this.links.forEach(function(i){return i.blur()}),j(this.elements,this.cls),S(this.elements[e],this.cls),n&&_(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},cs={mixins:[ct,An],props:{position:String,top:null,bottom:Boolean,offset:String,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,widthElement:Boolean,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:0,bottom:!1,offset:0,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",widthElement:!1,showOnUp:!1,targetOffset:!1},computed:{position:function(t,e){var n=t.position;return n==="auto"?(this.isFixed?this.placeholder:e).offsetHeight>F(window)?"bottom":"top":n},offset:function(t,e){var n=t.offset;return this.position==="bottom"&&(n+="+100vh-100%"),Pt(n,"height",e)},selTarget:function(t,e){var n=t.selTarget;return n&&b(n,e)||e},widthElement:function(t,e){var n=t.widthElement;return dt(n,e)||this.placeholder},isActive:{get:function(){return k(this.selTarget,this.clsActive)},set:function(t){t&&!this.isActive?(hn(this.selTarget,this.clsInactive,this.clsActive),_(this.$el,"active")):!t&&!k(this.selTarget,this.clsInactive)&&(hn(this.selTarget,this.clsActive,this.clsInactive),_(this.$el,"inactive"))}}},connected:function(){this.placeholder=b("+ .uk-sticky-placeholder",this.$el)||b('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected:function(){this.isFixed&&(this.hide(),j(this.selTarget,this.clsInactive)),bt(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el:function(){return window},handler:function(){var t=this;if(!!(this.targetOffset!==!1&&location.hash&&ce(window)>0)){var e=b(location.hash);e&&R.read(function(){var n=A(e),i=n.top,r=A(t.$el).top,o=t.$el.offsetHeight;t.isFixed&&r+o>=i&&r<=i+e.offsetHeight&&ce(window,i-o-(Et(t.targetOffset)?t.targetOffset:0)-t.offset)})}}}],update:[{read:function(t,e){var n=t.height,i=t.margin;if(this.inactive=!this.matchMedia||!M(this.$el),this.inactive)return!1;var r=this.isActive&&e.has("resize");r&&this.hide(),this.isActive||(n=this.$el.offsetHeight,i=l(this.$el,"margin")),r&&this.show();var o=Math.max(0,n+this.offset-F(window)),s=this.isFixed?this.placeholder:this.$el,a=A(s).top,c=A(s.offsetParent).top,f=qi(this.top,this.$el,a),v=qi(this.bottom,this.$el,a+n),u=Math.max(f,a)-this.offset,h=v?v-this.$el.offsetHeight+o-this.offset:Yt(this.$el).scrollHeight-F(window);return{start:u,end:h,overflow:o,topOffset:a,offsetParentTop:c,height:n,margin:i,width:ut(M(this.widthElement)?this.widthElement:this.$el).width,top:se(this.placeholder)[0]}},write:function(t){var e=t.height,n=t.margin,i=this,r=i.placeholder;l(r,{height:e,margin:n}),I(r,document)||(Ne(this.$el,r),r.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read:function(t){var e=t.scroll;e===void 0&&(e=0);var n=t.dir;n===void 0&&(n="down");var i=t.overflow,r=t.overflowScroll;r===void 0&&(r=0);var o=t.start,s=t.end,a=ce(window),c=e<=a?"down":"up";return{dir:c,prevDir:n,scroll:a,prevScroll:e,overflowScroll:_t(r+_t(a,o,s)-_t(e,o,s),0,i)}},write:function(t,e){var n=this,i=e.has("scroll"),r=t.initTimestamp;r===void 0&&(r=0);var o=t.dir,s=t.prevDir,a=t.scroll,c=t.prevScroll;c===void 0&&(c=0);var f=t.top,v=t.start,u=t.topOffset,h=t.height;if(!(a<0||a===c&&i||this.showOnUp&&!i&&!this.isFixed)){var d=Date.now();if((d-r>300||o!==s)&&(t.initScroll=a,t.initTimestamp=d),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-a)<=30&&Math.abs(c-a)<=10))if(this.inactive||a<v||this.showOnUp&&(a<=v||o==="down"&&i||o==="up"&&!this.isFixed&&a<=u+h)){if(!this.isFixed){at.inProgress(this.$el)&&f>a&&(at.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&a>u?(at.cancel(this.$el),at.out(this.$el,this.animation).then(function(){return n.hide()},lt)):this.hide()}else this.isFixed?this.update():this.animation?(at.cancel(this.$el),this.show(),at.in(this.$el,this.animation).catch(lt)):this.show()}},events:["resize","scroll"]}],methods:{show:function(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide:function(){this.isActive=!1,j(this.$el,this.clsFixed,this.clsBelow),l(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update:function(){var t=this._data,e=t.width,n=t.scroll;n===void 0&&(n=0);var i=t.overflow,r=t.overflowScroll;r===void 0&&(r=0);var o=t.start,s=t.end,a=t.topOffset,c=t.height,f=t.offsetParentTop,v=o!==0||n>o,u=this.offset,h="fixed";n>s&&(u=s+this.offset-f,h="absolute"),i&&(u-=r),l(this.$el,{position:h,top:u+"px",width:e}),this.isActive=v,G(this.$el,this.clsBelow,n>a+c),S(this.$el,this.clsFixed)}}};function qi(t,e,n){return t?C(t)&&t.match(/^-?\d/)?n+Pt(t):A(t===!0?H(e):dt(t,e)).bottom:0}var Vi={mixins:[Nt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,swiping:!0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get:function(t,e){var n=t.connect;return ee(n,e)},watch:function(t){var e=this;this.swiping&&l(t,"touch-action","pan-y pinch-zoom");var n=this.index();this.connects.forEach(function(i){return wt(i).forEach(function(r,o){return G(r,e.cls,o===n)})})},immediate:!0},toggles:{get:function(t,e){var n=t.toggle;return W(n,e).filter(function(i){return!B(i,".uk-disabled *, .uk-disabled, [disabled]")})},watch:function(t){var e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children:function(){var t=this;return wt(this.$el).filter(function(e){return t.toggles.some(function(n){return I(n,e)})})}},events:[{name:"click",delegate:function(){return this.toggle},handler:function(t){t.preventDefault(),this.show(t.current)}},{name:"click",el:function(){return this.connects.concat(this.itemNav?ee(this.itemNav,this.$el):[])},delegate:function(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler:function(t){t.preventDefault(),this.show(mt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter:function(){return this.swiping},el:function(){return this.connects},handler:function(t){var e=t.type;this.show(Tt(e,"Left")?"next":"previous")}}],methods:{index:function(){var t=this;return pe(this.children,function(e){return k(e,t.cls)})},show:function(t){var e=this,n=this.index(),i=we(this.children[we(t,this.toggles,n)],wt(this.$el));n!==i&&(this.children.forEach(function(r,o){G(r,e.cls,i===o),T(e.toggles[o],"aria-expanded",i===o)}),this.connects.forEach(function(r){var o=r.children;return e.toggleElement(w(o).filter(function(s){return k(s,e.cls)}),!1,n>=0).then(function(){return e.toggleElement(o[i],!0,n>=0)})}))}}},fs={mixins:[ct],extends:Vi,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected:function(){var t=k(this.$el,"uk-tab-left")?"uk-tab-left":k(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}},hs=32,ls={mixins:[An,Nt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected:function(){!m(this.mode,"media")&&!an(this.$el)&&T(this.$el,"tabindex","0")},computed:{target:{get:function(t,e){var n=t.href,i=t.target;return i=ee(i||n,e),i.length&&i||[e]},watch:function(){this.updateAria()},immediate:!0}},events:[{name:Rt,filter:function(){return m(this.mode,"hover")},handler:function(t){var e=this;!Wt(t)||this._showState||(_(this.$el,"focus"),O(document,Rt,function(){return _(e.$el,"blur")},!0,function(n){return!I(n.target,e.$el)}),m(this.mode,"click")&&(this._preventClick=!0))}},{name:$e+" "+ye+" focus blur",filter:function(){return m(this.mode,"hover")},handler:function(t){if(!Wt(t)){var e=m([$e,"focus"],t.type),n=T(this.$el,"aria-expanded");if(!(!e&&(t.type===ye&&B(this.$el,":focus")||t.type==="blur"&&B(this.$el,":hover")))){if(this._showState&&e===(n!==this._showState)){e||(this._showState=null);return}this._showState=e?n:null,this.toggle("toggle"+(e?"show":"hide"))}}}},{name:"keydown",filter:function(){return m(this.mode,"click")&&this.$el.tagName!=="INPUT"},handler:function(t){t.keyCode===hs&&(t.preventDefault(),this.$el.click())}},{name:"click",filter:function(){return m(this.mode,"click")},handler:function(t){if(this._preventClick)return this._preventClick=null;var e;(rt(t.target,'a[href="#"], a[href=""]')||(e=rt(t.target,"a[href]"))&&(T(this.$el,"aria-expanded")!=="true"||e.hash&&B(this.target,e.hash)))&&t.preventDefault(),this.toggle()}},{name:"toggled",self:!0,el:function(){return this.target},handler:function(t,e){t.target===this.target[0]&&this.updateAria(e)}}],update:{read:function(){return m(this.mode,"media")&&this.media?{match:this.matchMedia}:!1},write:function(t){var e=t.match,n=this.isToggled(this.target);(e?!n:n)&&this.toggle()},events:["resize"]},methods:{toggle:function(t){var e=this;if(!!_(this.target,t||"toggle",[this])){if(!this.queued)return this.toggleElement(this.target);var n=this.target.filter(function(r){return k(r,e.clsLeave)});if(n.length){this.target.forEach(function(r){var o=m(n,r);e.toggleElement(r,o,o)});return}var i=this.target.filter(this.isToggled);this.toggleElement(i,!1).then(function(){return e.toggleElement(e.target.filter(function(r){return!m(i,r)}),!0)})}},updateAria:function(t){m(this.mode,"media")||T(this.$el,"aria-expanded",Jt(t)?t:this.isToggled(this.target))}}},ds=Object.freeze({__proto__:null,Accordion:$i,Alert:Jr,Cover:Kr,Drop:xi,Dropdown:xi,FormCustom:to,Gif:eo,Grid:io,HeightMatch:ao,HeightViewport:co,Icon:Hi,Img:Lo,Leader:Ko,Margin:Si,Modal:Zo,Nav:Uo,Navbar:ts,Offcanvas:es,OverflowAuto:rs,Responsive:os,Scroll:ss,Scrollspy:as,ScrollspyNav:us,Sticky:cs,Svg:_i,Switcher:Vi,Tab:fs,Toggle:ls,Video:yi,Close:Bo,Spinner:Do,SlidenavNext:Bi,SlidenavPrevious:Bi,SearchIcon:Ho,Marker:ft,NavbarToggleIcon:ft,OverlayIcon:ft,PaginationNext:ft,PaginationPrevious:ft,Totop:ft});return it(ds,function(t,e){return X.component(e,t)}),X.use(Vr),Gr(X),X});
|
|
1
|
+
/*! UIkit 3.11.2-dev.3dfa2c50b | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(jt,Wt){typeof exports=="object"&&typeof module<"u"?module.exports=Wt():typeof define=="function"&&define.amd?define("uikit",Wt):(jt=typeof globalThis<"u"?globalThis:jt||self,jt.UIkit=Wt())})(this,function(){"use strict";const{hasOwnProperty:jt,toString:Wt}=Object.prototype;function vt(t,e){return jt.call(t,e)}const _n=/\B([A-Z])/g,wt=Z(t=>t.replace(_n,"-$1").toLowerCase()),Nn=/-(\w)/g,At=Z(t=>t.replace(Nn,wi)),fe=Z(t=>t.length?wi(null,t.charAt(0))+t.slice(1):"");function wi(t,e){return e?e.toUpperCase():""}function et(t,e){return t.startsWith(e)}function bt(t,e){return t.endsWith(e)}function v(t,e){return t&&t.includes(e)}function de(t,e){return t.findIndex(e)}const{isArray:J,from:Bn}=Array,{assign:O}=Object;function at(t){return typeof t=="function"}function ct(t){return t!==null&&typeof t=="object"}function ht(t){return Wt.call(t)==="[object Object]"}function qt(t){return ct(t)&&t===t.window}function Vt(t){return Fe(t)===9}function ze(t){return Fe(t)>=1}function _t(t){return Fe(t)===1}function Fe(t){return!qt(t)&&ct(t)&&t.nodeType}function pe(t){return typeof t=="boolean"}function T(t){return typeof t=="string"}function Le(t){return typeof t=="number"}function yt(t){return Le(t)||T(t)&&!isNaN(t-parseFloat(t))}function bi(t){return!(J(t)?t.length:ct(t)?Object.keys(t).length:!1)}function q(t){return t===void 0}function Re(t){return pe(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Yt(t){const e=Number(t);return isNaN(e)?!1:e}function b(t){return parseFloat(t)||0}function A(t){return y(t)[0]}function y(t){return t&&(ze(t)?[t]:Array.from(t).filter(ze))||[]}function xt(t){return qt(t)?t:(t=A(t),t?(Vt(t)?t:t.ownerDocument).defaultView:window)}function Ie(t){return t?bt(t,"ms")?b(t):b(t)*1e3:0}function yi(t,e){return t===e||ct(t)&&ct(e)&&Object.keys(t).length===Object.keys(e).length&&Q(t,(i,n)=>i===e[n])}function je(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),n=>n===e?i:e)}function ge(t){return t[t.length-1]}function Q(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function We(t,e){return t.slice().sort((i,n)=>{let{[e]:s=0}=i,{[e]:o=0}=n;return s>o?1:o>s?-1:0})}function Mn(t,e){const i=new Set;return t.filter(n=>{let{[e]:s}=n;return i.has(s)?!1:i.add(s)})}function $t(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Yt(t)||0,e),i)}function ut(){}function xi(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(n=>{let[s,o]=n;return Math.min(...e.map(r=>{let{[s]:a}=r;return a}))-Math.max(...e.map(r=>{let{[o]:a}=r;return a}))>0})}function qe(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}const me={ratio(t,e,i){const n=e==="width"?"height":"width";return{[n]:t[e]?Math.round(i*t[n]/t[e]):t[n],[e]:i}},contain(t,e){return t=O({},t),Q(t,(i,n)=>t=t[n]>e[n]?this.ratio(t,n,e[n]):t),t},cover(t,e){return t=this.contain(t,e),Q(t,(i,n)=>t=t[n]<e[n]?this.ratio(t,n,e[n]):t),t}};function ve(t,e,i,n){i===void 0&&(i=0),n===void 0&&(n=!1),e=y(e);const{length:s}=e;return s?(t=yt(t)?Yt(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(A(t)),n?$t(t,0,s-1):(t%=s,t<0?t+s:t)):-1}function Z(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class $i{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function E(t,e,i){if(ct(e)){for(const s in e)E(t,s,e[s]);return}if(q(i)){var n;return(n=A(t))==null?void 0:n.getAttribute(e)}else for(const s of y(t))at(i)&&(i=i.call(s,E(s,e))),i===null?Ve(s,e):s.setAttribute(e,i)}function Gt(t,e){return y(t).some(i=>i.hasAttribute(e))}function Ve(t,e){const i=y(t);for(const n of e.split(" "))for(const s of i)s.removeAttribute(n)}function Kt(t,e){for(const i of[e,"data-"+e])if(Gt(t,i))return E(t,i)}const kt=typeof window<"u",Xt=kt&&E(document.documentElement,"dir")==="rtl",Nt=kt&&"ontouchstart"in window,Bt=kt&&window.PointerEvent,Mt=Bt?"pointerdown":Nt?"touchstart":"mousedown",Hn=Bt?"pointermove":Nt?"touchmove":"mousemove",Ht=Bt?"pointerup":Nt?"touchend":"mouseup",we=Bt?"pointerenter":Nt?"":"mouseenter",be=Bt?"pointerleave":Nt?"":"mouseleave",ye=Bt?"pointercancel":"touchcancel",On={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Ye(t){return y(t).some(e=>On[e.tagName.toLowerCase()])}function _(t){return y(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const xe="input,select,textarea,button";function ki(t){return y(t).some(e=>D(e,xe))}const $e=xe+",a[href],[tabindex]";function Ge(t){return D(t,$e)}function F(t){return t=A(t),t&&_t(t.parentNode)&&t.parentNode}function Jt(t,e){return y(t).filter(i=>D(i,e))}function D(t,e){return y(t).some(i=>i.matches(e))}function U(t,e){return et(e,">")&&(e=e.slice(1)),_t(t)?t.closest(e):y(t).map(i=>U(i,e)).filter(Boolean)}function L(t,e){return T(e)?D(t,e)||!!U(t,e):t===e||A(e).contains(A(t))}function Zt(t,e){const i=[];for(;t=F(t);)(!e||D(t,e))&&i.push(t);return i}function St(t,e){t=A(t);const i=t?y(t.children):[];return e?Jt(i,e):i}function Ke(t,e){return e?y(t).indexOf(A(e)):St(F(t)).indexOf(t)}function lt(t,e){return Xe(t,Si(t,e))}function Qt(t,e){return Ut(t,Si(t,e))}function Si(t,e){return e===void 0&&(e=document),T(t)&&Ci(t)||Vt(e)?e:e.ownerDocument}function Xe(t,e){return A(Ti(t,e,"querySelector"))}function Ut(t,e){return y(Ti(t,e,"querySelectorAll"))}function Ti(t,e,i){if(e===void 0&&(e=document),!t||!T(t))return t;t=t.replace(zn,"$1 *"),Ci(t)&&(t=Ln(t).map(n=>{let s=e;if(n[0]==="!"){const o=n.substr(1).trim().split(" ");s=U(F(e),o[0]),n=o.slice(1).join(" ").trim()}if(n[0]==="-"){const o=n.substr(1).trim().split(" "),r=(s||e).previousElementSibling;s=D(r,n.substr(1))?r:null,n=o.slice(1).join(" ")}return s?Rn(s)+" "+n:null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch{return null}}const Dn=/(^|[^\\],)\s*[!>+~-]/,zn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,Ci=Z(t=>t.match(Dn)),Fn=/.*?[^\\](?:,|$)/g,Ln=Z(t=>t.match(Fn).map(e=>e.replace(/,$/,"").trim()));function Rn(t){const e=[];for(;t.parentNode;){const i=E(t,"id");if(i){e.unshift("#"+te(i));break}else{let{tagName:n}=t;n!=="HTML"&&(n+=":nth-child("+(Ke(t)+1)+")"),e.unshift(n),t=t.parentNode}}return e.join(" > ")}const In=kt&&window.CSS&&CSS.escape||function(t){return t.replace(/([^\x7f-\uFFFF\w-])/g,e=>"\\"+e)};function te(t){return T(t)?In.call(null,t):""}function N(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,o,r,a=!1]=Ze(e);r.length>1&&(r=Wn(r)),a!=null&&a.self&&(r=qn(r)),o&&(r=jn(o,r));for(const c of s)for(const f of n)f.addEventListener(c,r,a);return()=>Ei(n,s,r,a)}function Ei(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[n,s,,o,r=!1]=Ze(e);for(const a of s)for(const c of n)c.removeEventListener(a,o,r)}function B(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[n,s,o,r,a=!1,c]=Ze(e),f=N(n,s,o,d=>{const l=!c||c(d);l&&(f(),r(d,l))},a);return f}function S(t,e,i){return Qe(t).every(n=>n.dispatchEvent(Je(e,!0,!0,i)))}function Je(t,e,i,n){return e===void 0&&(e=!0),i===void 0&&(i=!1),T(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:n})),t}function Ze(t){return t[0]=Qe(t[0]),T(t[1])&&(t[1]=t[1].split(" ")),at(t[2])&&t.splice(2,0,!1),t}function jn(t,e){return i=>{const n=t[0]===">"?Ut(t,i.currentTarget).reverse().filter(s=>L(i.target,s))[0]:U(i.target,t);n&&(i.current=n,e.call(this,i))}}function Wn(t){return e=>J(e.detail)?t(e,...e.detail):t(e)}function qn(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Pi(t){return t&&"addEventListener"in t}function Vn(t){return Pi(t)?t:A(t)}function Qe(t){return J(t)?t.map(Vn).filter(Boolean):T(t)?Ut(t):Pi(t)?[t]:y(t)}function Ot(t){return t.pointerType==="touch"||!!t.touches}function ke(t){var e,i;const{clientX:n,clientY:s}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:n,y:s}}function Yn(t,e){const i=O({data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:ut,responseType:""},e);return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>Gn(t,i))}function Gn(t,e){return new Promise((i,n)=>{const{xhr:s}=e;for(const o in e)if(o in s)try{s[o]=e[o]}catch{}s.open(e.method.toUpperCase(),t);for(const o in e.headers)s.setRequestHeader(o,e.headers[o]);N(s,"load",()=>{s.status===0||s.status>=200&&s.status<300||s.status===304?i(s):n(O(Error(s.statusText),{xhr:s,status:s.status}))}),N(s,"error",()=>n(O(Error("Network Error"),{xhr:s}))),N(s,"timeout",()=>n(O(Error("Network Timeout"),{xhr:s}))),s.send(e.data)})}function Ai(t,e,i){return new Promise((n,s)=>{const o=new Image;o.onerror=r=>s(r),o.onload=()=>n(o),i&&(o.sizes=i),e&&(o.srcset=e),o.src=t})}const Kn={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function h(t,e,i,n){return n===void 0&&(n=""),y(t).map(s=>{if(T(e)){if(e=Se(e),q(i))return Xn(s,e);!i&&!Le(i)?s.style.removeProperty(e):s.style.setProperty(e,yt(i)&&!Kn[e]?i+"px":i,n)}else if(J(e)){const o=Ue(s),r={};for(const a of e)r[a]=o[Se(a)];return r}else ct(e)&&(n=i,Q(e,(o,r)=>h(s,r,o,n)));return s})[0]}function Ue(t,e){return xt(t).getComputedStyle(t,e)}function Xn(t,e,i){return Ue(t,i)[e]}const Jn=/^\s*(["'])?(.*?)\1\s*$/;function ti(t){return Ue(document.documentElement).getPropertyValue("--uk-"+t).replace(Jn,"$2")}const Se=Z(t=>Zn(t)),_i=["webkit","moz","ms"];function Zn(t){t=wt(t);const{style:e}=document.documentElement;if(t in e)return t;let i=_i.length,n;for(;i--;)if(n="-"+_i[i]+"-"+t,n in e)return n}function $(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Ni(t,i,"add")}function I(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),n=1;n<e;n++)i[n-1]=arguments[n];Ni(t,i,"remove")}function Te(t,e){E(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function ei(t){(arguments.length<=1?void 0:arguments[1])&&I(t,arguments.length<=1?void 0:arguments[1]),(arguments.length<=2?void 0:arguments[2])&&$(t,arguments.length<=2?void 0:arguments[2])}function k(t,e){[e]=ii(e);for(const i of y(t))if(e&&i.classList.contains(e))return!0;return!1}function G(t,e,i){const n=ii(e);q(i)||(i=!!i);for(const s of y(t))for(const o of n)s.classList.toggle(o,i)}function Ni(t,e,i){e=e.reduce((n,s)=>n.concat(ii(s)),[]);for(const n of y(t))n.classList[i](...e)}function ii(t){return String(t).split(/\s|,/).filter(Boolean)}function Bi(t,e,i,n){return i===void 0&&(i=400),n===void 0&&(n="linear"),Promise.all(y(t).map(s=>new Promise((o,r)=>{for(const c in e){const f=h(s,c);f===""&&h(s,c,f)}const a=setTimeout(()=>S(s,"transitionend"),i);B(s,"transitionend transitioncanceled",c=>{let{type:f}=c;clearTimeout(a),I(s,"uk-transition"),h(s,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),f==="transitioncanceled"?r():o(s)},{self:!0}),$(s,"uk-transition"),h(s,O({transitionProperty:Object.keys(e).map(Se).join(","),transitionDuration:i+"ms",transitionTimingFunction:n},e))})))}const ft={start:Bi,stop(t){return S(t,"transitionend"),Promise.resolve()},cancel(t){S(t,"transitioncanceled")},inProgress(t){return k(t,"uk-transition")}},ee="uk-animation-";function ni(t,e,i,n,s){return i===void 0&&(i=200),Promise.all(y(t).map(o=>new Promise((r,a)=>{S(o,"animationcanceled");const c=setTimeout(()=>S(o,"animationend"),i);B(o,"animationend animationcanceled",f=>{let{type:d}=f;clearTimeout(c),d==="animationcanceled"?a():r(o),h(o,"animationDuration",""),Te(o,ee+"\\S*")},{self:!0}),h(o,"animationDuration",i+"ms"),$(o,e,ee+(s?"leave":"enter")),et(e,ee)&&(n&&$(o,"uk-transform-origin-"+n),s&&$(o,ee+"reverse"))})))}const Qn=new RegExp(ee+"(enter|leave)"),it={in:ni,out(t,e,i,n){return ni(t,e,i,n,!0)},inProgress(t){return Qn.test(E(t,"class"))},cancel(t){S(t,"animationcanceled")}},dt={width:["left","right"],height:["top","bottom"]};function nt(t){const e=_t(t)?A(t).getBoundingClientRect():{height:M(t),width:ne(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function C(t,e){const i=nt(t);if(t){const{pageYOffset:s,pageXOffset:o}=xt(t),r={height:s,width:o};for(const a in dt)for(const c in dt[a])i[dt[a][c]]+=r[a]}if(!e)return i;const n=h(t,"position");Q(h(t,["left","top"]),(s,o)=>h(t,o,e[o]-i[o]+b(n==="absolute"&&s==="auto"?Mi(t)[o]:s)))}function Mi(t){let{top:e,left:i}=C(t);const{ownerDocument:{body:n,documentElement:s},offsetParent:o}=A(t);let r=o||s;for(;r&&(r===n||r===s)&&h(r,"position")==="static";)r=r.parentNode;if(_t(r)){const a=C(r);e-=a.top+b(h(r,"borderTopWidth")),i-=a.left+b(h(r,"borderLeftWidth"))}return{top:e-b(h(t,"marginTop")),left:i-b(h(t,"marginLeft"))}}function ie(t){const e=[0,0];t=A(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,h(t,"position")==="fixed"){const i=xt(t);return e[0]+=i.pageYOffset,e[1]+=i.pageXOffset,e}while(t=t.offsetParent);return e}const M=Hi("height"),ne=Hi("width");function Hi(t){const e=fe(t);return(i,n)=>{if(q(n)){if(qt(i))return i["inner"+e];if(Vt(i)){const s=i.documentElement;return Math.max(s["offset"+e],s["scroll"+e])}return i=A(i),n=h(i,t),n=n==="auto"?i["offset"+e]:b(n)||0,n-se(i,t)}else return h(i,t,!n&&n!==0?"":+n+se(i,t)+"px")}}function se(t,e,i){return i===void 0&&(i="border-box"),h(t,"boxSizing")===i?dt[e].map(fe).reduce((n,s)=>n+b(h(t,"padding"+s))+b(h(t,"border"+s+"Width")),0):0}function si(t){for(const e in dt)for(const i in dt[e])if(dt[e][i]===t)return dt[e][1-i];return t}function pt(t,e,i,n){return e===void 0&&(e="width"),i===void 0&&(i=window),n===void 0&&(n=!1),T(t)?ts(t).reduce((s,o)=>{const r=is(o);return r&&(o=ns(r==="vh"?M(xt(i)):r==="vw"?ne(xt(i)):n?i["offset"+fe(e)]:nt(i)[e],o)),s+b(o)},0):b(t)}const Un=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,ts=Z(t=>t.toString().replace(/\s/g,"").match(Un)||[]),es=/(?:v[hw]|%)$/,is=Z(t=>(t.match(es)||[])[0]);function ns(t,e){return t*b(e)/100}function ss(t){if(document.readyState!=="loading"){t();return}B(document,"DOMContentLoaded",t)}function os(t){return oi(t,"")}function Ce(t,e){return q(e)?w(t).innerHTML:oi(t,e)}function oi(t,e){const i=P(e);return w(t).replaceChildren(...i),i}function rs(t,e){const i=P(e);return w(t).prepend(...i),i}function Tt(t,e){const i=P(e);return w(t).append(...i),i}function Oi(t,e){const i=P(e);return w(t).before(...i),i}function Ee(t,e){const i=P(e);return w(t).after(...i),i}function Dt(t){y(t).forEach(e=>e.remove())}function Pe(t,e){for(e=A(Oi(t,e));e.firstChild;)e=e.firstChild;return Tt(e,t),e}function Di(t,e){return y(y(t).map(i=>i.hasChildNodes?Pe(y(i.childNodes),e):Tt(i,e)))}function Ae(t){y(t).map(F).filter((e,i,n)=>n.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}function ri(t){const e=document.createElement("template");e.innerHTML=t;const{childNodes:i}=e.content;return i.length>1?y(i):i[0]}function gt(t,e){if(!!_t(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;gt(t,e),t=i}}function w(t,e){return zi(t)?A(ri(t)):Xe(t,e)}function P(t,e){return zi(t)?y(ri(t)):Ut(t,e)}function zi(t){return T(t)&&et(t.trim(),"<")}const R={reads:[],writes:[],read(t){return this.reads.push(t),li(),t},write(t){return this.writes.push(t),li(),t},clear(t){Li(this.reads,t),Li(this.writes,t)},flush:ai};function ai(t){Fi(R.reads),Fi(R.writes.splice(0)),R.scheduled=!1,(R.reads.length||R.writes.length)&&li(t+1)}const as=4;function li(t){R.scheduled||(R.scheduled=!0,t&&t<as?Promise.resolve().then(()=>ai(t)):requestAnimationFrame(()=>ai(1)))}function Fi(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Li(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function ci(){}ci.prototype={positions:[],init(){this.positions=[];let t;this.unbind=N(document,"mousemove",e=>t=ke(e)),this.interval=setInterval(()=>{!t||(this.positions.push(t),this.positions.length>5&&this.positions.shift())},50)},cancel(){this.unbind&&this.unbind(),this.interval&&clearInterval(this.interval)},movesTo(t){if(this.positions.length<2)return!1;const e=t.getBoundingClientRect(),{left:i,right:n,top:s,bottom:o}=e,[r]=this.positions,a=ge(this.positions),c=[r,a];return qe(a,e)?!1:[[{x:i,y:s},{x:n,y:o}],[{x:i,y:o},{x:n,y:s}]].some(d=>{const l=ls(c,d);return l&&qe(l,e)})}};function ls(t,e){let[{x:i,y:n},{x:s,y:o}]=t,[{x:r,y:a},{x:c,y:f}]=e;const d=(f-a)*(s-i)-(c-r)*(o-n);if(d===0)return!1;const l=((c-r)*(n-a)-(f-a)*(i-r))/d;return l<0?!1:{x:i+l*(s-i),y:n+l*(o-n)}}const j={};j.events=j.created=j.beforeConnect=j.connected=j.beforeDisconnect=j.disconnected=j.destroy=hi,j.args=function(t,e){return e!==!1&&hi(e||t)},j.update=function(t,e){return We(hi(t,at(e)?{read:e}:e),"order")},j.props=function(t,e){if(J(e)){const i={};for(const n of e)i[n]=String;e=i}return j.methods(t,e)},j.computed=j.methods=function(t,e){return e?t?O({},t,e):e:t},j.data=function(t,e,i){return i?Ri(t,e,i):e?t?function(n){return Ri(t,e,n)}:e:t};function Ri(t,e,i){return j.computed(at(t)?t.call(i,i):t,at(e)?e.call(i,i):e)}function hi(t,e){return t=t&&!J(t)?[t]:t,e?t?t.concat(e):J(e)?e:[e]:t}function cs(t,e){return q(e)?t:e}function zt(t,e,i){const n={};if(at(e)&&(e=e.options),e.extends&&(t=zt(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=zt(t,o,i);for(const o in t)s(o);for(const o in e)vt(t,o)||s(o);function s(o){n[o]=(j[o]||cs)(t[o],e[o],i)}return n}function Ii(t,e){e===void 0&&(e=[]);try{return t?et(t,"{")?JSON.parse(t):e.length&&!v(t,":")?{[e[0]]:t}:t.split(";").reduce((i,n)=>{const[s,o]=n.split(/:(.*)/);return s&&!q(o)&&(i[s.trim()]=o.trim()),i},{}):{}}catch{return{}}}function ji(t){if(Ne(t)&&ui(t,{func:"playVideo",method:"play"}),_e(t))try{t.play().catch(ut)}catch{}}function Wi(t){Ne(t)&&ui(t,{func:"pauseVideo",method:"pause"}),_e(t)&&t.pause()}function qi(t){Ne(t)&&ui(t,{func:"mute",method:"setVolume",value:0}),_e(t)&&(t.muted=!0)}function Vi(t){return _e(t)||Ne(t)}function _e(t){return(t==null?void 0:t.tagName)==="VIDEO"}function Ne(t){return(t==null?void 0:t.tagName)==="IFRAME"&&(Yi(t)||Gi(t))}function Yi(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Gi(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function ui(t,e){await us(t),Ki(t,e)}function Ki(t,e){try{t.contentWindow.postMessage(JSON.stringify(O({event:"command"},e)),"*")}catch{}}const fi="_ukPlayer";let hs=0;function us(t){if(t[fi])return t[fi];const e=Yi(t),i=Gi(t),n=++hs;let s;return t[fi]=new Promise(o=>{e&&B(t,"load",()=>{const r=()=>Ki(t,{event:"listening",id:n});s=setInterval(r,100),r()}),B(window,"message",o,!1,r=>{let{data:a}=r;try{return a=JSON.parse(a),a&&(e&&a.id===n&&a.event==="onReady"||i&&Number(a.player_id)===n)}catch{}}),t.src=""+t.src+(v(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+n)}).then(()=>clearInterval(s))}function oe(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),_(t)?xi(...Ft(t).map(n=>{const{top:s,left:o,bottom:r,right:a}=C(ae(n));return{top:s-e,left:o-i,bottom:r+e,right:a+i}}).concat(C(t))):!1}function re(t,e){if(qt(t)||Vt(t)?t=Lt(t):t=A(t),q(e))return t.scrollTop;t.scrollTop=e}function di(t,e){let{offset:i=0}=e===void 0?{}:e;const n=_(t)?Ft(t):[];return n.reduce((a,c,f)=>{const{scrollTop:d,scrollHeight:l,offsetHeight:u}=c,p=l-le(c),{height:x,top:g}=C(n[f-1]||t);let m=Math.ceil(g-C(ae(c)).top-i+d);return i>0&&u<x+i?m+=i:i=0,m>p?(i-=m-p,m=p):m<0&&(i-=m,m=0),()=>s(c,m-d).then(a)},()=>Promise.resolve())();function s(a,c){return new Promise(f=>{const d=a.scrollTop,l=o(Math.abs(c)),u=Date.now();(function p(){const x=r($t((Date.now()-u)/l));re(a,d+c*x),x===1?f():requestAnimationFrame(p)})()})}function o(a){return 40*Math.pow(a,.375)}function r(a){return .5*(1-Math.cos(Math.PI*a))}}function Xi(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!_(t))return 0;const[n]=Ft(t,/auto|scroll/,!0),{scrollHeight:s,scrollTop:o}=n,r=le(n),a=s-r,c=ie(t)[0]-ie(n)[0],f=Math.max(0,c-r+e),d=Math.min(a,c+t.offsetHeight-i);return $t((o-f)/(d-f))}function Ft(t,e,i){e===void 0&&(e=/auto|scroll|hidden/),i===void 0&&(i=!1);const n=Lt(t);let s=Zt(t).reverse();s=s.slice(s.indexOf(n)+1);const o=de(s,r=>h(r,"position")==="fixed");return~o&&(s=s.slice(o)),[n].concat(s.filter(r=>e.test(h(r,"overflow"))&&(!i||r.scrollHeight>le(r)))).reverse()}function ae(t){return t===Lt(t)?window:t}function le(t){return(t===Lt(t)?document.documentElement:t).clientHeight}function Lt(t){const{document:e}=xt(t);return e.scrollingElement||e.documentElement}const ce={width:["x","left","right"],height:["y","top","bottom"]};function Ji(t,e,i,n,s,o,r,a){i=Qi(i),n=Qi(n);const c={element:i,target:n};if(!t||!e)return c;const f=C(t),d=C(e),l=d;if(Zi(l,i,f,-1),Zi(l,n,d,1),s=Ui(s,f.width,f.height),o=Ui(o,d.width,d.height),s.x+=o.x,s.y+=o.y,l.left+=s.x,l.top+=s.y,r){let u=Ft(t).map(ae);a&&!v(u,a)&&u.unshift(a),u=u.map(p=>C(p)),Q(ce,(p,x)=>{let[g,m,V]=p;!(r===!0||v(r,g))||u.some(H=>{const W=i[g]===m?-f[x]:i[g]===V?f[x]:0,Y=n[g]===m?d[x]:n[g]===V?-d[x]:0;if(l[m]<H[m]||l[m]+f[x]>H[V]){const rt=f[x]/2,Rt=n[g]==="center"?-d[x]/2:0;return i[g]==="center"&&(tt(rt,Rt)||tt(-rt,-Rt))||tt(W,Y)}function tt(rt,Rt){const It=b((l[m]+rt+Rt-s[g]*2).toFixed(4));if(It>=H[m]&&It+f[x]<=H[V]){l[m]=It;for(const ue of["element","target"])rt&&(c[ue][g]=c[ue][g]===ce[x][1]?ce[x][2]:ce[x][1]);return!0}}})})}return C(t,l),c}function Zi(t,e,i,n){Q(ce,(s,o)=>{let[r,a,c]=s;e[r]===c?t[a]+=i[o]*n:e[r]==="center"&&(t[a]+=i[o]*n/2)})}function Qi(t){const e=/left|center|right/,i=/top|center|bottom/;return t=(t||"").split(" "),t.length===1&&(t=e.test(t[0])?t.concat("center"):i.test(t[0])?["center"].concat(t):["center","center"]),{x:e.test(t[0])?t[0]:"center",y:i.test(t[1])?t[1]:"center"}}function Ui(t,e,i){const[n,s]=(t||"").split(" ");return{x:n?b(n)*(bt(n,"%")?e/100:1):0,y:s?b(s)*(bt(s,"%")?i/100:1):0}}var fs=Object.freeze({__proto__:null,ajax:Yn,getImage:Ai,transition:Bi,Transition:ft,animate:ni,Animation:it,attr:E,hasAttr:Gt,removeAttr:Ve,data:Kt,addClass:$,removeClass:I,removeClasses:Te,replaceClass:ei,hasClass:k,toggleClass:G,dimensions:nt,offset:C,position:Mi,offsetPosition:ie,height:M,width:ne,boxModelAdjust:se,flipPosition:si,toPx:pt,ready:ss,empty:os,html:Ce,replaceChildren:oi,prepend:rs,append:Tt,before:Oi,after:Ee,remove:Dt,wrapAll:Pe,wrapInner:Di,unwrap:Ae,fragment:ri,apply:gt,$:w,$$:P,inBrowser:kt,isRtl:Xt,hasTouch:Nt,pointerDown:Mt,pointerMove:Hn,pointerUp:Ht,pointerEnter:we,pointerLeave:be,pointerCancel:ye,on:N,off:Ei,once:B,trigger:S,createEvent:Je,toEventTargets:Qe,isTouch:Ot,getEventPos:ke,fastdom:R,isVoidElement:Ye,isVisible:_,selInput:xe,isInput:ki,selFocusable:$e,isFocusable:Ge,parent:F,filter:Jt,matches:D,closest:U,within:L,parents:Zt,children:St,index:Ke,hasOwn:vt,hyphenate:wt,camelize:At,ucfirst:fe,startsWith:et,endsWith:bt,includes:v,findIndex:de,isArray:J,toArray:Bn,assign:O,isFunction:at,isObject:ct,isPlainObject:ht,isWindow:qt,isDocument:Vt,isNode:ze,isElement:_t,isBoolean:pe,isString:T,isNumber:Le,isNumeric:yt,isEmpty:bi,isUndefined:q,toBoolean:Re,toNumber:Yt,toFloat:b,toNode:A,toNodes:y,toWindow:xt,toMs:Ie,isEqual:yi,swap:je,last:ge,each:Q,sortBy:We,uniqueBy:Mn,clamp:$t,noop:ut,intersectRect:xi,pointInRect:qe,Dimensions:me,getIndex:ve,memoize:Z,Deferred:$i,MouseTracker:ci,mergeOptions:zt,parseOptions:Ii,play:ji,pause:Wi,mute:qi,isVideo:Vi,positionAt:Ji,query:lt,queryAll:Qt,find:Xe,findAll:Ut,escape:te,css:h,getCssVar:ti,propName:Se,isInView:oe,scrollTop:re,scrollIntoView:di,scrolledOver:Xi,scrollParents:Ft,getViewport:ae,getViewportClientHeight:le,getScrollingElement:Lt});function ds(t){const e=t.data;t.use=function(s){if(!s.installed)return s.call(null,this),s.installed=!0,this},t.mixin=function(s,o){o=(T(o)?t.component(o):o)||this,o.options=zt(o.options,s)},t.extend=function(s){s=s||{};const o=this,r=function(c){this._init(c)};return r.prototype=Object.create(o.prototype),r.prototype.constructor=r,r.options=zt(o.options,s),r.super=o,r.extend=o.extend,r},t.update=function(s,o){s=s?A(s):document.body;for(const r of Zt(s).reverse())n(r[e],o);gt(s,r=>n(r[e],o))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(s){i=w(s)}});function n(s,o){if(!!s)for(const r in s)s[r]._connected&&s[r]._callUpdate(o)}}function ps(t){t.prototype._callHook=function(n){var s;(s=this.$options[n])==null||s.forEach(o=>o.call(this))},t.prototype._callConnected=function(){this._connected||(this._data={},this._computeds={},this._initProps(),this._callHook("beforeConnect"),this._connected=!0,this._initEvents(),this._initObservers(),this._callHook("connected"),this._callUpdate())},t.prototype._callDisconnected=function(){!this._connected||(this._callHook("beforeDisconnect"),this._disconnectObservers(),this._unbindEvents(),this._callHook("disconnected"),this._connected=!1,delete this._watch)},t.prototype._callUpdate=function(n){n===void 0&&(n="update"),!!this._connected&&((n==="update"||n==="resize")&&this._callWatches(),!!this.$options.update&&(this._updates||(this._updates=new Set,R.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(n.type||n)))},t.prototype._callWatches=function(){if(this._watch)return;const n=!vt(this,"_watch");this._watch=R.read(()=>{this._connected&&i.call(this,n),this._watch=null})};function e(n){for(const{read:s,write:o,events:r}of this.$options.update){if(!n.has("update")&&(!r||!r.some(c=>n.has(c))))continue;let a;s&&(a=s.call(this,this._data,n),a&&ht(a)&&O(this._data,a)),o&&a!==!1&&R.write(()=>o.call(this,this._data,n))}}function i(n){const{$options:{computed:s}}=this,o=O({},this._computeds);this._computeds={};for(const r in s){const{watch:a,immediate:c}=s[r];a&&(n&&c||vt(o,r)&&!yi(o[r],this[r]))&&a.call(this,this[r],o[r])}}}function gs(t){let e=0;t.prototype._init=function(l){l=l||{},l.data=c(l,this.constructor.options),this.$options=zt(this.constructor.options,l,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),l.el&&this.$mount(l.el)},t.prototype._initData=function(){const{data:l={}}=this.$options;for(const u in l)this.$props[u]=this[u]=l[u]},t.prototype._initMethods=function(){const{methods:l}=this.$options;if(l)for(const u in l)this[u]=l[u].bind(this)},t.prototype._initComputeds=function(){const{computed:l}=this.$options;if(this._computeds={},l)for(const u in l)n(this,u,l[u])},t.prototype._initProps=function(l){let u;l=l||i(this.$options,this.$name);for(u in l)q(l[u])||(this.$props[u]=l[u]);const p=[this.$options.computed,this.$options.methods];for(u in this.$props)u in l&&o(p,u)&&(this[u]=this.$props[u])},t.prototype._initEvents=function(){this._events=[];for(const l of this.$options.events||[])if(vt(l,"handler"))s(this,l);else for(const u in l)s(this,l[u],u)},t.prototype._unbindEvents=function(){this._events.forEach(l=>l()),delete this._events},t.prototype._initObservers=function(){this._observers=[f(this),d(this)]},t.prototype._disconnectObservers=function(){this._observers.forEach(l=>l==null?void 0:l.disconnect())};function i(l,u){const p={},{args:x=[],props:g={},el:m}=l;if(!g)return p;for(const H in g){const W=wt(H);let Y=Kt(m,W);q(Y)||(Y=g[H]===Boolean&&Y===""?!0:r(g[H],Y),!(W==="target"&&(!Y||et(Y,"_")))&&(p[H]=Y))}const V=Ii(Kt(m,u),x);for(const H in V){const W=At(H);g[W]!==void 0&&(p[W]=r(g[W],V[H]))}return p}function n(l,u,p){Object.defineProperty(l,u,{enumerable:!0,get(){const{_computeds:x,$props:g,$el:m}=l;return vt(x,u)||(x[u]=(p.get||p).call(l,g,m)),x[u]},set(x){const{_computeds:g}=l;g[u]=p.set?p.set.call(l,x):x,q(g[u])&&delete g[u]}})}function s(l,u,p){ht(u)||(u={name:p,handler:u});let{name:x,el:g,handler:m,capture:V,passive:H,delegate:W,filter:Y,self:tt}=u;if(g=at(g)?g.call(l):g||l.$el,J(g)){g.forEach(rt=>s(l,O({},u,{el:rt}),p));return}!g||Y&&!Y.call(l)||l._events.push(N(g,x,W?T(W)?W:W.call(l):null,T(m)?l[m]:m.bind(l),{passive:H,capture:V,self:tt}))}function o(l,u){return l.every(p=>!p||!vt(p,u))}function r(l,u){return l===Boolean?Re(u):l===Number?Yt(u):l==="list"?a(u):l?l(u):u}function a(l){return J(l)?l:T(l)?l.split(/,(?![^(]*\))/).map(u=>yt(u)?Yt(u):Re(u.trim())):[l]}function c(l,u){let{data:p={}}=l,{args:x=[],props:g={}}=u;J(p)&&(p=p.slice(0,x.length).reduce((m,V,H)=>(ht(V)?O(m,V):m[x[H]]=V,m),{}));for(const m in p)q(p[m])?delete p[m]:g[m]&&(p[m]=r(g[m],p[m]));return p}function f(l){const{el:u}=l.$options,p=new MutationObserver(()=>l.$emit());return p.observe(u,{childList:!0,subtree:!0}),p}function d(l){const{$name:u,$options:p,$props:x}=l,{attrs:g,props:m,el:V}=p;if(!m||g===!1)return;const H=J(g)?g:Object.keys(m),W=H.map(tt=>wt(tt)).concat(u),Y=new MutationObserver(tt=>{const rt=i(p,u);tt.some(Rt=>{let{attributeName:It}=Rt;const ue=It.replace("data-","");return(ue===u?H:[At(ue),At(It)]).some(vi=>!q(rt[vi])&&rt[vi]!==x[vi])})&&l.$reset()});return Y.observe(V,{attributes:!0,attributeFilter:W.concat(W.map(tt=>"data-"+tt))}),Y}}function ms(t){const e=t.data;t.prototype.$create=function(n,s,o){return t[n](s,o)},t.prototype.$mount=function(n){const{name:s}=this.$options;n[e]||(n[e]={}),!n[e][s]&&(n[e][s]=this,this.$el=this.$options.el=this.$options.el||n,L(n,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(n){n===void 0&&(n=!1);const{el:s,name:o}=this.$options;s&&this._callDisconnected(),this._callHook("destroy"),!!(s!=null&&s[e])&&(delete s[e][o],bi(s[e])||delete s[e],n&&Dt(this.$el))},t.prototype.$emit=function(n){this._callUpdate(n)},t.prototype.$update=function(n,s){n===void 0&&(n=this.$el),t.update(n,s)},t.prototype.$getComponent=t.getComponent;const i=Z(n=>t.prefix+wt(n));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function vs(t){const e=t.data,i={};t.component=function(n,s){const o=wt(n);if(n=At(o),!s)return ht(i[n])&&(i[n]=t.extend(i[n])),i[n];t[n]=function(a,c){const f=t.component(n);return f.options.functional?new f({data:ht(a)?a:[...arguments]}):a?P(a).map(d)[0]:d();function d(l){const u=t.getComponent(l,n);if(u)if(c)u.$destroy();else return u;return new f({el:l,data:c})}};const r=ht(s)?O({},s):s.options;return r.name=n,r.install==null||r.install(t,r,n),t._initialized&&!r.functional&&R.read(()=>t[n]("[uk-"+o+"],[data-uk-"+o+"]")),i[n]=ht(s)?r:s},t.getComponents=n=>(n==null?void 0:n[e])||{},t.getComponent=(n,s)=>t.getComponents(n)[s],t.connect=n=>{if(n[e])for(const s in n[e])n[e][s]._callConnected();for(const s of n.attributes){const o=tn(s.name);o&&o in i&&t[o](n)}},t.disconnect=n=>{for(const s in n[e])n[e][s]._callDisconnected()}}const tn=Z(t=>et(t,"uk-")||et(t,"data-uk-")?At(t.replace("data-uk-","").replace("uk-","")):!1),K=function(t){this._init(t)};K.util=fs,K.data="__uikit__",K.prefix="uk-",K.options={},K.version="3.11.2-dev.3dfa2c50b",ds(K),ps(K),gs(K),vs(K),ms(K);function ws(t){if(!kt)return;let e;const i=()=>{e||(e=!0,R.read(()=>e=!1),t.update(null,"resize"))};N(window,"load resize",i),N(document,"loadedmetadata load",i,!0),"ResizeObserver"in window&&new ResizeObserver(i).observe(document.documentElement);let n;N(window,"scroll",o=>{n||(n=!0,R.read(()=>n=!1),t.update(null,o.type))},{passive:!0,capture:!0});let s=0;N(document,"animationstart",o=>{let{target:r}=o;(h(r,"animationName")||"").match(/^uk-.*(left|right)/)&&(s++,h(document.documentElement,"overflowX","hidden"),setTimeout(()=>{--s||h(document.documentElement,"overflowX","")},Ie(h(r,"animationDuration"))+100))},!0),N(document,Mt,o=>{if(!Ot(o))return;const r=ke(o),a="tagName"in o.target?o.target:F(o.target);B(document,Ht+" "+ye+" scroll",c=>{const{x:f,y:d}=ke(c);(c.type!=="scroll"&&a&&f&&Math.abs(r.x-f)>100||d&&Math.abs(r.y-d)>100)&&setTimeout(()=>{S(a,"swipe"),S(a,"swipe"+bs(r.x,r.y,f,d))})})},{passive:!0})}function bs(t,e,i,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function ys(t){const{connect:e,disconnect:i}=t;if(!kt||!window.MutationObserver)return;R.read(function(){document.body&>(document.body,e),new MutationObserver(o=>o.forEach(n)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(o=>o.forEach(s)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function n(o){let{addedNodes:r,removedNodes:a}=o;for(const c of r)gt(c,e);for(const c of a)gt(c,i)}function s(o){var r;let{target:a,attributeName:c}=o;const f=tn(c);if(!(!f||!(f in t))){if(Gt(a,c)){t[f](a);return}(r=t.getComponent(a,f))==null||r.$destroy()}}}var st={connected(){!k(this.$el,this.$name)&&$(this.$el,this.$name)}},Ct={props:{cls:Boolean,animation:"list",duration:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,origin:!1,transition:"linear",clsEnter:"uk-togglabe-enter",clsLeave:"uk-togglabe-leave",initProps:{overflow:"",height:"",paddingTop:"",paddingBottom:"",marginTop:"",marginBottom:""},hideProps:{overflow:"hidden",height:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0}},computed:{hasAnimation(t){let{animation:e}=t;return!!e[0]},hasTransition(t){let{animation:e}=t;return this.hasAnimation&&e[0]===!0}},methods:{toggleElement(t,e,i){return new Promise(n=>Promise.all(y(t).map(s=>{const o=pe(e)?e:!this.isToggled(s);if(!S(s,"before"+(o?"show":"hide"),[this]))return Promise.reject();const r=(at(i)?i:i===!1||!this.hasAnimation?this._toggle:this.hasTransition?en(this):xs(this))(s,o),a=o?this.clsEnter:this.clsLeave;$(s,a),S(s,o?"show":"hide",[this]);const c=()=>{I(s,a),S(s,o?"shown":"hidden",[this]),this.$update(s)};return r?r.then(c,()=>(I(s,a),Promise.reject())):c()})).then(n,ut))},isToggled(t){return t===void 0&&(t=this.$el),[t]=y(t),k(t,this.clsEnter)?!0:k(t,this.clsLeave)?!1:this.cls?k(t,this.cls.split(" ")[0]):_(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=v(this.cls," ")||e!==k(t,this.cls),i&&G(t,this.cls,v(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),P("[autofocus]",t).some(n=>_(n)?n.focus()||!0:n.blur()),i&&(S(t,"toggled",[e,this]),this.$update(t))}}};function en(t){let{isToggled:e,duration:i,initProps:n,hideProps:s,transition:o,_toggle:r}=t;return(a,c)=>{const f=ft.inProgress(a),d=a.hasChildNodes?b(h(a.firstElementChild,"marginTop"))+b(h(a.lastElementChild,"marginBottom")):0,l=_(a)?M(a)+(f?0:d):0;ft.cancel(a),e(a)||r(a,!0),M(a,""),R.flush();const u=M(a)+(f?0:d);return M(a,l),(c?ft.start(a,O({},n,{overflow:"hidden",height:u}),Math.round(i*(1-l/u)),o):ft.start(a,s,Math.round(i*(l/u)),o).then(()=>r(a,!1))).then(()=>h(a,n))}}function xs(t){return(e,i)=>{it.cancel(e);const{animation:n,duration:s,_toggle:o}=t;return i?(o(e,!0),it.in(e,n[0],s,t.origin)):it.out(e,n[1]||n[0],s,t.origin).then(()=>o(e,!1))}}var nn={mixins:[st,Ct],props:{targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,transition:String,offset:Number},data:{targets:"> *",active:!1,animation:[!0],collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",transition:"ease",offset:0},computed:{items:{get(t,e){let{targets:i}=t;return P(i,e)},watch(t,e){if(t.forEach(n=>Be(w(this.content,n),!k(n,this.clsOpen))),e||k(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},immediate:!0},toggles(t){let{toggle:e}=t;return this.items.map(i=>w(e,i))}},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(Ke(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[ve(t,this.items)]];const n=Jt(this.items,"."+this.clsOpen);if(!this.multiple&&!v(n,i[0])&&(i=i.concat(n)),!(!this.collapsible&&n.length<2&&!Jt(i,":not(."+this.clsOpen+")").length))for(const s of i)this.toggleElement(s,!k(s,this.clsOpen),async(o,r)=>{G(o,this.clsOpen,r),E(w(this.$props.toggle,o),"aria-expanded",r);const a=w((o._wrapper?"> * ":"")+this.content,o);if(e===!1||!this.hasTransition){Be(a,!r);return}if(o._wrapper||(o._wrapper=Pe(a,"<div"+(r?" hidden":"")+">")),Be(a,!1),await en(this)(o._wrapper,r),Be(a,!r),delete o._wrapper,Ae(a),r){const c=w(this.$props.toggle,o);oe(c)||di(c,{offset:this.offset})}})}}};function Be(t,e){t&&(t.hidden=e)}var $s={mixins:[st,Ct],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:O({opacity:0},Ct.data.hideProps)},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.close()}}],methods:{async close(){await this.toggleElement(this.$el),this.$destroy(!0)}}},sn={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},computed:{inView(t){let{autoplay:e}=t;return e==="inview"}},connected(){this.inView&&!Gt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&qi(this.$el)},update:{read(){return Vi(this.$el)?{visible:_(this.$el)&&h(this.$el,"visibility")!=="hidden",inView:this.inView&&oe(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?Wi(this.$el):(this.autoplay===!0||this.inView&&i)&&ji(this.$el)},events:["resize","scroll"]}},ks={mixins:[sn],props:{width:Number,height:Number},data:{automute:!0},update:{read(){const t=this.$el,{offsetHeight:e,offsetWidth:i}=Ss(t)||F(t),n=me.cover({width:this.width||t.naturalWidth||t.videoWidth||t.clientWidth,height:this.height||t.naturalHeight||t.videoHeight||t.clientHeight},{width:i+(i%2?1:0),height:e+(e%2?1:0)});return!n.width||!n.height?!1:n},write(t){let{height:e,width:i}=t;h(this.$el,{height:e,width:i})},events:["resize"]}};function Ss(t){for(;t=F(t);)if(h(t,"position")!=="static")return t}var pi={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&w(e)}}},Ts={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(Xt?"right":"left"),flip:!0,offset:!1,clsPos:""},computed:{pos(t){let{pos:e}=t;return e.split("-").concat("center").slice(0,2)},dir(){return this.pos[0]},align(){return this.pos[1]}},methods:{positionAt(t,e,i){Te(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");let{offset:n}=this;const s=this.getAxis();if(!yt(n)){const a=w(n);n=a?C(a)[s==="x"?"left":"top"]-C(e)[s==="x"?"right":"bottom"]:0}const{x:o,y:r}=Ji(t,e,s==="x"?si(this.dir)+" "+this.align:this.align+" "+si(this.dir),s==="x"?this.dir+" "+this.align:this.align+" "+this.dir,s==="x"?""+(this.dir==="left"?-n:n):" "+(this.dir==="top"?-n:n),null,this.flip,i).target;this.dir=s==="x"?o:r,this.align=s==="x"?r:o,G(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}};let z;var on={mixins:[pi,Ts,Ct],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryAlign:Boolean,delayShow:Number,delayHide:Number,clsDrop:String},data:{mode:["click","hover"],toggle:"- *",boundary:!0,boundaryAlign:!1,delayShow:0,delayHide:800,clsDrop:!1,animation:["uk-animation-fade"],cls:"uk-open",container:!1},computed:{boundary(t,e){let{boundary:i}=t;return i===!0?window:lt(i,e)},clsDrop(t){let{clsDrop:e}=t;return e||"uk-"+this.$options.name},clsPos(){return this.clsDrop}},created(){this.tracker=new ci},connected(){$(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",lt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,E(this.target,"aria-haspopup",!0))},disconnected(){this.isActive()&&(z=null)},events:[{name:"click",delegate(){return"."+this.clsDrop+"-close"},handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{defaultPrevented:e,current:{hash:i}}=t;!e&&i&&!L(i,this.$el)&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),D(this.$el,":focus,:hover")||this.hide()}},{name:we+" focusin",filter(){return v(this.mode,"hover")},handler(t){Ot(t)||this.clearTimers()}},{name:be+" focusout",filter(){return v(this.mode,"hover")},handler(t){!Ot(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){z=this,this.tracker.init(),B(this.$el,"hide",N(document,Mt,t=>{let{target:e}=t;return!L(e,this.$el)&&B(document,Ht+" "+ye+" scroll",i=>{let{defaultPrevented:n,type:s,target:o}=i;!n&&s===Ht&&e===o&&!(this.target&&L(e,this.target))&&this.hide(!1)},!0)}),{self:!0}),B(this.$el,"hide",N(document,"keydown",t=>{t.keyCode===27&&this.hide(!1)}),{self:!0})}},{name:"beforehide",self:!0,handler(){this.clearTimers()}},{name:"hide",handler(t){let{target:e}=t;if(this.$el!==e){z=z===null&&L(e,this.$el)&&this.isToggled()?this:z;return}z=this.isActive()?null:z,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!k(this.$el,this.clsEnter)&&this.position()},events:["resize"]},methods:{show(t,e){if(t===void 0&&(t=this.target),e===void 0&&(e=!0),this.isToggled()&&t&&this.target&&t!==this.target&&this.hide(!1),this.target=t,this.clearTimers(),!this.isActive()){if(z){if(e&&z.isDelaying){this.showTimer=setTimeout(()=>D(t,":hover")&&this.show(),10);return}let i;for(;z&&i!==z&&!L(this.$el,z.$el);)i=z,z.hide(!1)}this.container&&F(this.$el)!==this.container&&Tt(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t){t===void 0&&(t=!0);const e=()=>this.toggleElement(this.$el,!1,!1);this.clearTimers(),this.isDelaying=Cs(this.$el).some(i=>this.tracker.movesTo(i)),t&&this.isDelaying?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(e,this.delayHide):e()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null,this.isDelaying=!1},isActive(){return z===this},position(){I(this.$el,this.clsDrop+"-stack"),G(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);const t=C(this.boundary),e=this.boundaryAlign?t:C(this.target);if(this.align==="justify"){const i=this.getAxis()==="y"?"width":"height";h(this.$el,i,e[i])}else this.boundary&&this.$el.offsetWidth>Math.max(t.right-e.left,e.right-t.left)&&$(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.target,this.boundary)}}};function Cs(t){const e=[];return gt(t,i=>h(i,"position")!=="static"&&e.push(i)),e}var Es={mixins:[st],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return w(xe,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&F(this.input)===e&&this.input.nextElementSibling||lt(i,e))}},update(){const{target:t,input:e}=this;if(!t)return;let i;const n=ki(t)?"value":"textContent",s=t[n],o=e.files&&e.files[0]?e.files[0].name:D(e,"select")&&(i=P("option",e).filter(r=>r.selected)[0])?i.textContent:e.value;s!==o&&(t[n]=o)},events:[{name:"change",handler(){this.$update()}},{name:"reset",el(){return U(this.$el,"form")},handler(){this.$update()}}]},Ps={update:{read(t){const e=oe(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},rn={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read(){const t=an(this.$el.children);return{rows:t,columns:As(t)}},write(t){let{columns:e,rows:i}=t;for(const n of i)for(const s of n)G(s,this.margin,i[0]!==n),G(s,this.firstColumn,!!~e[0].indexOf(s))},events:["resize"]}};function an(t){return ln(t,"top","bottom")}function As(t){const e=[];for(const i of t){const n=ln(i,"left","right");for(let s=0;s<n.length;s++)e[s]=e[s]?e[s].concat(n[s]):n[s]}return Xt?e.reverse():e}function ln(t,e,i){const n=[[]];for(const s of t){if(!_(s))continue;let o=Me(s);for(let r=n.length-1;r>=0;r--){const a=n[r];if(!a[0]){a.push(s);break}let c;if(a[0].offsetParent===s.offsetParent?c=Me(a[0]):(o=Me(s,!0),c=Me(a[0],!0)),o[e]>=c[i]-1&&o[e]!==c[e]){n.push([s]);break}if(o[i]-1>c[e]||o[e]===c[e]){a.push(s);break}if(r===0){n.unshift([s]);break}}}return n}function Me(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:n,offsetHeight:s,offsetWidth:o}=t;return e&&([i,n]=ie(t)),{top:i,left:n,bottom:i+s,right:n+o}}var _s={extends:rn,mixins:[st],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&$(this.$el,"uk-flex-top uk-flex-wrap-top")},update:[{write(t){let{columns:e}=t;G(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||cn(this.$el))return t.translates=!1,!1;let n=!1;const s=St(this.$el),o=Ms(e),r=Bs(s,this.margin)*(i.length-1),a=Math.max(...o)+r;this.masonry&&(e=e.map(f=>We(f,"offsetTop")),n=Ns(i,e));let c=Math.abs(this.parallax);return c&&(c=o.reduce((f,d,l)=>Math.max(f,d+r+(l%2?c:c/8)-a),0)),{padding:c,columns:e,translates:n,height:n?a:""}},write(t){let{height:e,padding:i}=t;h(this.$el,"paddingBottom",i||""),e!==!1&&h(this.$el,"height",e)},events:["resize"]},{read(){return cn(this.$el)?!1:{scrolled:this.parallax?Xi(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:n}=t;i===!1&&!n||e.forEach((s,o)=>s.forEach((r,a)=>h(r,"transform",!i&&!n?"":"translateY("+((n&&-n[o][a])+(i?o%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function cn(t){return St(t).some(e=>h(e,"position")==="absolute")}function Ns(t,e){const i=t.map(n=>Math.max(...n.map(s=>s.offsetHeight)));return e.map(n=>{let s=0;return n.map((o,r)=>s+=r?i[r-1]-n[r-1].offsetHeight:0)})}function Bs(t,e){const[i]=t.filter(n=>k(n,e));return b(i?h(i,"marginTop"):h(t[0],"paddingLeft"))}function Ms(t){return t.map(e=>e.reduce((i,n)=>i+n.offsetHeight,0))}var Hs={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements(t,e){let{target:i}=t;return P(i,e)}},update:{read(){return{rows:(this.row?an(this.elements):[this.elements]).map(Os)}},write(t){let{rows:e}=t;for(const{heights:i,elements:n}of e)n.forEach((s,o)=>h(s,"minHeight",i[o]))},events:["resize"]}};function Os(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(hn),i=Math.max(...e);const n=t.some(o=>o.style.minHeight),s=t.some((o,r)=>!o.style.minHeight&&e[r]<i);return n&&s&&(h(t,"minHeight",""),e=t.map(hn),i=Math.max(...e)),e=t.map((o,r)=>e[r]===i&&b(o.style.minHeight).toFixed(2)!==i.toFixed(2)?"":i),{heights:e,elements:t}}function hn(t){let e=!1;_(t)||(e=t.style.display,h(t,"display","block","important"));const i=nt(t).height-se(t,"height","content-box");return e!==!1&&h(t,"display",e),i}var Ds={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},update:{read(t){let{minHeight:e}=t;if(!_(this.$el))return!1;let i="";const n=se(this.$el,"height","content-box");if(this.expand)i=M(window)-(nt(document.documentElement).height-nt(this.$el).height)-n||"";else{if(i="calc(100vh",this.offsetTop){const{top:s}=C(this.$el);i+=s>0&&s<M(window)/2?" - "+s+"px":""}this.offsetBottom===!0?i+=" - "+nt(this.$el.nextElementSibling).height+"px":yt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&bt(this.offsetBottom,"px")?i+=" - "+b(this.offsetBottom)+"px":T(this.offsetBottom)&&(i+=" - "+nt(lt(this.offsetBottom,this.$el)).height+"px"),i+=(n?" - "+n+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e,prev:i}=t;h(this.$el,{minHeight:e}),e!==i&&S(this.$el,"resize"),this.minHeight&&b(h(this.$el,"minHeight"))<this.minHeight&&h(this.$el,"minHeight",this.minHeight)},events:["resize"]}},un={args:"src",props:{id:Boolean,icon:String,src:String,style:String,width:Number,height:Number,ratio:Number,class:String,strokeAnimation:Boolean,focusable:Boolean,attributes:"list"},data:{ratio:1,include:["style","class","focusable"],class:"",strokeAnimation:!1},beforeConnect(){this.class+=" uk-svg"},connected(){!this.icon&&v(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=js(t,this.$el);return this.svgEl&&e!==this.svgEl&&Dt(this.svgEl),this.applyAttributes(e,t),this.$emit(),this.svgEl=e}},ut)},disconnected(){this.svg.then(t=>{this._connected||(Ye(this.$el)&&(this.$el.hidden=!1),Dt(t),this.svgEl=null)}),this.svg=null},update:{read(){return!!(this.strokeAnimation&&this.svgEl&&_(this.svgEl))},write(){Rs(this.svgEl)},type:["resize"]},methods:{async getSvg(){return Fs(await zs(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const o in this.$options.props)v(this.include,o)&&o in this&&E(t,o,this[o]);for(const o in this.attributes){const[r,a]=this.attributes[o].split(":",2);E(t,r,a)}this.id||Ve(t,"id");const i=["width","height"];let n=i.map(o=>this[o]);n.some(o=>o)||(n=i.map(o=>E(e,o)));const s=E(e,"viewBox");s&&!n.some(o=>o)&&(n=s.split(" ").slice(2)),n.forEach((o,r)=>E(t,i[r],b(o)*this.ratio||null))}}};const zs=Z(async t=>t?et(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function Fs(t,e){var i;return e&&v(t,"<symbol")&&(t=Ls(t,e)||t),t=w(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const fn=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,He={};function Ls(t,e){if(!He[t]){He[t]={},fn.lastIndex=0;let i;for(;i=fn.exec(t);)He[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return He[t][e]}function Rs(t){const e=Is(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function Is(t){return Math.ceil(Math.max(0,...P("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function js(t,e){if(Ye(e)||e.tagName==="CANVAS"){e.hidden=!0;const n=e.nextElementSibling;return dn(t,n)?n:Ee(e,t)}const i=e.lastElementChild;return dn(t,i)?i:Tt(e,t)}function dn(t,e){return pn(t)&&pn(e)&&gn(t)===gn(e)}function pn(t){return(t==null?void 0:t.tagName)==="svg"}function gn(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var Ws='<svg width="14" height="14" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.1" x1="1" y1="1" x2="13" y2="13"/><line fill="none" stroke="#000" stroke-width="1.1" x1="13" y1="1" x2="1" y2="13"/></svg>',qs='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><line fill="none" stroke="#000" stroke-width="1.4" x1="1" y1="1" x2="19" y2="19"/><line fill="none" stroke="#000" stroke-width="1.4" x1="19" y1="1" x2="1" y2="19"/></svg>',Vs='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect x="9" y="4" width="1" height="11"/><rect x="4" y="9" width="11" height="1"/></svg>',Ys='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect y="9" width="20" height="2"/><rect y="3" width="20" height="2"/><rect y="15" width="20" height="2"/></svg>',Gs='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',Ks='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 1 6 6 1 11"/></svg>',Xs='<svg width="7" height="12" viewBox="0 0 7 12" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="6 1 1 6 6 11"/></svg>',Js='<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',Zs='<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8" x1="38" y1="39" x2="29" y2="30"/></svg>',Qs='<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10.5" cy="10.5" r="9.5"/><line fill="none" stroke="#000" stroke-width="1.1" x1="23" y1="23" x2="17" y2="17"/></svg>',Us='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="1.225,23 12.775,12 1.225,1 "/></svg>',to='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="4.002,38.547 22.527,20.024 4,1.5 "/></svg>',eo='<svg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23 "/></svg>',io='<svg width="25" height="40" viewBox="0 0 25 40" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="2" points="20.527,1.5 2,20.024 20.525,38.547 "/></svg>',no='<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" cx="15" cy="15" r="14"/></svg>',so='<svg width="18" height="10" viewBox="0 0 18 10" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.2" points="1 9 9 1 17 9 "/></svg>';const Oe={spinner:no,totop:so,marker:Vs,"close-icon":Ws,"close-large":qs,"navbar-toggle-icon":Ys,"overlay-icon":Gs,"pagination-next":Ks,"pagination-previous":Xs,"search-icon":Js,"search-large":Zs,"search-navbar":Qs,"slidenav-next":Us,"slidenav-next-large":to,"slidenav-previous":eo,"slidenav-previous-large":io},mn={install:lo,extends:un,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){$(this.$el,"uk-icon")},methods:{getSvg(){const t=co(this.icon);return t?Promise.resolve(t):Promise.reject("Icon not found.")}}},ot={args:!1,extends:mn,data:t=>({icon:wt(t.constructor.options.name)}),beforeConnect(){$(this.$el,this.$name)}},vn={extends:ot,beforeConnect(){$(this.$el,"uk-slidenav")},computed:{icon(t,e){let{icon:i}=t;return k(e,"uk-slidenav-large")?i+"-large":i}}},oo={extends:ot,computed:{icon(t,e){let{icon:i}=t;return k(e,"uk-search-icon")&&Zt(e,".uk-search-large").length?"search-large":Zt(e,".uk-search-navbar").length?"search-navbar":i}}},ro={extends:ot,computed:{icon(){return"close-"+(k(this.$el,"uk-close-large")?"large":"icon")}}},ao={extends:ot,async connected(){const t=await this.svg;t&&this.ratio!==1&&h(w("circle",t),"strokeWidth",1/this.ratio)}},De={};function lo(t){t.icon.add=(e,i)=>{const n=T(e)?{[e]:i}:e;Q(n,(s,o)=>{Oe[o]=s,delete De[o]}),t._initialized&>(document.body,s=>Q(t.getComponents(s),o=>{o.$options.isIcon&&o.icon in n&&o.$reset()}))}}function co(t){return Oe[t]?(De[t]||(De[t]=w((Oe[ho(t)]||Oe[t]).trim())),De[t].cloneNode(!0)):null}function ho(t){return Xt?je(je(t,"left","right"),"previous","next"):t}var uo={args:"dataSrc",props:{dataSrc:String,dataSrcset:Boolean,sizes:String,width:Number,height:Number,offsetTop:String,offsetLeft:String,target:String},data:{dataSrc:"",dataSrcset:!1,sizes:!1,width:!1,height:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1},computed:{cacheKey(t){let{dataSrc:e}=t;return this.$name+"."+e},width(t){let{width:e,dataWidth:i}=t;return e||i},height(t){let{height:e,dataHeight:i}=t;return e||i},sizes(t){let{sizes:e,dataSizes:i}=t;return e||i},isImg(t,e){return yn(e)},target:{get(t){let{target:e}=t;return[this.$el,...Qt(e,this.$el)]},watch(){this.observe()}},offsetTop(t){let{offsetTop:e}=t;return pt(e,"height")},offsetLeft(t){let{offsetLeft:e}=t;return pt(e,"width")}},connected(){if(!window.IntersectionObserver){he(this.$el,this.dataSrc,this.dataSrcset,this.sizes);return}Et[this.cacheKey]?he(this.$el,Et[this.cacheKey],this.dataSrcset,this.sizes):this.isImg&&this.width&&this.height&&he(this.$el,fo(this.width,this.height,this.sizes)),this.observer=new IntersectionObserver(this.load,{rootMargin:this.offsetTop+"px "+this.offsetLeft+"px"}),requestAnimationFrame(this.observe)},disconnected(){this.observer&&this.observer.disconnect()},update:{read(t){let{image:e}=t;if(!this.observer||(!e&&document.readyState==="complete"&&this.load(this.observer.takeRecords()),this.isImg))return!1;e&&e.then(i=>i&&i.currentSrc!==""&&he(this.$el,gi(i)))},write(t){if(this.dataSrcset&&window.devicePixelRatio!==1){const e=h(this.$el,"backgroundSize");(e.match(/^(auto\s?)+$/)||b(e)===t.bgSize)&&(t.bgSize=wo(this.dataSrcset,this.sizes),h(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load(t){!t.some(e=>q(e.isIntersecting)||e.isIntersecting)||(this._data.image=Ai(this.dataSrc,this.dataSrcset,this.sizes).then(e=>(he(this.$el,gi(e),e.srcset,e.sizes),Et[this.cacheKey]=gi(e),e),e=>S(this.$el,new e.constructor(e.type,e))),this.observer.disconnect())},observe(){if(this._connected&&!this._data.image)for(const t of this.target)this.observer.observe(t)}}};function he(t,e,i,n){if(yn(t)){const s=(o,r)=>r&&r!==t[o]&&(t[o]=r);s("sizes",n),s("srcset",i),s("src",e)}else e&&!v(t.style.backgroundImage,e)&&(h(t,"backgroundImage","url("+te(e)+")"),S(t,Je("load",!1)))}function fo(t,e,i){return i&&({width:t,height:e}=me.ratio({width:t,height:e},"width",pt(bn(i)))),'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="'+t+'" height="'+e+'"></svg>'}const wn=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function bn(t){let e;for(wn.lastIndex=0;e=wn.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=mo(e[2]);break}return e||"100vw"}const po=/\d+(?:\w+|%)/g,go=/[+-]?(\d+)/g;function mo(t){return et(t,"calc")?t.slice(5,-1).replace(po,e=>pt(e)).replace(/ /g,"").match(go).reduce((e,i)=>e+ +i,0):t}const vo=/\s+\d+w\s*(?:,|$)/g;function wo(t,e){const i=pt(bn(e)),n=(t.match(vo)||[]).map(b).sort((s,o)=>s-o);return n.filter(s=>s>=i)[0]||n.pop()||""}function yn(t){return t.tagName==="IMG"}function gi(t){return t.currentSrc||t.src}const xn="__test__";let Et;try{Et=window.sessionStorage||{},Et[xn]=1,delete Et[xn]}catch{Et={}}var mi={props:{media:Boolean},data:{media:!1},computed:{matchMedia(){const t=bo(this.media);return!t||window.matchMedia(t).matches}}};function bo(t){if(T(t)){if(t[0]==="@"){const e="breakpoint-"+t.substr(1);t=b(ti(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var yo={mixins:[st,mi],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill(t){let{fill:e}=t;return e||ti("leader-fill-content")}},connected(){[this.wrapper]=Di(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){Ae(this.wrapper.childNodes)},update:{read(t){let{changed:e,width:i}=t;const n=i;return i=Math.floor(this.$el.offsetWidth/2),{width:i,fill:this.fill,changed:e||n!==i,hide:!this.matchMedia}},write(t){G(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,E(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}};const X=[];var $n={mixins:[st,pi,Ct],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1},computed:{panel(t,e){let{selPanel:i}=t;return w(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){v(X,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate(){return this.selClose},handler(t){t.preventDefault(),this.hide()}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===v(X,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(v(X,this))return!1;!this.stack&&X.length?(Promise.all(X.map(e=>e.hide())).then(this.show),t.preventDefault()):X.push(this)}},{name:"show",self:!0,handler(){const t=document.documentElement;ne(window)>t.clientWidth&&this.overlay&&h(document.body,"overflowY","scroll"),this.stack&&h(this.$el,"zIndex",b(h(this.$el,"zIndex"))+X.length),$(t,this.clsPage),this.bgClose&&B(this.$el,"hide",N(document,Mt,e=>{let{target:i}=e;ge(X)!==this||this.overlay&&!L(i,this.$el)||L(i,this.panel)||B(document,Ht+" "+ye+" scroll",n=>{let{defaultPrevented:s,type:o,target:r}=n;!s&&o===Ht&&i===r&&this.hide()},!0)}),{self:!0}),this.escClose&&B(this.$el,"hide",N(document,"keydown",e=>{e.keyCode===27&&ge(X)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Ge(this.$el)||E(this.$el,"tabindex","-1"),w(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){v(X,this)&&X.splice(X.indexOf(this),1),X.length||h(document.body,"overflowY",""),h(this.$el,"zIndex",""),X.some(t=>t.clsPage===this.clsPage)||I(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&F(this.$el)!==this.container?(Tt(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,kn(this))},hide(){return this.toggleElement(this.$el,!1,kn(this))}}};function kn(t){let{transitionElement:e,_toggle:i}=t;return(n,s)=>new Promise((o,r)=>B(n,"show hide",()=>{n._reject&&n._reject(),n._reject=r,i(n,s);const a=B(e,"transitionstart",()=>{B(e,"transitionend transitioncancel",o,{self:!0}),clearTimeout(c)},{self:!0}),c=setTimeout(()=>{a(),o()},Ie(h(e,"transitionDuration")))})).then(()=>delete n._reject)}var xo={install:$o,mixins:[$n],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:".uk-modal-close, .uk-modal-close-default, .uk-modal-close-outside, .uk-modal-close-full"},events:[{name:"show",self:!0,handler(){k(this.panel,"uk-margin-auto-vertical")?$(this.$el,"uk-flex"):h(this.$el,"display","block"),M(this.$el)}},{name:"hidden",self:!0,handler(){h(this.$el,"display",""),I(this.$el,"uk-flex")}}]};function $o(t){let{modal:e}=t;e.dialog=function(n,s){const o=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+n+"</div> </div>",s);return o.show(),N(o.$el,"hidden",async()=>{await Promise.resolve(),o.$destroy(!0)},{self:!0}),o},e.alert=function(n,s){return i(o=>{let{labels:r}=o;return'<div class="uk-modal-body">'+(T(n)?n:Ce(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+r.ok+"</button> </div>"},s,o=>o.resolve())},e.confirm=function(n,s){return i(o=>{let{labels:r}=o;return'<form> <div class="uk-modal-body">'+(T(n)?n:Ce(n))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+r.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+r.ok+"</button> </div> </form>"},s,o=>o.reject())},e.prompt=function(n,s,o){return i(r=>{let{labels:a}=r;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(T(n)?n:Ce(n))+'</label> <input class="uk-input" value="'+(s||"")+'" autofocus> </div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+a.cancel+'</button> <button class="uk-button uk-button-primary">'+a.ok+"</button> </div> </form>"},o,r=>r.resolve(null),r=>w("input",r.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(n,s,o,r){s=O({bgClose:!1,escClose:!0,labels:e.labels},s);const a=e.dialog(n(s),s),c=new $i;let f=!1;return N(a.$el,"submit","form",d=>{d.preventDefault(),c.resolve(r==null?void 0:r(a)),f=!0,a.hide()}),N(a.$el,"hide",()=>!f&&o(c)),c.promise.dialog=a,c.promise}}var ko={extends:nn,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const Sn=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle";var So={mixins:[st,pi],props:{dropdown:String,mode:"list",align:String,offset:Number,boundary:Boolean,boundaryAlign:Boolean,clsDrop:String,delayShow:Number,delayHide:Number,dropbar:Boolean,dropbarMode:String,dropbarAnchor:Boolean,duration:Number},data:{dropdown:Sn,align:Xt?"right":"left",clsDrop:"uk-navbar-dropdown",mode:void 0,offset:void 0,delayShow:void 0,delayHide:void 0,boundaryAlign:void 0,flip:"x",boundary:!0,dropbar:!1,dropbarMode:"slide",dropbarAnchor:!1,duration:200,forceHeight:!0,selMinHeight:Sn,container:!1},computed:{boundary(t,e){let{boundary:i,boundaryAlign:n}=t;return i===!0||n?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return lt(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||lt(e,this.$el)||w("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=w("<div></div>"))):null},watch(t){$(t,"uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const n=P("."+i,e);if(this.dropContainer!==e)for(const o of P("."+i,this.dropContainer)){var s;const r=(s=this.getDropdown(o))==null?void 0:s.target;!v(n,o)&&r&&L(r,this.$el)&&n.push(o)}return n},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),O({},this.$props,{boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset}))},immediate:!0},toggles(t,e){let{dropdown:i}=t;return P(i,e)}},disconnected(){this.dropbar&&Dt(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&v(i.mode,"hover")&&i.target&&!L(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,n=this.getActive();i===Pt.DOWN&&Gt(e,"aria-expanded")&&(t.preventDefault(),!n||n.target!==e?(e.click(),B(this.dropContainer,"show",s=>{let{target:o}=s;return Cn(o)})):Cn(n.$el)),Tn(t,this.toggles,n)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!v(this.dropdowns,e))return;const n=this.getActive(),s=P($e,e),o=de(s,a=>D(a,":focus"));if(i===Pt.UP&&(t.preventDefault(),o>0&&s[o-1].focus()),i===Pt.DOWN&&(t.preventDefault(),o<s.length-1&&s[o+1].focus()),i===Pt.ESC){var r;n==null||(r=n.target)==null||r.focus()}Tn(t,this.toggles,n)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&v(t.mode,"hover")&&!this.dropdowns.some(e=>D(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(){F(this.dropbar)||Ee(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,dir:n}=e;!k(i,this.clsDrop)||(this.dropbarMode==="slide"&&$(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&$(i,this.clsDrop+"-dropbar"),n==="bottom"&&this.transitionTo(i.offsetHeight+b(h(i,"marginTop"))+b(h(i,"marginBottom")),i))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;const n=this.getActive();D(this.dropbar,":hover")&&(n==null?void 0:n.$el)===i&&!this.toggles.some(s=>n.target!==s&&D(s,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;if(!k(i,this.clsDrop))return;const n=this.getActive();(!n||(n==null?void 0:n.$el)===i)&&this.transitionTo(0)}}],methods:{getActive(){return z&&L(z.target,this.$el)&&z},transitionTo(t,e){const{dropbar:i}=this,n=_(i)?M(i):0;return e=n<t&&e,h(e,"clip","rect(0,"+e.offsetWidth+"px,"+n+"px,0)"),M(i,n),ft.cancel([e,i]),Promise.all([ft.start(i,{height:t},this.duration),ft.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(ut).then(()=>{h(e,{clip:""}),this.$update(i)})},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function Tn(t,e,i){const{current:n,keyCode:s}=t,o=(i==null?void 0:i.target)||n,r=e.indexOf(o);s===Pt.LEFT&&r>0&&(i==null||i.hide(!1),e[r-1].focus()),s===Pt.RIGHT&&r<e.length-1&&(i==null||i.hide(!1),e[r+1].focus()),s===Pt.TAB&&(o.focus(),i==null||i.hide(!1))}function Cn(t){if(!w(":focus",t)){var e;(e=w($e,t))==null||e.focus()}}const Pt={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var To={mixins:[$n],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1},computed:{clsFlip(t){let{flip:e,clsFlip:i}=t;return e?i:""},clsOverlay(t){let{overlay:e,clsOverlay:i}=t;return e?i:""},clsMode(t){let{mode:e,clsMode:i}=t;return i+"-"+e},clsSidebarAnimation(t){let{mode:e,clsSidebarAnimation:i}=t;return e==="none"||e==="reveal"?"":i},clsContainerAnimation(t){let{mode:e,clsContainerAnimation:i}=t;return e!=="push"&&e!=="reveal"?"":i},transitionElement(t){let{mode:e}=t;return e==="reveal"?F(this.panel):this.panel}},update:{read(){this.isToggled()&&!_(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&w(e,document.body)&&this.hide()}},{name:"touchstart",passive:!0,el(){return this.panel},handler(t){let{targetTouches:e}=t;e.length===1&&(this.clientY=e[0].clientY)}},{name:"touchmove",self:!0,passive:!1,filter(){return this.overlay},handler(t){t.cancelable&&t.preventDefault()}},{name:"touchmove",passive:!1,el(){return this.panel},handler(t){if(t.targetTouches.length!==1)return;const e=t.targetTouches[0].clientY-this.clientY,{scrollTop:i,scrollHeight:n,clientHeight:s}=this.panel;(s>=n||i===0&&e>0||n-i<=s&&e<0)&&t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!k(F(this.panel),this.clsMode)&&(Pe(this.panel,"<div>"),$(F(this.panel),this.clsMode)),h(document.documentElement,"overflowY",this.overlay?"hidden":""),$(document.body,this.clsContainer,this.clsFlip),h(document.body,"touch-action","pan-y pinch-zoom"),h(this.$el,"display","block"),$(this.$el,this.clsOverlay),$(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),M(document.body),$(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&Co()}},{name:"hide",self:!0,handler(){I(document.body,this.clsContainerAnimation),h(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&Eo(),this.mode==="reveal"&&Ae(this.panel),I(this.panel,this.clsSidebarAnimation,this.clsMode),I(this.$el,this.clsOverlay),h(this.$el,"display",""),I(document.body,this.clsContainer,this.clsFlip),h(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&bt(t.type,"Left")^this.flip&&this.hide()}}]};function Co(){En().content+=",user-scalable=0"}function Eo(){const t=En();t.content=t.content.replace(/,user-scalable=0$/,"")}function En(){return w('meta[name="viewport"]',document.head)||Tt(document.head,'<meta name="viewport">')}var Po={mixins:[st],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container(t,e){let{selContainer:i}=t;return U(e,i)},content(t,e){let{selContent:i}=t;return U(e,i)}},connected(){h(this.$el,"minHeight",this.minHeight)},update:{read(){return!this.content||!this.container||!_(this.$el)?!1:{current:b(h(this.$el,"maxHeight")),max:Math.max(this.minHeight,M(this.container)-(nt(this.content).height-M(this.$el)))}},write(t){let{current:e,max:i}=t;h(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&S(this.$el,"resize")},events:["resize"]}},Ao={props:["width","height"],connected(){$(this.$el,"uk-responsive-width")},update:{read(){return _(this.$el)&&this.width&&this.height?{width:ne(F(this.$el)),height:this.height}:!1},write(t){M(this.$el,me.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},_o={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&w(t)||document.body,S(this.$el,"beforescroll",[this,t])&&(await di(t,{offset:this.offset}),S(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+te(decodeURIComponent((this.$el.hash||"").substr(1)))))}}};const mt="_ukScrollspy";var No={args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}),computed:{elements:{get(t,e){let{target:i}=t;return i?P(i,e):[e]},watch(t){this.hidden&&h(Jt(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected(){for(const t of this.elements)I(t,this.inViewClass,t[mt]?t[mt].cls:""),delete t[mt]},update:[{read(t){if(!t.update)return Promise.resolve().then(()=>{this.$emit(),t.update=!0}),!1;for(const e of this.elements)e[mt]||(e[mt]={cls:Kt(e,"uk-scrollspy-class")||this.cls}),e[mt].show=oe(e,this.offsetTop,this.offsetLeft)},write(t){for(const e of this.elements){const i=e[mt];i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(n=>setTimeout(n,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}},events:["scroll","resize"]}],methods:{toggle(t,e){const i=t[mt];i.off&&i.off(),h(t,"visibility",!e&&this.hidden?"hidden":""),G(t,this.inViewClass,e),G(t,i.cls),/\buk-animation-/.test(i.cls)&&(i.off=B(t,"animationcancel animationend",()=>Te(t,"uk-animation-[\\w-]+"))),S(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}},Bo={props:{cls:String,closest:String,scroll:Boolean,overflow:Boolean,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,overflow:!0,offset:0},computed:{links:{get(t,e){return P('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets(){return P(this.links.map(t=>te(t.hash).substr(1)).join(","))},elements(t){let{closest:e}=t;return U(this.links,e||"*")}},update:[{read(){const{length:t}=this.targets;if(!t||!_(this.$el))return!1;const[e]=Ft(this.targets,/auto|scroll/,!0),{scrollTop:i,scrollHeight:n}=e,s=n-le(e);let o=!1;return i===s?o=t-1:(this.targets.every((r,a)=>{if(C(r).top-C(ae(e)).top-this.offset<=0)return o=a,!0}),o===!1&&this.overflow&&(o=0)),{active:o}},write(t){let{active:e}=t;const i=e!==!1&&!k(this.elements[e],this.cls);this.links.forEach(n=>n.blur()),I(this.elements,this.cls),$(this.elements[e],this.cls),i&&S(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},Mo={mixins:[st,mi],props:{position:String,top:null,bottom:Boolean,offset:String,animation:String,clsActive:String,clsInactive:String,clsFixed:String,clsBelow:String,selTarget:String,widthElement:Boolean,showOnUp:Boolean,targetOffset:Number},data:{position:"top",top:0,bottom:!1,offset:0,animation:"",clsActive:"uk-active",clsInactive:"",clsFixed:"uk-sticky-fixed",clsBelow:"uk-sticky-below",selTarget:"",widthElement:!1,showOnUp:!1,targetOffset:!1},computed:{position(t,e){let{position:i}=t;return i==="auto"?(this.isFixed?this.placeholder:e).offsetHeight>M(window)?"bottom":"top":i},offset(t,e){let{offset:i}=t;return this.position==="bottom"&&(i+="+100vh-100%"),pt(i,"height",e)},selTarget(t,e){let{selTarget:i}=t;return i&&w(i,e)||e},widthElement(t,e){let{widthElement:i}=t;return lt(i,e)||this.placeholder},isActive:{get(){return k(this.selTarget,this.clsActive)},set(t){t&&!this.isActive?(ei(this.selTarget,this.clsInactive,this.clsActive),S(this.$el,"active")):!t&&!k(this.selTarget,this.clsInactive)&&(ei(this.selTarget,this.clsActive,this.clsInactive),S(this.$el,"inactive"))}}},connected(){this.placeholder=w("+ .uk-sticky-placeholder",this.$el)||w('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected(){this.isFixed&&(this.hide(),I(this.selTarget,this.clsInactive)),Dt(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el(){return window},handler(){if(!(this.targetOffset!==!1&&location.hash&&re(window)>0))return;const t=w(location.hash);t&&R.read(()=>{const{top:e}=C(t),i=C(this.$el).top,n=this.$el.offsetHeight;this.isFixed&&i+n>=e&&i<=e+t.offsetHeight&&re(window,e-n-(yt(this.targetOffset)?this.targetOffset:0)-this.offset)})}}],update:[{read(t,e){let{height:i,margin:n}=t;if(this.inactive=!this.matchMedia||!_(this.$el),this.inactive)return!1;const s=this.isActive&&e.has("resize");s&&this.hide(),this.isActive||(i=this.$el.offsetHeight,n=h(this.$el,"margin")),s&&this.show();const o=Math.max(0,i+this.offset-M(window)),r=this.isFixed?this.placeholder:this.$el,a=C(r).top,c=C(r.offsetParent).top,f=Pn(this.top,this.$el,a),d=Pn(this.bottom,this.$el,a+i,!0),l=Math.max(f,a)-this.offset,u=d?d-this.$el.offsetHeight+o-this.offset:Lt(this.$el).scrollHeight-M(window);return{start:l,end:u,overflow:o,topOffset:a,offsetParentTop:c,height:i,margin:n,width:nt(_(this.widthElement)?this.widthElement:this.$el).width,top:ie(this.placeholder)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:n}=this;h(n,{height:e,margin:i}),L(n,document)||(Ee(this.$el,n),n.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:n,overflowScroll:s=0,start:o,end:r}=t;const a=re(window);return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,overflowScroll:$t(s+$t(a,o,r)-$t(e,o,r),0,n)}},write(t,e){const i=e.has("scroll"),{initTimestamp:n=0,dir:s,prevDir:o,scroll:r,prevScroll:a=0,top:c,start:f,topOffset:d,height:l}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const u=Date.now();if((u-n>300||s!==o)&&(t.initScroll=r,t.initTimestamp=u),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||r<f||this.showOnUp&&(r<=f||s==="down"&&i||s==="up"&&!this.isFixed&&r<=d+l)){if(!this.isFixed){it.inProgress(this.$el)&&c>r&&(it.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&r>d?(it.cancel(this.$el),it.out(this.$el,this.animation).then(()=>this.hide(),ut)):this.hide()}else this.isFixed?this.update():this.animation?(it.cancel(this.$el),this.show(),it.in(this.$el,this.animation).catch(ut)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.isActive=!1,I(this.$el,this.clsFixed,this.clsBelow),h(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){const{width:t,scroll:e=0,overflow:i,overflowScroll:n=0,start:s,end:o,topOffset:r,height:a,offsetParentTop:c}=this._data,f=s!==0||e>s;let d=this.offset,l="fixed";e>o&&(d=o+this.offset-c,l="absolute"),i&&(d-=n),h(this.$el,{position:l,top:d+"px",width:t}),this.isActive=f,G(this.$el,this.clsBelow,e>r+a),$(this.$el,this.clsFixed)}}};function Pn(t,e,i,n){if(!t)return 0;if(T(t)&&t.match(/^-?\d/))return i+pt(t);{const s=t===!0?F(e):lt(t,e);return C(s).bottom-(n&&s&&L(e,s)?b(h(s,"paddingBottom")):0)}}var An={mixins:[Ct],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,swiping:!0,cls:"uk-active",attrItem:"uk-switcher-item"},computed:{connects:{get(t,e){let{connect:i}=t;return Qt(i,e)},watch(t){this.swiping&&h(t,"touch-action","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>St(i).forEach((n,s)=>G(n,this.cls,s===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return P(i,e).filter(n=>!D(n,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return St(this.$el).filter(t=>this.toggles.some(e=>L(e,t)))}},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?Qt(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(Kt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(bt(e,"Left")?"next":"previous")}}],methods:{index(){return de(this.children,t=>k(t,this.cls))},show(t){const e=this.index(),i=ve(this.children[ve(t,this.toggles,e)],St(this.$el));e!==i&&(this.children.forEach((n,s)=>{G(n,this.cls,i===s),E(this.toggles[s],"aria-expanded",i===s)}),this.connects.forEach(async n=>{let{children:s}=n;await this.toggleElement(y(s).filter(o=>k(o,this.cls)),!1,e>=0),await this.toggleElement(s[i],!0,e>=0)}))}}},Ho={mixins:[st],extends:An,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=k(this.$el,"uk-tab-left")?"uk-tab-left":k(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Oo=32;var Do={mixins:[mi,Ct],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected(){!v(this.mode,"media")&&!Ge(this.$el)&&E(this.$el,"tabindex","0")},computed:{target:{get(t,e){let{href:i,target:n}=t;return n=Qt(n||i,e),n.length&&n||[e]},watch(){this.updateAria()},immediate:!0}},events:[{name:Mt,filter(){return v(this.mode,"hover")},handler(t){!Ot(t)||this._showState||(S(this.$el,"focus"),B(document,Mt,()=>S(this.$el,"blur"),!0,e=>!L(e.target,this.$el)),v(this.mode,"click")&&(this._preventClick=!0))}},{name:we+" "+be+" focus blur",filter(){return v(this.mode,"hover")},handler(t){if(Ot(t))return;const e=v([we,"focus"],t.type),i=E(this.$el,"aria-expanded");if(!(!e&&(t.type===be&&D(this.$el,":focus")||t.type==="blur"&&D(this.$el,":hover")))){if(this._showState&&e===(i!==this._showState)){e||(this._showState=null);return}this._showState=e?i:null,this.toggle("toggle"+(e?"show":"hide"))}}},{name:"keydown",filter(){return v(this.mode,"click")&&this.$el.tagName!=="INPUT"},handler(t){t.keyCode===Oo&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return v(this.mode,"click")},handler(t){if(this._preventClick)return this._preventClick=null;let e;(U(t.target,'a[href="#"], a[href=""]')||(e=U(t.target,"a[href]"))&&(E(this.$el,"aria-expanded")!=="true"||e.hash&&D(this.target,e.hash)))&&t.preventDefault(),this.toggle()}},{name:"toggled",self:!0,el(){return this.target},handler(t,e){t.target===this.target[0]&&this.updateAria(e)}}],update:{read(){return v(this.mode,"media")&&this.media?{match:this.matchMedia}:!1},write(t){let{match:e}=t;const i=this.isToggled(this.target);(e?!i:i)&&this.toggle()},events:["resize"]},methods:{async toggle(t){if(!S(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(n=>k(n,this.clsLeave));if(e.length){for(const n of this.target){const s=v(e,n);this.toggleElement(n,s,s)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(n=>!v(i,n)),!0)},updateAria(t){v(this.mode,"media")||E(this.$el,"aria-expanded",pe(t)?t:this.isToggled(this.target))}}},zo=Object.freeze({__proto__:null,Accordion:nn,Alert:$s,Cover:ks,Drop:on,Dropdown:on,FormCustom:Es,Gif:Ps,Grid:_s,HeightMatch:Hs,HeightViewport:Ds,Icon:mn,Img:uo,Leader:yo,Margin:rn,Modal:xo,Nav:ko,Navbar:So,Offcanvas:To,OverflowAuto:Po,Responsive:Ao,Scroll:_o,Scrollspy:No,ScrollspyNav:Bo,Sticky:Mo,Svg:un,Switcher:An,Tab:Ho,Toggle:Do,Video:sn,Close:ro,Spinner:ao,SlidenavNext:vn,SlidenavPrevious:vn,SearchIcon:oo,Marker:ot,NavbarToggleIcon:ot,OverlayIcon:ot,PaginationNext:ot,PaginationPrevious:ot,Totop:ot});return Q(zo,(t,e)=>K.component(e,t)),K.use(ws),ys(K),K});
|
package/dist/js/uikit-icons.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.11.2-dev.
|
|
1
|
+
/*! UIkit 3.11.2-dev.3dfa2c50b | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
@@ -7,12 +7,11 @@
|
|
|
7
7
|
})(this, (function () { 'use strict';
|
|
8
8
|
|
|
9
9
|
function plugin(UIkit) {
|
|
10
|
+
if (plugin.installed) {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
10
13
|
|
|
11
|
-
|
|
12
|
-
return;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
UIkit.icon.add({
|
|
14
|
+
UIkit.icon.add({
|
|
16
15
|
"500px": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.624,11.866c-0.141,0.132,0.479,0.658,0.662,0.418c0.051-0.046,0.607-0.61,0.662-0.664c0,0,0.738,0.719,0.814,0.719 c0.1,0,0.207-0.055,0.322-0.17c0.27-0.269,0.135-0.416,0.066-0.495l-0.631-0.616l0.658-0.668c0.146-0.156,0.021-0.314-0.1-0.449 c-0.182-0.18-0.359-0.226-0.471-0.125l-0.656,0.654l-0.654-0.654c-0.033-0.034-0.08-0.045-0.124-0.045 c-0.079,0-0.191,0.068-0.307,0.181c-0.202,0.202-0.247,0.351-0.133,0.462l0.665,0.665L9.624,11.866z\"/><path d=\"M11.066,2.884c-1.061,0-2.185,0.248-3.011,0.604c-0.087,0.034-0.141,0.106-0.15,0.205C7.893,3.784,7.919,3.909,7.982,4.066 c0.05,0.136,0.187,0.474,0.452,0.372c0.844-0.326,1.779-0.507,2.633-0.507c0.963,0,1.9,0.191,2.781,0.564 c0.695,0.292,1.357,0.719,2.078,1.34c0.051,0.044,0.105,0.068,0.164,0.068c0.143,0,0.273-0.137,0.389-0.271 c0.191-0.214,0.324-0.395,0.135-0.575c-0.686-0.654-1.436-1.138-2.363-1.533C13.24,3.097,12.168,2.884,11.066,2.884z\"/><path d=\"M16.43,15.747c-0.092-0.028-0.242,0.05-0.309,0.119l0,0c-0.652,0.652-1.42,1.169-2.268,1.521 c-0.877,0.371-1.814,0.551-2.779,0.551c-0.961,0-1.896-0.189-2.775-0.564c-0.848-0.36-1.612-0.879-2.268-1.53 c-0.682-0.688-1.196-1.455-1.529-2.268c-0.325-0.799-0.471-1.643-0.471-1.643c-0.045-0.24-0.258-0.249-0.567-0.203 c-0.128,0.021-0.519,0.079-0.483,0.36v0.01c0.105,0.644,0.289,1.284,0.545,1.895c0.417,0.969,1.002,1.849,1.756,2.604 c0.757,0.754,1.636,1.34,2.604,1.757C8.901,18.785,9.97,19,11.088,19c1.104,0,2.186-0.215,3.188-0.645 c1.838-0.896,2.604-1.757,2.604-1.757c0.182-0.204,0.227-0.317-0.1-0.643C16.779,15.956,16.525,15.774,16.43,15.747z\"/><path d=\"M5.633,13.287c0.293,0.71,0.723,1.341,1.262,1.882c0.54,0.54,1.172,0.971,1.882,1.264c0.731,0.303,1.509,0.461,2.298,0.461 c0.801,0,1.578-0.158,2.297-0.461c0.711-0.293,1.344-0.724,1.883-1.264c0.543-0.541,0.971-1.172,1.264-1.882 c0.314-0.721,0.463-1.5,0.463-2.298c0-0.79-0.148-1.569-0.463-2.289c-0.293-0.699-0.721-1.329-1.264-1.881 c-0.539-0.541-1.172-0.959-1.867-1.263c-0.721-0.303-1.5-0.461-2.299-0.461c-0.802,0-1.613,0.159-2.322,0.461 c-0.577,0.25-1.544,0.867-2.119,1.454v0.012V2.108h8.16C15.1,2.104,15.1,1.69,15.1,1.552C15.1,1.417,15.1,1,14.809,1H5.915 C5.676,1,5.527,1.192,5.527,1.384v6.84c0,0.214,0.273,0.372,0.529,0.428c0.5,0.105,0.614-0.056,0.737-0.224l0,0 c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607 c0.452,0.137,0.743,0.157,1.129,0.157c1.973,0,3.572-1.6,3.572-3.57c0-1.964-1.6-3.552-3.572-3.552c-0.97,0-1.872,0.36-2.546,1.038 c-0.656,0.631-1.027,1.487-1.027,2.322v3.438v-0.011c-0.372-0.42-0.732-1.041-0.981-1.682c-0.102-0.248-0.315-0.202-0.607-0.113 c-0.135,0.035-0.519,0.157-0.44,0.439C5.372,12.799,5.577,13.164,5.633,13.287z\"/></svg>",
|
|
17
16
|
"album": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"5\" y=\"2\" width=\"10\" height=\"1\"/><rect x=\"3\" y=\"4\" width=\"14\" height=\"1\"/><rect fill=\"none\" stroke=\"#000\" x=\"1.5\" y=\"6.5\" width=\"17\" height=\"11\"/></svg>",
|
|
18
17
|
"arrow-down": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"10.5,16.08 5.63,10.66 6.37,10 10.5,14.58 14.63,10 15.37,10.66\"/><line fill=\"none\" stroke=\"#000\" x1=\"10.5\" y1=\"4\" x2=\"10.5\" y2=\"15\"/></svg>",
|
|
@@ -156,13 +155,12 @@
|
|
|
156
155
|
"world": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path fill=\"none\" stroke=\"#000\" d=\"M1,10.5 L19,10.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M2.35,15.5 L17.65,15.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M2.35,5.5 L17.523,5.5\"/><path fill=\"none\" stroke=\"#000\" d=\"M10,19.46 L9.98,19.46 C7.31,17.33 5.61,14.141 5.61,10.58 C5.61,7.02 7.33,3.83 10,1.7 C10.01,1.7 9.99,1.7 10,1.7 L10,1.7 C12.67,3.83 14.4,7.02 14.4,10.58 C14.4,14.141 12.67,17.33 10,19.46 L10,19.46 L10,19.46 L10,19.46 Z\"/><circle fill=\"none\" stroke=\"#000\" cx=\"10\" cy=\"10.5\" r=\"9\"/></svg>",
|
|
157
156
|
"xing": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.4,4.56 C4.24,4.56 4.11,4.61 4.05,4.72 C3.98,4.83 3.99,4.97 4.07,5.12 L5.82,8.16 L5.82,8.17 L3.06,13.04 C2.99,13.18 2.99,13.33 3.06,13.44 C3.12,13.55 3.24,13.62 3.4,13.62 L6,13.62 C6.39,13.62 6.57,13.36 6.71,13.12 C6.71,13.12 9.41,8.35 9.51,8.16 C9.49,8.14 7.72,5.04 7.72,5.04 C7.58,4.81 7.39,4.56 6.99,4.56 L4.4,4.56 L4.4,4.56 Z\"/><path d=\"M15.3,1 C14.91,1 14.74,1.25 14.6,1.5 C14.6,1.5 9.01,11.42 8.82,11.74 C8.83,11.76 12.51,18.51 12.51,18.51 C12.64,18.74 12.84,19 13.23,19 L15.82,19 C15.98,19 16.1,18.94 16.16,18.83 C16.23,18.72 16.23,18.57 16.16,18.43 L12.5,11.74 L12.5,11.72 L18.25,1.56 C18.32,1.42 18.32,1.27 18.25,1.16 C18.21,1.06 18.08,1 17.93,1 L15.3,1 L15.3,1 Z\"/></svg>",
|
|
158
157
|
"yelp": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.175,14.971c-0.112,0.77-1.686,2.767-2.406,3.054c-0.246,0.1-0.487,0.076-0.675-0.069\tc-0.122-0.096-2.446-3.859-2.446-3.859c-0.194-0.293-0.157-0.682,0.083-0.978c0.234-0.284,0.581-0.393,0.881-0.276\tc0.016,0.01,4.21,1.394,4.332,1.482c0.178,0.148,0.263,0.379,0.225,0.646L17.175,14.971L17.175,14.971z M11.464,10.789\tc-0.203-0.307-0.199-0.666,0.009-0.916c0,0,2.625-3.574,2.745-3.657c0.203-0.135,0.452-0.141,0.69-0.025\tc0.691,0.335,2.085,2.405,2.167,3.199v0.027c0.024,0.271-0.082,0.491-0.273,0.623c-0.132,0.083-4.43,1.155-4.43,1.155\tc-0.322,0.096-0.68-0.06-0.882-0.381L11.464,10.789z M9.475,9.563C9.32,9.609,8.848,9.757,8.269,8.817c0,0-3.916-6.16-4.007-6.351\tc-0.057-0.212,0.011-0.455,0.202-0.65C5.047,1.211,8.21,0.327,9.037,0.529c0.27,0.069,0.457,0.238,0.522,0.479\tc0.047,0.266,0.433,5.982,0.488,7.264C10.098,9.368,9.629,9.517,9.475,9.563z M9.927,19.066c-0.083,0.225-0.273,0.373-0.54,0.421\tc-0.762,0.13-3.15-0.751-3.647-1.342c-0.096-0.131-0.155-0.262-0.167-0.394c-0.011-0.095,0-0.189,0.036-0.272\tc0.061-0.155,2.917-3.538,2.917-3.538c0.214-0.272,0.595-0.355,0.952-0.213c0.345,0.13,0.56,0.428,0.536,0.749\tC10.014,14.479,9.977,18.923,9.927,19.066z M3.495,13.912c-0.235-0.009-0.444-0.148-0.568-0.382c-0.089-0.17-0.151-0.453-0.19-0.794\tC2.63,11.701,2.761,10.144,3.07,9.648c0.145-0.226,0.357-0.345,0.592-0.336c0.154,0,4.255,1.667,4.255,1.667\tc0.321,0.118,0.521,0.453,0.5,0.833c-0.023,0.37-0.236,0.655-0.551,0.738L3.495,13.912z\"/></svg>",
|
|
159
|
-
"youtube": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z\"/></svg>"
|
|
160
|
-
});
|
|
158
|
+
"youtube": "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M15,4.1c1,0.1,2.3,0,3,0.8c0.8,0.8,0.9,2.1,0.9,3.1C19,9.2,19,10.9,19,12c-0.1,1.1,0,2.4-0.5,3.4c-0.5,1.1-1.4,1.5-2.5,1.6 c-1.2,0.1-8.6,0.1-11,0c-1.1-0.1-2.4-0.1-3.2-1c-0.7-0.8-0.7-2-0.8-3C1,11.8,1,10.1,1,8.9c0-1.1,0-2.4,0.5-3.4C2,4.5,3,4.3,4.1,4.2 C5.3,4.1,12.6,4,15,4.1z M8,7.5v6l5.5-3L8,7.5z\"/></svg>" });
|
|
161
159
|
|
|
162
160
|
}
|
|
163
161
|
|
|
164
162
|
if (typeof window !== 'undefined' && window.UIkit) {
|
|
165
|
-
|
|
163
|
+
window.UIkit.use(plugin);
|
|
166
164
|
}
|
|
167
165
|
|
|
168
166
|
return plugin;
|