uikit 3.11.2-dev.3dfa2c50b → 3.11.2-dev.45194f70c
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/CHANGELOG.md +40 -19
- package/dist/css/uikit-core-rtl.css +86 -185
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +86 -185
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +88 -191
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +88 -191
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +3 -3
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +6 -8
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +29 -68
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +30 -70
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +115 -78
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +115 -78
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +79 -58
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +115 -78
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +35 -29
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +5 -7
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +2 -2
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +408 -326
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +646 -528
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/api/component.js +2 -11
- package/src/js/api/hooks.js +3 -3
- package/src/js/api/state.js +34 -1
- package/src/js/components/countdown.js +2 -2
- package/src/js/components/filter.js +2 -3
- package/src/js/components/internal/lightbox-animations.js +4 -3
- package/src/js/components/internal/slider-preload.js +18 -0
- package/src/js/components/internal/slideshow-animations.js +4 -3
- package/src/js/components/lightbox-panel.js +34 -58
- package/src/js/components/lightbox.js +1 -2
- package/src/js/components/slider.js +60 -43
- package/src/js/components/slideshow.js +8 -1
- package/src/js/components/sortable.js +1 -1
- package/src/js/core/accordion.js +6 -1
- package/src/js/core/alert.js +1 -2
- package/src/js/core/core.js +2 -21
- package/src/js/core/cover.js +5 -1
- package/src/js/core/drop.js +3 -1
- package/src/js/core/form-custom.js +2 -2
- package/src/js/core/height-viewport.js +3 -0
- package/src/js/core/icon.js +13 -6
- package/src/js/core/img.js +131 -122
- package/src/js/core/modal.js +1 -2
- package/src/js/core/navbar.js +3 -3
- package/src/js/core/sticky.js +51 -57
- package/src/js/core/svg.js +10 -6
- package/src/js/core/switcher.js +6 -1
- package/src/js/core/toggle.js +5 -2
- package/src/js/core/video.js +13 -1
- package/src/js/mixin/internal/animate-slide.js +9 -12
- package/src/js/mixin/lazyload.js +16 -0
- package/src/js/mixin/parallax.js +116 -79
- package/src/js/mixin/slider.js +8 -22
- package/src/js/mixin/slideshow.js +2 -6
- package/src/js/mixin/togglable.js +1 -2
- package/src/js/util/ajax.js +15 -14
- package/src/js/util/animation.js +7 -12
- package/src/js/util/dimensions.js +4 -4
- package/src/js/util/dom.js +37 -31
- package/src/js/util/index.js +1 -0
- package/src/js/util/lang.js +7 -6
- package/src/js/util/observer.js +36 -0
- package/src/js/util/options.js +2 -11
- package/src/js/util/player.js +5 -4
- package/src/js/util/selector.js +12 -18
- package/src/js/util/style.js +4 -4
- package/src/less/components/base.less +10 -33
- package/src/less/components/form-range.less +48 -95
- package/src/less/components/form.less +0 -1
- package/src/less/components/height.less +3 -0
- package/src/less/components/leader.less +0 -1
- package/src/less/components/lightbox.less +0 -1
- package/src/less/components/modal.less +3 -7
- package/src/less/components/progress.less +14 -36
- package/src/less/components/slider.less +0 -3
- package/src/less/components/slideshow.less +0 -3
- package/src/less/components/text.less +16 -32
- package/src/scss/components/base.scss +10 -33
- package/src/scss/components/form-range.scss +48 -95
- package/src/scss/components/form.scss +0 -1
- package/src/scss/components/height.scss +3 -0
- package/src/scss/components/leader.scss +0 -1
- package/src/scss/components/lightbox.scss +0 -1
- package/src/scss/components/modal.scss +3 -7
- package/src/scss/components/progress.scss +14 -36
- package/src/scss/components/slider.scss +0 -3
- package/src/scss/components/slideshow.scss +0 -3
- package/src/scss/components/text.scss +16 -32
- package/src/scss/mixins-theme.scss +1 -1
- package/src/scss/mixins.scss +1 -1
- package/src/scss/variables-theme.scss +3 -3
- package/src/scss/variables.scss +3 -3
- package/tests/align.html +10 -10
- package/tests/animation.html +2 -2
- package/tests/article.html +2 -2
- package/tests/base.html +3 -3
- package/tests/card.html +10 -10
- package/tests/column.html +3 -3
- package/tests/comment.html +9 -9
- package/tests/dotnav.html +3 -3
- package/tests/image.html +296 -64
- package/tests/images/image-type.avif +0 -0
- package/tests/images/image-type.jpeg +0 -0
- package/tests/images/image-type.webp +0 -0
- package/tests/index.html +8 -8
- package/tests/lightbox.html +10 -10
- package/tests/marker.html +2 -2
- package/tests/modal.html +8 -9
- package/tests/navbar.html +2 -2
- package/tests/overlay.html +7 -7
- package/tests/parallax.html +16 -7
- package/tests/position.html +12 -12
- package/tests/slidenav.html +12 -12
- package/tests/slider.html +20 -20
- package/tests/sortable.html +1 -1
- package/tests/sticky-parallax.html +56 -71
- package/tests/svg.html +6 -6
- package/tests/table.html +11 -11
- package/tests/thumbnav.html +12 -12
- package/tests/transition.html +30 -30
- package/tests/utility.html +50 -33
- package/tests/video.html +1 -1
- package/tests/width.html +1 -1
- package/src/js/util/promise.js +0 -0
- package/tests/images/animated.gif +0 -0
package/dist/js/uikit.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! UIkit 3.11.2-dev.3dfa2c50b | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(de,fe){typeof exports=="object"&&typeof module<"u"?module.exports=fe():typeof define=="function"&&define.amd?define("uikit",fe):(de=typeof globalThis<"u"?globalThis:de||self,de.UIkit=fe())})(this,function(){"use strict";const{hasOwnProperty:de,toString:fe}=Object.prototype;function Nt(t,e){return de.call(t,e)}const zn=/\B([A-Z])/g,Mt=lt(t=>t.replace(zn,"-$1").toLowerCase()),Hn=/-(\w)/g,Vt=lt(t=>t.replace(Hn,ts)),ge=lt(t=>t.length?ts(null,t.charAt(0))+t.slice(1):"");function ts(t,e){return e?e.toUpperCase():""}function at(t,e){return t.startsWith(e)}function St(t,e){return t.endsWith(e)}function x(t,e){return t&&t.includes(e)}function Tt(t,e){return t.findIndex(e)}const{isArray:ht,from:On}=Array,{assign:k}=Object;function xt(t){return typeof t=="function"}function Ct(t){return t!==null&&typeof t=="object"}function It(t){return fe.call(t)==="[object Object]"}function pe(t){return Ct(t)&&t===t.window}function me(t){return wi(t)===9}function vi(t){return wi(t)>=1}function Dt(t){return wi(t)===1}function wi(t){return!pe(t)&&Ct(t)&&t.nodeType}function Le(t){return typeof t=="boolean"}function B(t){return typeof t=="string"}function Yt(t){return typeof t=="number"}function Bt(t){return Yt(t)||B(t)&&!isNaN(t-parseFloat(t))}function ve(t){return!(ht(t)?t.length:Ct(t)?Object.keys(t).length:!1)}function G(t){return t===void 0}function bi(t){return Le(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Pt(t){const e=Number(t);return isNaN(e)?!1:e}function y(t){return parseFloat(t)||0}function K(t){return S(t)[0]}function S(t){return t&&(vi(t)?[t]:Array.from(t).filter(vi))||[]}function zt(t){return pe(t)?t:(t=K(t),t?(me(t)?t:t.ownerDocument).defaultView:window)}function xi(t){return t?St(t,"ms")?y(t):y(t)*1e3:0}function We(t,e){return t===e||Ct(t)&&Ct(e)&&Object.keys(t).length===Object.keys(e).length&&it(t,(i,s)=>i===e[s])}function yi(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),s=>s===e?i:e)}function we(t){return t[t.length-1]}function it(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function be(t,e){return t.slice().sort((i,s)=>{let{[e]:n=0}=i,{[e]:r=0}=s;return n>r?1:r>n?-1:0})}function es(t,e){const i=new Set;return t.filter(s=>{let{[e]:n}=s;return i.has(n)?!1:i.add(n)})}function rt(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Pt(t)||0,e),i)}function _(){}function is(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(s=>{let[n,r]=s;return Math.min(...e.map(o=>{let{[n]:a}=o;return a}))-Math.max(...e.map(o=>{let{[r]:a}=o;return a}))>0})}function Re(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}const Gt={ratio(t,e,i){const s=e==="width"?"height":"width";return{[s]:t[e]?Math.round(i*t[s]/t[e]):t[s],[e]:i}},contain(t,e){return t=k({},t),it(t,(i,s)=>t=t[s]>e[s]?this.ratio(t,s,e[s]):t),t},cover(t,e){return t=this.contain(t,e),it(t,(i,s)=>t=t[s]<e[s]?this.ratio(t,s,e[s]):t),t}};function Kt(t,e,i,s){i===void 0&&(i=0),s===void 0&&(s=!1),e=S(e);const{length:n}=e;return n?(t=Bt(t)?Pt(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(K(t)),s?rt(t,0,n-1):(t%=n,t<0?t+n:t)):-1}function lt(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class je{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function I(t,e,i){if(Ct(e)){for(const n in e)I(t,n,e[n]);return}if(G(i)){var s;return(s=K(t))==null?void 0:s.getAttribute(e)}else for(const n of S(t))xt(i)&&(i=i.call(n,I(n,e))),i===null?$i(n,e):n.setAttribute(e,i)}function Xt(t,e){return S(t).some(i=>i.hasAttribute(e))}function $i(t,e){const i=S(t);for(const s of e.split(" "))for(const n of i)n.removeAttribute(s)}function ct(t,e){for(const i of[e,"data-"+e])if(Xt(t,i))return I(t,i)}const Ht=typeof window<"u",Z=Ht&&I(document.documentElement,"dir")==="rtl",Ot=Ht&&"ontouchstart"in window,Jt=Ht&&window.PointerEvent,ut=Jt?"pointerdown":Ot?"touchstart":"mousedown",Zt=Jt?"pointermove":Ot?"touchmove":"mousemove",mt=Jt?"pointerup":Ot?"touchend":"mouseup",Ft=Jt?"pointerenter":Ot?"":"mouseenter",Qt=Jt?"pointerleave":Ot?"":"mouseleave",Ut=Jt?"pointercancel":"touchcancel",Fn={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 ki(t){return S(t).some(e=>Fn[e.tagName.toLowerCase()])}function F(t){return S(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const xe="input,select,textarea,button";function Si(t){return S(t).some(e=>L(e,xe))}const qe=xe+",a[href],[tabindex]";function Ve(t){return L(t,qe)}function M(t){return t=K(t),t&&Dt(t.parentNode)&&t.parentNode}function ye(t,e){return S(t).filter(i=>L(i,e))}function L(t,e){return S(t).some(i=>i.matches(e))}function ot(t,e){return at(e,">")&&(e=e.slice(1)),Dt(t)?t.closest(e):S(t).map(i=>ot(i,e)).filter(Boolean)}function W(t,e){return B(e)?L(t,e)||!!ot(t,e):t===e||K(e).contains(K(t))}function $e(t,e){const i=[];for(;t=M(t);)(!e||L(t,e))&&i.push(t);return i}function R(t,e){t=K(t);const i=t?S(t.children):[];return e?ye(i,e):i}function te(t,e){return e?S(t).indexOf(K(e)):R(M(t)).indexOf(t)}function gt(t,e){return Ti(t,ss(t,e))}function ke(t,e){return Se(t,ss(t,e))}function ss(t,e){return e===void 0&&(e=document),B(t)&&rs(t)||me(e)?e:e.ownerDocument}function Ti(t,e){return K(ns(t,e,"querySelector"))}function Se(t,e){return S(ns(t,e,"querySelectorAll"))}function ns(t,e,i){if(e===void 0&&(e=document),!t||!B(t))return t;t=t.replace(Wn,"$1 *"),rs(t)&&(t=jn(t).map(s=>{let n=e;if(s[0]==="!"){const r=s.substr(1).trim().split(" ");n=ot(M(e),r[0]),s=r.slice(1).join(" ").trim()}if(s[0]==="-"){const r=s.substr(1).trim().split(" "),o=(n||e).previousElementSibling;n=L(o,s.substr(1))?o:null,s=r.slice(1).join(" ")}return n?qn(n)+" "+s:null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch{return null}}const Ln=/(^|[^\\],)\s*[!>+~-]/,Wn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,rs=lt(t=>t.match(Ln)),Rn=/.*?[^\\](?:,|$)/g,jn=lt(t=>t.match(Rn).map(e=>e.replace(/,$/,"").trim()));function qn(t){const e=[];for(;t.parentNode;){const i=I(t,"id");if(i){e.unshift("#"+Te(i));break}else{let{tagName:s}=t;s!=="HTML"&&(s+=":nth-child("+(te(t)+1)+")"),e.unshift(s),t=t.parentNode}}return e.join(" > ")}const Vn=Ht&&window.CSS&&CSS.escape||function(t){return t.replace(/([^\x7f-\uFFFF\w-])/g,e=>"\\"+e)};function Te(t){return B(t)?Vn.call(null,t):""}function P(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,r,o,a=!1]=Ci(e);o.length>1&&(o=Gn(o)),a!=null&&a.self&&(o=Kn(o)),r&&(o=Yn(r,o));for(const l of n)for(const u of s)u.addEventListener(l,o,a);return()=>ee(s,n,o,a)}function ee(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,,r,o=!1]=Ci(e);for(const a of n)for(const l of s)l.removeEventListener(a,r,o)}function V(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[s,n,r,o,a=!1,l]=Ci(e),u=P(s,n,r,f=>{const h=!l||l(f);h&&(u(),o(f,h))},a);return u}function p(t,e,i){return Ii(t).every(s=>s.dispatchEvent(Ce(e,!0,!0,i)))}function Ce(t,e,i,s){return e===void 0&&(e=!0),i===void 0&&(i=!1),B(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:s})),t}function Ci(t){return t[0]=Ii(t[0]),B(t[1])&&(t[1]=t[1].split(" ")),xt(t[2])&&t.splice(2,0,!1),t}function Yn(t,e){return i=>{const s=t[0]===">"?Se(t,i.currentTarget).reverse().filter(n=>W(i.target,n))[0]:ot(i.target,t);s&&(i.current=s,e.call(this,i))}}function Gn(t){return e=>ht(e.detail)?t(e,...e.detail):t(e)}function Kn(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function os(t){return t&&"addEventListener"in t}function Xn(t){return os(t)?t:K(t)}function Ii(t){return ht(t)?t.map(Xn).filter(Boolean):B(t)?Se(t):os(t)?[t]:S(t)}function yt(t){return t.pointerType==="touch"||!!t.touches}function ie(t){var e,i;const{clientX:s,clientY:n}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:s,y:n}}function as(t,e){const i=k({data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:_,responseType:""},e);return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>Jn(t,i))}function Jn(t,e){return new Promise((i,s)=>{const{xhr:n}=e;for(const r in e)if(r in n)try{n[r]=e[r]}catch{}n.open(e.method.toUpperCase(),t);for(const r in e.headers)n.setRequestHeader(r,e.headers[r]);P(n,"load",()=>{n.status===0||n.status>=200&&n.status<300||n.status===304?i(n):s(k(Error(n.statusText),{xhr:n,status:n.status}))}),P(n,"error",()=>s(k(Error("Network Error"),{xhr:n}))),P(n,"timeout",()=>s(k(Error("Network Timeout"),{xhr:n}))),n.send(e.data)})}function Pi(t,e,i){return new Promise((s,n)=>{const r=new Image;r.onerror=o=>n(o),r.onload=()=>s(r),i&&(r.sizes=i),e&&(r.srcset=e),r.src=t})}const Zn={"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 c(t,e,i,s){return s===void 0&&(s=""),S(t).map(n=>{if(B(e)){if(e=Ye(e),G(i))return Qn(n,e);!i&&!Yt(i)?n.style.removeProperty(e):n.style.setProperty(e,Bt(i)&&!Zn[e]?i+"px":i,s)}else if(ht(e)){const r=Ai(n),o={};for(const a of e)o[a]=r[Ye(a)];return o}else Ct(e)&&(s=i,it(e,(r,o)=>c(n,o,r,s)));return n})[0]}function Ai(t,e){return zt(t).getComputedStyle(t,e)}function Qn(t,e,i){return Ai(t,i)[e]}const Un=/^\s*(["'])?(.*?)\1\s*$/;function Ei(t){return Ai(document.documentElement).getPropertyValue("--uk-"+t).replace(Un,"$2")}const Ye=lt(t=>tr(t)),hs=["webkit","moz","ms"];function tr(t){t=Mt(t);const{style:e}=document.documentElement;if(t in e)return t;let i=hs.length,s;for(;i--;)if(s="-"+hs[i]+"-"+t,s in e)return s}function $(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];ls(t,i,"add")}function N(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];ls(t,i,"remove")}function Ge(t,e){I(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function _i(t){(arguments.length<=1?void 0:arguments[1])&&N(t,arguments.length<=1?void 0:arguments[1]),(arguments.length<=2?void 0:arguments[2])&&$(t,arguments.length<=2?void 0:arguments[2])}function T(t,e){[e]=Ni(e);for(const i of S(t))if(e&&i.classList.contains(e))return!0;return!1}function Y(t,e,i){const s=Ni(e);G(i)||(i=!!i);for(const n of S(t))for(const r of s)n.classList.toggle(r,i)}function ls(t,e,i){e=e.reduce((s,n)=>s.concat(Ni(n)),[]);for(const s of S(t))s.classList[i](...e)}function Ni(t){return String(t).split(/\s|,/).filter(Boolean)}function cs(t,e,i,s){return i===void 0&&(i=400),s===void 0&&(s="linear"),Promise.all(S(t).map(n=>new Promise((r,o)=>{for(const l in e){const u=c(n,l);u===""&&c(n,l,u)}const a=setTimeout(()=>p(n,"transitionend"),i);V(n,"transitionend transitioncanceled",l=>{let{type:u}=l;clearTimeout(a),N(n,"uk-transition"),c(n,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),u==="transitioncanceled"?o():r(n)},{self:!0}),$(n,"uk-transition"),c(n,k({transitionProperty:Object.keys(e).map(Ye).join(","),transitionDuration:i+"ms",transitionTimingFunction:s},e))})))}const A={start:cs,stop(t){return p(t,"transitionend"),Promise.resolve()},cancel(t){p(t,"transitioncanceled")},inProgress(t){return T(t,"uk-transition")}},Ie="uk-animation-";function Mi(t,e,i,s,n){return i===void 0&&(i=200),Promise.all(S(t).map(r=>new Promise((o,a)=>{p(r,"animationcanceled");const l=setTimeout(()=>p(r,"animationend"),i);V(r,"animationend animationcanceled",u=>{let{type:f}=u;clearTimeout(l),f==="animationcanceled"?a():o(r),c(r,"animationDuration",""),Ge(r,Ie+"\\S*")},{self:!0}),c(r,"animationDuration",i+"ms"),$(r,e,Ie+(n?"leave":"enter")),at(e,Ie)&&(s&&$(r,"uk-transform-origin-"+s),n&&$(r,Ie+"reverse"))})))}const er=new RegExp(Ie+"(enter|leave)"),vt={in:Mi,out(t,e,i,s){return Mi(t,e,i,s,!0)},inProgress(t){return er.test(I(t,"class"))},cancel(t){p(t,"animationcanceled")}},At={width:["left","right"],height:["top","bottom"]};function C(t){const e=Dt(t)?K(t).getBoundingClientRect():{height:z(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 D(t,e){const i=C(t);if(t){const{pageYOffset:n,pageXOffset:r}=zt(t),o={height:n,width:r};for(const a in At)for(const l in At[a])i[At[a][l]]+=o[a]}if(!e)return i;const s=c(t,"position");it(c(t,["left","top"]),(n,r)=>c(t,r,e[r]-i[r]+y(s==="absolute"&&n==="auto"?Ke(t)[r]:n)))}function Ke(t){let{top:e,left:i}=D(t);const{ownerDocument:{body:s,documentElement:n},offsetParent:r}=K(t);let o=r||n;for(;o&&(o===s||o===n)&&c(o,"position")==="static";)o=o.parentNode;if(Dt(o)){const a=D(o);e-=a.top+y(c(o,"borderTopWidth")),i-=a.left+y(c(o,"borderLeftWidth"))}return{top:e-y(c(t,"marginTop")),left:i-y(c(t,"marginLeft"))}}function Pe(t){const e=[0,0];t=K(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,c(t,"position")==="fixed"){const i=zt(t);return e[0]+=i.pageYOffset,e[1]+=i.pageXOffset,e}while(t=t.offsetParent);return e}const z=us("height"),Ae=us("width");function us(t){const e=ge(t);return(i,s)=>{if(G(s)){if(pe(i))return i["inner"+e];if(me(i)){const n=i.documentElement;return Math.max(n["offset"+e],n["scroll"+e])}return i=K(i),s=c(i,t),s=s==="auto"?i["offset"+e]:y(s)||0,s-se(i,t)}else return c(i,t,!s&&s!==0?"":+s+se(i,t)+"px")}}function se(t,e,i){return i===void 0&&(i="border-box"),c(t,"boxSizing")===i?At[e].map(ge).reduce((s,n)=>s+y(c(t,"padding"+n))+y(c(t,"border"+n+"Width")),0):0}function Ee(t){for(const e in At)for(const i in At[e])if(At[e][i]===t)return At[e][1-i];return t}function dt(t,e,i,s){return e===void 0&&(e="width"),i===void 0&&(i=window),s===void 0&&(s=!1),B(t)?sr(t).reduce((n,r)=>{const o=rr(r);return o&&(r=or(o==="vh"?z(zt(i)):o==="vw"?Ae(zt(i)):s?i["offset"+ge(e)]:C(i)[e],r)),n+y(r)},0):y(t)}const ir=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,sr=lt(t=>t.toString().replace(/\s/g,"").match(ir)||[]),nr=/(?:v[hw]|%)$/,rr=lt(t=>(t.match(nr)||[])[0]);function or(t,e){return t*y(e)/100}function ar(t){if(document.readyState!=="loading"){t();return}V(document,"DOMContentLoaded",t)}function ds(t){return Di(t,"")}function Et(t,e){return G(e)?w(t).innerHTML:Di(t,e)}function Di(t,e){const i=E(e);return w(t).replaceChildren(...i),i}function hr(t,e){const i=E(e);return w(t).prepend(...i),i}function Q(t,e){const i=E(e);return w(t).append(...i),i}function Bi(t,e){const i=E(e);return w(t).before(...i),i}function Xe(t,e){const i=E(e);return w(t).after(...i),i}function ft(t){S(t).forEach(e=>e.remove())}function Je(t,e){for(e=K(Bi(t,e));e.firstChild;)e=e.firstChild;return Q(e,t),e}function fs(t,e){return S(S(t).map(i=>i.hasChildNodes?Je(S(i.childNodes),e):Q(i,e)))}function Ze(t){S(t).map(M).filter((e,i,s)=>s.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}function Qe(t){const e=document.createElement("template");e.innerHTML=t;const{childNodes:i}=e.content;return i.length>1?S(i):i[0]}function $t(t,e){if(!!Dt(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;$t(t,e),t=i}}function w(t,e){return gs(t)?K(Qe(t)):Ti(t,e)}function E(t,e){return gs(t)?S(Qe(t)):Se(t,e)}function gs(t){return B(t)&&at(t.trim(),"<")}const H={reads:[],writes:[],read(t){return this.reads.push(t),Hi(),t},write(t){return this.writes.push(t),Hi(),t},clear(t){ms(this.reads,t),ms(this.writes,t)},flush:zi};function zi(t){ps(H.reads),ps(H.writes.splice(0)),H.scheduled=!1,(H.reads.length||H.writes.length)&&Hi(t+1)}const lr=4;function Hi(t){H.scheduled||(H.scheduled=!0,t&&t<lr?Promise.resolve().then(()=>zi(t)):requestAnimationFrame(()=>zi(1)))}function ps(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function ms(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function Oi(){}Oi.prototype={positions:[],init(){this.positions=[];let t;this.unbind=P(document,"mousemove",e=>t=ie(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:s,top:n,bottom:r}=e,[o]=this.positions,a=we(this.positions),l=[o,a];return Re(a,e)?!1:[[{x:i,y:n},{x:s,y:r}],[{x:i,y:r},{x:s,y:n}]].some(f=>{const h=cr(l,f);return h&&Re(h,e)})}};function cr(t,e){let[{x:i,y:s},{x:n,y:r}]=t,[{x:o,y:a},{x:l,y:u}]=e;const f=(u-a)*(n-i)-(l-o)*(r-s);if(f===0)return!1;const h=((l-o)*(s-a)-(u-a)*(i-o))/f;return h<0?!1:{x:i+h*(n-i),y:s+h*(r-s)}}const U={};U.events=U.created=U.beforeConnect=U.connected=U.beforeDisconnect=U.disconnected=U.destroy=Fi,U.args=function(t,e){return e!==!1&&Fi(e||t)},U.update=function(t,e){return be(Fi(t,xt(e)?{read:e}:e),"order")},U.props=function(t,e){if(ht(e)){const i={};for(const s of e)i[s]=String;e=i}return U.methods(t,e)},U.computed=U.methods=function(t,e){return e?t?k({},t,e):e:t},U.data=function(t,e,i){return i?vs(t,e,i):e?t?function(s){return vs(t,e,s)}:e:t};function vs(t,e,i){return U.computed(xt(t)?t.call(i,i):t,xt(e)?e.call(i,i):e)}function Fi(t,e){return t=t&&!ht(t)?[t]:t,e?t?t.concat(e):ht(e)?e:[e]:t}function ur(t,e){return G(e)?t:e}function ne(t,e,i){const s={};if(xt(e)&&(e=e.options),e.extends&&(t=ne(t,e.extends,i)),e.mixins)for(const r of e.mixins)t=ne(t,r,i);for(const r in t)n(r);for(const r in e)Nt(t,r)||n(r);function n(r){s[r]=(U[r]||ur)(t[r],e[r],i)}return s}function Ue(t,e){e===void 0&&(e=[]);try{return t?at(t,"{")?JSON.parse(t):e.length&&!x(t,":")?{[e[0]]:t}:t.split(";").reduce((i,s)=>{const[n,r]=s.split(/:(.*)/);return n&&!G(r)&&(i[n.trim()]=r.trim()),i},{}):{}}catch{return{}}}function ws(t){if(ei(t)&&Li(t,{func:"playVideo",method:"play"}),ti(t))try{t.play().catch(_)}catch{}}function bs(t){ei(t)&&Li(t,{func:"pauseVideo",method:"pause"}),ti(t)&&t.pause()}function xs(t){ei(t)&&Li(t,{func:"mute",method:"setVolume",value:0}),ti(t)&&(t.muted=!0)}function ys(t){return ti(t)||ei(t)}function ti(t){return(t==null?void 0:t.tagName)==="VIDEO"}function ei(t){return(t==null?void 0:t.tagName)==="IFRAME"&&($s(t)||ks(t))}function $s(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function ks(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Li(t,e){await fr(t),Ss(t,e)}function Ss(t,e){try{t.contentWindow.postMessage(JSON.stringify(k({event:"command"},e)),"*")}catch{}}const Wi="_ukPlayer";let dr=0;function fr(t){if(t[Wi])return t[Wi];const e=$s(t),i=ks(t),s=++dr;let n;return t[Wi]=new Promise(r=>{e&&V(t,"load",()=>{const o=()=>Ss(t,{event:"listening",id:s});n=setInterval(o,100),o()}),V(window,"message",r,!1,o=>{let{data:a}=o;try{return a=JSON.parse(a),a&&(e&&a.id===s&&a.event==="onReady"||i&&Number(a.player_id)===s)}catch{}}),t.src=""+t.src+(x(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+s)}).then(()=>clearInterval(n))}function re(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),F(t)?is(...Wt(t).map(s=>{const{top:n,left:r,bottom:o,right:a}=D(oe(s));return{top:n-e,left:r-i,bottom:o+e,right:a+i}}).concat(D(t))):!1}function Lt(t,e){if(pe(t)||me(t)?t=ae(t):t=K(t),G(e))return t.scrollTop;t.scrollTop=e}function Ri(t,e){let{offset:i=0}=e===void 0?{}:e;const s=F(t)?Wt(t):[];return s.reduce((a,l,u)=>{const{scrollTop:f,scrollHeight:h,offsetHeight:d}=l,g=h-_e(l),{height:b,top:m}=D(s[u-1]||t);let v=Math.ceil(m-D(oe(l)).top-i+f);return i>0&&d<b+i?v+=i:i=0,v>g?(i-=v-g,v=g):v<0&&(i-=v,v=0),()=>n(l,v-f).then(a)},()=>Promise.resolve())();function n(a,l){return new Promise(u=>{const f=a.scrollTop,h=r(Math.abs(l)),d=Date.now();(function g(){const b=o(rt((Date.now()-d)/h));Lt(a,f+l*b),b===1?u():requestAnimationFrame(g)})()})}function r(a){return 40*Math.pow(a,.375)}function o(a){return .5*(1-Math.cos(Math.PI*a))}}function ji(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!F(t))return 0;const[s]=Wt(t,/auto|scroll/,!0),{scrollHeight:n,scrollTop:r}=s,o=_e(s),a=n-o,l=Pe(t)[0]-Pe(s)[0],u=Math.max(0,l-o+e),f=Math.min(a,l+t.offsetHeight-i);return rt((r-u)/(f-u))}function Wt(t,e,i){e===void 0&&(e=/auto|scroll|hidden/),i===void 0&&(i=!1);const s=ae(t);let n=$e(t).reverse();n=n.slice(n.indexOf(s)+1);const r=Tt(n,o=>c(o,"position")==="fixed");return~r&&(n=n.slice(r)),[s].concat(n.filter(o=>e.test(c(o,"overflow"))&&(!i||o.scrollHeight>_e(o)))).reverse()}function oe(t){return t===ae(t)?window:t}function _e(t){return(t===ae(t)?document.documentElement:t).clientHeight}function ae(t){const{document:e}=zt(t);return e.scrollingElement||e.documentElement}const Ne={width:["x","left","right"],height:["y","top","bottom"]};function Ts(t,e,i,s,n,r,o,a){i=Is(i),s=Is(s);const l={element:i,target:s};if(!t||!e)return l;const u=D(t),f=D(e),h=f;if(Cs(h,i,u,-1),Cs(h,s,f,1),n=Ps(n,u.width,u.height),r=Ps(r,f.width,f.height),n.x+=r.x,n.y+=r.y,h.left+=n.x,h.top+=n.y,o){let d=Wt(t).map(oe);a&&!x(d,a)&&d.unshift(a),d=d.map(g=>D(g)),it(Ne,(g,b)=>{let[m,v,q]=g;!(o===!0||x(o,m))||d.some(O=>{const J=i[m]===v?-u[b]:i[m]===q?u[b]:0,et=s[m]===v?f[b]:s[m]===q?-f[b]:0;if(h[v]<O[v]||h[v]+u[b]>O[q]){const bt=u[b]/2,ce=s[m]==="center"?-f[b]/2:0;return i[m]==="center"&&(pt(bt,ce)||pt(-bt,-ce))||pt(J,et)}function pt(bt,ce){const ue=y((h[v]+bt+ce-n[m]*2).toFixed(4));if(ue>=O[v]&&ue+u[b]<=O[q]){h[v]=ue;for(const Fe of["element","target"])bt&&(l[Fe][m]=l[Fe][m]===Ne[b][1]?Ne[b][2]:Ne[b][1]);return!0}}})})}return D(t,h),l}function Cs(t,e,i,s){it(Ne,(n,r)=>{let[o,a,l]=n;e[o]===l?t[a]+=i[r]*s:e[o]==="center"&&(t[a]+=i[r]*s/2)})}function Is(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 Ps(t,e,i){const[s,n]=(t||"").split(" ");return{x:s?y(s)*(St(s,"%")?e/100:1):0,y:n?y(n)*(St(n,"%")?i/100:1):0}}var gr=Object.freeze({__proto__:null,ajax:as,getImage:Pi,transition:cs,Transition:A,animate:Mi,Animation:vt,attr:I,hasAttr:Xt,removeAttr:$i,data:ct,addClass:$,removeClass:N,removeClasses:Ge,replaceClass:_i,hasClass:T,toggleClass:Y,dimensions:C,offset:D,position:Ke,offsetPosition:Pe,height:z,width:Ae,boxModelAdjust:se,flipPosition:Ee,toPx:dt,ready:ar,empty:ds,html:Et,replaceChildren:Di,prepend:hr,append:Q,before:Bi,after:Xe,remove:ft,wrapAll:Je,wrapInner:fs,unwrap:Ze,fragment:Qe,apply:$t,$:w,$$:E,inBrowser:Ht,isRtl:Z,hasTouch:Ot,pointerDown:ut,pointerMove:Zt,pointerUp:mt,pointerEnter:Ft,pointerLeave:Qt,pointerCancel:Ut,on:P,off:ee,once:V,trigger:p,createEvent:Ce,toEventTargets:Ii,isTouch:yt,getEventPos:ie,fastdom:H,isVoidElement:ki,isVisible:F,selInput:xe,isInput:Si,selFocusable:qe,isFocusable:Ve,parent:M,filter:ye,matches:L,closest:ot,within:W,parents:$e,children:R,index:te,hasOwn:Nt,hyphenate:Mt,camelize:Vt,ucfirst:ge,startsWith:at,endsWith:St,includes:x,findIndex:Tt,isArray:ht,toArray:On,assign:k,isFunction:xt,isObject:Ct,isPlainObject:It,isWindow:pe,isDocument:me,isNode:vi,isElement:Dt,isBoolean:Le,isString:B,isNumber:Yt,isNumeric:Bt,isEmpty:ve,isUndefined:G,toBoolean:bi,toNumber:Pt,toFloat:y,toNode:K,toNodes:S,toWindow:zt,toMs:xi,isEqual:We,swap:yi,last:we,each:it,sortBy:be,uniqueBy:es,clamp:rt,noop:_,intersectRect:is,pointInRect:Re,Dimensions:Gt,getIndex:Kt,memoize:lt,Deferred:je,MouseTracker:Oi,mergeOptions:ne,parseOptions:Ue,play:ws,pause:bs,mute:xs,isVideo:ys,positionAt:Ts,query:gt,queryAll:ke,find:Ti,findAll:Se,escape:Te,css:c,getCssVar:Ei,propName:Ye,isInView:re,scrollTop:Lt,scrollIntoView:Ri,scrolledOver:ji,scrollParents:Wt,getViewport:oe,getViewportClientHeight:_e,getScrollingElement:ae});function pr(t){const e=t.data;t.use=function(n){if(!n.installed)return n.call(null,this),n.installed=!0,this},t.mixin=function(n,r){r=(B(r)?t.component(r):r)||this,r.options=ne(r.options,n)},t.extend=function(n){n=n||{};const r=this,o=function(l){this._init(l)};return o.prototype=Object.create(r.prototype),o.prototype.constructor=o,o.options=ne(r.options,n),o.super=r,o.extend=r.extend,o},t.update=function(n,r){n=n?K(n):document.body;for(const o of $e(n).reverse())s(o[e],r);$t(n,o=>s(o[e],r))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(n){i=w(n)}});function s(n,r){if(!!n)for(const o in n)n[o]._connected&&n[o]._callUpdate(r)}}function mr(t){t.prototype._callHook=function(s){var n;(n=this.$options[s])==null||n.forEach(r=>r.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(s){s===void 0&&(s="update"),!!this._connected&&((s==="update"||s==="resize")&&this._callWatches(),!!this.$options.update&&(this._updates||(this._updates=new Set,H.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(s.type||s)))},t.prototype._callWatches=function(){if(this._watch)return;const s=!Nt(this,"_watch");this._watch=H.read(()=>{this._connected&&i.call(this,s),this._watch=null})};function e(s){for(const{read:n,write:r,events:o}of this.$options.update){if(!s.has("update")&&(!o||!o.some(l=>s.has(l))))continue;let a;n&&(a=n.call(this,this._data,s),a&&It(a)&&k(this._data,a)),r&&a!==!1&&H.write(()=>r.call(this,this._data,s))}}function i(s){const{$options:{computed:n}}=this,r=k({},this._computeds);this._computeds={};for(const o in n){const{watch:a,immediate:l}=n[o];a&&(s&&l||Nt(r,o)&&!We(r[o],this[o]))&&a.call(this,this[o],r[o])}}}function vr(t){let e=0;t.prototype._init=function(h){h=h||{},h.data=l(h,this.constructor.options),this.$options=ne(this.constructor.options,h,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),h.el&&this.$mount(h.el)},t.prototype._initData=function(){const{data:h={}}=this.$options;for(const d in h)this.$props[d]=this[d]=h[d]},t.prototype._initMethods=function(){const{methods:h}=this.$options;if(h)for(const d in h)this[d]=h[d].bind(this)},t.prototype._initComputeds=function(){const{computed:h}=this.$options;if(this._computeds={},h)for(const d in h)s(this,d,h[d])},t.prototype._initProps=function(h){let d;h=h||i(this.$options,this.$name);for(d in h)G(h[d])||(this.$props[d]=h[d]);const g=[this.$options.computed,this.$options.methods];for(d in this.$props)d in h&&r(g,d)&&(this[d]=this.$props[d])},t.prototype._initEvents=function(){this._events=[];for(const h of this.$options.events||[])if(Nt(h,"handler"))n(this,h);else for(const d in h)n(this,h[d],d)},t.prototype._unbindEvents=function(){this._events.forEach(h=>h()),delete this._events},t.prototype._initObservers=function(){this._observers=[u(this),f(this)]},t.prototype._disconnectObservers=function(){this._observers.forEach(h=>h==null?void 0:h.disconnect())};function i(h,d){const g={},{args:b=[],props:m={},el:v}=h;if(!m)return g;for(const O in m){const J=Mt(O);let et=ct(v,J);G(et)||(et=m[O]===Boolean&&et===""?!0:o(m[O],et),!(J==="target"&&(!et||at(et,"_")))&&(g[O]=et))}const q=Ue(ct(v,d),b);for(const O in q){const J=Vt(O);m[J]!==void 0&&(g[J]=o(m[J],q[O]))}return g}function s(h,d,g){Object.defineProperty(h,d,{enumerable:!0,get(){const{_computeds:b,$props:m,$el:v}=h;return Nt(b,d)||(b[d]=(g.get||g).call(h,m,v)),b[d]},set(b){const{_computeds:m}=h;m[d]=g.set?g.set.call(h,b):b,G(m[d])&&delete m[d]}})}function n(h,d,g){It(d)||(d={name:g,handler:d});let{name:b,el:m,handler:v,capture:q,passive:O,delegate:J,filter:et,self:pt}=d;if(m=xt(m)?m.call(h):m||h.$el,ht(m)){m.forEach(bt=>n(h,k({},d,{el:bt}),g));return}!m||et&&!et.call(h)||h._events.push(P(m,b,J?B(J)?J:J.call(h):null,B(v)?h[v]:v.bind(h),{passive:O,capture:q,self:pt}))}function r(h,d){return h.every(g=>!g||!Nt(g,d))}function o(h,d){return h===Boolean?bi(d):h===Number?Pt(d):h==="list"?a(d):h?h(d):d}function a(h){return ht(h)?h:B(h)?h.split(/,(?![^(]*\))/).map(d=>Bt(d)?Pt(d):bi(d.trim())):[h]}function l(h,d){let{data:g={}}=h,{args:b=[],props:m={}}=d;ht(g)&&(g=g.slice(0,b.length).reduce((v,q,O)=>(It(q)?k(v,q):v[b[O]]=q,v),{}));for(const v in g)G(g[v])?delete g[v]:m[v]&&(g[v]=o(m[v],g[v]));return g}function u(h){const{el:d}=h.$options,g=new MutationObserver(()=>h.$emit());return g.observe(d,{childList:!0,subtree:!0}),g}function f(h){const{$name:d,$options:g,$props:b}=h,{attrs:m,props:v,el:q}=g;if(!v||m===!1)return;const O=ht(m)?m:Object.keys(v),J=O.map(pt=>Mt(pt)).concat(d),et=new MutationObserver(pt=>{const bt=i(g,d);pt.some(ce=>{let{attributeName:ue}=ce;const Fe=ue.replace("data-","");return(Fe===d?O:[Vt(Fe),Vt(ue)]).some(Ui=>!G(bt[Ui])&&bt[Ui]!==b[Ui])})&&h.$reset()});return et.observe(q,{attributes:!0,attributeFilter:J.concat(J.map(pt=>"data-"+pt))}),et}}function wr(t){const e=t.data;t.prototype.$create=function(s,n,r){return t[s](n,r)},t.prototype.$mount=function(s){const{name:n}=this.$options;s[e]||(s[e]={}),!s[e][n]&&(s[e][n]=this,this.$el=this.$options.el=this.$options.el||s,W(s,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(s){s===void 0&&(s=!1);const{el:n,name:r}=this.$options;n&&this._callDisconnected(),this._callHook("destroy"),!!(n!=null&&n[e])&&(delete n[e][r],ve(n[e])||delete n[e],s&&ft(this.$el))},t.prototype.$emit=function(s){this._callUpdate(s)},t.prototype.$update=function(s,n){s===void 0&&(s=this.$el),t.update(s,n)},t.prototype.$getComponent=t.getComponent;const i=lt(s=>t.prefix+Mt(s));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function br(t){const e=t.data,i={};t.component=function(s,n){const r=Mt(s);if(s=Vt(r),!n)return It(i[s])&&(i[s]=t.extend(i[s])),i[s];t[s]=function(a,l){const u=t.component(s);return u.options.functional?new u({data:It(a)?a:[...arguments]}):a?E(a).map(f)[0]:f();function f(h){const d=t.getComponent(h,s);if(d)if(l)d.$destroy();else return d;return new u({el:h,data:l})}};const o=It(n)?k({},n):n.options;return o.name=s,o.install==null||o.install(t,o,s),t._initialized&&!o.functional&&H.read(()=>t[s]("[uk-"+r+"],[data-uk-"+r+"]")),i[s]=It(n)?o:n},t.getComponents=s=>(s==null?void 0:s[e])||{},t.getComponent=(s,n)=>t.getComponents(s)[n],t.connect=s=>{if(s[e])for(const n in s[e])s[e][n]._callConnected();for(const n of s.attributes){const r=As(n.name);r&&r in i&&t[r](s)}},t.disconnect=s=>{for(const n in s[e])s[e][n]._callDisconnected()}}const As=lt(t=>at(t,"uk-")||at(t,"data-uk-")?Vt(t.replace("data-uk-","").replace("uk-","")):!1),tt=function(t){this._init(t)};tt.util=gr,tt.data="__uikit__",tt.prefix="uk-",tt.options={},tt.version="3.11.2-dev.3dfa2c50b",pr(tt),mr(tt),vr(tt),br(tt),wr(tt);function xr(t){if(!Ht)return;let e;const i=()=>{e||(e=!0,H.read(()=>e=!1),t.update(null,"resize"))};P(window,"load resize",i),P(document,"loadedmetadata load",i,!0),"ResizeObserver"in window&&new ResizeObserver(i).observe(document.documentElement);let s;P(window,"scroll",r=>{s||(s=!0,H.read(()=>s=!1),t.update(null,r.type))},{passive:!0,capture:!0});let n=0;P(document,"animationstart",r=>{let{target:o}=r;(c(o,"animationName")||"").match(/^uk-.*(left|right)/)&&(n++,c(document.documentElement,"overflowX","hidden"),setTimeout(()=>{--n||c(document.documentElement,"overflowX","")},xi(c(o,"animationDuration"))+100))},!0),P(document,ut,r=>{if(!yt(r))return;const o=ie(r),a="tagName"in r.target?r.target:M(r.target);V(document,mt+" "+Ut+" scroll",l=>{const{x:u,y:f}=ie(l);(l.type!=="scroll"&&a&&u&&Math.abs(o.x-u)>100||f&&Math.abs(o.y-f)>100)&&setTimeout(()=>{p(a,"swipe"),p(a,"swipe"+yr(o.x,o.y,u,f))})})},{passive:!0})}function yr(t,e,i,s){return Math.abs(t-i)>=Math.abs(e-s)?t-i>0?"Left":"Right":e-s>0?"Up":"Down"}function $r(t){const{connect:e,disconnect:i}=t;if(!Ht||!window.MutationObserver)return;H.read(function(){document.body&&$t(document.body,e),new MutationObserver(r=>r.forEach(s)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(r=>r.forEach(n)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function s(r){let{addedNodes:o,removedNodes:a}=r;for(const l of o)$t(l,e);for(const l of a)$t(l,i)}function n(r){var o;let{target:a,attributeName:l}=r;const u=As(l);if(!(!u||!(u in t))){if(Xt(a,l)){t[u](a);return}(o=t.getComponent(a,u))==null||o.$destroy()}}}var st={connected(){!T(this.$el,this.$name)&&$(this.$el,this.$name)}},kt={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(s=>Promise.all(S(t).map(n=>{const r=Le(e)?e:!this.isToggled(n);if(!p(n,"before"+(r?"show":"hide"),[this]))return Promise.reject();const o=(xt(i)?i:i===!1||!this.hasAnimation?this._toggle:this.hasTransition?Es(this):kr(this))(n,r),a=r?this.clsEnter:this.clsLeave;$(n,a),p(n,r?"show":"hide",[this]);const l=()=>{N(n,a),p(n,r?"shown":"hidden",[this]),this.$update(n)};return o?o.then(l,()=>(N(n,a),Promise.reject())):l()})).then(s,_))},isToggled(t){return t===void 0&&(t=this.$el),[t]=S(t),T(t,this.clsEnter)?!0:T(t,this.clsLeave)?!1:this.cls?T(t,this.cls.split(" ")[0]):F(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=x(this.cls," ")||e!==T(t,this.cls),i&&Y(t,this.cls,x(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),E("[autofocus]",t).some(s=>F(s)?s.focus()||!0:s.blur()),i&&(p(t,"toggled",[e,this]),this.$update(t))}}};function Es(t){let{isToggled:e,duration:i,initProps:s,hideProps:n,transition:r,_toggle:o}=t;return(a,l)=>{const u=A.inProgress(a),f=a.hasChildNodes?y(c(a.firstElementChild,"marginTop"))+y(c(a.lastElementChild,"marginBottom")):0,h=F(a)?z(a)+(u?0:f):0;A.cancel(a),e(a)||o(a,!0),z(a,""),H.flush();const d=z(a)+(u?0:f);return z(a,h),(l?A.start(a,k({},s,{overflow:"hidden",height:d}),Math.round(i*(1-h/d)),r):A.start(a,n,Math.round(i*(h/d)),r).then(()=>o(a,!1))).then(()=>c(a,s))}}function kr(t){return(e,i)=>{vt.cancel(e);const{animation:s,duration:n,_toggle:r}=t;return i?(r(e,!0),vt.in(e,s[0],n,t.origin)):vt.out(e,s[1]||s[0],n,t.origin).then(()=>r(e,!1))}}var _s={mixins:[st,kt],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 E(i,e)},watch(t,e){if(t.forEach(s=>ii(w(this.content,s),!T(s,this.clsOpen))),e||T(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(te(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[Kt(t,this.items)]];const s=ye(this.items,"."+this.clsOpen);if(!this.multiple&&!x(s,i[0])&&(i=i.concat(s)),!(!this.collapsible&&s.length<2&&!ye(i,":not(."+this.clsOpen+")").length))for(const n of i)this.toggleElement(n,!T(n,this.clsOpen),async(r,o)=>{Y(r,this.clsOpen,o),I(w(this.$props.toggle,r),"aria-expanded",o);const a=w((r._wrapper?"> * ":"")+this.content,r);if(e===!1||!this.hasTransition){ii(a,!o);return}if(r._wrapper||(r._wrapper=Je(a,"<div"+(o?" hidden":"")+">")),ii(a,!1),await Es(this)(r._wrapper,o),ii(a,!o),delete r._wrapper,Ze(a),o){const l=w(this.$props.toggle,r);re(l)||Ri(l,{offset:this.offset})}})}}};function ii(t,e){t&&(t.hidden=e)}var Sr={mixins:[st,kt],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:k({opacity:0},kt.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)}}},Ns={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&&!Xt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&xs(this.$el)},update:{read(){return ys(this.$el)?{visible:F(this.$el)&&c(this.$el,"visibility")!=="hidden",inView:this.inView&&re(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?bs(this.$el):(this.autoplay===!0||this.inView&&i)&&ws(this.$el)},events:["resize","scroll"]}},Tr={mixins:[Ns],props:{width:Number,height:Number},data:{automute:!0},update:{read(){const t=this.$el,{offsetHeight:e,offsetWidth:i}=Cr(t)||M(t),s=Gt.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!s.width||!s.height?!1:s},write(t){let{height:e,width:i}=t;c(this.$el,{height:e,width:i})},events:["resize"]}};function Cr(t){for(;t=M(t);)if(c(t,"position")!=="static")return t}var he={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&w(e)}}},Ms={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(Z?"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){Ge(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");let{offset:s}=this;const n=this.getAxis();if(!Bt(s)){const a=w(s);s=a?D(a)[n==="x"?"left":"top"]-D(e)[n==="x"?"right":"bottom"]:0}const{x:r,y:o}=Ts(t,e,n==="x"?Ee(this.dir)+" "+this.align:this.align+" "+Ee(this.dir),n==="x"?this.dir+" "+this.align:this.align+" "+this.dir,n==="x"?""+(this.dir==="left"?-s:s):" "+(this.dir==="top"?-s:s),null,this.flip,i).target;this.dir=n==="x"?r:o,this.align=n==="x"?o:r,Y(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}};let X;var Ds={mixins:[he,Ms,kt],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:gt(i,e)},clsDrop(t){let{clsDrop:e}=t;return e||"uk-"+this.$options.name},clsPos(){return this.clsDrop}},created(){this.tracker=new Oi},connected(){$(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",gt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,I(this.target,"aria-haspopup",!0))},disconnected(){this.isActive()&&(X=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&&!W(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(),L(this.$el,":focus,:hover")||this.hide()}},{name:Ft+" focusin",filter(){return x(this.mode,"hover")},handler(t){yt(t)||this.clearTimers()}},{name:Qt+" focusout",filter(){return x(this.mode,"hover")},handler(t){!yt(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){X=this,this.tracker.init(),V(this.$el,"hide",P(document,ut,t=>{let{target:e}=t;return!W(e,this.$el)&&V(document,mt+" "+Ut+" scroll",i=>{let{defaultPrevented:s,type:n,target:r}=i;!s&&n===mt&&e===r&&!(this.target&&W(e,this.target))&&this.hide(!1)},!0)}),{self:!0}),V(this.$el,"hide",P(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){X=X===null&&W(e,this.$el)&&this.isToggled()?this:X;return}X=this.isActive()?null:X,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!T(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(X){if(e&&X.isDelaying){this.showTimer=setTimeout(()=>L(t,":hover")&&this.show(),10);return}let i;for(;X&&i!==X&&!W(this.$el,X.$el);)i=X,X.hide(!1)}this.container&&M(this.$el)!==this.container&&Q(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=Ir(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 X===this},position(){N(this.$el,this.clsDrop+"-stack"),Y(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);const t=D(this.boundary),e=this.boundaryAlign?t:D(this.target);if(this.align==="justify"){const i=this.getAxis()==="y"?"width":"height";c(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 Ir(t){const e=[];return $t(t,i=>c(i,"position")!=="static"&&e.push(i)),e}var Pr={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&&M(this.input)===e&&this.input.nextElementSibling||gt(i,e))}},update(){const{target:t,input:e}=this;if(!t)return;let i;const s=Si(t)?"value":"textContent",n=t[s],r=e.files&&e.files[0]?e.files[0].name:L(e,"select")&&(i=E("option",e).filter(o=>o.selected)[0])?i.textContent:e.value;n!==r&&(t[s]=r)},events:[{name:"change",handler(){this.$update()}},{name:"reset",el(){return ot(this.$el,"form")},handler(){this.$update()}}]},Ar={update:{read(t){const e=re(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},Bs={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read(){const t=qi(this.$el.children);return{rows:t,columns:Er(t)}},write(t){let{columns:e,rows:i}=t;for(const s of i)for(const n of s)Y(n,this.margin,i[0]!==s),Y(n,this.firstColumn,!!~e[0].indexOf(n))},events:["resize"]}};function qi(t){return zs(t,"top","bottom")}function Er(t){const e=[];for(const i of t){const s=zs(i,"left","right");for(let n=0;n<s.length;n++)e[n]=e[n]?e[n].concat(s[n]):s[n]}return Z?e.reverse():e}function zs(t,e,i){const s=[[]];for(const n of t){if(!F(n))continue;let r=si(n);for(let o=s.length-1;o>=0;o--){const a=s[o];if(!a[0]){a.push(n);break}let l;if(a[0].offsetParent===n.offsetParent?l=si(a[0]):(r=si(n,!0),l=si(a[0],!0)),r[e]>=l[i]-1&&r[e]!==l[e]){s.push([n]);break}if(r[i]-1>l[e]||r[e]===l[e]){a.push(n);break}if(o===0){s.unshift([n]);break}}}return s}function si(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:s,offsetHeight:n,offsetWidth:r}=t;return e&&([i,s]=Pe(t)),{top:i,left:s,bottom:i+n,right:s+r}}var _r={extends:Bs,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;Y(this.$el,this.clsStack,e.length<2)},events:["resize"]},{read(t){let{columns:e,rows:i}=t;if(!e.length||!this.masonry&&!this.parallax||Hs(this.$el))return t.translates=!1,!1;let s=!1;const n=R(this.$el),r=Dr(e),o=Mr(n,this.margin)*(i.length-1),a=Math.max(...r)+o;this.masonry&&(e=e.map(u=>be(u,"offsetTop")),s=Nr(i,e));let l=Math.abs(this.parallax);return l&&(l=r.reduce((u,f,h)=>Math.max(u,f+o+(h%2?l:l/8)-a),0)),{padding:l,columns:e,translates:s,height:s?a:""}},write(t){let{height:e,padding:i}=t;c(this.$el,"paddingBottom",i||""),e!==!1&&c(this.$el,"height",e)},events:["resize"]},{read(){return Hs(this.$el)?!1:{scrolled:this.parallax?ji(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:s}=t;i===!1&&!s||e.forEach((n,r)=>n.forEach((o,a)=>c(o,"transform",!i&&!s?"":"translateY("+((s&&-s[r][a])+(i?r%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function Hs(t){return R(t).some(e=>c(e,"position")==="absolute")}function Nr(t,e){const i=t.map(s=>Math.max(...s.map(n=>n.offsetHeight)));return e.map(s=>{let n=0;return s.map((r,o)=>n+=o?i[o-1]-s[o-1].offsetHeight:0)})}function Mr(t,e){const[i]=t.filter(s=>T(s,e));return y(i?c(i,"marginTop"):c(t[0],"paddingLeft"))}function Dr(t){return t.map(e=>e.reduce((i,s)=>i+s.offsetHeight,0))}var Br={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements(t,e){let{target:i}=t;return E(i,e)}},update:{read(){return{rows:(this.row?qi(this.elements):[this.elements]).map(zr)}},write(t){let{rows:e}=t;for(const{heights:i,elements:s}of e)s.forEach((n,r)=>c(n,"minHeight",i[r]))},events:["resize"]}};function zr(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(Os),i=Math.max(...e);const s=t.some(r=>r.style.minHeight),n=t.some((r,o)=>!r.style.minHeight&&e[o]<i);return s&&n&&(c(t,"minHeight",""),e=t.map(Os),i=Math.max(...e)),e=t.map((r,o)=>e[o]===i&&y(r.style.minHeight).toFixed(2)!==i.toFixed(2)?"":i),{heights:e,elements:t}}function Os(t){let e=!1;F(t)||(e=t.style.display,c(t,"display","block","important"));const i=C(t).height-se(t,"height","content-box");return e!==!1&&c(t,"display",e),i}var Hr={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(!F(this.$el))return!1;let i="";const s=se(this.$el,"height","content-box");if(this.expand)i=z(window)-(C(document.documentElement).height-C(this.$el).height)-s||"";else{if(i="calc(100vh",this.offsetTop){const{top:n}=D(this.$el);i+=n>0&&n<z(window)/2?" - "+n+"px":""}this.offsetBottom===!0?i+=" - "+C(this.$el.nextElementSibling).height+"px":Bt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&St(this.offsetBottom,"px")?i+=" - "+y(this.offsetBottom)+"px":B(this.offsetBottom)&&(i+=" - "+C(gt(this.offsetBottom,this.$el)).height+"px"),i+=(s?" - "+s+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e,prev:i}=t;c(this.$el,{minHeight:e}),e!==i&&p(this.$el,"resize"),this.minHeight&&y(c(this.$el,"minHeight"))<this.minHeight&&c(this.$el,"minHeight",this.minHeight)},events:["resize"]}},Fs={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&&x(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=Rr(t,this.$el);return this.svgEl&&e!==this.svgEl&&ft(this.svgEl),this.applyAttributes(e,t),this.$emit(),this.svgEl=e}},_)},disconnected(){this.svg.then(t=>{this._connected||(ki(this.$el)&&(this.$el.hidden=!1),ft(t),this.svgEl=null)}),this.svg=null},update:{read(){return!!(this.strokeAnimation&&this.svgEl&&F(this.svgEl))},write(){Wr(this.svgEl)},type:["resize"]},methods:{async getSvg(){return Fr(await Or(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const r in this.$options.props)x(this.include,r)&&r in this&&I(t,r,this[r]);for(const r in this.attributes){const[o,a]=this.attributes[r].split(":",2);I(t,o,a)}this.id||$i(t,"id");const i=["width","height"];let s=i.map(r=>this[r]);s.some(r=>r)||(s=i.map(r=>I(e,r)));const n=I(e,"viewBox");n&&!s.some(r=>r)&&(s=n.split(" ").slice(2)),s.forEach((r,o)=>I(t,i[o],y(r)*this.ratio||null))}}};const Or=lt(async t=>t?at(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function Fr(t,e){var i;return e&&x(t,"<symbol")&&(t=Lr(t,e)||t),t=w(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const Ls=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,ni={};function Lr(t,e){if(!ni[t]){ni[t]={},Ls.lastIndex=0;let i;for(;i=Ls.exec(t);)ni[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return ni[t][e]}function Wr(t){const e=Ws(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function Ws(t){return Math.ceil(Math.max(0,...E("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function Rr(t,e){if(ki(e)||e.tagName==="CANVAS"){e.hidden=!0;const s=e.nextElementSibling;return Rs(t,s)?s:Xe(e,t)}const i=e.lastElementChild;return Rs(t,i)?i:Q(e,t)}function Rs(t,e){return js(t)&&js(e)&&qs(t)===qs(e)}function js(t){return(t==null?void 0:t.tagName)==="svg"}function qs(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var jr='<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>',qr='<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>',Vr='<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>',Yr='<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>',Gr='<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>',Kr='<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>',Xr='<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>',Jr='<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>',Zr='<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>',Qr='<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>',Ur='<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>',so='<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>',no='<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 ri={spinner:so,totop:no,marker:Vr,"close-icon":jr,"close-large":qr,"navbar-toggle-icon":Yr,"overlay-icon":Gr,"pagination-next":Kr,"pagination-previous":Xr,"search-icon":Jr,"search-large":Zr,"search-navbar":Qr,"slidenav-next":Ur,"slidenav-next-large":to,"slidenav-previous":eo,"slidenav-previous-large":io},Vs={install:ho,extends:Fs,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){$(this.$el,"uk-icon")},methods:{getSvg(){const t=lo(this.icon);return t?Promise.resolve(t):Promise.reject("Icon not found.")}}},wt={args:!1,extends:Vs,data:t=>({icon:Mt(t.constructor.options.name)}),beforeConnect(){$(this.$el,this.$name)}},Ys={extends:wt,beforeConnect(){$(this.$el,"uk-slidenav")},computed:{icon(t,e){let{icon:i}=t;return T(e,"uk-slidenav-large")?i+"-large":i}}},ro={extends:wt,computed:{icon(t,e){let{icon:i}=t;return T(e,"uk-search-icon")&&$e(e,".uk-search-large").length?"search-large":$e(e,".uk-search-navbar").length?"search-navbar":i}}},oo={extends:wt,computed:{icon(){return"close-"+(T(this.$el,"uk-close-large")?"large":"icon")}}},ao={extends:wt,async connected(){const t=await this.svg;t&&this.ratio!==1&&c(w("circle",t),"strokeWidth",1/this.ratio)}},oi={};function ho(t){t.icon.add=(e,i)=>{const s=B(e)?{[e]:i}:e;it(s,(n,r)=>{ri[r]=n,delete oi[r]}),t._initialized&&$t(document.body,n=>it(t.getComponents(n),r=>{r.$options.isIcon&&r.icon in s&&r.$reset()}))}}function lo(t){return ri[t]?(oi[t]||(oi[t]=w((ri[co(t)]||ri[t]).trim())),oi[t].cloneNode(!0)):null}function co(t){return Z?yi(yi(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 Xs(e)},target:{get(t){let{target:e}=t;return[this.$el,...ke(e,this.$el)]},watch(){this.observe()}},offsetTop(t){let{offsetTop:e}=t;return dt(e,"height")},offsetLeft(t){let{offsetLeft:e}=t;return dt(e,"width")}},connected(){if(!window.IntersectionObserver){Me(this.$el,this.dataSrc,this.dataSrcset,this.sizes);return}Rt[this.cacheKey]?Me(this.$el,Rt[this.cacheKey],this.dataSrcset,this.sizes):this.isImg&&this.width&&this.height&&Me(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!==""&&Me(this.$el,Vi(i)))},write(t){if(this.dataSrcset&&window.devicePixelRatio!==1){const e=c(this.$el,"backgroundSize");(e.match(/^(auto\s?)+$/)||y(e)===t.bgSize)&&(t.bgSize=wo(this.dataSrcset,this.sizes),c(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load(t){!t.some(e=>G(e.isIntersecting)||e.isIntersecting)||(this._data.image=Pi(this.dataSrc,this.dataSrcset,this.sizes).then(e=>(Me(this.$el,Vi(e),e.srcset,e.sizes),Rt[this.cacheKey]=Vi(e),e),e=>p(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 Me(t,e,i,s){if(Xs(t)){const n=(r,o)=>o&&o!==t[r]&&(t[r]=o);n("sizes",s),n("srcset",i),n("src",e)}else e&&!x(t.style.backgroundImage,e)&&(c(t,"backgroundImage","url("+Te(e)+")"),p(t,Ce("load",!1)))}function fo(t,e,i){return i&&({width:t,height:e}=Gt.ratio({width:t,height:e},"width",dt(Ks(i)))),'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="'+t+'" height="'+e+'"></svg>'}const Gs=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function Ks(t){let e;for(Gs.lastIndex=0;e=Gs.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=mo(e[2]);break}return e||"100vw"}const go=/\d+(?:\w+|%)/g,po=/[+-]?(\d+)/g;function mo(t){return at(t,"calc")?t.slice(5,-1).replace(go,e=>dt(e)).replace(/ /g,"").match(po).reduce((e,i)=>e+ +i,0):t}const vo=/\s+\d+w\s*(?:,|$)/g;function wo(t,e){const i=dt(Ks(e)),s=(t.match(vo)||[]).map(y).sort((n,r)=>n-r);return s.filter(n=>n>=i)[0]||s.pop()||""}function Xs(t){return t.tagName==="IMG"}function Vi(t){return t.currentSrc||t.src}const Js="__test__";let Rt;try{Rt=window.sessionStorage||{},Rt[Js]=1,delete Rt[Js]}catch{Rt={}}var ai={props:{media:Boolean},data:{media:!1},computed:{matchMedia(){const t=bo(this.media);return!t||window.matchMedia(t).matches}}};function bo(t){if(B(t)){if(t[0]==="@"){const e="breakpoint-"+t.substr(1);t=y(Ei(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var xo={mixins:[st,ai],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||Ei("leader-fill-content")}},connected(){[this.wrapper]=fs(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){Ze(this.wrapper.childNodes)},update:{read(t){let{changed:e,width:i}=t;const s=i;return i=Math.floor(this.$el.offsetWidth/2),{width:i,fill:this.fill,changed:e||s!==i,hide:!this.matchMedia}},write(t){Y(this.wrapper,this.clsHide,t.hide),t.changed&&(t.changed=!1,I(this.wrapper,this.attrFill,new Array(t.width).join(t.fill)))},events:["resize"]}};const nt=[];var Yi={mixins:[st,he,kt],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(){x(nt,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()===x(nt,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(x(nt,this))return!1;!this.stack&&nt.length?(Promise.all(nt.map(e=>e.hide())).then(this.show),t.preventDefault()):nt.push(this)}},{name:"show",self:!0,handler(){const t=document.documentElement;Ae(window)>t.clientWidth&&this.overlay&&c(document.body,"overflowY","scroll"),this.stack&&c(this.$el,"zIndex",y(c(this.$el,"zIndex"))+nt.length),$(t,this.clsPage),this.bgClose&&V(this.$el,"hide",P(document,ut,e=>{let{target:i}=e;we(nt)!==this||this.overlay&&!W(i,this.$el)||W(i,this.panel)||V(document,mt+" "+Ut+" scroll",s=>{let{defaultPrevented:n,type:r,target:o}=s;!n&&r===mt&&i===o&&this.hide()},!0)}),{self:!0}),this.escClose&&V(this.$el,"hide",P(document,"keydown",e=>{e.keyCode===27&&we(nt)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Ve(this.$el)||I(this.$el,"tabindex","-1"),w(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){x(nt,this)&&nt.splice(nt.indexOf(this),1),nt.length||c(document.body,"overflowY",""),c(this.$el,"zIndex",""),nt.some(t=>t.clsPage===this.clsPage)||N(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&M(this.$el)!==this.container?(Q(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Zs(this))},hide(){return this.toggleElement(this.$el,!1,Zs(this))}}};function Zs(t){let{transitionElement:e,_toggle:i}=t;return(s,n)=>new Promise((r,o)=>V(s,"show hide",()=>{s._reject&&s._reject(),s._reject=o,i(s,n);const a=V(e,"transitionstart",()=>{V(e,"transitionend transitioncancel",r,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),r()},xi(c(e,"transitionDuration")))})).then(()=>delete s._reject)}var yo={install:$o,mixins:[Yi],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(){T(this.panel,"uk-margin-auto-vertical")?$(this.$el,"uk-flex"):c(this.$el,"display","block"),z(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),N(this.$el,"uk-flex")}}]};function $o(t){let{modal:e}=t;e.dialog=function(s,n){const r=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+s+"</div> </div>",n);return r.show(),P(r.$el,"hidden",async()=>{await Promise.resolve(),r.$destroy(!0)},{self:!0}),r},e.alert=function(s,n){return i(r=>{let{labels:o}=r;return'<div class="uk-modal-body">'+(B(s)?s:Et(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+o.ok+"</button> </div>"},n,r=>r.resolve())},e.confirm=function(s,n){return i(r=>{let{labels:o}=r;return'<form> <div class="uk-modal-body">'+(B(s)?s:Et(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+o.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+o.ok+"</button> </div> </form>"},n,r=>r.reject())},e.prompt=function(s,n,r){return i(o=>{let{labels:a}=o;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(B(s)?s:Et(s))+'</label> <input class="uk-input" value="'+(n||"")+'" 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>"},r,o=>o.resolve(null),o=>w("input",o.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(s,n,r,o){n=k({bgClose:!1,escClose:!0,labels:e.labels},n);const a=e.dialog(s(n),n),l=new je;let u=!1;return P(a.$el,"submit","form",f=>{f.preventDefault(),l.resolve(o==null?void 0:o(a)),u=!0,a.hide()}),P(a.$el,"hide",()=>!u&&r(l)),l.promise.dialog=a,l.promise}}var ko={extends:_s,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const Qs=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle";var So={mixins:[st,he],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:Qs,align:Z?"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:Qs,container:!1},computed:{boundary(t,e){let{boundary:i,boundaryAlign:s}=t;return i===!0||s?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return gt(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||gt(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 s=E("."+i,e);if(this.dropContainer!==e)for(const r of E("."+i,this.dropContainer)){var n;const o=(n=this.getDropdown(r))==null?void 0:n.target;!x(s,r)&&o&&W(o,this.$el)&&s.push(r)}return s},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),k({},this.$props,{boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset}))},immediate:!0},toggles(t,e){let{dropdown:i}=t;return E(i,e)}},disconnected(){this.dropbar&&ft(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&x(i.mode,"hover")&&i.target&&!W(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,s=this.getActive();i===jt.DOWN&&Xt(e,"aria-expanded")&&(t.preventDefault(),!s||s.target!==e?(e.click(),V(this.dropContainer,"show",n=>{let{target:r}=n;return tn(r)})):tn(s.$el)),Us(t,this.toggles,s)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!x(this.dropdowns,e))return;const s=this.getActive(),n=E(qe,e),r=Tt(n,a=>L(a,":focus"));if(i===jt.UP&&(t.preventDefault(),r>0&&n[r-1].focus()),i===jt.DOWN&&(t.preventDefault(),r<n.length-1&&n[r+1].focus()),i===jt.ESC){var o;s==null||(o=s.target)==null||o.focus()}Us(t,this.toggles,s)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&x(t.mode,"hover")&&!this.dropdowns.some(e=>L(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(){M(this.dropbar)||Xe(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,dir:s}=e;!T(i,this.clsDrop)||(this.dropbarMode==="slide"&&$(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&$(i,this.clsDrop+"-dropbar"),s==="bottom"&&this.transitionTo(i.offsetHeight+y(c(i,"marginTop"))+y(c(i,"marginBottom")),i))}},{name:"beforehide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;const s=this.getActive();L(this.dropbar,":hover")&&(s==null?void 0:s.$el)===i&&!this.toggles.some(n=>s.target!==n&&L(n,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;if(!T(i,this.clsDrop))return;const s=this.getActive();(!s||(s==null?void 0:s.$el)===i)&&this.transitionTo(0)}}],methods:{getActive(){return X&&W(X.target,this.$el)&&X},transitionTo(t,e){const{dropbar:i}=this,s=F(i)?z(i):0;return e=s<t&&e,c(e,"clip","rect(0,"+e.offsetWidth+"px,"+s+"px,0)"),z(i,s),A.cancel([e,i]),Promise.all([A.start(i,{height:t},this.duration),A.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(_).then(()=>{c(e,{clip:""}),this.$update(i)})},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function Us(t,e,i){const{current:s,keyCode:n}=t,r=(i==null?void 0:i.target)||s,o=e.indexOf(r);n===jt.LEFT&&o>0&&(i==null||i.hide(!1),e[o-1].focus()),n===jt.RIGHT&&o<e.length-1&&(i==null||i.hide(!1),e[o+1].focus()),n===jt.TAB&&(r.focus(),i==null||i.hide(!1))}function tn(t){if(!w(":focus",t)){var e;(e=w(qe,t))==null||e.focus()}}const jt={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var To={mixins:[Yi],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"?M(this.panel):this.panel}},update:{read(){this.isToggled()&&!F(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:s,clientHeight:n}=this.panel;(n>=s||i===0&&e>0||s-i<=n&&e<0)&&t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!T(M(this.panel),this.clsMode)&&(Je(this.panel,"<div>"),$(M(this.panel),this.clsMode)),c(document.documentElement,"overflowY",this.overlay?"hidden":""),$(document.body,this.clsContainer,this.clsFlip),c(document.body,"touch-action","pan-y pinch-zoom"),c(this.$el,"display","block"),$(this.$el,this.clsOverlay),$(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),z(document.body),$(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&Co()}},{name:"hide",self:!0,handler(){N(document.body,this.clsContainerAnimation),c(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&Io(),this.mode==="reveal"&&Ze(this.panel),N(this.panel,this.clsSidebarAnimation,this.clsMode),N(this.$el,this.clsOverlay),c(this.$el,"display",""),N(document.body,this.clsContainer,this.clsFlip),c(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&St(t.type,"Left")^this.flip&&this.hide()}}]};function Co(){en().content+=",user-scalable=0"}function Io(){const t=en();t.content=t.content.replace(/,user-scalable=0$/,"")}function en(){return w('meta[name="viewport"]',document.head)||Q(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 ot(e,i)},content(t,e){let{selContent:i}=t;return ot(e,i)}},connected(){c(this.$el,"minHeight",this.minHeight)},update:{read(){return!this.content||!this.container||!F(this.$el)?!1:{current:y(c(this.$el,"maxHeight")),max:Math.max(this.minHeight,z(this.container)-(C(this.content).height-z(this.$el)))}},write(t){let{current:e,max:i}=t;c(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&p(this.$el,"resize")},events:["resize"]}},Ao={props:["width","height"],connected(){$(this.$el,"uk-responsive-width")},update:{read(){return F(this.$el)&&this.width&&this.height?{width:Ae(M(this.$el)),height:this.height}:!1},write(t){z(this.$el,Gt.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},Eo={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&w(t)||document.body,p(this.$el,"beforescroll",[this,t])&&(await Ri(t,{offset:this.offset}),p(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+Te(decodeURIComponent((this.$el.hash||"").substr(1)))))}}};const _t="_ukScrollspy";var _o={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?E(i,e):[e]},watch(t){this.hidden&&c(ye(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected(){for(const t of this.elements)N(t,this.inViewClass,t[_t]?t[_t].cls:""),delete t[_t]},update:[{read(t){if(!t.update)return Promise.resolve().then(()=>{this.$emit(),t.update=!0}),!1;for(const e of this.elements)e[_t]||(e[_t]={cls:ct(e,"uk-scrollspy-class")||this.cls}),e[_t].show=re(e,this.offsetTop,this.offsetLeft)},write(t){for(const e of this.elements){const i=e[_t];i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(s=>setTimeout(s,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[_t];i.off&&i.off(),c(t,"visibility",!e&&this.hidden?"hidden":""),Y(t,this.inViewClass,e),Y(t,i.cls),/\buk-animation-/.test(i.cls)&&(i.off=V(t,"animationcancel animationend",()=>Ge(t,"uk-animation-[\\w-]+"))),p(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}},No={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 E('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets(){return E(this.links.map(t=>Te(t.hash).substr(1)).join(","))},elements(t){let{closest:e}=t;return ot(this.links,e||"*")}},update:[{read(){const{length:t}=this.targets;if(!t||!F(this.$el))return!1;const[e]=Wt(this.targets,/auto|scroll/,!0),{scrollTop:i,scrollHeight:s}=e,n=s-_e(e);let r=!1;return i===n?r=t-1:(this.targets.every((o,a)=>{if(D(o).top-D(oe(e)).top-this.offset<=0)return r=a,!0}),r===!1&&this.overflow&&(r=0)),{active:r}},write(t){let{active:e}=t;const i=e!==!1&&!T(this.elements[e],this.cls);this.links.forEach(s=>s.blur()),N(this.elements,this.cls),$(this.elements[e],this.cls),i&&p(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},Mo={mixins:[st,ai],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>z(window)?"bottom":"top":i},offset(t,e){let{offset:i}=t;return this.position==="bottom"&&(i+="+100vh-100%"),dt(i,"height",e)},selTarget(t,e){let{selTarget:i}=t;return i&&w(i,e)||e},widthElement(t,e){let{widthElement:i}=t;return gt(i,e)||this.placeholder},isActive:{get(){return T(this.selTarget,this.clsActive)},set(t){t&&!this.isActive?(_i(this.selTarget,this.clsInactive,this.clsActive),p(this.$el,"active")):!t&&!T(this.selTarget,this.clsInactive)&&(_i(this.selTarget,this.clsActive,this.clsInactive),p(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(),N(this.selTarget,this.clsInactive)),ft(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el(){return window},handler(){if(!(this.targetOffset!==!1&&location.hash&&Lt(window)>0))return;const t=w(location.hash);t&&H.read(()=>{const{top:e}=D(t),i=D(this.$el).top,s=this.$el.offsetHeight;this.isFixed&&i+s>=e&&i<=e+t.offsetHeight&&Lt(window,e-s-(Bt(this.targetOffset)?this.targetOffset:0)-this.offset)})}}],update:[{read(t,e){let{height:i,margin:s}=t;if(this.inactive=!this.matchMedia||!F(this.$el),this.inactive)return!1;const n=this.isActive&&e.has("resize");n&&this.hide(),this.isActive||(i=this.$el.offsetHeight,s=c(this.$el,"margin")),n&&this.show();const r=Math.max(0,i+this.offset-z(window)),o=this.isFixed?this.placeholder:this.$el,a=D(o).top,l=D(o.offsetParent).top,u=sn(this.top,this.$el,a),f=sn(this.bottom,this.$el,a+i,!0),h=Math.max(u,a)-this.offset,d=f?f-this.$el.offsetHeight+r-this.offset:ae(this.$el).scrollHeight-z(window);return{start:h,end:d,overflow:r,topOffset:a,offsetParentTop:l,height:i,margin:s,width:C(F(this.widthElement)?this.widthElement:this.$el).width,top:Pe(this.placeholder)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:s}=this;c(s,{height:e,margin:i}),W(s,document)||(Xe(this.$el,s),s.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:s,overflowScroll:n=0,start:r,end:o}=t;const a=Lt(window);return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,overflowScroll:rt(n+rt(a,r,o)-rt(e,r,o),0,s)}},write(t,e){const i=e.has("scroll"),{initTimestamp:s=0,dir:n,prevDir:r,scroll:o,prevScroll:a=0,top:l,start:u,topOffset:f,height:h}=t;if(o<0||o===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const d=Date.now();if((d-s>300||n!==r)&&(t.initScroll=o,t.initTimestamp=d),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-o)<=30&&Math.abs(a-o)<=10))if(this.inactive||o<u||this.showOnUp&&(o<=u||n==="down"&&i||n==="up"&&!this.isFixed&&o<=f+h)){if(!this.isFixed){vt.inProgress(this.$el)&&l>o&&(vt.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&o>f?(vt.cancel(this.$el),vt.out(this.$el,this.animation).then(()=>this.hide(),_)):this.hide()}else this.isFixed?this.update():this.animation?(vt.cancel(this.$el),this.show(),vt.in(this.$el,this.animation).catch(_)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.isActive=!1,N(this.$el,this.clsFixed,this.clsBelow),c(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){const{width:t,scroll:e=0,overflow:i,overflowScroll:s=0,start:n,end:r,topOffset:o,height:a,offsetParentTop:l}=this._data,u=n!==0||e>n;let f=this.offset,h="fixed";e>r&&(f=r+this.offset-l,h="absolute"),i&&(f-=s),c(this.$el,{position:h,top:f+"px",width:t}),this.isActive=u,Y(this.$el,this.clsBelow,e>o+a),$(this.$el,this.clsFixed)}}};function sn(t,e,i,s){if(!t)return 0;if(B(t)&&t.match(/^-?\d/))return i+dt(t);{const n=t===!0?M(e):gt(t,e);return D(n).bottom-(s&&n&&W(e,n)?y(c(n,"paddingBottom")):0)}}var nn={mixins:[kt],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 ke(i,e)},watch(t){this.swiping&&c(t,"touch-action","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>R(i).forEach((s,n)=>Y(s,this.cls,n===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return E(i,e).filter(s=>!L(s,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return R(this.$el).filter(t=>this.toggles.some(e=>W(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?ke(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(ct(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(St(e,"Left")?"next":"previous")}}],methods:{index(){return Tt(this.children,t=>T(t,this.cls))},show(t){const e=this.index(),i=Kt(this.children[Kt(t,this.toggles,e)],R(this.$el));e!==i&&(this.children.forEach((s,n)=>{Y(s,this.cls,i===n),I(this.toggles[n],"aria-expanded",i===n)}),this.connects.forEach(async s=>{let{children:n}=s;await this.toggleElement(S(n).filter(r=>T(r,this.cls)),!1,e>=0),await this.toggleElement(n[i],!0,e>=0)}))}}},Do={mixins:[st],extends:nn,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=T(this.$el,"uk-tab-left")?"uk-tab-left":T(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Bo=32;var zo={mixins:[ai,kt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected(){!x(this.mode,"media")&&!Ve(this.$el)&&I(this.$el,"tabindex","0")},computed:{target:{get(t,e){let{href:i,target:s}=t;return s=ke(s||i,e),s.length&&s||[e]},watch(){this.updateAria()},immediate:!0}},events:[{name:ut,filter(){return x(this.mode,"hover")},handler(t){!yt(t)||this._showState||(p(this.$el,"focus"),V(document,ut,()=>p(this.$el,"blur"),!0,e=>!W(e.target,this.$el)),x(this.mode,"click")&&(this._preventClick=!0))}},{name:Ft+" "+Qt+" focus blur",filter(){return x(this.mode,"hover")},handler(t){if(yt(t))return;const e=x([Ft,"focus"],t.type),i=I(this.$el,"aria-expanded");if(!(!e&&(t.type===Qt&&L(this.$el,":focus")||t.type==="blur"&&L(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 x(this.mode,"click")&&this.$el.tagName!=="INPUT"},handler(t){t.keyCode===Bo&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return x(this.mode,"click")},handler(t){if(this._preventClick)return this._preventClick=null;let e;(ot(t.target,'a[href="#"], a[href=""]')||(e=ot(t.target,"a[href]"))&&(I(this.$el,"aria-expanded")!=="true"||e.hash&&L(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 x(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(!p(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(s=>T(s,this.clsLeave));if(e.length){for(const s of this.target){const n=x(e,s);this.toggleElement(s,n,n)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(s=>!x(i,s)),!0)},updateAria(t){x(this.mode,"media")||I(this.$el,"aria-expanded",Le(t)?t:this.isToggled(this.target))}}},Ho=Object.freeze({__proto__:null,Accordion:_s,Alert:Sr,Cover:Tr,Drop:Ds,Dropdown:Ds,FormCustom:Pr,Gif:Ar,Grid:_r,HeightMatch:Br,HeightViewport:Hr,Icon:Vs,Img:uo,Leader:xo,Margin:Bs,Modal:yo,Nav:ko,Navbar:So,Offcanvas:To,OverflowAuto:Po,Responsive:Ao,Scroll:Eo,Scrollspy:_o,ScrollspyNav:No,Sticky:Mo,Svg:Fs,Switcher:nn,Tab:Do,Toggle:zo,Video:Ns,Close:oo,Spinner:ao,SlidenavNext:Ys,SlidenavPrevious:Ys,SearchIcon:ro,Marker:wt,NavbarToggleIcon:wt,OverlayIcon:wt,PaginationNext:wt,PaginationPrevious:wt,Totop:wt});it(Ho,(t,e)=>tt.component(e,t)),tt.use(xr),$r(tt);var Oo={mixins:[st],props:{date:String,clsWrapper:String},data:{date:"",clsWrapper:".uk-countdown-%unit%"},computed:{date(t){let{date:e}=t;return Date.parse(e)},days(t,e){let{clsWrapper:i}=t;return w(i.replace("%unit%","days"),e)},hours(t,e){let{clsWrapper:i}=t;return w(i.replace("%unit%","hours"),e)},minutes(t,e){let{clsWrapper:i}=t;return w(i.replace("%unit%","minutes"),e)},seconds(t,e){let{clsWrapper:i}=t;return w(i.replace("%unit%","seconds"),e)},units(){return["days","hours","minutes","seconds"].filter(t=>this[t])}},connected(){this.start()},disconnected(){this.stop(),this.units.forEach(t=>ds(this[t]))},events:[{name:"visibilitychange",el(){return document},handler(){document.hidden?this.stop():this.start()}}],update:{write(){const t=Fo(this.date);t.total<=0&&(this.stop(),t.days=t.hours=t.minutes=t.seconds=0);for(const e of this.units){let i=String(Math.floor(t[e]));i=i.length<2?"0"+i:i;const s=this[e];s.textContent!==i&&(i=i.split(""),i.length!==s.children.length&&Et(s,i.map(()=>"<span></span>").join("")),i.forEach((n,r)=>s.children[r].textContent=n))}}},methods:{start(){this.stop(),this.date&&this.units.length&&(this.$update(),this.timer=setInterval(this.$update,1e3))},stop(){this.timer&&(clearInterval(this.timer),this.timer=null)}}};function Fo(t){const e=t-Date.now();return{total:e,seconds:e/1e3%60,minutes:e/1e3/60%60,hours:e/1e3/60/60%24,days:e/1e3/60/60/24}}const Gi="uk-transition-leave",Ki="uk-transition-enter";function rn(t,e,i,s){s===void 0&&(s=0);const n=hi(e,!0),r={opacity:1},o={opacity:0},a=f=>()=>n===hi(e)?f():Promise.reject(),l=a(()=>($(e,Gi),Promise.all(an(e).map((f,h)=>new Promise(d=>setTimeout(()=>A.start(f,o,i/2,"ease").then(d),h*s)))).then(()=>N(e,Gi)))),u=a(()=>{const f=z(e);return $(e,Ki),t(),c(R(e),{opacity:0}),new Promise(h=>requestAnimationFrame(()=>{const d=R(e),g=z(e);c(e,"alignContent","flex-start"),z(e,f);const b=an(e);c(d,o);const m=b.map((v,q)=>new Promise(O=>setTimeout(()=>A.start(v,r,i/2,"ease").then(O),q*s)));f!==g&&m.push(A.start(e,{height:g},i/2+b.length*s,"ease")),Promise.all(m).then(()=>{N(e,Ki),n===hi(e)&&(c(e,{height:"",alignContent:""}),c(d,{opacity:""}),delete e.dataset.transition),h()})}))});return T(e,Gi)?on(e).then(u):T(e,Ki)?on(e).then(l).then(u):l().then(u)}function hi(t,e){return e&&(t.dataset.transition=1+hi(t)),Pt(t.dataset.transition)||0}function on(t){return Promise.all(R(t).filter(A.inProgress).map(e=>new Promise(i=>V(e,"transitionend transitioncanceled",i))))}function an(t){return qi(R(t)).reduce((e,i)=>e.concat(be(i.filter(s=>re(s)),"offsetLeft")),[])}function Lo(t,e,i){return new Promise(s=>requestAnimationFrame(()=>{let n=R(e);const r=n.map(a=>hn(a,!0)),o=c(e,["height","padding"]);A.cancel(e),n.forEach(A.cancel),ln(e),t(),n=n.concat(R(e).filter(a=>!x(n,a))),Promise.resolve().then(()=>{H.flush();const a=c(e,["height","padding"]),[l,u]=Wo(e,n,r);n.forEach((f,h)=>u[h]&&c(f,u[h])),c(e,k({display:"block"},o)),requestAnimationFrame(()=>{const f=n.map((h,d)=>M(h)===e&&A.start(h,l[d],i,"ease")).concat(A.start(e,a,i,"ease"));Promise.all(f).then(()=>{n.forEach((h,d)=>M(h)===e&&c(h,"display",l[d].opacity===0?"none":"")),ln(e)},_).then(s)})})}))}function hn(t,e){const i=c(t,"zIndex");return F(t)?k({display:"",opacity:e?c(t,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:i==="auto"?te(t):i},cn(t)):!1}function Wo(t,e,i){const s=e.map((r,o)=>M(r)&&o in i?i[o]?F(r)?cn(r):{opacity:0}:{opacity:F(r)?1:0}:!1),n=s.map((r,o)=>{const a=M(e[o])===t&&(i[o]||hn(e[o]));if(!a)return!1;if(!r)delete a.opacity;else if(!("opacity"in r)){const{opacity:l}=a;l%1?r.opacity=1:delete a.opacity}return a});return[s,n]}function ln(t){c(t.children,{height:"",left:"",opacity:"",pointerEvents:"",position:"",top:"",marginTop:"",marginLeft:"",transform:"",width:"",zIndex:""}),c(t,{height:"",display:"",padding:""})}function cn(t){const{height:e,width:i}=D(t),{top:s,left:n}=Ke(t),{marginLeft:r,marginTop:o}=c(t,["marginTop","marginLeft"]);return{top:s,left:n,height:e,width:i,marginLeft:r,marginTop:o,transform:""}}var un={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(t,e){e===void 0&&(e=this.$el);const i=this.animation;return(i==="fade"?rn:i==="delayed-fade"?function(){for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return rn(...r,40)}:i?Lo:()=>(t(),Promise.resolve()))(t,e,this.duration).then(()=>this.$update(e,"resize"),_)}}},Ro={mixins:[un],args:"target",props:{target:Boolean,selActive:Boolean},data:{target:null,selActive:!1,attrItem:"uk-filter-control",cls:"uk-active",duration:250},computed:{toggles:{get(t,e){let{attrItem:i}=t;return E("["+i+"],[data-"+i+"]",e)},watch(){if(this.updateState(),this.selActive!==!1){const t=E(this.selActive,this.$el);this.toggles.forEach(e=>Y(e,this.cls,x(t,e)))}},immediate:!0},children:{get(t,e){let{target:i}=t;return E(i+" > *",e)},watch(t,e){e&&!Yo(t,e)&&this.updateState()},immediate:!0}},events:[{name:"click",delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.apply(t.current)}}],methods:{apply(t){const e=this.getState(),i=fn(t,this.attrItem,this.getState());jo(e,i)||this.setState(i)},getState(){return this.toggles.filter(t=>T(t,this.cls)).reduce((t,e)=>fn(e,this.attrItem,t),{filter:{"":""},sort:[]})},setState(t,e){e===void 0&&(e=!0),t=k({filter:{"":""},sort:[]},t),p(this.$el,"beforeFilter",[this,t]),this.toggles.forEach(i=>Y(i,this.cls,!!Vo(i,this.attrItem,t))),Promise.all(E(this.target,this.$el).map(i=>{const s=()=>{qo(t,i,R(i)),this.$update(this.$el)};return e?this.animate(s,i):s()})).then(()=>p(this.$el,"afterFilter",[this]))},updateState(){H.write(()=>this.setState(this.getState(),!1))}}};function dn(t,e){return Ue(ct(t,e),["filter"])}function jo(t,e){return["filter","sort"].every(i=>We(t[i],e[i]))}function qo(t,e,i){const s=Go(t);i.forEach(o=>c(o,"display",s&&!L(o,s)?"none":""));const[n,r]=t.sort;if(n){const o=Ko(i,n,r);We(o,i)||Q(e,o)}}function fn(t,e,i){const s=dn(t,e),{filter:n,group:r,sort:o,order:a="asc"}=s;return(n||G(o))&&(r?n?(delete i.filter[""],i.filter[r]=n):(delete i.filter[r],(ve(i.filter)||""in i.filter)&&(i.filter={"":n||""})):i.filter={"":n||""}),G(o)||(i.sort=[o,a]),i}function Vo(t,e,i){let{filter:s={"":""},sort:[n,r]}=i;const{filter:o="",group:a="",sort:l,order:u="asc"}=dn(t,e);return G(l)?a in s&&o===s[a]||!o&&a&&!(a in s)&&!s[""]:n===l&&r===u}function Yo(t,e){return t.length===e.length&&t.every(i=>~e.indexOf(i))}function Go(t){let{filter:e}=t,i="";return it(e,s=>i+=s||""),i}function Ko(t,e,i){return k([],t).sort((s,n)=>ct(s,e).localeCompare(ct(n,e),void 0,{numeric:!0})*(i==="asc"||-1))}var Xi={slide:{show(t){return[{transform:j(t*-100)},{transform:j()}]},percent(t){return De(t)},translate(t,e){return[{transform:j(e*-100*t)},{transform:j(e*100*(1-t))}]}}};function De(t){return Math.abs(c(t,"transform").split(",")[4]/t.offsetWidth)||0}function j(t,e){return t===void 0&&(t=0),e===void 0&&(e="%"),t+=t?e:"","translate3d("+t+", 0, 0)"}function le(t){return"scale3d("+t+", "+t+", 1)"}var gn=k({},Xi,{fade:{show(){return[{opacity:0},{opacity:1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t},{opacity:t}]}},scale:{show(){return[{opacity:0,transform:le(1-.2)},{opacity:1,transform:le(1)}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:le(1-.2*t)},{opacity:t,transform:le(1-.2+.2*t)}]}}});function Xo(t,e,i,s){let{animation:n,easing:r}=s;const{percent:o,translate:a,show:l=_}=n,u=l(i),f=new je;return{dir:i,show(h,d,g){d===void 0&&(d=0);const b=g?"linear":r;return h-=Math.round(h*rt(d,-1,1)),this.translate(d),li(e,"itemin",{percent:d,duration:h,timing:b,dir:i}),li(t,"itemout",{percent:1-d,duration:h,timing:b,dir:i}),Promise.all([A.start(e,u[1],h,b),A.start(t,u[0],h,b)]).then(()=>{this.reset(),f.resolve()},_),f.promise},cancel(){A.cancel([e,t])},reset(){for(const h in u[0])c([e,t],h,"")},forward(h,d){return d===void 0&&(d=this.percent()),A.cancel([e,t]),this.show(h,d,!0)},translate(h){this.reset();const d=a(h,i);c(e,d[1]),c(t,d[0]),li(e,"itemtranslatein",{percent:h,dir:i}),li(t,"itemtranslateout",{percent:1-h,dir:i})},percent(){return o(t||e,e,i)},getDistance(){return t==null?void 0:t.offsetWidth}}}function li(t,e,i){p(t,Ce(e,!1,!1,i))}var Jo={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){I(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el(){return document},filter(){return this.autoplay},handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>(!this.draggable||!w(":focus",this.$el))&&(!this.pauseOnHover||!L(this.$el,":hover"))&&!this.stack.length&&this.show("next"),this.autoplayInterval)},stopAutoplay(){this.interval&&clearInterval(this.interval)}}},Zo={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const e=this[t];this[t]=i=>{const s=ie(i).x*(Z?-1:1);this.prevPos=s===this.pos?this.prevPos:this.pos,this.pos=s,e(i)}}},events:[{name:ut,delegate(){return this.selSlides},handler(t){!this.draggable||!yt(t)&&Qo(t.target)||ot(t.target,xe)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,P(document,Zt,this.move,{passive:!1}),P(document,mt+" "+Ut+" input",this.end,!0),c(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)<this.threshold)return;c(this.list,"pointerEvents","none"),t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=e<0?1:-1;const{slides:i}=this;let{prevIndex:s}=this,n=Math.abs(e),r=this.getIndex(s+this.dir,s),o=this._getDistance(s,r)||i[s].offsetWidth;for(;r!==s&&n>o;)this.drag-=o*this.dir,s=r,n-=o,r=this.getIndex(s+this.dir,s),o=this._getDistance(s,r)||i[s].offsetWidth;this.percent=n/o;const a=i[s],l=i[r],u=this.index!==r,f=s===r;let h;[this.index,this.prevIndex].filter(d=>!x([r,s],d)).forEach(d=>{p(i[d],"itemhidden",[this]),f&&(h=!0,this.prevIndex=s)}),(this.index===s&&this.prevIndex!==s||h)&&p(i[this.index],"itemshown",[this]),u&&(this.prevIndex=s,this.index=r,!f&&p(a,"beforeitemhide",[this]),p(l,"beforeitemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!f&&l),u&&(!f&&p(a,"itemhide",[this]),p(l,"itemshow",[this]))},end(){if(ee(document,Zt,this.move,{passive:!1}),ee(document,mt+" "+Ut+" input",this.end,!0),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(Z?this.dir*(Z?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}c(this.list,{userSelect:"",pointerEvents:""}),this.drag=this.percent=null}}};function Qo(t){return!t.children.length&&t.childNodes.length}var Uo={data:{selNav:!1},computed:{nav(t,e){let{selNav:i}=t;return w(i,e)},selNavItem(t){let{attrItem:e}=t;return"["+e+"],[data-"+e+"]"},navItems(t,e){return E(this.selNavItem,e)}},update:{write(){this.nav&&this.length!==this.nav.children.length&&Et(this.nav,this.slides.map((t,e)=>"<li "+this.attrItem+'="'+e+'"><a href></a></li>').join("")),this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]},events:[{name:"click",delegate(){return this.selNavItem},handler(t){t.preventDefault(),this.show(ct(t.current,this.attrItem))}},{name:"itemshow",handler:"updateNav"}],methods:{updateNav(){const t=this.getValidIndex();for(const e of this.navItems){const i=ct(e,this.attrItem);Y(e,this.clsActive,Pt(i)===t),Y(e,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex))}}}},pn={mixins:[Jo,Zo,Uo],props:{clsActivated:Boolean,easing:String,index:Number,finite:Boolean,velocity:Number,selSlides:String},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:!1,Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){N(this.slides,this.clsActive)},computed:{duration(t,e){let{velocity:i}=t;return mn(e.offsetWidth/i)},list(t,e){let{selList:i}=t;return w(i,e)},maxIndex(){return this.length-1},selSlides(t){let{selList:e,selSlides:i}=t;return e+" "+(i||"> *")},slides:{get(){return E(this.selSlides,this.$el)},watch(){this.$reset()}},length(){return this.slides.length}},events:{itemshown(){this.$update(this.list)}},methods:{show(t,e){if(e===void 0&&(e=!1),this.dragging||!this.length)return;const{stack:i}=this,s=e?0:i.length,n=()=>{i.splice(s,1),i.length&&this.show(i.shift(),!0)};if(i[e?"unshift":"push"](t),!e&&i.length>1){i.length===2&&this._transitioner.forward(Math.min(this.duration,200));return}const r=this.getIndex(this.index),o=T(this.slides,this.clsActive)&&this.slides[r],a=this.getIndex(t,this.index),l=this.slides[a];if(o===l){n();return}if(this.dir=ta(t,r),this.prevIndex=r,this.index=a,o&&!p(o,"beforeitemhide",[this])||!p(l,"beforeitemshow",[this,o])){this.index=this.prevIndex,n();return}const u=this._show(o,l,e).then(()=>(o&&p(o,"itemhidden",[this]),p(l,"itemshown",[this]),new Promise(f=>{H.write(()=>{i.shift(),i.length?this.show(i.shift(),!0):this._transitioner=null,f()})})));return o&&p(o,"itemhide",[this]),p(l,"itemshow",[this]),u},getIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.index),rt(Kt(t,this.slides,e,this.finite),0,this.maxIndex)},getValidIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),this.getIndex(t,e)},_show(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,k({easing:i?e.offsetWidth<600?"cubic-bezier(0.25, 0.46, 0.45, 0.94)":"cubic-bezier(0.165, 0.84, 0.44, 1)":this.easing},this.transitionOptions)),!i&&!t)return this._translate(1),Promise.resolve();const{length:s}=this.stack;return this._transitioner[s>1?"forward":"show"](s>1?Math.min(this.duration,75+75/(s-1)):this.duration,this.percent)},_getDistance(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()},_translate(t,e,i){e===void 0&&(e=this.prevIndex),i===void 0&&(i=this.index);const s=this._getTransitioner(e!==i?e:!1,i);return s.translate(t),s},_getTransitioner(t,e,i,s){return t===void 0&&(t=this.prevIndex),e===void 0&&(e=this.index),i===void 0&&(i=this.dir||1),s===void 0&&(s=this.transitionOptions),new this.Transitioner(Yt(t)?this.slides[t]:t,Yt(e)?this.slides[e]:e,i*(Z?-1:1),s)}}};function ta(t,e){return t==="next"?1:t==="previous"||t<e?-1:1}function mn(t){return .5*t+300}var vn={mixins:[pn],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:Xi,Transitioner:Xo},computed:{animation(t){let{animation:e,Animations:i}=t;return k(i[e]||i.slide,{name:e})},transitionOptions(){return{animation:this.animation}}},events:{"itemshow itemhide itemshown itemhidden"(t){let{target:e}=t;this.$update(e)},beforeitemshow(t){let{target:e}=t;$(e,this.clsActive)},itemshown(t){let{target:e}=t;$(e,this.clsActivated)},itemhidden(t){let{target:e}=t;N(e,this.clsActive,this.clsActivated)}}},wn={mixins:[he,Yi,kt,vn],functional:!0,props:{delayControls:Number,preload:Number,videoAutoplay:Boolean,template:String},data:()=>({preload:1,videoAutoplay:!1,delayControls:3e3,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",selList:".uk-lightbox-items",attrItem:"uk-lightbox-item",selClose:".uk-close-large",selCaption:".uk-lightbox-caption",pauseOnHover:!1,velocity:2,Animations:gn,template:'<div class="uk-lightbox uk-overflow-hidden"> <ul class="uk-lightbox-items"></ul> <div class="uk-lightbox-toolbar uk-position-top uk-text-right uk-transition-slide-top uk-transition-opaque"> <button class="uk-lightbox-toolbar-icon uk-close-large" type="button" uk-close></button> </div> <a class="uk-lightbox-button uk-position-center-left uk-position-medium uk-transition-fade" href uk-slidenav-previous uk-lightbox-item="previous"></a> <a class="uk-lightbox-button uk-position-center-right uk-position-medium uk-transition-fade" href uk-slidenav-next uk-lightbox-item="next"></a> <div class="uk-lightbox-toolbar uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}),created(){const t=w(this.template),e=w(this.selList,t);this.items.forEach(()=>Q(e,"<li>")),this.$mount(Q(this.container,t))},computed:{caption(t,e){let{selCaption:i}=t;return w(i,e)}},events:[{name:Zt+" "+ut+" keydown",handler:"showControls"},{name:"click",self:!0,delegate(){return this.selSlides},handler(t){t.defaultPrevented||this.hide()}},{name:"shown",self:!0,handler(){this.showControls()}},{name:"hide",self:!0,handler(){this.hideControls(),N(this.slides,this.clsActive),A.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el(){return document},handler(t){if(!(!this.isToggled(this.$el)||!this.draggable))switch(t.keyCode){case 37:this.show("previous");break;case 39:this.show("next");break}}},{name:"beforeitemshow",handler(t){this.isToggled()||(this.draggable=!1,t.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=gn.scale,N(t.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshow",handler(){Et(this.caption,this.getItem().caption||"");for(let t=-this.preload;t<=this.preload;t++)this.loadItem(this.index+t)}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(t,e){const{source:i,type:s,alt:n="",poster:r,attrs:o={}}=e;if(this.setItem(e,"<span uk-spinner></span>"),!i)return;let a;const l={frameborder:"0",allow:"autoplay",allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":""+this.videoAutoplay};if(s==="image"||i.match(/\.(avif|jpe?g|a?png|gif|svg|webp)($|\?)/i))try{const{width:u,height:f}=await Pi(i,o.srcset,o.size);this.setItem(e,Be("img",k({src:i,width:u,height:f,alt:n},o)))}catch{this.setError(e)}else if(s==="video"||i.match(/\.(mp4|webm|ogv)($|\?)/i)){const u=Be("video",k({src:i,poster:r,controls:"",playsinline:"","uk-video":""+this.videoAutoplay},o));P(u,"loadedmetadata",()=>{I(u,{width:u.videoWidth,height:u.videoHeight}),this.setItem(e,u)}),P(u,"error",()=>this.setError(e))}else if(s==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(e,Be("iframe",k({src:i,frameborder:"0",allowfullscreen:"",class:"uk-lightbox-iframe"},o)));else if(a=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?[?&]v=|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(e,Be("iframe",k({src:"https://www.youtube"+(a[1]||"")+".com/embed/"+a[2]+(a[3]?"?"+a[3]:""),width:1920,height:1080},l,o)));else if(a=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:u,width:f}=await(await fetch("https://vimeo.com/api/oembed.json?maxwidth=1920&url="+encodeURI(i),{credentials:"omit"})).json();this.setItem(e,Be("iframe",k({src:"https://player.vimeo.com/video/"+a[1]+(a[2]?"?"+a[2]:""),width:f,height:u},l,o)))}catch{this.setError(e)}}}],methods:{loadItem(t){t===void 0&&(t=this.index);const e=this.getItem(t);this.getSlide(e).childElementCount||p(this.$el,"itemload",[e])},getItem(t){return t===void 0&&(t=this.index),this.items[Kt(t,this.slides)]},setItem(t,e){p(this.$el,"itemloaded",[this,Et(this.getSlide(t),e)])},getSlide(t){return this.slides[this.items.indexOf(t)]},setError(t){this.setItem(t,'<span uk-icon="icon: bolt; ratio: 2"></span>')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=setTimeout(this.hideControls,this.delayControls),$(this.$el,"uk-active","uk-transition-active")},hideControls(){N(this.$el,"uk-active","uk-transition-active")}}};function Be(t,e){const i=Qe("<"+t+">");return I(i,e),i}var ea={install:ia,props:{toggle:String},data:{toggle:"a"},computed:{toggles:{get(t,e){let{toggle:i}=t;return E(i,e)},watch(){this.hide()}}},disconnected(){this.hide()},events:[{name:"click",delegate(){return this.toggle+":not(.uk-disabled)"},handler(t){t.preventDefault(),this.show(t.current)}}],methods:{show(t){const e=es(this.toggles.map(bn),"source");if(Dt(t)){const{source:i}=bn(t);t=Tt(e,s=>{let{source:n}=s;return i===n})}return this.panel=this.panel||this.$create("lightboxPanel",k({},this.$props,{items:e})),P(this.panel.$el,"hidden",()=>this.panel=!1),this.panel.show(t)},hide(){return this.panel&&this.panel.hide()}}};function ia(t,e){t.lightboxPanel||t.component("lightboxPanel",wn),k(e.props,t.component("lightboxPanel").options.props)}function bn(t){const e={};for(const i of["href","caption","type","poster","alt","attrs"])e[i==="href"?"source":i]=ct(t,i);return e.attrs=Ue(e.attrs),e}var sa={mixins:[he],functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:null,pos:"top-center",clsContainer:"uk-notification",clsClose:"uk-notification-close",clsMsg:"uk-notification-message"},install:na,computed:{marginProp(t){let{pos:e}=t;return"margin"+(at(e,"top")?"Top":"Bottom")},startProps(){return{opacity:0,[this.marginProp]:-this.$el.offsetHeight}}},created(){const t=w("."+this.clsContainer+"-"+this.pos,this.container)||Q(this.container,'<div class="'+this.clsContainer+" "+this.clsContainer+"-"+this.pos+'" style="display: block"></div>');this.$mount(Q(t,'<div class="'+this.clsMsg+(this.status?" "+this.clsMsg+"-"+this.status:"")+'"> <a href class="'+this.clsClose+'" data-uk-close></a> <div>'+this.message+"</div> </div>"))},async connected(){const t=y(c(this.$el,this.marginProp));await A.start(c(this.$el,this.startProps),{opacity:1,[this.marginProp]:t}),this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},events:{click(t){ot(t.target,'a[href="#"],a[href=""]')&&t.preventDefault(),this.close()},[Ft](){this.timer&&clearTimeout(this.timer)},[Qt](){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))}},methods:{async close(t){const e=i=>{const s=M(i);p(i,"close",[this]),ft(i),s!=null&&s.hasChildNodes()||ft(s)};this.timer&&clearTimeout(this.timer),t||await A.start(this.$el,this.startProps),e(this.$el)}}};function na(t){t.notification.closeAll=function(e,i){$t(document.body,s=>{const n=t.getComponent(s,"notification");n&&(!e||e===n.group)&&n.close(i)})}}const ci={x:di,y:di,rotate:di,scale:di,color:Ji,backgroundColor:Ji,borderColor:Ji,blur:qt,hue:qt,fopacity:qt,grayscale:qt,invert:qt,saturate:qt,sepia:qt,opacity:oa,stroke:aa,bgx:yn,bgy:yn},{keys:ui}=Object;var xn={mixins:[ai],props:Tn(ui(ci),"list"),data:Tn(ui(ci),void 0),computed:{props(t,e){return ui(ci).reduce((i,s)=>(G(t[s])||(i[s]=ci[s](s,e,t[s].slice())),i),{})}},events:{bgimageload(){this.$emit()}},methods:{reset(){it(this.getCss(0),(t,e)=>c(this.$el,e,""))},getCss(t){return ui(this.props).reduce((e,i)=>(this.props[i](e,t),e),{transform:"",filter:""})}}};function di(t,e,i){const s=Zi(i)||{x:"px",y:"px",rotate:"deg"}[t]||"";return(t==="x"||t==="y")&&(t="translate"+ge(t)),i=i.map(y),i.length===1&&i.unshift(t==="scale"?1:0),(n,r)=>{let o=ze(i,r);at(t,"translate")&&(o=y(o).toFixed(s==="px"?0:6)),n.transform+=" "+t+"("+o+s+")"}}function Ji(t,e,i){return i.length===1&&i.unshift(He(e,t,"")),i=i.map(s=>ra(e,s)),(s,n)=>{const[r,o,a]=Sn(i,n),l=r.map((u,f)=>(u+=a*(o[f]-u),f===3?y(u):parseInt(u,10))).join(",");s[t]="rgba("+l+")"}}function ra(t,e){return He(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(y)}function qt(t,e,i){i.length===1&&i.unshift(0);const s=Zi(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=i.map(y),(n,r)=>{const o=ze(i,r);n.filter+=" "+t+"("+(o+s)+")"}}function oa(t,e,i){return i.length===1&&i.unshift(He(e,t,"")),i=i.map(y),(s,n)=>{s[t]=ze(i,n)}}function aa(t,e,i){i.length===1&&i.unshift(0);const s=Zi(i);if(i=i.map(y),!i.some(r=>r))return _;const n=Ws(e);return c(e,"strokeDasharray",n),s==="%"&&(i=i.map(r=>r*n/100)),i=i.reverse(),(r,o)=>{r.strokeDashoffset=ze(i,o)}}function yn(t,e,i){i.length===1&&i.unshift(0),t=t.substr(-1);const s=t==="y"?"height":"width";i=i.map(r=>dt(r,s,e));const n=He(e,"background-position-"+t,"");return He(e,"backgroundSize","")==="cover"?ha(t,e,i,n,s):$n(t,i,n)}function ha(t,e,i,s,n){const r=la(e);if(!r.width)return _;const o=Math.min(...i),a=Math.max(...i),l=i.indexOf(o)<i.indexOf(a),u=a-o;let f=(l?-u:0)-(l?o:a);const h={width:e.offsetWidth,height:e.offsetHeight},d=Gt.cover(r,h),g=d[n]-h[n];if(g<u)h[n]=d[n]+u-g;else if(g>u){const v=h[n]/dt(s,n,e,!0);v&&(f-=(g-u)/v)}const b=Gt.cover(r,h),m=$n(t,i,f+"px");return(v,q)=>{m(v,q),v.backgroundSize=b.width+"px "+b.height+"px",v.backgroundRepeat="no-repeat"}}function $n(t,e,i){return function(s,n){s["background-position-"+t]="calc("+i+" + "+ze(e,n)+"px)"}}const fi={};function la(t){const e=c(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(fi[e])return fi[e];const i=new Image;return e&&(i.src=e,i.naturalWidth||(i.onload=()=>{fi[e]=kn(i),p(t,"bgimageload")})),fi[e]=kn(i)}function kn(t){return{width:t.naturalWidth,height:t.naturalHeight}}function Sn(t,e){const i=t.length-1,s=Math.min(Math.floor(i*e),i-1);return t.slice(s,s+2).concat(e===1?1:e%(1/i)*i)}function ze(t,e){const[i,s,n]=Sn(t,e);return Yt(i)?i+Math.abs(i-s)*n*(i<s?1:-1):+s}function Zi(t,e){return t.reduce((i,s)=>i||B(s)&&s.replace(/[\d-]/g,"").trim(),"")||e}function He(t,e,i){const s=t.style[e],n=c(c(t,e,i),e);return t.style[e]=s,n}function Tn(t,e){return t.reduce((i,s)=>(i[s]=e,i),{})}var ca={mixins:[xn],props:{target:String,viewport:Number,easing:Number,start:String,end:String},data:{target:!1,viewport:1,easing:1,start:0,end:0},computed:{target(t,e){let{target:i}=t;return Cn(i&>(i,e)||e)},start(t){let{start:e}=t;return dt(e,"height",this.target,!0)},end(t){let{end:e,viewport:i}=t;return dt(e||(i=(1-i)*100)&&i+"vh+"+i+"%","height",this.target,!0)}},update:{read(t,e){let{percent:i}=t;if(e.has("scroll")||(i=!1),!this.matchMedia)return;const s=i;return i=ua(ji(this.target,this.start,this.end),this.easing),{percent:i,style:s===i?!1:this.getCss(i)}},write(t){let{style:e}=t;if(!this.matchMedia){this.reset();return}e&&c(this.$el,e)},events:["scroll","resize"]}};function ua(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,-e+1)}function Cn(t){return t?"offsetTop"in t?t:Cn(M(t)):document.documentElement}var In={update:{write(){if(this.stack.length||this.dragging)return;const t=this.getValidIndex(this.index);(!~this.prevIndex||this.index!==t)&&this.show(t)},events:["resize"]}};function da(t,e,i,s){let{center:n,easing:r,list:o}=s;const a=new je,l=t?Oe(t,o,n):Oe(e,o,n)+C(e).width*i,u=e?Oe(e,o,n):l+C(t).width*i*(Z?-1:1);return{dir:i,show(f,h,d){h===void 0&&(h=0);const g=d?"linear":r;return f-=Math.round(f*rt(h,-1,1)),this.translate(h),h=t?h:rt(h,0,1),Qi(this.getItemIn(),"itemin",{percent:h,duration:f,timing:g,dir:i}),t&&Qi(this.getItemIn(!0),"itemout",{percent:1-h,duration:f,timing:g,dir:i}),A.start(o,{transform:j(-u*(Z?-1:1),"px")},f,g).then(a.resolve,_),a.promise},cancel(){A.cancel(o)},reset(){c(o,"transform","")},forward(f,h){return h===void 0&&(h=this.percent()),A.cancel(o),this.show(f,h,!0)},translate(f){const h=this.getDistance()*i*(Z?-1:1);c(o,"transform",j(rt(-u+(h-h*f),-gi(o),C(o).width)*(Z?-1:1),"px"));const d=this.getActives(),g=this.getItemIn(),b=this.getItemIn(!0);f=t?rt(f,-1,1):0;for(const m of R(o)){const v=x(d,m),q=m===g,O=m===b,J=q||!O&&(v||i*(Z?-1:1)===-1^pi(m,o)>pi(t||e));Qi(m,"itemtranslate"+(J?"in":"out"),{dir:i,percent:O?1-f:q?f:v?1:0})}},percent(){return Math.abs((c(o,"transform").split(",")[4]*(Z?-1:1)+l)/(u-l))},getDistance(){return Math.abs(u-l)},getItemIn(f){f===void 0&&(f=!1);let h=this.getActives(),d=An(o,Oe(e||t,o,n));if(f){const g=h;h=d,d=g}return d[Tt(d,g=>!x(h,g))]},getActives(){return An(o,Oe(t||e,o,n))}}}function Oe(t,e,i){const s=pi(t,e);return i?s-fa(t,e):Math.min(s,Pn(e))}function Pn(t){return Math.max(0,gi(t)-C(t).width)}function gi(t){return R(t).reduce((e,i)=>C(i).width+e,0)}function fa(t,e){return C(e).width/2-C(t).width/2}function pi(t,e){return t&&(Ke(t).left+(Z?C(t).width-C(e).width:0))*(Z?-1:1)||0}function An(t,e){e-=1;const i=C(t).width,s=e+i+2;return R(t).filter(n=>{const r=pi(n,t),o=r+Math.min(C(n).width,i);return r>=e&&o<=s})}function Qi(t,e,i){p(t,Ce(e,!1,!1,i))}var ga={mixins:[st,pn,In],props:{center:Boolean,sets:Boolean},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",Transitioner:da},computed:{avgWidth(){return gi(this.list)/this.length},finite(t){let{finite:e}=t;return e||Math.ceil(gi(this.list))<Math.floor(C(this.list).width+pa(this.list)+this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return we(this.sets);let t=0;const e=Pn(this.list),i=Tt(this.slides,s=>{if(t>=e)return!0;t+=C(s).width});return~i?i:this.length-1},sets(t){let{sets:e}=t;if(!e)return;const i=C(this.list).width/(this.center?2:1);let s=0,n=i,r=0;return e=be(this.slides,"offsetLeft").reduce((o,a,l)=>{const u=C(a).width;if(r+u>s&&(!this.center&&l>this.maxIndex&&(l=this.maxIndex),!x(o,l))){const h=this.slides[l+1];this.center&&h&&u<n-C(h).width/2?n-=u:(n=i,o.push(l),s=r+i+(this.center?u/2:0))}return r+=u,o},[]),!ve(e)&&e},transitionOptions(){return{center:this.center,list:this.list}}},connected(){Y(this.$el,this.clsContainer,!w("."+this.clsContainer,this.$el))},update:{write(){for(const i of this.navItems){const s=Pt(ct(i,this.attrItem));s!==!1&&(i.hidden=!this.maxIndex||s>this.maxIndex||this.sets&&!x(this.sets,s))}this.length&&!this.dragging&&!this.stack.length&&(this.reorder(),this._translate(1));const t=this._getTransitioner(this.index).getActives(),e=[this.clsActive,(!this.sets||x(this.sets,y(this.index)))&&this.clsActivated||""];for(const i of this.slides)Y(i,e,x(t,i))},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!x(this.sets,this.index)&&(this.index=this.getValidIndex());const e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(let s=0;s<e;s++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const i=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex;this.duration=mn(this.avgWidth/this.velocity)*(C(this.slides[i]).width/this.avgWidth),this.reorder()},itemshow(){~this.prevIndex&&$(this._getTransitioner().getItemIn(),this.clsActive)}},methods:{reorder(){if(this.finite){c(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((n,r)=>c(n,"order",this.dir>0&&r<t?1:this.dir<0&&r>=this.index?-1:"")),!this.center)return;const e=this.slides[t];let i=C(this.list).width/2-C(e).width/2,s=0;for(;i>0;){const n=this.getIndex(--s+t,t),r=this.slides[n];c(r,"order",n>t?-2:-1),i-=C(r).width}},getValidIndex(t,e){if(t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),t=this.getIndex(t,e),!this.sets)return t;let i;do{if(x(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t}}};function pa(t){return Math.max(0,...R(t).map(e=>C(e).width))}var En={mixins:[xn],data:{selItem:"!li"},computed:{item(t,e){let{selItem:i}=t;return gt(i,e)}},events:[{name:"itemin itemout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,duration:s,timing:n,dir:r}}=t;H.read(()=>{const o=this.getCss(Nn(e,r,i)),a=this.getCss(_n(e)?.5:r>0?1:0);H.write(()=>{c(this.$el,o),A.start(this.$el,a,s,n).catch(_)})})}},{name:"transitioncanceled transitionend",self:!0,el(){return this.item},handler(){A.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,dir:s}}=t;H.read(()=>{const n=this.getCss(Nn(e,s,i));H.write(()=>c(this.$el,n))})}}]};function _n(t){return St(t,"in")}function Nn(t,e,i){return i/=2,_n(t)^e<0?i:1-i}var ma=k({},Xi,{fade:{show(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show(){return[{opacity:0,transform:le(1+.5),zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:le(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show(t){return t<0?[{transform:j(30),zIndex:-1},{transform:j(),zIndex:0}]:[{transform:j(-100),zIndex:0},{transform:j(),zIndex:-1}]},percent(t,e,i){return i<0?1-De(e):De(t)},translate(t,e){return e<0?[{transform:j(30*t),zIndex:-1},{transform:j(-100*(1-t)),zIndex:0}]:[{transform:j(-t*100),zIndex:0},{transform:j(30*(1-t)),zIndex:-1}]}},push:{show(t){return t<0?[{transform:j(100),zIndex:0},{transform:j(),zIndex:-1}]:[{transform:j(-30),zIndex:-1},{transform:j(),zIndex:0}]},percent(t,e,i){return i>0?1-De(e):De(t)},translate(t,e){return e<0?[{transform:j(t*100),zIndex:0},{transform:j(-30*(1-t)),zIndex:-1}]:[{transform:j(-30*t),zIndex:-1},{transform:j(100*(1-t)),zIndex:0}]}}}),va={mixins:[st,vn,In],props:{ratio:String,minHeight:Number,maxHeight:Number},data:{ratio:"16:9",minHeight:!1,maxHeight:!1,selList:".uk-slideshow-items",attrItem:"uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:ma},update:{read(){if(!this.list)return!1;let[t,e]=this.ratio.split(":").map(Number);return e=e*this.list.offsetWidth/t||0,this.minHeight&&(e=Math.max(this.minHeight,e)),this.maxHeight&&(e=Math.min(this.maxHeight,e)),{height:e-se(this.list,"height","content-box")}},write(t){let{height:e}=t;e>0&&c(this.list,"minHeight",e)},events:["resize"]}},wa={mixins:[st,un],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"uk-sortable-item",clsPlaceholder:"uk-sortable-placeholder",clsDrag:"uk-sortable-drag",clsDragState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},created(){for(const t of["init","start","move","end"]){const e=this[t];this[t]=i=>{k(this.pos,ie(i)),e(i)}}},events:{name:ut,passive:!1,handler:"init"},computed:{target(){return(this.$el.tBodies||[this.$el])[0]},items(){return R(this.target)},isEmpty:{get(){return ve(this.items)},watch(t){Y(this.target,this.clsEmpty,t)},immediate:!0},handles:{get(t,e){let{handle:i}=t;return i?E(i,e):this.items},watch(t,e){c(e,{touchAction:"",userSelect:""}),c(t,{touchAction:Ot?"none":"",userSelect:"none"})},immediate:!0}},update:{write(t){if(!this.drag||!M(this.placeholder))return;const{pos:{x:e,y:i},origin:{offsetTop:s,offsetLeft:n},placeholder:r}=this;c(this.drag,{top:i-s,left:e-n});const o=this.getSortable(document.elementFromPoint(e,i));if(!o)return;const{items:a}=o;if(a.some(A.inProgress))return;const l=$a(a,{x:e,y:i});if(a.length&&(!l||l===r))return;const u=this.getSortable(r),f=ka(o.target,l,r,e,i,o===u&&t.moved!==l);f!==!1&&(f&&r===f||(o!==u?(u.remove(r),t.moved=l):delete t.moved,o.insert(r,f),this.touched.add(o)))},events:["move"]},methods:{init(t){const{target:e,button:i,defaultPrevented:s}=t,[n]=this.items.filter(r=>W(e,r));!n||s||i>0||Si(e)||W(e,"."+this.clsNoDrag)||this.handle&&!W(e,this.handle)||(t.preventDefault(),this.touched=new Set([this]),this.placeholder=n,this.origin=k({target:e,index:te(n)},this.pos),P(document,Zt,this.move),P(document,mt,this.end),this.threshold||this.start(t))},start(t){this.drag=ya(this.$container,this.placeholder);const{left:e,top:i}=this.placeholder.getBoundingClientRect();k(this.origin,{offsetLeft:this.pos.x-e,offsetTop:this.pos.y-i}),$(this.drag,this.clsDrag,this.clsCustom),$(this.placeholder,this.clsPlaceholder),$(this.items,this.clsItem),$(document.documentElement,this.clsDragState),p(this.$el,"start",[this,this.placeholder]),ba(this.pos),this.move(t)},move(t){this.drag?this.$emit("move"):(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(t)},end(){if(ee(document,Zt,this.move),ee(document,mt,this.end),!this.drag)return;xa();const t=this.getSortable(this.placeholder);this===t?this.origin.index!==te(this.placeholder)&&p(this.$el,"moved",[this,this.placeholder]):(p(t.$el,"added",[t,this.placeholder]),p(this.$el,"removed",[this,this.placeholder])),p(this.$el,"stop",[this,this.placeholder]),ft(this.drag),this.drag=null;for(const{clsPlaceholder:e,clsItem:i}of this.touched)for(const s of this.touched)N(s.items,e,i);this.touched=null,N(document.documentElement,this.clsDragState)},insert(t,e){$(this.items,this.clsItem);const i=()=>e?Bi(e,t):Q(this.target,t);this.animate(i)},remove(t){!W(t,this.target)||this.animate(()=>ft(t))},getSortable(t){do{const e=this.$getComponent(t,"sortable");if(e&&(e===this||this.group!==!1&&e.group===this.group))return e}while(t=M(t))}}};let Mn;function ba(t){let e=Date.now();Mn=setInterval(()=>{let{x:i,y:s}=t;s+=Lt(window);const n=(Date.now()-e)*.3;e=Date.now(),Wt(document.elementFromPoint(i,t.y),/auto|scroll/).reverse().some(r=>{let{scrollTop:o,scrollHeight:a}=r;const{top:l,bottom:u,height:f}=D(oe(r));if(l<s&&l+35>s)o-=n;else if(u>s&&u-35<s)o+=n;else return;if(o>0&&o<a-f)return Lt(r,o),!0})},15)}function xa(){clearInterval(Mn)}function ya(t,e){const i=Q(t,e.outerHTML.replace(/(^<)(?:li|tr)|(?:li|tr)(\/>$)/g,"$1div$2"));return c(i,"margin","0","important"),c(i,{boxSizing:"border-box",width:e.offsetWidth,height:e.offsetHeight,padding:c(e,"padding")}),z(i.firstElementChild,z(e.firstElementChild)),i}function $a(t,e){return t[Tt(t,i=>Re(e,i.getBoundingClientRect()))]}function ka(t,e,i,s,n,r){if(!R(t).length)return;const o=e.getBoundingClientRect();if(!r)return Sa(t,i)||n<o.top+o.height/2?e:e.nextElementSibling;const a=i.getBoundingClientRect(),l=Dn([o.top,o.bottom],[a.top,a.bottom]),u=l?s:n,f=l?"width":"height",h=l?"left":"top",d=l?"right":"bottom",g=a[f]<o[f]?o[f]-a[f]:0;return a[h]<o[h]?g&&u<o[h]+g?!1:e.nextElementSibling:g&&u>o[d]-g?!1:e}function Sa(t,e){const i=R(t).length===1;i&&Q(t,e);const s=R(t),n=s.some((r,o)=>{const a=r.getBoundingClientRect();return s.slice(o+1).some(l=>{const u=l.getBoundingClientRect();return!Dn([a.left,a.right],[u.left,u.right])})});return i&&ft(e),n}function Dn(t,e){return t[1]>e[0]&&e[1]>t[0]}var Ta={mixins:[he,kt,Ms],args:"title",props:{delay:Number,title:String},data:{pos:"top",title:"",delay:0,animation:["uk-animation-scale-up"],duration:100,cls:"uk-active",clsPos:"uk-tooltip"},beforeConnect(){this._hasTitle=Xt(this.$el,"title"),I(this.$el,"title",""),this.updateAria(!1),Ca(this.$el)},disconnected(){this.hide(),I(this.$el,"title",this._hasTitle?this.title:null)},methods:{show(){this.isToggled(this.tooltip||null)||!this.title||(this._unbind=V(document,"show keydown "+ut,this.hide,!1,t=>t.type===ut&&!W(t.target,this.$el)||t.type==="keydown"&&t.keyCode===27||t.type==="show"&&t.detail[0]!==this&&t.detail[0].$name===this.$name),clearTimeout(this.showTimer),this.showTimer=setTimeout(this._show,this.delay))},async hide(){L(this.$el,"input:focus")||(clearTimeout(this.showTimer),!!this.isToggled(this.tooltip||null)&&(await this.toggleElement(this.tooltip,!1,!1),ft(this.tooltip),this.tooltip=null,this._unbind()))},_show(){this.tooltip=Q(this.container,'<div class="'+this.clsPos+'"> <div class="'+this.clsPos+'-inner">'+this.title+"</div> </div>"),P(this.tooltip,"toggled",(t,e)=>{this.updateAria(e),!!e&&(this.positionAt(this.tooltip,this.$el),this.origin=this.getAxis()==="y"?Ee(this.dir)+"-"+this.align:this.align+"-"+Ee(this.dir))}),this.toggleElement(this.tooltip,!0)},updateAria(t){I(this.$el,"aria-expanded",t)}},events:{focus:"show",blur:"hide",[Ft+" "+Qt](t){yt(t)||this[t.type===Ft?"show":"hide"]()},[ut](t){yt(t)&&this.show()}}};function Ca(t){Ve(t)||I(t,"tabindex","0")}var Ia={props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,msgInvalidMime:String,msgInvalidName:String,msgInvalidSize:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,msgInvalidMime:"Invalid File Type: %s",msgInvalidName:"Invalid File Name: %s",msgInvalidSize:"Invalid File Size: %s Kilobytes Max",multiple:!1,name:"files[]",params:{},type:"",url:"",abort:_,beforeAll:_,beforeSend:_,complete:_,completeAll:_,error:_,fail:_,load:_,loadEnd:_,loadStart:_,progress:_},events:{change(t){!L(t.target,'input[type="file"]')||(t.preventDefault(),t.target.files&&this.upload(t.target.files),t.target.value="")},drop(t){mi(t);const e=t.dataTransfer;!(e!=null&&e.files)||(N(this.$el,this.clsDragover),this.upload(e.files))},dragenter(t){mi(t)},dragover(t){mi(t),$(this.$el,this.clsDragover)},dragleave(t){mi(t),N(this.$el,this.clsDragover)}},methods:{async upload(t){if(!t.length)return;p(this.$el,"upload",[t]);for(const s of t){if(this.maxSize&&this.maxSize*1e3<s.size){this.fail(this.msgInvalidSize.replace("%s",this.maxSize));return}if(this.allow&&!Bn(this.allow,s.name)){this.fail(this.msgInvalidName.replace("%s",this.allow));return}if(this.mime&&!Bn(this.mime,s.type)){this.fail(this.msgInvalidMime.replace("%s",this.mime));return}}this.multiple||(t=t.slice(0,1)),this.beforeAll(this,t);const e=Pa(t,this.concurrent),i=async s=>{const n=new FormData;s.forEach(r=>n.append(this.name,r));for(const r in this.params)n.append(r,this.params[r]);try{const r=await as(this.url,{data:n,method:this.method,responseType:this.type,beforeSend:o=>{const{xhr:a}=o;a.upload&&P(a.upload,"progress",this.progress);for(const l of["loadStart","load","loadEnd","abort"])P(a,l.toLowerCase(),this[l]);return this.beforeSend(o)}});this.complete(r),e.length?await i(e.shift()):this.completeAll(r)}catch(r){this.error(r)}};await i(e.shift())}}};function Bn(t,e){return e.match(new RegExp("^"+t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")+"$","i"))}function Pa(t,e){const i=[];for(let s=0;s<t.length;s+=e)i.push(t.slice(s,s+e));return i}function mi(t){t.preventDefault(),t.stopPropagation()}var Aa=Object.freeze({__proto__:null,Countdown:Oo,Filter:Ro,Lightbox:ea,LightboxPanel:wn,Notification:sa,Parallax:ca,Slider:ga,SliderParallax:En,Slideshow:va,SlideshowParallax:En,Sortable:wa,Tooltip:Ta,Upload:Ia});return it(Aa,(t,e)=>tt.component(e,t)),tt});
|
|
1
|
+
/*! UIkit 3.11.2-dev.45194f70c | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */(function(pe,me){typeof exports=="object"&&typeof module<"u"?module.exports=me():typeof define=="function"&&define.amd?define("uikit",me):(pe=typeof globalThis<"u"?globalThis:pe||self,pe.UIkit=me())})(this,function(){"use strict";const{hasOwnProperty:pe,toString:me}=Object.prototype;function Bt(t,e){return pe.call(t,e)}const qn=/\B([A-Z])/g,Ot=gt(t=>t.replace(qn,"-$1").toLowerCase()),Vn=/-(\w)/g,Xt=gt(t=>t.replace(Vn,hs)),ve=gt(t=>t.length?hs(null,t.charAt(0))+t.slice(1):"");function hs(t,e){return e?e.toUpperCase():""}function ft(t,e){return t==null||t.startsWith==null?void 0:t.startsWith(e)}function At(t,e){return t==null||t.endsWith==null?void 0:t.endsWith(e)}function w(t,e){return t==null||t.includes==null?void 0:t.includes(e)}function kt(t,e){return t==null||t.findIndex==null?void 0:t.findIndex(e)}const{isArray:it,from:Yn}=Array,{assign:St}=Object;function Tt(t){return typeof t=="function"}function Et(t){return t!==null&&typeof t=="object"}function _t(t){return me.call(t)==="[object Object]"}function we(t){return Et(t)&&t===t.window}function be(t){return ki(t)===9}function $i(t){return ki(t)>=1}function Ht(t){return ki(t)===1}function ki(t){return!we(t)&&Et(t)&&t.nodeType}function Ve(t){return typeof t=="boolean"}function B(t){return typeof t=="string"}function Kt(t){return typeof t=="number"}function Jt(t){return Kt(t)||B(t)&&!isNaN(t-parseFloat(t))}function xe(t){return!(it(t)?t.length:Et(t)?Object.keys(t).length:!1)}function Z(t){return t===void 0}function Si(t){return Ve(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function Nt(t){const e=Number(t);return isNaN(e)?!1:e}function b(t){return parseFloat(t)||0}function K(t){return C(t)[0]}function C(t){return t&&($i(t)?[t]:Array.from(t).filter($i))||[]}function Ft(t){var e;if(we(t))return t;t=K(t);const i=be(t)?t:(e=t)==null?void 0:e.ownerDocument;return(i==null?void 0:i.defaultView)||window}function Ti(t){return t?At(t,"ms")?b(t):b(t)*1e3:0}function Ye(t,e){return t===e||Et(t)&&Et(e)&&Object.keys(t).length===Object.keys(e).length&&at(t,(i,s)=>i===e[s])}function Ci(t,e,i){return t.replace(new RegExp(e+"|"+i,"g"),s=>s===e?i:e)}function ye(t){return t[t.length-1]}function at(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function Ge(t,e){return t.slice().sort((i,s)=>{let{[e]:n=0}=i,{[e]:r=0}=s;return n>r?1:r>n?-1:0})}function cs(t,e){const i=new Set;return t.filter(s=>{let{[e]:n}=s;return i.has(n)?!1:i.add(n)})}function ct(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=1),Math.min(Math.max(Nt(t)||0,e),i)}function N(){}function Ii(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];return[["bottom","top"],["right","left"]].every(s=>{let[n,r]=s;return Math.min(...e.map(o=>{let{[n]:a}=o;return a}))-Math.max(...e.map(o=>{let{[r]:a}=o;return a}))>0})}function Xe(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}const $e={ratio(t,e,i){const s=e==="width"?"height":"width";return{[s]:t[e]?Math.round(i*t[s]/t[e]):t[s],[e]:i}},contain(t,e){return t={...t},at(t,(i,s)=>t=t[s]>e[s]?this.ratio(t,s,e[s]):t),t},cover(t,e){return t=this.contain(t,e),at(t,(i,s)=>t=t[s]<e[s]?this.ratio(t,s,e[s]):t),t}};function Zt(t,e,i,s){i===void 0&&(i=0),s===void 0&&(s=!1),e=C(e);const{length:n}=e;return n?(t=Jt(t)?Nt(t):t==="next"?i+1:t==="previous"?i-1:e.indexOf(K(t)),s?ct(t,0,n-1):(t%=n,t<0?t+n:t)):-1}function gt(t){const e=Object.create(null);return i=>e[i]||(e[i]=t(i))}class Ke{constructor(){this.promise=new Promise((e,i)=>{this.reject=i,this.resolve=e})}}function T(t,e,i){if(Et(e)){for(const n in e)T(t,n,e[n]);return}if(Z(i)){var s;return(s=K(t))==null?void 0:s.getAttribute(e)}else for(const n of C(t))Tt(i)&&(i=i.call(n,T(n,e))),i===null?Qt(n,e):n.setAttribute(e,i)}function Lt(t,e){return C(t).some(i=>i.hasAttribute(e))}function Qt(t,e){const i=C(t);for(const s of e.split(" "))for(const n of i)n.removeAttribute(s)}function nt(t,e){for(const i of[e,"data-"+e])if(Lt(t,i))return T(t,i)}const Gn={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 Pi(t){return C(t).some(e=>Gn[e.tagName.toLowerCase()])}function W(t){return C(t).some(e=>e.offsetWidth||e.offsetHeight||e.getClientRects().length)}const ke="input,select,textarea,button";function Ai(t){return C(t).some(e=>R(e,ke))}const Je=ke+",a[href],[tabindex]";function Ze(t){return R(t,Je)}function D(t){return t=K(t),t&&Ht(t.parentNode)&&t.parentNode}function Se(t,e){return C(t).filter(i=>R(i,e))}function R(t,e){return C(t).some(i=>i.matches(e))}function ut(t,e){return ft(e,">")&&(e=e.slice(1)),Ht(t)?t.closest(e):C(t).map(i=>ut(i,e)).filter(Boolean)}function j(t,e){return B(e)?R(t,e)||!!ut(t,e):t===e||K(e).contains(K(t))}function Te(t,e){const i=[];for(;t=D(t);)(!e||R(t,e))&&i.push(t);return i}function L(t,e){t=K(t);const i=t?C(t.children):[];return e?Se(i,e):i}function Ut(t,e){return e?C(t).indexOf(K(e)):L(D(t)).indexOf(t)}function vt(t,e){return Ei(t,ds(t,e))}function Ce(t,e){return Ie(t,ds(t,e))}function Ei(t,e){return K(fs(t,e,"querySelector"))}function Ie(t,e){return C(fs(t,e,"querySelectorAll"))}const Xn=/(^|[^\\],)\s*[!>+~-]/,us=gt(t=>t.match(Xn));function ds(t,e){return e===void 0&&(e=document),B(t)&&us(t)||be(e)?e:e.ownerDocument}const Kn=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g;function fs(t,e,i){if(e===void 0&&(e=document),!t||!B(t))return t;t=t.replace(Kn,"$1 *"),us(t)&&(t=Zn(t).map(s=>{let n=e;if(s[0]==="!"){const r=s.substr(1).trim().split(" ");n=ut(D(e),r[0]),s=r.slice(1).join(" ").trim()}if(s[0]==="-"){const r=s.substr(1).trim().split(" "),o=(n||e).previousElementSibling;n=R(o,s.substr(1))?o:null,s=r.slice(1).join(" ")}return n?Qn(n)+" "+s:null}).filter(Boolean).join(","),e=document);try{return e[i](t)}catch{return null}}const Jn=/.*?[^\\](?:,|$)/g,Zn=gt(t=>t.match(Jn).map(e=>e.replace(/,$/,"").trim()));function Qn(t){const e=[];for(;t.parentNode;){const i=T(t,"id");if(i){e.unshift("#"+Pe(i));break}else{let{tagName:s}=t;s!=="HTML"&&(s+=":nth-child("+(Ut(t)+1)+")"),e.unshift(s),t=t.parentNode}}return e.join(" > ")}function Pe(t){return B(t)?CSS.escape(t):""}function _(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,r,o,a=!1]=_i(e);o.length>1&&(o=tr(o)),a!=null&&a.self&&(o=er(o)),r&&(o=Un(r,o));for(const l of n)for(const c of s)c.addEventListener(l,o,a);return()=>te(s,n,o,a)}function te(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];let[s,n,,r,o=!1]=_i(e);for(const a of n)for(const l of s)l.removeEventListener(a,r,o)}function q(){for(var t=arguments.length,e=new Array(t),i=0;i<t;i++)e[i]=arguments[i];const[s,n,r,o,a=!1,l]=_i(e),c=_(s,n,r,u=>{const f=!l||l(u);f&&(c(),o(u,f))},a);return c}function v(t,e,i){return Ni(t).every(s=>s.dispatchEvent(Ae(e,!0,!0,i)))}function Ae(t,e,i,s){return e===void 0&&(e=!0),i===void 0&&(i=!1),B(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:s})),t}function _i(t){return t[0]=Ni(t[0]),B(t[1])&&(t[1]=t[1].split(" ")),Tt(t[2])&&t.splice(2,0,!1),t}function Un(t,e){return i=>{const s=t[0]===">"?Ie(t,i.currentTarget).reverse().filter(n=>j(i.target,n))[0]:ut(i.target,t);s&&(i.current=s,e.call(this,i))}}function tr(t){return e=>it(e.detail)?t(e,...e.detail):t(e)}function er(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function gs(t){return t&&"addEventListener"in t}function ir(t){return gs(t)?t:K(t)}function Ni(t){return it(t)?t.map(ir).filter(Boolean):B(t)?Ie(t):gs(t)?[t]:C(t)}function Ct(t){return t.pointerType==="touch"||!!t.touches}function ee(t){var e,i;const{clientX:s,clientY:n}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:s,y:n}}function ps(t,e){const i={data:null,method:"GET",headers:{},xhr:new XMLHttpRequest,beforeSend:N,responseType:"",...e};return Promise.resolve().then(()=>i.beforeSend(i)).then(()=>sr(t,i))}function sr(t,e){return new Promise((i,s)=>{const{xhr:n}=e;for(const r in e)if(r in n)try{n[r]=e[r]}catch{}n.open(e.method.toUpperCase(),t);for(const r in e.headers)n.setRequestHeader(r,e.headers[r]);_(n,"load",()=>{n.status===0||n.status>=200&&n.status<300||n.status===304?i(n):s(St(Error(n.statusText),{xhr:n,status:n.status}))}),_(n,"error",()=>s(St(Error("Network Error"),{xhr:n}))),_(n,"timeout",()=>s(St(Error("Network Timeout"),{xhr:n}))),n.send(e.data)})}function ms(t,e,i){return new Promise((s,n)=>{const r=new Image;r.onerror=o=>{n(o)},r.onload=()=>{s(r)},i&&(r.sizes=i),e&&(r.srcset=e),r.src=t})}const nr={"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,s){s===void 0&&(s="");const n=C(t);for(const r of n)if(B(e)){if(e=Qe(e),Z(i))return rr(r,e);!i&&!Kt(i)?r.style.removeProperty(e):r.style.setProperty(e,Jt(i)&&!nr[e]?i+"px":i,s)}else if(it(e)){const o=Mi(r),a={};for(const l of e)a[l]=o[Qe(l)];return a}else Et(e)&&(s=i,at(e,(o,a)=>h(r,a,o,s)));return n[0]}function Mi(t,e){return Ft(t).getComputedStyle(t,e)}function rr(t,e,i){return Mi(t,i)[e]}const or=/^\s*(["'])?(.*?)\1\s*$/;function zi(t){return Mi(document.documentElement).getPropertyValue("--uk-"+t).replace(or,"$2")}const Qe=gt(t=>ar(t)),vs=["webkit","moz","ms"];function ar(t){t=Ot(t);const{style:e}=document.documentElement;if(t in e)return t;let i=vs.length,s;for(;i--;)if(s="-"+vs[i]+"-"+t,s in e)return s}function y(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];ws(t,i,"add")}function M(t){for(var e=arguments.length,i=new Array(e>1?e-1:0),s=1;s<e;s++)i[s-1]=arguments[s];ws(t,i,"remove")}function Ue(t,e){T(t,"class",i=>(i||"").replace(new RegExp("\\b"+e+"\\b","g"),""))}function Di(t){(arguments.length<=1?void 0:arguments[1])&&M(t,arguments.length<=1?void 0:arguments[1]),(arguments.length<=2?void 0:arguments[2])&&y(t,arguments.length<=2?void 0:arguments[2])}function P(t,e){[e]=Bi(e);for(const i of C(t))if(e&&i.classList.contains(e))return!0;return!1}function G(t,e,i){const s=Bi(e);Z(i)||(i=!!i);for(const n of C(t))for(const r of s)n.classList.toggle(r,i)}function ws(t,e,i){e=e.reduce((s,n)=>s.concat(Bi(n)),[]);for(const s of C(t))s.classList[i](...e)}function Bi(t){return String(t).split(/\s|,/).filter(Boolean)}function bs(t,e,i,s){return i===void 0&&(i=400),s===void 0&&(s="linear"),Promise.all(C(t).map(n=>new Promise((r,o)=>{for(const l in e){const c=h(n,l);c===""&&h(n,l,c)}const a=setTimeout(()=>v(n,"transitionend"),i);q(n,"transitionend transitioncanceled",l=>{let{type:c}=l;clearTimeout(a),M(n,"uk-transition"),h(n,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),c==="transitioncanceled"?o():r(n)},{self:!0}),y(n,"uk-transition"),h(n,{transitionProperty:Object.keys(e).map(Qe).join(","),transitionDuration:i+"ms",transitionTimingFunction:s,...e})})))}const A={start:bs,stop(t){return v(t,"transitionend"),Promise.resolve()},cancel(t){v(t,"transitioncanceled")},inProgress(t){return P(t,"uk-transition")}},Ee="uk-animation-";function Oi(t,e,i,s,n){return i===void 0&&(i=200),Promise.all(C(t).map(r=>new Promise((o,a)=>{v(r,"animationcanceled");const l=setTimeout(()=>v(r,"animationend"),i);q(r,"animationend animationcanceled",c=>{let{type:u}=c;clearTimeout(l),u==="animationcanceled"?a():o(r),h(r,"animationDuration",""),Ue(r,Ee+"\\S*")},{self:!0}),h(r,"animationDuration",i+"ms"),y(r,e,Ee+(n?"leave":"enter")),ft(e,Ee)&&(s&&y(r,"uk-transform-origin-"+s),n&&y(r,Ee+"reverse"))})))}const lr=new RegExp(Ee+"(enter|leave)"),wt={in:Oi,out(t,e,i,s){return Oi(t,e,i,s,!0)},inProgress(t){return lr.test(T(t,"class"))},cancel(t){v(t,"animationcanceled")}},Mt={width:["left","right"],height:["top","bottom"]};function S(t){const e=Ht(t)?K(t).getBoundingClientRect():{height:V(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 z(t,e){const i=S(t);if(t){const{scrollY:n,scrollX:r}=Ft(t),o={height:n,width:r};for(const a in Mt)for(const l in Mt[a])i[Mt[a][l]]+=o[a]}if(!e)return i;const s=h(t,"position");at(h(t,["left","top"]),(n,r)=>h(t,r,e[r]-i[r]+b(s==="absolute"&&n==="auto"?ti(t)[r]:n)))}function ti(t){let{top:e,left:i}=z(t);const{ownerDocument:{body:s,documentElement:n},offsetParent:r}=K(t);let o=r||n;for(;o&&(o===s||o===n)&&h(o,"position")==="static";)o=o.parentNode;if(Ht(o)){const a=z(o);e-=a.top+b(h(o,"borderTopWidth")),i-=a.left+b(h(o,"borderLeftWidth"))}return{top:e-b(h(t,"marginTop")),left:i-b(h(t,"marginLeft"))}}function _e(t){const e=[0,0];t=K(t);do if(e[0]+=t.offsetTop,e[1]+=t.offsetLeft,h(t,"position")==="fixed"){const i=Ft(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}while(t=t.offsetParent);return e}const V=xs("height"),Ne=xs("width");function xs(t){const e=ve(t);return(i,s)=>{if(Z(s)){if(we(i))return i["inner"+e];if(be(i)){const n=i.documentElement;return Math.max(n["offset"+e],n["scroll"+e])}return i=K(i),s=h(i,t),s=s==="auto"?i["offset"+e]:b(s)||0,s-ie(i,t)}else return h(i,t,!s&&s!==0?"":+s+ie(i,t)+"px")}}function ie(t,e,i){return i===void 0&&(i="border-box"),h(t,"boxSizing")===i?Mt[e].map(ve).reduce((s,n)=>s+b(h(t,"padding"+n))+b(h(t,"border"+n+"Width")),0):0}function Me(t){for(const e in Mt)for(const i in Mt[e])if(Mt[e][i]===t)return Mt[e][1-i];return t}function dt(t,e,i,s){return e===void 0&&(e="width"),i===void 0&&(i=window),s===void 0&&(s=!1),B(t)?cr(t).reduce((n,r)=>{const o=dr(r);return o&&(r=fr(o==="vh"?V(Ft(i)):o==="vw"?Ne(Ft(i)):s?i["offset"+ve(e)]:S(i)[e],r)),n+b(r)},0):b(t)}const hr=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,cr=gt(t=>t.toString().replace(/\s/g,"").match(hr)||[]),ur=/(?:v[hw]|%)$/,dr=gt(t=>(t.match(ur)||[])[0]);function fr(t,e){return t*b(e)/100}function gr(t){if(document.readyState!=="loading"){t();return}q(document,"DOMContentLoaded",t)}function bt(t,e){var i;return(t==null||(i=t.tagName)==null?void 0:i.toLowerCase())===e.toLowerCase()}function ys(t){return Hi(t,"")}function zt(t,e){return Z(e)?x(t).innerHTML:Hi(t,e)}const Hi=ze("replaceChildren"),pr=ze("prepend"),Q=ze("append"),Fi=ze("before"),ei=ze("after");function ze(t){return function(e,i){const s=C(B(i)?Wt(i):i);return s.length&&x(e)[t](...s),ks(s)}}function pt(t){C(t).forEach(e=>e.remove())}function ii(t,e){for(e=K(Fi(t,e));e.firstChild;)e=e.firstChild;return Q(e,t),e}function $s(t,e){return C(C(t).map(i=>i.hasChildNodes?ii(C(i.childNodes),e):Q(i,e)))}function si(t){C(t).map(D).filter((e,i,s)=>s.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const mr=/^\s*<(\w+|!)[^>]*>/,vr=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Wt(t){const e=vr.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("div");return mr.test(t)?i.insertAdjacentHTML("beforeend",t.trim()):i.textContent=t,ks(i.childNodes)}function ks(t){return t.length>1?t:t[0]}function It(t,e){if(!!Ht(t))for(e(t),t=t.firstElementChild;t;){const i=t.nextElementSibling;It(t,e),t=i}}function x(t,e){return Ss(t)?K(Wt(t)):Ei(t,e)}function O(t,e){return Ss(t)?C(Wt(t)):Ie(t,e)}function Ss(t){return B(t)&&ft(t.trim(),"<")}const se=typeof window<"u",tt=se&&T(document.documentElement,"dir")==="rtl",Rt=se&&"ontouchstart"in window,ne=se&&window.PointerEvent,mt=ne?"pointerdown":Rt?"touchstart":"mousedown",re=ne?"pointermove":Rt?"touchmove":"mousemove",xt=ne?"pointerup":Rt?"touchend":"mouseup",jt=ne?"pointerenter":Rt?"":"mouseenter",oe=ne?"pointerleave":Rt?"":"mouseleave",ae=ne?"pointercancel":"touchcancel",H={reads:[],writes:[],read(t){return this.reads.push(t),Wi(),t},write(t){return this.writes.push(t),Wi(),t},clear(t){Cs(this.reads,t),Cs(this.writes,t)},flush:Li};function Li(t){Ts(H.reads),Ts(H.writes.splice(0)),H.scheduled=!1,(H.reads.length||H.writes.length)&&Wi(t+1)}const wr=4;function Wi(t){H.scheduled||(H.scheduled=!0,t&&t<wr?Promise.resolve().then(()=>Li(t)):requestAnimationFrame(()=>Li(1)))}function Ts(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function Cs(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}function Ri(){}Ri.prototype={positions:[],init(){this.positions=[];let t;this.unbind=_(document,"mousemove",e=>t=ee(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:s,top:n,bottom:r}=e,[o]=this.positions,a=ye(this.positions),l=[o,a];return Xe(a,e)?!1:[[{x:i,y:n},{x:s,y:r}],[{x:i,y:r},{x:s,y:n}]].some(u=>{const f=br(l,u);return f&&Xe(f,e)})}};function br(t,e){let[{x:i,y:s},{x:n,y:r}]=t,[{x:o,y:a},{x:l,y:c}]=e;const u=(c-a)*(n-i)-(l-o)*(r-s);if(u===0)return!1;const f=((l-o)*(s-a)-(c-a)*(i-o))/u;return f<0?!1:{x:i+f*(n-i),y:s+f*(r-s)}}const ji=window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype;function De(t,e,i,s){if(s===void 0&&(s=!0),!ji)return;const n=new IntersectionObserver((r,o)=>{(!s||r.some(a=>a.isIntersecting))&&e(r,o)},i);for(const r of it(t)?t:[t])n.observe(r);return n}const xr=window.ResizeObserver;function qi(t,e,i){if(i===void 0&&(i={box:"border-box"}),!xr)return;const s=new ResizeObserver((n,r)=>{e(n,r)});for(const n of it(t)?t:[t])s.observe(n,i);return s}const st={};st.events=st.created=st.beforeConnect=st.connected=st.beforeDisconnect=st.disconnected=st.destroy=Vi,st.args=function(t,e){return e!==!1&&Vi(e||t)},st.update=function(t,e){return Ge(Vi(t,Tt(e)?{read:e}:e),"order")},st.props=function(t,e){if(it(e)){const i={};for(const s of e)i[s]=String;e=i}return st.methods(t,e)},st.computed=st.methods=function(t,e){return e?t?{...t,...e}:e:t},st.data=function(t,e,i){return i?Is(t,e,i):e?t?function(s){return Is(t,e,s)}:e:t};function Is(t,e,i){return st.computed(Tt(t)?t.call(i,i):t,Tt(e)?e.call(i,i):e)}function Vi(t,e){return t=t&&!it(t)?[t]:t,e?t?t.concat(e):it(e)?e:[e]:t}function yr(t,e){return Z(e)?t:e}function le(t,e,i){const s={};if(Tt(e)&&(e=e.options),e.extends&&(t=le(t,e.extends,i)),e.mixins)for(const r of e.mixins)t=le(t,r,i);for(const r in t)n(r);for(const r in e)Bt(t,r)||n(r);function n(r){s[r]=(st[r]||yr)(t[r],e[r],i)}return s}function Be(t,e){e===void 0&&(e=[]);try{return t?ft(t,"{")?JSON.parse(t):e.length&&!w(t,":")?{[e[0]]:t}:t.split(";").reduce((i,s)=>{const[n,r]=s.split(/:(.*)/);return n&&!Z(r)&&(i[n.trim()]=r.trim()),i},{}):{}}catch{return{}}}function Ps(t){if(ri(t)&&Yi(t,{func:"playVideo",method:"play"}),ni(t))try{t.play().catch(N)}catch{}}function As(t){ri(t)&&Yi(t,{func:"pauseVideo",method:"pause"}),ni(t)&&t.pause()}function Es(t){ri(t)&&Yi(t,{func:"mute",method:"setVolume",value:0}),ni(t)&&(t.muted=!0)}function _s(t){return ni(t)||ri(t)}function ni(t){return bt(t,"video")}function ri(t){return bt(t,"iframe")&&(Ns(t)||Ms(t))}function Ns(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function Ms(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function Yi(t,e){await kr(t),zs(t,e)}function zs(t,e){try{t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}catch{}}const Gi="_ukPlayer";let $r=0;function kr(t){if(t[Gi])return t[Gi];const e=Ns(t),i=Ms(t),s=++$r;let n;return t[Gi]=new Promise(r=>{e&&q(t,"load",()=>{const o=()=>zs(t,{event:"listening",id:s});n=setInterval(o,100),o()}),q(window,"message",r,!1,o=>{let{data:a}=o;try{return a=JSON.parse(a),a&&(e&&a.id===s&&a.event==="onReady"||i&&Number(a.player_id)===s)}catch{}}),t.src=""+t.src+(w(t.src,"?")?"&":"?")+(e?"enablejsapi=1":"api=1&player_id="+s)}).then(()=>clearInterval(n))}function he(t,e,i){return e===void 0&&(e=0),i===void 0&&(i=0),W(t)?Ii(...Vt(t).map(s=>{const{top:n,left:r,bottom:o,right:a}=z(ce(s));return{top:n-e,left:r-i,bottom:o+e,right:a+i}}).concat(z(t))):!1}function qt(t,e){if(we(t)||be(t)?t=ue(t):t=K(t),Z(e))return t.scrollTop;t.scrollTop=e}function Xi(t,e){let{offset:i=0}=e===void 0?{}:e;const s=W(t)?Vt(t):[];return s.reduce((a,l,c)=>{const{scrollTop:u,scrollHeight:f,offsetHeight:p}=l,$=f-Oe(l),{height:k,top:d}=z(s[c-1]||t);let g=Math.ceil(d-z(ce(l)).top-i+u);return i>0&&p<k+i?g+=i:i=0,g>$?(i-=g-$,g=$):g<0&&(i-=g,g=0),()=>n(l,g-u).then(a)},()=>Promise.resolve())();function n(a,l){return new Promise(c=>{const u=a.scrollTop,f=r(Math.abs(l)),p=Date.now();(function $(){const k=o(ct((Date.now()-p)/f));qt(a,u+l*k),k===1?c():requestAnimationFrame($)})()})}function r(a){return 40*Math.pow(a,.375)}function o(a){return .5*(1-Math.cos(Math.PI*a))}}function Ki(t,e,i){if(e===void 0&&(e=0),i===void 0&&(i=0),!W(t))return 0;const[s]=Vt(t,/auto|scroll/,!0),{scrollHeight:n,scrollTop:r}=s,o=Oe(s),a=n-o,l=_e(t)[0]-_e(s)[0],c=Math.max(0,l-o+e),u=Math.min(a,l+t.offsetHeight-i);return ct((r-c)/(u-c))}function Vt(t,e,i){e===void 0&&(e=/auto|scroll|hidden/),i===void 0&&(i=!1);const s=ue(t);let n=Te(t).reverse();n=n.slice(n.indexOf(s)+1);const r=kt(n,o=>h(o,"position")==="fixed");return~r&&(n=n.slice(r)),[s].concat(n.filter(o=>e.test(h(o,"overflow"))&&(!i||o.scrollHeight>Oe(o)))).reverse()}function ce(t){return t===ue(t)?window:t}function Oe(t){return(t===ue(t)?document.documentElement:t).clientHeight}function ue(t){const{document:e}=Ft(t);return e.scrollingElement||e.documentElement}const He={width:["x","left","right"],height:["y","top","bottom"]};function Ds(t,e,i,s,n,r,o,a){i=Os(i),s=Os(s);const l={element:i,target:s};if(!t||!e)return l;const c=z(t),u=z(e),f=u;if(Bs(f,i,c,-1),Bs(f,s,u,1),n=Hs(n,c.width,c.height),r=Hs(r,u.width,u.height),n.x+=r.x,n.y+=r.y,f.left+=n.x,f.top+=n.y,o){let p=Vt(t).map(ce);a&&!w(p,a)&&p.unshift(a),p=p.map($=>z($)),at(He,($,k)=>{let[d,g,m]=$;!(o===!0||w(o,d))||p.some(E=>{const I=i[d]===g?-c[k]:i[d]===m?c[k]:0,F=s[d]===g?u[k]:s[d]===m?-u[k]:0;if(f[g]<E[g]||f[g]+c[k]>E[m]){const X=c[k]/2,J=s[d]==="center"?-u[k]/2:0;return i[d]==="center"&&(ht(X,J)||ht(-X,-J))||ht(I,F)}function ht(X,J){const et=b((f[g]+X+J-n[d]*2).toFixed(4));if(et>=E[g]&&et+c[k]<=E[m]){f[g]=et;for(const $t of["element","target"])X&&(l[$t][d]=l[$t][d]===He[k][1]?He[k][2]:He[k][1]);return!0}}})})}return z(t,f),l}function Bs(t,e,i,s){at(He,(n,r)=>{let[o,a,l]=n;e[o]===l?t[a]+=i[r]*s:e[o]==="center"&&(t[a]+=i[r]*s/2)})}function Os(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 Hs(t,e,i){const[s,n]=(t||"").split(" ");return{x:s?b(s)*(At(s,"%")?e/100:1):0,y:n?b(n)*(At(n,"%")?i/100:1):0}}var Sr=Object.freeze({__proto__:null,ajax:ps,getImage:ms,transition:bs,Transition:A,animate:Oi,Animation:wt,attr:T,hasAttr:Lt,removeAttr:Qt,data:nt,addClass:y,removeClass:M,removeClasses:Ue,replaceClass:Di,hasClass:P,toggleClass:G,dimensions:S,offset:z,position:ti,offsetPosition:_e,height:V,width:Ne,boxModelAdjust:ie,flipPosition:Me,toPx:dt,ready:gr,isTag:bt,empty:ys,html:zt,replaceChildren:Hi,prepend:pr,append:Q,before:Fi,after:ei,remove:pt,wrapAll:ii,wrapInner:$s,unwrap:si,fragment:Wt,apply:It,$:x,$$:O,inBrowser:se,isRtl:tt,hasTouch:Rt,pointerDown:mt,pointerMove:re,pointerUp:xt,pointerEnter:jt,pointerLeave:oe,pointerCancel:ae,on:_,off:te,once:q,trigger:v,createEvent:Ae,toEventTargets:Ni,isTouch:Ct,getEventPos:ee,fastdom:H,isVoidElement:Pi,isVisible:W,selInput:ke,isInput:Ai,selFocusable:Je,isFocusable:Ze,parent:D,filter:Se,matches:R,closest:ut,within:j,parents:Te,children:L,index:Ut,hasOwn:Bt,hyphenate:Ot,camelize:Xt,ucfirst:ve,startsWith:ft,endsWith:At,includes:w,findIndex:kt,isArray:it,toArray:Yn,assign:St,isFunction:Tt,isObject:Et,isPlainObject:_t,isWindow:we,isDocument:be,isNode:$i,isElement:Ht,isBoolean:Ve,isString:B,isNumber:Kt,isNumeric:Jt,isEmpty:xe,isUndefined:Z,toBoolean:Si,toNumber:Nt,toFloat:b,toNode:K,toNodes:C,toWindow:Ft,toMs:Ti,isEqual:Ye,swap:Ci,last:ye,each:at,sortBy:Ge,uniqueBy:cs,clamp:ct,noop:N,intersectRect:Ii,pointInRect:Xe,Dimensions:$e,getIndex:Zt,memoize:gt,Deferred:Ke,MouseTracker:Ri,hasIntersectionObserver:ji,observeIntersection:De,observeResize:qi,mergeOptions:le,parseOptions:Be,play:Ps,pause:As,mute:Es,isVideo:_s,positionAt:Ds,query:vt,queryAll:Ce,find:Ei,findAll:Ie,escape:Pe,css:h,getCssVar:zi,propName:Qe,isInView:he,scrollTop:qt,scrollIntoView:Xi,scrolledOver:Ki,scrollParents:Vt,getViewport:ce,getViewportClientHeight:Oe,getScrollingElement:ue});function Tr(t){const e=t.data;t.use=function(n){if(!n.installed)return n.call(null,this),n.installed=!0,this},t.mixin=function(n,r){r=(B(r)?t.component(r):r)||this,r.options=le(r.options,n)},t.extend=function(n){n=n||{};const r=this,o=function(l){this._init(l)};return o.prototype=Object.create(r.prototype),o.prototype.constructor=o,o.options=le(r.options,n),o.super=r,o.extend=r.extend,o},t.update=function(n,r){n=n?K(n):document.body;for(const o of Te(n).reverse())s(o[e],r);It(n,o=>s(o[e],r))};let i;Object.defineProperty(t,"container",{get(){return i||document.body},set(n){i=x(n)}});function s(n,r){if(!!n)for(const o in n)n[o]._connected&&n[o]._callUpdate(r)}}function Cr(t){t.prototype._callHook=function(s){var n;(n=this.$options[s])==null||n.forEach(r=>r.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(s){s===void 0&&(s="update"),!!this._connected&&((s==="update"||s==="resize")&&this._callWatches(),!!this.$options.update&&(this._updates||(this._updates=new Set,H.read(()=>{this._connected&&e.call(this,this._updates),delete this._updates})),this._updates.add(s.type||s)))},t.prototype._callWatches=function(){if(this._watch)return;const s=!Bt(this,"_watch");this._watch=H.read(()=>{this._connected&&i.call(this,s),this._watch=null})};function e(s){for(const{read:n,write:r,events:o=[]}of this.$options.update){if(!s.has("update")&&!o.some(l=>s.has(l)))continue;let a;n&&(a=n.call(this,this._data,s),a&&_t(a)&&St(this._data,a)),r&&a!==!1&&H.write(()=>r.call(this,this._data,s))}}function i(s){const{$options:{computed:n}}=this,r={...this._computeds};this._computeds={};for(const o in n){const{watch:a,immediate:l}=n[o];a&&(s&&l||Bt(r,o)&&!Ye(r[o],this[o]))&&a.call(this,this[o],r[o])}}}function Ir(t){let e=0;t.prototype._init=function(d){d=d||{},d.data=l(d,this.constructor.options),this.$options=le(this.constructor.options,d,this),this.$el=null,this.$props={},this._uid=e++,this._initData(),this._initMethods(),this._initComputeds(),this._callHook("created"),d.el&&this.$mount(d.el)},t.prototype._initData=function(){const{data:d={}}=this.$options;for(const g in d)this.$props[g]=this[g]=d[g]},t.prototype._initMethods=function(){const{methods:d}=this.$options;if(d)for(const g in d)this[g]=d[g].bind(this)},t.prototype._initComputeds=function(){const{computed:d}=this.$options;if(this._computeds={},d)for(const g in d)s(this,g,d[g])},t.prototype._initProps=function(d){let g;d=d||i(this.$options,this.$name);for(g in d)Z(d[g])||(this.$props[g]=d[g]);const m=[this.$options.computed,this.$options.methods];for(g in this.$props)g in d&&r(m,g)&&(this[g]=this.$props[g])},t.prototype._initEvents=function(){this._events=[];for(const d of this.$options.events||[])if(Bt(d,"handler"))n(this,d);else for(const g in d)n(this,d[g],g);for(const{events:d=[]}of this.$options.update||[])if(w(d,"scroll")){$(this._uid,()=>this.$emit("scroll"));break}},t.prototype._unbindEvents=function(){this._events.forEach(d=>d()),delete this._events,k(this._uid)},t.prototype._initObservers=function(){this._observers=[c(this),u(this)]},t.prototype.registerObserver=function(d){this._observers.push(d)},t.prototype._disconnectObservers=function(){this._observers.forEach(d=>d==null?void 0:d.disconnect())};function i(d,g){const m={},{args:E=[],props:I={},el:F}=d;if(!I)return m;for(const X in I){const J=Ot(X);let et=nt(F,J);Z(et)||(et=I[X]===Boolean&&et===""?!0:o(I[X],et),!(J==="target"&&(!et||ft(et,"_")))&&(m[X]=et))}const ht=Be(nt(F,g),E);for(const X in ht){const J=Xt(X);I[J]!==void 0&&(m[J]=o(I[J],ht[X]))}return m}function s(d,g,m){Object.defineProperty(d,g,{enumerable:!0,get(){const{_computeds:E,$props:I,$el:F}=d;return Bt(E,g)||(E[g]=(m.get||m).call(d,I,F)),E[g]},set(E){const{_computeds:I}=d;I[g]=m.set?m.set.call(d,E):E,Z(I[g])&&delete I[g]}})}function n(d,g,m){_t(g)||(g={name:m,handler:g});let{name:E,el:I,handler:F,capture:ht,passive:X,delegate:J,filter:et,self:$t}=g;if(I=Tt(I)?I.call(d):I||d.$el,it(I)){I.forEach(yi=>n(d,{...g,el:yi},m));return}!I||et&&!et.call(d)||d._events.push(_(I,E,J?B(J)?J:J.call(d):null,B(F)?d[F]:F.bind(d),{passive:X,capture:ht,self:$t}))}function r(d,g){return d.every(m=>!m||!Bt(m,g))}function o(d,g){return d===Boolean?Si(g):d===Number?Nt(g):d==="list"?a(g):d?d(g):g}function a(d){return it(d)?d:B(d)?d.split(/,(?![^(]*\))/).map(g=>Jt(g)?Nt(g):Si(g.trim())):[d]}function l(d,g){let{data:m={}}=d,{args:E=[],props:I={}}=g;it(m)&&(m=m.slice(0,E.length).reduce((F,ht,X)=>(_t(ht)?St(F,ht):F[E[X]]=ht,F),{}));for(const F in m)Z(m[F])?delete m[F]:I[F]&&(m[F]=o(I[F],m[F]));return m}function c(d){const{el:g}=d.$options,m=new MutationObserver(()=>d.$emit());return m.observe(g,{childList:!0,subtree:!0}),m}function u(d){const{$name:g,$options:m,$props:E}=d,{attrs:I,props:F,el:ht}=m;if(!F||I===!1)return;const X=it(I)?I:Object.keys(F),J=X.map($t=>Ot($t)).concat(g),et=new MutationObserver($t=>{const yi=i(m,g);$t.some(Xa=>{let{attributeName:Rn}=Xa;const jn=Rn.replace("data-","");return(jn===g?X:[Xt(jn),Xt(Rn)]).some(ls=>!Z(yi[ls])&&yi[ls]!==E[ls])})&&d.$reset()});return et.observe(ht,{attributes:!0,attributeFilter:J.concat(J.map($t=>"data-"+$t))}),et}const f=new Map;let p;function $(d,g){p=p||_(window,"scroll",()=>f.forEach(m=>m()),{passive:!0,capture:!0}),f.set(d,g)}function k(d){f.delete(d),p&&!f.size&&(p(),p=null)}}function Pr(t){const e=t.data;t.prototype.$create=function(s,n,r){return t[s](n,r)},t.prototype.$mount=function(s){const{name:n}=this.$options;s[e]||(s[e]={}),!s[e][n]&&(s[e][n]=this,this.$el=this.$options.el=this.$options.el||s,j(s,document)&&this._callConnected())},t.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},t.prototype.$destroy=function(s){s===void 0&&(s=!1);const{el:n,name:r}=this.$options;n&&this._callDisconnected(),this._callHook("destroy"),!!(n!=null&&n[e])&&(delete n[e][r],xe(n[e])||delete n[e],s&&pt(this.$el))},t.prototype.$emit=function(s){this._callUpdate(s)},t.prototype.$update=function(s,n){s===void 0&&(s=this.$el),t.update(s,n)},t.prototype.$getComponent=t.getComponent;const i=gt(s=>t.prefix+Ot(s));Object.defineProperties(t.prototype,{$container:Object.getOwnPropertyDescriptor(t,"container"),$name:{get(){return i(this.$options.name)}}})}function Ar(t){const e=t.data,i={};t.component=function(s,n){const r=Ot(s);if(s=Xt(r),!n)return _t(i[s])&&(i[s]=t.extend(i[s])),i[s];t[s]=function(a,l){const c=t.component(s);return c.options.functional?new c({data:_t(a)?a:[...arguments]}):a?O(a).map(u)[0]:u();function u(f){const p=t.getComponent(f,s);if(p)if(l)p.$destroy();else return p;return new c({el:f,data:l})}};const o=_t(n)?{...n}:n.options;return o.name=s,o.install==null||o.install(t,o,s),t._initialized&&!o.functional&&H.read(()=>t[s]("[uk-"+r+"],[data-uk-"+r+"]")),i[s]=_t(n)?o:n},t.getComponents=s=>(s==null?void 0:s[e])||{},t.getComponent=(s,n)=>t.getComponents(s)[n],t.connect=s=>{if(s[e])for(const n in s[e])s[e][n]._callConnected();for(const n of s.attributes){const r=Fs(n.name);r&&r in i&&t[r](s)}},t.disconnect=s=>{for(const n in s[e])s[e][n]._callDisconnected()}}const Fs=gt(t=>ft(t,"uk-")||ft(t,"data-uk-")?Xt(t.replace("data-uk-","").replace("uk-","")):!1),rt=function(t){this._init(t)};rt.util=Sr,rt.data="__uikit__",rt.prefix="uk-",rt.options={},rt.version="3.11.2-dev.45194f70c",Tr(rt),Cr(rt),Ir(rt),Ar(rt),Pr(rt);function Er(t){if(!se)return;let e;const i=()=>{e||(e=!0,H.read(()=>e=!1),t.update(null,"resize"))};_(window,"load resize",i),qi(document.documentElement,i);let s=0;_(document,"animationstart",n=>{let{target:r}=n;(h(r,"animationName")||"").match(/^uk-.*(left|right)/)&&(s++,h(document.documentElement,"overflowX","hidden"),setTimeout(()=>{--s||h(document.documentElement,"overflowX","")},Ti(h(r,"animationDuration"))+100))},!0),_(document,mt,n=>{if(!Ct(n))return;const r=ee(n),o="tagName"in n.target?n.target:D(n.target);q(document,xt+" "+ae+" scroll",a=>{const{x:l,y:c}=ee(a);(a.type!=="scroll"&&o&&l&&Math.abs(r.x-l)>100||c&&Math.abs(r.y-c)>100)&&setTimeout(()=>{v(o,"swipe"),v(o,"swipe"+_r(r.x,r.y,l,c))})})},{passive:!0})}function _r(t,e,i,s){return Math.abs(t-i)>=Math.abs(e-s)?t-i>0?"Left":"Right":e-s>0?"Up":"Down"}function Nr(t){const{connect:e,disconnect:i}=t;if(!se||!window.MutationObserver)return;H.read(function(){document.body&&It(document.body,e),new MutationObserver(r=>r.forEach(s)).observe(document,{childList:!0,subtree:!0}),new MutationObserver(r=>r.forEach(n)).observe(document,{attributes:!0,subtree:!0}),t._initialized=!0});function s(r){let{addedNodes:o,removedNodes:a}=r;for(const l of o)It(l,e);for(const l of a)It(l,i)}function n(r){var o;let{target:a,attributeName:l}=r;const c=Fs(l);if(!(!c||!(c in t))){if(Lt(a,l)){t[c](a);return}(o=t.getComponent(a,c))==null||o.$destroy()}}}var ot={connected(){!P(this.$el,this.$name)&&y(this.$el,this.$name)}},oi={methods:{lazyload(t,e){t===void 0&&(t=this.$el),e===void 0&&(e=this.$el),this.registerObserver(De(t,(i,s)=>{for(const n of it(e)?e:[e])O('img[loading="lazy"]',n).forEach(r=>Qt(r,"loading"));s.disconnect()}))}}},Pt={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(s=>Promise.all(C(t).map(n=>{const r=Ve(e)?e:!this.isToggled(n);if(!v(n,"before"+(r?"show":"hide"),[this]))return Promise.reject();const o=(Tt(i)?i:i===!1||!this.hasAnimation?this._toggle:this.hasTransition?Ls(this):Mr(this))(n,r),a=r?this.clsEnter:this.clsLeave;y(n,a),v(n,r?"show":"hide",[this]);const l=()=>{M(n,a),v(n,r?"shown":"hidden",[this]),this.$update(n)};return o?o.then(l,()=>(M(n,a),Promise.reject())):l()})).then(s,N))},isToggled(t){return t===void 0&&(t=this.$el),[t]=C(t),P(t,this.clsEnter)?!0:P(t,this.clsLeave)?!1:this.cls?P(t,this.cls.split(" ")[0]):W(t)},_toggle(t,e){if(!t)return;e=Boolean(e);let i;this.cls?(i=w(this.cls," ")||e!==P(t,this.cls),i&&G(t,this.cls,w(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),O("[autofocus]",t).some(s=>W(s)?s.focus()||!0:s.blur()),i&&(v(t,"toggled",[e,this]),this.$update(t))}}};function Ls(t){let{isToggled:e,duration:i,initProps:s,hideProps:n,transition:r,_toggle:o}=t;return(a,l)=>{const c=A.inProgress(a),u=a.hasChildNodes?b(h(a.firstElementChild,"marginTop"))+b(h(a.lastElementChild,"marginBottom")):0,f=W(a)?V(a)+(c?0:u):0;A.cancel(a),e(a)||o(a,!0),V(a,""),H.flush();const p=V(a)+(c?0:u);return V(a,f),(l?A.start(a,{...s,overflow:"hidden",height:p},Math.round(i*(1-f/p)),r):A.start(a,n,Math.round(i*(f/p)),r).then(()=>o(a,!1))).then(()=>h(a,s))}}function Mr(t){return(e,i)=>{wt.cancel(e);const{animation:s,duration:n,_toggle:r}=t;return i?(r(e,!0),wt.in(e,s[0],n,t.origin)):wt.out(e,s[1]||s[0],n,t.origin).then(()=>r(e,!1))}}var Ws={mixins:[ot,oi,Pt],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 O(i,e)},watch(t,e){if(t.forEach(s=>ai(x(this.content,s),!P(s,this.clsOpen))),e||P(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=>x(e,i))}},connected(){this.lazyload()},events:[{name:"click",delegate(){return this.targets+" "+this.$props.toggle},handler(t){t.preventDefault(),this.toggle(Ut(this.toggles,t.current))}}],methods:{toggle(t,e){let i=[this.items[Zt(t,this.items)]];const s=Se(this.items,"."+this.clsOpen);if(!this.multiple&&!w(s,i[0])&&(i=i.concat(s)),!(!this.collapsible&&s.length<2&&!Se(i,":not(."+this.clsOpen+")").length))for(const n of i)this.toggleElement(n,!P(n,this.clsOpen),async(r,o)=>{G(r,this.clsOpen,o),T(x(this.$props.toggle,r),"aria-expanded",o);const a=x((r._wrapper?"> * ":"")+this.content,r);if(e===!1||!this.hasTransition){ai(a,!o);return}if(r._wrapper||(r._wrapper=ii(a,"<div"+(o?" hidden":"")+">")),ai(a,!1),await Ls(this)(r._wrapper,o),ai(a,!o),delete r._wrapper,si(a),o){const l=x(this.$props.toggle,r);he(l)||Xi(l,{offset:this.offset})}})}}};function ai(t,e){t&&(t.hidden=e)}var zr={mixins:[ot,Pt],args:"animation",props:{close:String},data:{animation:[!0],selClose:".uk-alert-close",duration:150,hideProps:{opacity:0,...Pt.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)}}},Rs={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&&!Lt(this.$el,"preload")&&(this.$el.preload="none"),this.automute&&Es(this.$el),this.registerObserver(De(this.$el,()=>this.$emit("resize")))},update:{read(){return _s(this.$el)?{visible:W(this.$el)&&h(this.$el,"visibility")!=="hidden",inView:this.inView&&he(this.$el)}:!1},write(t){let{visible:e,inView:i}=t;!e||this.inView&&!i?As(this.$el):(this.autoplay===!0||this.inView&&i)&&Ps(this.$el)},events:["resize","scroll"]}},Dr={mixins:[Rs],props:{width:Number,height:Number},data:{automute:!0},connected(){this.registerObserver(qi(this.$el,()=>this.$emit("resize")))},update:{read(){const t=this.$el,{offsetHeight:e,offsetWidth:i}=Br(t)||D(t),s=$e.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!s.width||!s.height?!1:s},write(t){let{height:e,width:i}=t;h(this.$el,{height:e,width:i})},events:["resize"]}};function Br(t){for(;t=D(t);)if(h(t,"position")!=="static")return t}var de={props:{container:Boolean},data:{container:!0},computed:{container(t){let{container:e}=t;return e===!0&&this.$container||e&&x(e)}}},js={props:{pos:String,offset:null,flip:Boolean,clsPos:String},data:{pos:"bottom-"+(tt?"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){Ue(t,this.clsPos+"-(top|bottom|left|right)(-[a-z]+)?");let{offset:s}=this;const n=this.getAxis();if(!Jt(s)){const a=x(s);s=a?z(a)[n==="x"?"left":"top"]-z(e)[n==="x"?"right":"bottom"]:0}const{x:r,y:o}=Ds(t,e,n==="x"?Me(this.dir)+" "+this.align:this.align+" "+Me(this.dir),n==="x"?this.dir+" "+this.align:this.align+" "+this.dir,n==="x"?""+(this.dir==="left"?-s:s):" "+(this.dir==="top"?-s:s),null,this.flip,i).target;this.dir=n==="x"?r:o,this.align=n==="x"?o:r,G(t,this.clsPos+"-"+this.dir+"-"+this.align,this.offset===!1)},getAxis(){return this.dir==="top"||this.dir==="bottom"?"y":"x"}}};let U;var qs={mixins:[de,oi,js,Pt],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:vt(i,e)},clsDrop(t){let{clsDrop:e}=t;return e||"uk-"+this.$options.name},clsPos(){return this.clsDrop}},created(){this.tracker=new Ri},connected(){y(this.$el,this.clsDrop),this.toggle&&!this.target&&(this.target=this.$create("toggle",vt(this.toggle,this.$el),{target:this.$el,mode:this.mode}).$el,T(this.target,"aria-haspopup",!0),this.lazyload(this.target))},disconnected(){this.isActive()&&(U=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&&!j(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(),R(this.$el,":focus,:hover")||this.hide()}},{name:jt+" focusin",filter(){return w(this.mode,"hover")},handler(t){Ct(t)||this.clearTimers()}},{name:oe+" focusout",filter(){return w(this.mode,"hover")},handler(t){!Ct(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){!e||(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){U=this,this.tracker.init(),q(this.$el,"hide",_(document,mt,t=>{let{target:e}=t;return!j(e,this.$el)&&q(document,xt+" "+ae+" scroll",i=>{let{defaultPrevented:s,type:n,target:r}=i;!s&&n===xt&&e===r&&!(this.target&&j(e,this.target))&&this.hide(!1)},!0)}),{self:!0}),q(this.$el,"hide",_(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){U=U===null&&j(e,this.$el)&&this.isToggled()?this:U;return}U=this.isActive()?null:U,this.tracker.cancel()}}],update:{write(){this.isToggled()&&!P(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(U){if(e&&U.isDelaying){this.showTimer=setTimeout(()=>R(t,":hover")&&this.show(),10);return}let i;for(;U&&i!==U&&!j(this.$el,U.$el);)i=U,U.hide(!1)}this.container&&D(this.$el)!==this.container&&Q(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=Or(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 U===this},position(){M(this.$el,this.clsDrop+"-stack"),G(this.$el,this.clsDrop+"-boundary",this.boundaryAlign);const t=z(this.boundary),e=this.boundaryAlign?t:z(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)&&y(this.$el,this.clsDrop+"-stack");this.positionAt(this.$el,this.boundaryAlign?this.boundary:this.target,this.boundary)}}};function Or(t){const e=[];return It(t,i=>h(i,"position")!=="static"&&e.push(i)),e}var Hr={mixins:[ot],args:"target",props:{target:Boolean},data:{target:!1},computed:{input(t,e){return x(ke,e)},state(){return this.input.nextElementSibling},target(t,e){let{target:i}=t;return i&&(i===!0&&D(this.input)===e&&this.input.nextElementSibling||vt(i,e))}},update(){const{target:t,input:e}=this;if(!t)return;let i;const s=Ai(t)?"value":"textContent",n=t[s],r=e.files&&e.files[0]?e.files[0].name:R(e,"select")&&(i=O("option",e).filter(o=>o.selected)[0])?i.textContent:e.value;n!==r&&(t[s]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el(){return ut(this.$el,"form")},handler(){this.$emit()}}]},Fr={update:{read(t){const e=he(this.$el);if(!e||t.isInView===e)return!1;t.isInView=e},write(){this.$el.src=""+this.$el.src},events:["scroll","resize"]}},Vs={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},update:{read(){const t=Ji(this.$el.children);return{rows:t,columns:Lr(t)}},write(t){let{columns:e,rows:i}=t;for(const s of i)for(const n of s)G(n,this.margin,i[0]!==s),G(n,this.firstColumn,!!~e[0].indexOf(n))},events:["resize"]}};function Ji(t){return Ys(t,"top","bottom")}function Lr(t){const e=[];for(const i of t){const s=Ys(i,"left","right");for(let n=0;n<s.length;n++)e[n]=e[n]?e[n].concat(s[n]):s[n]}return tt?e.reverse():e}function Ys(t,e,i){const s=[[]];for(const n of t){if(!W(n))continue;let r=li(n);for(let o=s.length-1;o>=0;o--){const a=s[o];if(!a[0]){a.push(n);break}let l;if(a[0].offsetParent===n.offsetParent?l=li(a[0]):(r=li(n,!0),l=li(a[0],!0)),r[e]>=l[i]-1&&r[e]!==l[e]){s.push([n]);break}if(r[i]-1>l[e]||r[e]===l[e]){a.push(n);break}if(o===0){s.unshift([n]);break}}}return s}function li(t,e){e===void 0&&(e=!1);let{offsetTop:i,offsetLeft:s,offsetHeight:n,offsetWidth:r}=t;return e&&([i,s]=_e(t)),{top:i,left:s,bottom:i+n,right:s+r}}var Wr={extends:Vs,mixins:[ot],name:"grid",props:{masonry:Boolean,parallax:Number},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0},connected(){this.masonry&&y(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||Gs(this.$el))return t.translates=!1,!1;let s=!1;const n=L(this.$el),r=qr(e),o=jr(n,this.margin)*(i.length-1),a=Math.max(...r)+o;this.masonry&&(e=e.map(c=>Ge(c,"offsetTop")),s=Rr(i,e));let l=Math.abs(this.parallax);return l&&(l=r.reduce((c,u,f)=>Math.max(c,u+o+(f%2?l:l/8)-a),0)),{padding:l,columns:e,translates:s,height:s?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 Gs(this.$el)?!1:{scrolled:this.parallax?Ki(this.$el)*Math.abs(this.parallax):!1}},write(t){let{columns:e,scrolled:i,translates:s}=t;i===!1&&!s||e.forEach((n,r)=>n.forEach((o,a)=>h(o,"transform",!i&&!s?"":"translateY("+((s&&-s[r][a])+(i?r%2?i:i/8:0))+"px)")))},events:["scroll","resize"]}]};function Gs(t){return L(t).some(e=>h(e,"position")==="absolute")}function Rr(t,e){const i=t.map(s=>Math.max(...s.map(n=>n.offsetHeight)));return e.map(s=>{let n=0;return s.map((r,o)=>n+=o?i[o-1]-s[o-1].offsetHeight:0)})}function jr(t,e){const[i]=t.filter(s=>P(s,e));return b(i?h(i,"marginTop"):h(t[0],"paddingLeft"))}function qr(t){return t.map(e=>e.reduce((i,s)=>i+s.offsetHeight,0))}var Vr={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0,forceHeight:!0},computed:{elements(t,e){let{target:i}=t;return O(i,e)}},update:{read(){return{rows:(this.row?Ji(this.elements):[this.elements]).map(Yr)}},write(t){let{rows:e}=t;for(const{heights:i,elements:s}of e)s.forEach((n,r)=>h(n,"minHeight",i[r]))},events:["resize"]}};function Yr(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(Xs),i=Math.max(...e);const s=t.some(r=>r.style.minHeight),n=t.some((r,o)=>!r.style.minHeight&&e[o]<i);return s&&n&&(h(t,"minHeight",""),e=t.map(Xs),i=Math.max(...e)),e=t.map((r,o)=>e[o]===i&&b(r.style.minHeight).toFixed(2)!==i.toFixed(2)?"":i),{heights:e,elements:t}}function Xs(t){let e=!1;W(t)||(e=t.style.display,h(t,"display","block","important"));const i=S(t).height-ie(t,"height","content-box");return e!==!1&&h(t,"display",e),i}var Gr={mixins:[ot],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(!W(this.$el))return!1;let i="";const s=ie(this.$el,"height","content-box");if(this.expand)i=V(window)-(S(document.documentElement).height-S(this.$el).height)-s||"";else{if(i="calc(100vh",this.offsetTop){const{top:n}=z(this.$el);i+=n>0&&n<V(window)/2?" - "+n+"px":""}this.offsetBottom===!0?i+=" - "+S(this.$el.nextElementSibling).height+"px":Jt(this.offsetBottom)?i+=" - "+this.offsetBottom+"vh":this.offsetBottom&&At(this.offsetBottom,"px")?i+=" - "+b(this.offsetBottom)+"px":B(this.offsetBottom)&&(i+=" - "+S(vt(this.offsetBottom,this.$el)).height+"px"),i+=(s?" - "+s+"px":"")+")"}return{minHeight:i,prev:e}},write(t){let{minHeight:e,prev:i}=t;h(this.$el,{minHeight:e}),e!==i&&v(this.$el,"resize"),this.minHeight&&b(h(this.$el,"minHeight"))<this.minHeight&&h(this.$el,"minHeight",this.minHeight)},events:["resize"]}},Ks={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&&w(this.src,"#")&&([this.src,this.icon]=this.src.split("#")),this.svg=this.getSvg().then(t=>{if(this._connected){const e=Qr(t,this.$el);return this.svgEl&&e!==this.svgEl&&pt(this.svgEl),this.applyAttributes(e,t),this.$emit(),this.svgEl=e}},N)},disconnected(){this.svg.then(t=>{this._connected||(Pi(this.$el)&&(this.$el.hidden=!1),pt(t),this.svgEl=null)}),this.svg=null},update:{read(){return!!(this.strokeAnimation&&this.svgEl&&W(this.svgEl))},write(){Zr(this.svgEl)},type:["resize"]},methods:{async getSvg(){return bt(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"?new Promise(t=>q(this.$el,"load",()=>t(this.getSvg()))):Kr(await Xr(this.src),this.icon)||Promise.reject("SVG not found.")},applyAttributes(t,e){for(const r in this.$options.props)w(this.include,r)&&r in this&&T(t,r,this[r]);for(const r in this.attributes){const[o,a]=this.attributes[r].split(":",2);T(t,o,a)}this.id||Qt(t,"id");const i=["width","height"];let s=i.map(r=>this[r]);s.some(r=>r)||(s=i.map(r=>T(e,r)));const n=T(e,"viewBox");n&&!s.some(r=>r)&&(s=n.split(" ").slice(2)),s.forEach((r,o)=>T(t,i[o],b(r)*this.ratio||null))}}};const Xr=gt(async t=>t?ft(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function Kr(t,e){var i;return e&&w(t,"<symbol")&&(t=Jr(t,e)||t),t=x(t.substr(t.indexOf("<svg"))),((i=t)==null?void 0:i.hasChildNodes())&&t}const Js=/<symbol([^]*?id=(['"])(.+?)\2[^]*?<\/)symbol>/g,hi={};function Jr(t,e){if(!hi[t]){hi[t]={},Js.lastIndex=0;let i;for(;i=Js.exec(t);)hi[t][i[3]]='<svg xmlns="http://www.w3.org/2000/svg"'+i[1]+"svg>"}return hi[t][e]}function Zr(t){const e=Zs(t);e&&t.style.setProperty("--uk-animation-stroke",e)}function Zs(t){return Math.ceil(Math.max(0,...O("[stroke]",t).map(e=>{try{return e.getTotalLength()}catch{return 0}})))}function Qr(t,e){if(Pi(e)||bt(e,"canvas")){e.hidden=!0;const s=e.nextElementSibling;return Qs(t,s)?s:ei(e,t)}const i=e.lastElementChild;return Qs(t,i)?i:Q(e,t)}function Qs(t,e){return bt(t,"svg")&&bt(e,"svg")&&Us(t)===Us(e)}function Us(t){return(t.innerHTML||new XMLSerializer().serializeToString(t).replace(/<svg.*?>(.*?)<\/svg>/g,"$1")).replace(/\s/g,"")}var Ur='<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>',to='<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>',eo='<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>',io='<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>',so='<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>',no='<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>',ro='<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>',oo='<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>',ao='<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>',lo='<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>',ho='<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>',co='<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>',uo='<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>',fo='<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>',go='<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>',po='<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 ci={spinner:go,totop:po,marker:eo,"close-icon":Ur,"close-large":to,"navbar-toggle-icon":io,"overlay-icon":so,"pagination-next":no,"pagination-previous":ro,"search-icon":oo,"search-large":ao,"search-navbar":lo,"slidenav-next":ho,"slidenav-next-large":co,"slidenav-previous":uo,"slidenav-previous-large":fo},Zi={install:bo,extends:Ks,args:"icon",props:["icon"],data:{include:["focusable"]},isIcon:!0,beforeConnect(){y(this.$el,"uk-icon")},methods:{async getSvg(){const t=xo(this.icon);if(!t)throw"Icon not found.";return t}}},yt={args:!1,extends:Zi,data:t=>({icon:Ot(t.constructor.options.name)}),beforeConnect(){y(this.$el,this.$name)}},tn={extends:yt,beforeConnect(){y(this.$el,"uk-slidenav")},computed:{icon(t,e){let{icon:i}=t;return P(e,"uk-slidenav-large")?i+"-large":i}}},mo={extends:yt,computed:{icon(t,e){let{icon:i}=t;return P(e,"uk-search-icon")&&Te(e,".uk-search-large").length?"search-large":Te(e,".uk-search-navbar").length?"search-navbar":i}}},vo={extends:yt,computed:{icon(){return"close-"+(P(this.$el,"uk-close-large")?"large":"icon")}}},wo={extends:yt,methods:{async getSvg(){const t=await Zi.methods.getSvg.call(this);return this.ratio!==1&&h(x("circle",t),"strokeWidth",1/this.ratio),t}}},ui={};function bo(t){t.icon.add=(e,i)=>{const s=B(e)?{[e]:i}:e;at(s,(n,r)=>{ci[r]=n,delete ui[r]}),t._initialized&&It(document.body,n=>at(t.getComponents(n),r=>{r.$options.isIcon&&r.icon in s&&r.$reset()}))}}function xo(t){return ci[t]?(ui[t]||(ui[t]=x((ci[yo(t)]||ci[t]).trim())),ui[t].cloneNode(!0)):null}function yo(t){return tt?Ci(Ci(t,"left","right"),"previous","next"):t}const $o="loading"in HTMLImageElement.prototype;var ko={args:"dataSrc",props:{dataSrc:String,sources:String,offsetTop:String,offsetLeft:String,target:String,loading:String},data:{dataSrc:"",sources:!1,offsetTop:"50vh",offsetLeft:"50vw",target:!1,loading:"lazy"},computed:{target:{get(t){let{target:e}=t;return[this.$el,...Ce(e,this.$el)]},watch(){this.$reset()}}},connected(){if(this.loading!=="lazy"||!ji){this.load();return}$o&&Fe(this.$el)&&(this.$el.loading="lazy",Qi(this.$el),this.target.length===1)||(zo(this.$el),this.registerObserver(De(this.target,(t,e)=>{this.load(),e.disconnect()},{rootMargin:dt(this.offsetTop,"height")+"px "+dt(this.offsetLeft,"width")+"px"})))},disconnected(){this._data.image&&(this._data.image.onload="")},update:{write(t){if(!this.observer||Fe(this.$el))return!1;const e=nt(this.$el,"data-srcset");if(e&&window.devicePixelRatio!==1){const i=h(this.$el,"backgroundSize");(i.match(/^(auto\s?)+$/)||b(i)===t.bgSize)&&(t.bgSize=Mo(e,nt(this.$el,"sizes")),h(this.$el,"backgroundSize",t.bgSize+"px"))}},events:["resize"]},methods:{load(){if(this._data.image)return this._data.image;const t=Fe(this.$el)?this.$el:To(this.$el,this.dataSrc,this.sources);return Qt(t,"loading"),Qi(this.$el,t.currentSrc),this._data.image=t}}};function Qi(t,e){if(Fe(t)){const i=D(t);(Do(i)?L(i):[t]).forEach(n=>en(n,n))}else e&&!w(t.style.backgroundImage,e)&&(h(t,"backgroundImage","url("+Pe(e)+")"),v(t,Ae("load",!1)))}const So=["data-src","data-srcset","sizes"];function en(t,e){So.forEach(i=>{const s=nt(t,i);s&&T(e,i.replace(/^(data-)+/,""),s)})}function To(t,e,i){const s=new Image;return Co(s,i),en(t,s),s.onload=()=>{Qi(t,s.currentSrc)},T(s,"src",e),s}function Co(t,e){if(e=Io(e),e.length){const i=Wt("<picture>");for(const s of e){const n=Wt("<source>");T(n,s),Q(i,n)}Q(i,t)}}function Io(t){if(!t)return[];if(ft(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=Be(t);return it(t)||(t=[t]),t.filter(e=>!xe(e))}const sn=/\s*(.*?)\s*(\w+|calc\(.*?\))\s*(?:,|$)/g;function Po(t){let e;for(sn.lastIndex=0;e=sn.exec(t);)if(!e[1]||window.matchMedia(e[1]).matches){e=_o(e[2]);break}return e||"100vw"}const Ao=/\d+(?:\w+|%)/g,Eo=/[+-]?(\d+)/g;function _o(t){return ft(t,"calc")?t.slice(5,-1).replace(Ao,e=>dt(e)).replace(/ /g,"").match(Eo).reduce((e,i)=>e+ +i,0):t}const No=/\s+\d+w\s*(?:,|$)/g;function Mo(t,e){const i=dt(Po(e)),s=(t.match(No)||[]).map(b).sort((n,r)=>n-r);return s.filter(n=>n>=i)[0]||s.pop()||""}function zo(t){Fe(t)&&!Lt(t,"src")&&T(t,"src",'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>')}function Do(t){return bt(t,"picture")}function Fe(t){return bt(t,"img")}var di={props:{media:Boolean},data:{media:!1},computed:{matchMedia(){const t=Bo(this.media);return!t||window.matchMedia(t).matches}}};function Bo(t){if(B(t)){if(t[0]==="@"){const e="breakpoint-"+t.substr(1);t=b(zi(e))}else if(isNaN(t))return t}return t&&!isNaN(t)?"(min-width: "+t+"px)":!1}var Oo={mixins:[ot,di],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||zi("leader-fill-content")}},connected(){[this.wrapper]=$s(this.$el,'<span class="'+this.clsWrapper+'">')},disconnected(){si(this.wrapper.childNodes)},update:{read(t){let{changed:e,width:i}=t;const s=i;return i=Math.floor(this.$el.offsetWidth/2),{width:i,fill:this.fill,changed:e||s!==i,hide:!this.matchMedia}},write(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"]}};const lt=[];var Ui={mixins:[ot,de,Pt],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 x(i,e)},transitionElement(){return this.panel},bgClose(t){let{bgClose:e}=t;return e&&this.panel}},beforeDisconnect(){w(lt,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()===w(lt,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(w(lt,this))return!1;!this.stack&<.length?(Promise.all(lt.map(e=>e.hide())).then(this.show),t.preventDefault()):lt.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"))+lt.length),y(t,this.clsPage),this.bgClose&&q(this.$el,"hide",_(document,mt,e=>{let{target:i}=e;ye(lt)!==this||this.overlay&&!j(i,this.$el)||j(i,this.panel)||q(document,xt+" "+ae+" scroll",s=>{let{defaultPrevented:n,type:r,target:o}=s;!n&&r===xt&&i===o&&this.hide()},!0)}),{self:!0}),this.escClose&&q(this.$el,"hide",_(document,"keydown",e=>{e.keyCode===27&&ye(lt)===this&&this.hide()}),{self:!0})}},{name:"shown",self:!0,handler(){Ze(this.$el)||T(this.$el,"tabindex","-1"),x(":focus",this.$el)||this.$el.focus()}},{name:"hidden",self:!0,handler(){w(lt,this)&<.splice(lt.indexOf(this),1),lt.length||h(document.body,"overflowY",""),h(this.$el,"zIndex",""),lt.some(t=>t.clsPage===this.clsPage)||M(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&D(this.$el)!==this.container?(Q(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,nn(this))},hide(){return this.toggleElement(this.$el,!1,nn(this))}}};function nn(t){let{transitionElement:e,_toggle:i}=t;return(s,n)=>new Promise((r,o)=>q(s,"show hide",()=>{s._reject&&s._reject(),s._reject=o,i(s,n);const a=q(e,"transitionstart",()=>{q(e,"transitionend transitioncancel",r,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),r()},Ti(h(e,"transitionDuration")))})).then(()=>delete s._reject)}var Ho={install:Fo,mixins:[Ui],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(){P(this.panel,"uk-margin-auto-vertical")?y(this.$el,"uk-flex"):h(this.$el,"display","block"),V(this.$el)}},{name:"hidden",self:!0,handler(){h(this.$el,"display",""),M(this.$el,"uk-flex")}}]};function Fo(t){let{modal:e}=t;e.dialog=function(s,n){const r=e('<div class="uk-modal"> <div class="uk-modal-dialog">'+s+"</div> </div>",n);return r.show(),_(r.$el,"hidden",async()=>{await Promise.resolve(),r.$destroy(!0)},{self:!0}),r},e.alert=function(s,n){return i(r=>{let{labels:o}=r;return'<div class="uk-modal-body">'+(B(s)?s:zt(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-primary uk-modal-close" autofocus>'+o.ok+"</button> </div>"},n,r=>r.resolve())},e.confirm=function(s,n){return i(r=>{let{labels:o}=r;return'<form> <div class="uk-modal-body">'+(B(s)?s:zt(s))+'</div> <div class="uk-modal-footer uk-text-right"> <button class="uk-button uk-button-default uk-modal-close" type="button">'+o.cancel+'</button> <button class="uk-button uk-button-primary" autofocus>'+o.ok+"</button> </div> </form>"},n,r=>r.reject())},e.prompt=function(s,n,r){return i(o=>{let{labels:a}=o;return'<form class="uk-form-stacked"> <div class="uk-modal-body"> <label>'+(B(s)?s:zt(s))+'</label> <input class="uk-input" value="'+(n||"")+'" 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>"},r,o=>o.resolve(null),o=>x("input",o.$el).value)},e.labels={ok:"Ok",cancel:"Cancel"};function i(s,n,r,o){n={bgClose:!1,escClose:!0,labels:e.labels,...n};const a=e.dialog(s(n),n),l=new Ke;let c=!1;return _(a.$el,"submit","form",u=>{u.preventDefault(),l.resolve(o==null?void 0:o(a)),c=!0,a.hide()}),_(a.$el,"hide",()=>!c&&r(l)),l.promise.dialog=a,l.promise}}var Lo={extends:Ws,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const rn=".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle";var Wo={mixins:[ot,de],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:rn,align:tt?"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:rn,container:!1},computed:{boundary(t,e){let{boundary:i,boundaryAlign:s}=t;return i===!0||s?e:i},dropbarAnchor(t,e){let{dropbarAnchor:i}=t;return vt(i,e)},pos(t){let{align:e}=t;return"bottom-"+e},dropbar:{get(t){let{dropbar:e}=t;return e?(e=this._dropbar||vt(e,this.$el)||x("+ .uk-navbar-dropbar",this.$el),e||(this._dropbar=x("<div></div>"))):null},watch(t){y(t,"uk-navbar-dropbar")},immediate:!0},dropContainer(t,e){return this.container||e},dropdowns:{get(t,e){let{clsDrop:i}=t;const s=O("."+i,e);if(this.dropContainer!==e)for(const r of O("."+i,this.dropContainer)){var n;const o=(n=this.getDropdown(r))==null?void 0:n.target;!w(s,r)&&o&&j(o,this.$el)&&s.push(r)}return s},watch(t){this.$create("drop",t.filter(e=>!this.getDropdown(e)),{...this.$props,boundary:this.boundary,pos:this.pos,offset:this.dropbar||this.offset})},immediate:!0},toggles(t,e){let{dropdown:i}=t;return O(i,e)}},disconnected(){this.dropbar&&pt(this.dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate(){return this.dropdown},handler(t){let{current:e}=t;const i=this.getActive();i&&w(i.mode,"hover")&&i.target&&!j(i.target,e)&&!i.isDelaying&&i.hide(!1)}},{name:"keydown",delegate(){return this.dropdown},handler(t){const{current:e,keyCode:i}=t,s=this.getActive();i===Yt.DOWN&&Lt(e,"aria-expanded")&&(t.preventDefault(),!s||s.target!==e?(e.click(),q(this.dropContainer,"show",n=>{let{target:r}=n;return an(r)})):an(s.$el)),on(t,this.toggles,s)}},{name:"keydown",el(){return this.dropContainer},delegate(){return"."+this.clsDrop},handler(t){const{current:e,keyCode:i}=t;if(!w(this.dropdowns,e))return;const s=this.getActive(),n=O(Je,e),r=kt(n,a=>R(a,":focus"));if(i===Yt.UP&&(t.preventDefault(),r>0&&n[r-1].focus()),i===Yt.DOWN&&(t.preventDefault(),r<n.length-1&&n[r+1].focus()),i===Yt.ESC){var o;s==null||(o=s.target)==null||o.focus()}on(t,this.toggles,s)}},{name:"mouseleave",el(){return this.dropbar},filter(){return this.dropbar},handler(){const t=this.getActive();t&&w(t.mode,"hover")&&!this.dropdowns.some(e=>R(e,":hover"))&&t.hide()}},{name:"beforeshow",el(){return this.dropContainer},filter(){return this.dropbar},handler(){D(this.dropbar)||ei(this.dropbarAnchor||this.$el,this.dropbar)}},{name:"show",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i,dir:s}=e;!P(i,this.clsDrop)||(this.dropbarMode==="slide"&&y(this.dropbar,"uk-navbar-dropbar-slide"),this.clsDrop&&y(i,this.clsDrop+"-dropbar"),s==="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 s=this.getActive();R(this.dropbar,":hover")&&(s==null?void 0:s.$el)===i&&!this.toggles.some(n=>s.target!==n&&R(n,":focus"))&&t.preventDefault()}},{name:"hide",el(){return this.dropContainer},filter(){return this.dropbar},handler(t,e){let{$el:i}=e;if(!P(i,this.clsDrop))return;const s=this.getActive();(!s||(s==null?void 0:s.$el)===i)&&this.transitionTo(0)}}],methods:{getActive(){return U&&j(U.target,this.$el)&&U},transitionTo(t,e){const{dropbar:i}=this,s=W(i)?V(i):0;return e=s<t&&e,h(e,"clip","rect(0,"+e.offsetWidth+"px,"+s+"px,0)"),V(i,s),A.cancel([e,i]),Promise.all([A.start(i,{height:t},this.duration),A.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(N).then(()=>{h(e,{clip:""}),this.$update(i)})},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}};function on(t,e,i){const{current:s,keyCode:n}=t,r=(i==null?void 0:i.target)||s,o=e.indexOf(r);n===Yt.LEFT&&o>0&&(i==null||i.hide(!1),e[o-1].focus()),n===Yt.RIGHT&&o<e.length-1&&(i==null||i.hide(!1),e[o+1].focus()),n===Yt.TAB&&(r.focus(),i==null||i.hide(!1))}function an(t){if(!x(":focus",t)){var e;(e=x(Je,t))==null||e.focus()}}const Yt={TAB:9,ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40};var Ro={mixins:[Ui],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"?D(this.panel):this.panel}},update:{read(){this.isToggled()&&!W(this.$el)&&this.hide()},events:["resize"]},events:[{name:"click",delegate(){return'a[href^="#"]'},handler(t){let{current:{hash:e},defaultPrevented:i}=t;!i&&e&&x(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:s,clientHeight:n}=this.panel;(n>=s||i===0&&e>0||s-i<=n&&e<0)&&t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!P(D(this.panel),this.clsMode)&&(ii(this.panel,"<div>"),y(D(this.panel),this.clsMode)),h(document.documentElement,"overflowY",this.overlay?"hidden":""),y(document.body,this.clsContainer,this.clsFlip),h(document.body,"touch-action","pan-y pinch-zoom"),h(this.$el,"display","block"),y(this.$el,this.clsOverlay),y(this.panel,this.clsSidebarAnimation,this.mode!=="reveal"?this.clsMode:""),V(document.body),y(document.body,this.clsContainerAnimation),this.clsContainerAnimation&&jo()}},{name:"hide",self:!0,handler(){M(document.body,this.clsContainerAnimation),h(document.body,"touch-action","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&qo(),this.mode==="reveal"&&si(this.panel),M(this.panel,this.clsSidebarAnimation,this.clsMode),M(this.$el,this.clsOverlay),h(this.$el,"display",""),M(document.body,this.clsContainer,this.clsFlip),h(document.documentElement,"overflowY","")}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&At(t.type,"Left")^this.flip&&this.hide()}}]};function jo(){ln().content+=",user-scalable=0"}function qo(){const t=ln();t.content=t.content.replace(/,user-scalable=0$/,"")}function ln(){return x('meta[name="viewport"]',document.head)||Q(document.head,'<meta name="viewport">')}var Vo={mixins:[ot],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 ut(e,i)},content(t,e){let{selContent:i}=t;return ut(e,i)}},connected(){h(this.$el,"minHeight",this.minHeight)},update:{read(){return!this.content||!this.container||!W(this.$el)?!1:{current:b(h(this.$el,"maxHeight")),max:Math.max(this.minHeight,V(this.container)-(S(this.content).height-V(this.$el)))}},write(t){let{current:e,max:i}=t;h(this.$el,"maxHeight",i),Math.round(e)!==Math.round(i)&&v(this.$el,"resize")},events:["resize"]}},Yo={props:["width","height"],connected(){y(this.$el,"uk-responsive-width")},update:{read(){return W(this.$el)&&this.width&&this.height?{width:Ne(D(this.$el)),height:this.height}:!1},write(t){V(this.$el,$e.contain({height:this.height,width:this.width},t).height)},events:["resize"]}},Go={props:{offset:Number},data:{offset:0},methods:{async scrollTo(t){t=t&&x(t)||document.body,v(this.$el,"beforescroll",[this,t])&&(await Xi(t,{offset:this.offset}),v(this.$el,"scrolled",[this,t]))}},events:{click(t){t.defaultPrevented||(t.preventDefault(),this.scrollTo("#"+Pe(decodeURIComponent((this.$el.hash||"").substr(1)))))}}};const Dt="_ukScrollspy";var Xo={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?O(i,e):[e]},watch(t){this.hidden&&h(Se(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},disconnected(){for(const t of this.elements)M(t,this.inViewClass,t[Dt]?t[Dt].cls:""),delete t[Dt]},update:[{read(t){if(!t.update)return Promise.resolve().then(()=>{this.$emit(),t.update=!0}),!1;for(const e of this.elements)e[Dt]||(e[Dt]={cls:nt(e,"uk-scrollspy-class")||this.cls}),e[Dt].show=he(e,this.offsetTop,this.offsetLeft)},write(t){for(const e of this.elements){const i=e[Dt];i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(s=>setTimeout(s,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[Dt];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=q(t,"animationcancel animationend",()=>Ue(t,"uk-animation-[\\w-]+"))),v(t,e?"inview":"outview"),i.inview=e,this.$update(t)}}},Ko={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 O('a[href^="#"]',e).filter(i=>i.hash)},watch(t){this.scroll&&this.$create("scroll",t,{offset:this.offset||0})},immediate:!0},targets(){return O(this.links.map(t=>Pe(t.hash).substr(1)).join(","))},elements(t){let{closest:e}=t;return ut(this.links,e||"*")}},update:[{read(){const{length:t}=this.targets;if(!t||!W(this.$el))return!1;const[e]=Vt(this.targets,/auto|scroll/,!0),{scrollTop:i,scrollHeight:s}=e,n=s-Oe(e);let r=!1;return i===n?r=t-1:(this.targets.every((o,a)=>{if(z(o).top-z(ce(e)).top-this.offset<=0)return r=a,!0}),r===!1&&this.overflow&&(r=0)),{active:r}},write(t){let{active:e}=t;const i=e!==!1&&!P(this.elements[e],this.cls);this.links.forEach(s=>s.blur()),M(this.elements,this.cls),y(this.elements[e],this.cls),i&&v(this.$el,"active",[e,this.elements[e]])},events:["scroll","resize"]}]},Jo={mixins:[ot,di],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:{selTarget(t,e){let{selTarget:i}=t;return i&&x(i,e)||e},widthElement(t,e){let{widthElement:i}=t;return vt(i,e)||this.placeholder},isActive:{get(){return P(this.selTarget,this.clsActive)},set(t){t&&!this.isActive?(Di(this.selTarget,this.clsInactive,this.clsActive),v(this.$el,"active")):!t&&!P(this.selTarget,this.clsInactive)&&(Di(this.selTarget,this.clsActive,this.clsInactive),v(this.$el,"inactive"))}}},connected(){this.placeholder=x("+ .uk-sticky-placeholder",this.$el)||x('<div class="uk-sticky-placeholder"></div>'),this.isFixed=!1,this.isActive=!1},disconnected(){this.isFixed&&(this.hide(),M(this.selTarget,this.clsInactive)),pt(this.placeholder),this.placeholder=null,this.widthElement=null},events:[{name:"load hashchange popstate",el(){return window},filter(){return this.targetOffset!==!1},handler(){!location.hash||qt(window)===0||H.read(()=>{const t=z(x(location.hash)),e=z(this.$el);this.isFixed&&Ii(t,e)&&qt(window,t.top-e.height-dt(this.targetOffset,"height")-dt(this.offset,"height"))})}}],update:[{read(t,e){let{height:i,margin:s}=t;if(this.inactive=!this.matchMedia||!W(this.$el),this.inactive)return!1;const n=this.isActive&&e.has("resize");n&&(h(this.selTarget,"transition","0s"),this.hide()),this.isActive||(i=z(this.$el).height,s=h(this.$el,"margin")),n&&(this.show(),H.write(()=>h(this.selTarget,"transition","")));const r=this.isFixed?this.placeholder:this.$el,o=V(window);let a=this.position;a==="auto"&&i>o&&(a="bottom");let l=dt(this.offset,"height",r);a==="bottom"&&(l+=o-i);const c=Math.max(0,i+l-o),u=z(r).top,f=z(r.offsetParent).top,p=hn(this.top,this.$el,u),$=hn(this.bottom,this.$el,u+i,!0),k=Math.max(p,u)-l,d=$?$-z(this.$el).height+c-l:ue(this.$el).scrollHeight-o;return{start:k,end:d,offset:l,overflow:c,topOffset:u,offsetParentTop:f,height:i,margin:s,width:S(W(this.widthElement)?this.widthElement:this.$el).width,top:_e(r)[0]}},write(t){let{height:e,margin:i}=t;const{placeholder:s}=this;h(s,{height:e,margin:i}),j(s,document)||(ei(this.$el,s),s.hidden=!0),this.isActive=!!this.isActive},events:["resize"]},{read(t){let{scroll:e=0,dir:i="down",overflow:s,overflowScroll:n=0,start:r,end:o}=t;const a=qt(window);return{dir:e<=a?"down":"up",prevDir:i,scroll:a,prevScroll:e,overflowScroll:ct(n+ct(a,r,o)-ct(e,r,o),0,s)}},write(t,e){const i=e.has("scroll"),{initTimestamp:s=0,dir:n,prevDir:r,scroll:o,prevScroll:a=0,top:l,start:c,topOffset:u,height:f}=t;if(o<0||o===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const p=Date.now();if((p-s>300||n!==r)&&(t.initScroll=o,t.initTimestamp=p),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-o)<=30&&Math.abs(a-o)<=10))if(this.inactive||o<c||this.showOnUp&&(o<=c||n==="down"&&i||n==="up"&&!this.isFixed&&o<=u+f)){if(!this.isFixed){wt.inProgress(this.$el)&&l>o&&(wt.cancel(this.$el),this.hide());return}this.isFixed=!1,this.animation&&o>u?(wt.cancel(this.$el),wt.out(this.$el,this.animation).then(()=>this.hide(),N)):this.hide()}else this.isFixed?this.update():this.animation&&o>u?(wt.cancel(this.$el),this.show(),wt.in(this.$el,this.animation).catch(N)):this.show()},events:["resize","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){this.isActive=!1,M(this.$el,this.clsFixed,this.clsBelow),h(this.$el,{position:"",top:"",width:""}),this.placeholder.hidden=!0},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:s=0,start:n,end:r,offset:o,topOffset:a,height:l,offsetParentTop:c}=this._data;const u=n!==0||e>n;let f="fixed";e>r&&(o+=r-c,f="absolute"),i&&(o-=s),h(this.$el,{position:f,top:o+"px",width:t}),this.isActive=u,G(this.$el,this.clsBelow,e>a+l),y(this.$el,this.clsFixed)}}};function hn(t,e,i,s){if(!t)return 0;if(B(t)&&t.match(/^-?\d/))return i+dt(t);{const n=t===!0?D(e):vt(t,e);return z(n).bottom-(s&&n&&j(e,n)?b(h(n,"paddingBottom")):0)}}var cn={mixins:[oi,Pt],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 Ce(i,e)},watch(t){this.swiping&&h(t,"touch-action","pan-y pinch-zoom");const e=this.index();this.connects.forEach(i=>L(i).forEach((s,n)=>G(s,this.cls,n===e)))},immediate:!0},toggles:{get(t,e){let{toggle:i}=t;return O(i,e).filter(s=>!R(s,".uk-disabled *, .uk-disabled, [disabled]"))},watch(t){const e=this.index();this.show(~e?e:t[this.active]||t[0])},immediate:!0},children(){return L(this.$el).filter(t=>this.toggles.some(e=>j(e,t)))}},connected(){this.lazyload(this.$el,this.connects)},events:[{name:"click",delegate(){return this.toggle},handler(t){t.preventDefault(),this.show(t.current)}},{name:"click",el(){return this.connects.concat(this.itemNav?Ce(this.itemNav,this.$el):[])},delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.show(nt(t.current,this.attrItem))}},{name:"swipeRight swipeLeft",filter(){return this.swiping},el(){return this.connects},handler(t){let{type:e}=t;this.show(At(e,"Left")?"next":"previous")}}],methods:{index(){return kt(this.children,t=>P(t,this.cls))},show(t){const e=this.index(),i=Zt(this.children[Zt(t,this.toggles,e)],L(this.$el));e!==i&&(this.children.forEach((s,n)=>{G(s,this.cls,i===n),T(this.toggles[n],"aria-expanded",i===n)}),this.connects.forEach(async s=>{let{children:n}=s;await this.toggleElement(C(n).filter(r=>P(r,this.cls)),!1,e>=0),await this.toggleElement(n[i],!0,e>=0)}))}}},Zo={mixins:[ot],extends:cn,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item"},connected(){const t=P(this.$el,"uk-tab-left")?"uk-tab-left":P(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const Qo=32;var Uo={mixins:[oi,di,Pt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},connected(){!w(this.mode,"media")&&!Ze(this.$el)&&T(this.$el,"tabindex","0"),this.lazyload(this.$el,this.target)},computed:{target:{get(t,e){let{href:i,target:s}=t;return s=Ce(s||i,e),s.length&&s||[e]},watch(){this.updateAria()},immediate:!0}},events:[{name:mt,filter(){return w(this.mode,"hover")},handler(t){!Ct(t)||this._showState||(v(this.$el,"focus"),q(document,mt,()=>v(this.$el,"blur"),!0,e=>!j(e.target,this.$el)),w(this.mode,"click")&&(this._preventClick=!0))}},{name:jt+" "+oe+" focus blur",filter(){return w(this.mode,"hover")},handler(t){if(Ct(t))return;const e=w([jt,"focus"],t.type),i=T(this.$el,"aria-expanded");if(!(!e&&(t.type===oe&&R(this.$el,":focus")||t.type==="blur"&&R(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 w(this.mode,"click")&&!bt(this.$el,"input")},handler(t){t.keyCode===Qo&&(t.preventDefault(),this.$el.click())}},{name:"click",filter(){return w(this.mode,"click")},handler(t){if(this._preventClick)return this._preventClick=null;let e;(ut(t.target,'a[href="#"], a[href=""]')||(e=ut(t.target,"a[href]"))&&(T(this.$el,"aria-expanded")!=="true"||e.hash&&R(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 w(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(!v(this.target,t||"toggle",[this]))return;if(!this.queued)return this.toggleElement(this.target);const e=this.target.filter(s=>P(s,this.clsLeave));if(e.length){for(const s of this.target){const n=w(e,s);this.toggleElement(s,n,n)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1),await this.toggleElement(this.target.filter(s=>!w(i,s)),!0)},updateAria(t){w(this.mode,"media")||T(this.$el,"aria-expanded",Ve(t)?t:this.isToggled(this.target))}}},ta=Object.freeze({__proto__:null,Accordion:Ws,Alert:zr,Cover:Dr,Drop:qs,Dropdown:qs,FormCustom:Hr,Gif:Fr,Grid:Wr,HeightMatch:Vr,HeightViewport:Gr,Icon:Zi,Img:ko,Leader:Oo,Margin:Vs,Modal:Ho,Nav:Lo,Navbar:Wo,Offcanvas:Ro,OverflowAuto:Vo,Responsive:Yo,Scroll:Go,Scrollspy:Xo,ScrollspyNav:Ko,Sticky:Jo,Svg:Ks,Switcher:cn,Tab:Zo,Toggle:Uo,Video:Rs,Close:vo,Spinner:wo,SlidenavNext:tn,SlidenavPrevious:tn,SearchIcon:mo,Marker:yt,NavbarToggleIcon:yt,OverlayIcon:yt,PaginationNext:yt,PaginationPrevious:yt,Totop:yt});at(ta,(t,e)=>rt.component(e,t)),rt.use(Er),Nr(rt);var ea={mixins:[ot],props:{date:String,clsWrapper:String},data:{date:"",clsWrapper:".uk-countdown-%unit%"},computed:{date(t){let{date:e}=t;return Date.parse(e)},days(t,e){let{clsWrapper:i}=t;return x(i.replace("%unit%","days"),e)},hours(t,e){let{clsWrapper:i}=t;return x(i.replace("%unit%","hours"),e)},minutes(t,e){let{clsWrapper:i}=t;return x(i.replace("%unit%","minutes"),e)},seconds(t,e){let{clsWrapper:i}=t;return x(i.replace("%unit%","seconds"),e)},units(){return["days","hours","minutes","seconds"].filter(t=>this[t])}},connected(){this.start()},disconnected(){this.stop(),this.units.forEach(t=>ys(this[t]))},events:[{name:"visibilitychange",el(){return document},handler(){document.hidden?this.stop():this.start()}}],update:{write(){const t=ia(this.date);t.total<=0&&(this.stop(),t.days=t.hours=t.minutes=t.seconds=0);for(const e of this.units){let i=String(Math.floor(t[e]));i=i.length<2?"0"+i:i;const s=this[e];s.textContent!==i&&(i=i.split(""),i.length!==s.children.length&&zt(s,i.map(()=>"<span></span>").join("")),i.forEach((n,r)=>s.children[r].textContent=n))}}},methods:{start(){this.stop(),this.date&&this.units.length&&(this.$emit(),this.timer=setInterval(()=>this.$emit(),1e3))},stop(){this.timer&&(clearInterval(this.timer),this.timer=null)}}};function ia(t){const e=t-Date.now();return{total:e,seconds:e/1e3%60,minutes:e/1e3/60%60,hours:e/1e3/60/60%24,days:e/1e3/60/60/24}}const ts="uk-transition-leave",es="uk-transition-enter";function un(t,e,i,s){s===void 0&&(s=0);const n=fi(e,!0),r={opacity:1},o={opacity:0},a=u=>()=>n===fi(e)?u():Promise.reject(),l=a(()=>(y(e,ts),Promise.all(fn(e).map((u,f)=>new Promise(p=>setTimeout(()=>A.start(u,o,i/2,"ease").then(p),f*s)))).then(()=>M(e,ts)))),c=a(()=>{const u=V(e);return y(e,es),t(),h(L(e),{opacity:0}),new Promise(f=>requestAnimationFrame(()=>{const p=L(e),$=V(e);h(e,"alignContent","flex-start"),V(e,u);const k=fn(e);h(p,o);const d=k.map((g,m)=>new Promise(E=>setTimeout(()=>A.start(g,r,i/2,"ease").then(E),m*s)));u!==$&&d.push(A.start(e,{height:$},i/2+k.length*s,"ease")),Promise.all(d).then(()=>{M(e,es),n===fi(e)&&(h(e,{height:"",alignContent:""}),h(p,{opacity:""}),delete e.dataset.transition),f()})}))});return P(e,ts)?dn(e).then(c):P(e,es)?dn(e).then(l).then(c):l().then(c)}function fi(t,e){return e&&(t.dataset.transition=1+fi(t)),Nt(t.dataset.transition)||0}function dn(t){return Promise.all(L(t).filter(A.inProgress).map(e=>new Promise(i=>q(e,"transitionend transitioncanceled",i))))}function fn(t){return Ji(L(t)).reduce((e,i)=>e.concat(Ge(i.filter(s=>he(s)),"offsetLeft")),[])}function sa(t,e,i){return new Promise(s=>requestAnimationFrame(()=>{let n=L(e);const r=n.map(a=>gn(a,!0)),o=h(e,["height","padding"]);A.cancel(e),n.forEach(A.cancel),pn(e),t(),n=n.concat(L(e).filter(a=>!w(n,a))),Promise.resolve().then(()=>{H.flush();const a=h(e,["height","padding"]),[l,c]=na(e,n,r);n.forEach((u,f)=>c[f]&&h(u,c[f])),h(e,{display:"block",...o}),requestAnimationFrame(()=>{const u=n.map((f,p)=>D(f)===e&&A.start(f,l[p],i,"ease")).concat(A.start(e,a,i,"ease"));Promise.all(u).then(()=>{n.forEach((f,p)=>D(f)===e&&h(f,"display",l[p].opacity===0?"none":"")),pn(e)},N).then(s)})})}))}function gn(t,e){const i=h(t,"zIndex");return W(t)?{display:"",opacity:e?h(t,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:i==="auto"?Ut(t):i,...mn(t)}:!1}function na(t,e,i){const s=e.map((r,o)=>D(r)&&o in i?i[o]?W(r)?mn(r):{opacity:0}:{opacity:W(r)?1:0}:!1),n=s.map((r,o)=>{const a=D(e[o])===t&&(i[o]||gn(e[o]));if(!a)return!1;if(!r)delete a.opacity;else if(!("opacity"in r)){const{opacity:l}=a;l%1?r.opacity=1:delete a.opacity}return a});return[s,n]}function pn(t){h(t.children,{height:"",left:"",opacity:"",pointerEvents:"",position:"",top:"",marginTop:"",marginLeft:"",transform:"",width:"",zIndex:""}),h(t,{height:"",display:"",padding:""})}function mn(t){const{height:e,width:i}=z(t),{top:s,left:n}=ti(t),{marginLeft:r,marginTop:o}=h(t,["marginTop","marginLeft"]);return{top:s,left:n,height:e,width:i,marginLeft:r,marginTop:o,transform:""}}var vn={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(t,e){e===void 0&&(e=this.$el);const i=this.animation;return(i==="fade"?un:i==="delayed-fade"?function(){for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return un(...r,40)}:i?sa:()=>(t(),Promise.resolve()))(t,e,this.duration).then(()=>this.$update(e,"resize"),N)}}},ra={mixins:[vn],args:"target",props:{target:Boolean,selActive:Boolean},data:{target:null,selActive:!1,attrItem:"uk-filter-control",cls:"uk-active",duration:250},computed:{toggles:{get(t,e){let{attrItem:i}=t;return O("["+i+"],[data-"+i+"]",e)},watch(){if(this.updateState(),this.selActive!==!1){const t=O(this.selActive,this.$el);this.toggles.forEach(e=>G(e,this.cls,w(t,e)))}},immediate:!0},children:{get(t,e){let{target:i}=t;return O(i+" > *",e)},watch(t,e){e&&!ha(t,e)&&this.updateState()},immediate:!0}},events:[{name:"click",delegate(){return"["+this.attrItem+"],[data-"+this.attrItem+"]"},handler(t){t.preventDefault(),this.apply(t.current)}}],methods:{apply(t){const e=this.getState(),i=bn(t,this.attrItem,this.getState());oa(e,i)||this.setState(i)},getState(){return this.toggles.filter(t=>P(t,this.cls)).reduce((t,e)=>bn(e,this.attrItem,t),{filter:{"":""},sort:[]})},setState(t,e){e===void 0&&(e=!0),t={filter:{"":""},sort:[],...t},v(this.$el,"beforeFilter",[this,t]),this.toggles.forEach(i=>G(i,this.cls,!!la(i,this.attrItem,t))),Promise.all(O(this.target,this.$el).map(i=>{const s=()=>{aa(t,i,L(i)),this.$update(this.$el)};return e?this.animate(s,i):s()})).then(()=>v(this.$el,"afterFilter",[this]))},updateState(){H.write(()=>this.setState(this.getState(),!1))}}};function wn(t,e){return Be(nt(t,e),["filter"])}function oa(t,e){return["filter","sort"].every(i=>Ye(t[i],e[i]))}function aa(t,e,i){const s=ca(t);i.forEach(o=>h(o,"display",s&&!R(o,s)?"none":""));const[n,r]=t.sort;if(n){const o=ua(i,n,r);Ye(o,i)||Q(e,o)}}function bn(t,e,i){const s=wn(t,e),{filter:n,group:r,sort:o,order:a="asc"}=s;return(n||Z(o))&&(r?n?(delete i.filter[""],i.filter[r]=n):(delete i.filter[r],(xe(i.filter)||""in i.filter)&&(i.filter={"":n||""})):i.filter={"":n||""}),Z(o)||(i.sort=[o,a]),i}function la(t,e,i){let{filter:s={"":""},sort:[n,r]}=i;const{filter:o="",group:a="",sort:l,order:c="asc"}=wn(t,e);return Z(l)?a in s&&o===s[a]||!o&&a&&!(a in s)&&!s[""]:n===l&&r===c}function ha(t,e){return t.length===e.length&&t.every(i=>~e.indexOf(i))}function ca(t){let{filter:e}=t,i="";return at(e,s=>i+=s||""),i}function ua(t,e,i){return[...t].sort((s,n)=>nt(s,e).localeCompare(nt(n,e),void 0,{numeric:!0})*(i==="asc"||-1))}var is={slide:{show(t){return[{transform:Y(t*-100)},{transform:Y()}]},percent(t){return Le(t)},translate(t,e){return[{transform:Y(e*-100*t)},{transform:Y(e*100*(1-t))}]}}};function Le(t){return Math.abs(h(t,"transform").split(",")[4]/t.offsetWidth)||0}function Y(t,e){return t===void 0&&(t=0),e===void 0&&(e="%"),t+=t?e:"","translate3d("+t+", 0, 0)"}function fe(t){return"scale3d("+t+", "+t+", 1)"}var xn={...is,fade:{show(){return[{opacity:0},{opacity:1}]},percent(t){return 1-h(t,"opacity")},translate(t){return[{opacity:1-t},{opacity:t}]}},scale:{show(){return[{opacity:0,transform:fe(1-.2)},{opacity:1,transform:fe(1)}]},percent(t){return 1-h(t,"opacity")},translate(t){return[{opacity:1-t,transform:fe(1-.2*t)},{opacity:t,transform:fe(1-.2+.2*t)}]}}};function da(t,e,i,s){let{animation:n,easing:r}=s;const{percent:o,translate:a,show:l=N}=n,c=l(i),u=new Ke;return{dir:i,show(f,p,$){p===void 0&&(p=0);const k=$?"linear":r;return f-=Math.round(f*ct(p,-1,1)),this.translate(p),gi(e,"itemin",{percent:p,duration:f,timing:k,dir:i}),gi(t,"itemout",{percent:1-p,duration:f,timing:k,dir:i}),Promise.all([A.start(e,c[1],f,k),A.start(t,c[0],f,k)]).then(()=>{this.reset(),u.resolve()},N),u.promise},cancel(){A.cancel([e,t])},reset(){for(const f in c[0])h([e,t],f,"")},forward(f,p){return p===void 0&&(p=this.percent()),A.cancel([e,t]),this.show(f,p,!0)},translate(f){this.reset();const p=a(f,i);h(e,p[1]),h(t,p[0]),gi(e,"itemtranslatein",{percent:f,dir:i}),gi(t,"itemtranslateout",{percent:1-f,dir:i})},percent(){return o(t||e,e,i)},getDistance(){return t==null?void 0:t.offsetWidth}}}function gi(t,e,i){v(t,Ae(e,!1,!1,i))}var fa={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){T(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el(){return document},filter(){return this.autoplay},handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>(!this.draggable||!x(":focus",this.$el))&&(!this.pauseOnHover||!R(this.$el,":hover"))&&!this.stack.length&&this.show("next"),this.autoplayInterval)},stopAutoplay(){this.interval&&clearInterval(this.interval)}}},ga={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const e=this[t];this[t]=i=>{const s=ee(i).x*(tt?-1:1);this.prevPos=s===this.pos?this.prevPos:this.pos,this.pos=s,e(i)}}},events:[{name:mt,delegate(){return this.selSlides},handler(t){!this.draggable||!Ct(t)&&pa(t.target)||ut(t.target,ke)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,_(document,re,this.move,{passive:!1}),_(document,xt+" "+ae+" input",this.end,!0),h(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)<this.threshold)return;h(this.list,"pointerEvents","none"),t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=e<0?1:-1;const{slides:i}=this;let{prevIndex:s}=this,n=Math.abs(e),r=this.getIndex(s+this.dir,s),o=this._getDistance(s,r)||i[s].offsetWidth;for(;r!==s&&n>o;)this.drag-=o*this.dir,s=r,n-=o,r=this.getIndex(s+this.dir,s),o=this._getDistance(s,r)||i[s].offsetWidth;this.percent=n/o;const a=i[s],l=i[r],c=this.index!==r,u=s===r;let f;[this.index,this.prevIndex].filter(p=>!w([r,s],p)).forEach(p=>{v(i[p],"itemhidden",[this]),u&&(f=!0,this.prevIndex=s)}),(this.index===s&&this.prevIndex!==s||f)&&v(i[this.index],"itemshown",[this]),c&&(this.prevIndex=s,this.index=r,!u&&v(a,"beforeitemhide",[this]),v(l,"beforeitemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!u&&l),c&&(!u&&v(a,"itemhide",[this]),v(l,"itemshow",[this]))},end(){if(te(document,re,this.move,{passive:!1}),te(document,xt+" "+ae+" input",this.end,!0),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(tt?this.dir*(tt?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}h(this.list,{userSelect:"",pointerEvents:""}),this.drag=this.percent=null}}};function pa(t){return!t.children.length&&t.childNodes.length}var ma={data:{selNav:!1},computed:{nav(t,e){let{selNav:i}=t;return x(i,e)},selNavItem(t){let{attrItem:e}=t;return"["+e+"],[data-"+e+"]"},navItems(t,e){return O(this.selNavItem,e)}},update:{write(){this.nav&&this.length!==this.nav.children.length&&zt(this.nav,this.slides.map((t,e)=>"<li "+this.attrItem+'="'+e+'"><a href></a></li>').join("")),this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]},events:[{name:"click",delegate(){return this.selNavItem},handler(t){t.preventDefault(),this.show(nt(t.current,this.attrItem))}},{name:"itemshow",handler:"updateNav"}],methods:{updateNav(){const t=this.getValidIndex();for(const e of this.navItems){const i=nt(e,this.attrItem);G(e,this.clsActive,Nt(i)===t),G(e,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex))}}}},yn={mixins:[fa,ga,ma],props:{clsActivated:Boolean,easing:String,index:Number,finite:Boolean,velocity:Number,selSlides:String},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:!1,Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){M(this.slides,this.clsActive)},computed:{duration(t,e){let{velocity:i}=t;return $n(e.offsetWidth/i)},list(t,e){let{selList:i}=t;return x(i,e)},maxIndex(){return this.length-1},selSlides(t){let{selList:e,selSlides:i}=t;return e+" "+(i||"> *")},slides:{get(){return O(this.selSlides,this.$el)},watch(){this.$reset()}},length(){return this.slides.length}},methods:{show(t,e){if(e===void 0&&(e=!1),this.dragging||!this.length)return;const{stack:i}=this,s=e?0:i.length,n=()=>{i.splice(s,1),i.length&&this.show(i.shift(),!0)};if(i[e?"unshift":"push"](t),!e&&i.length>1){i.length===2&&this._transitioner.forward(Math.min(this.duration,200));return}const r=this.getIndex(this.index),o=P(this.slides,this.clsActive)&&this.slides[r],a=this.getIndex(t,this.index),l=this.slides[a];if(o===l){n();return}if(this.dir=va(t,r),this.prevIndex=r,this.index=a,o&&!v(o,"beforeitemhide",[this])||!v(l,"beforeitemshow",[this,o])){this.index=this.prevIndex,n();return}const c=this._show(o,l,e).then(()=>(o&&v(o,"itemhidden",[this]),v(l,"itemshown",[this]),new Promise(u=>{H.write(()=>{i.shift(),i.length?this.show(i.shift(),!0):this._transitioner=null,u()})})));return o&&v(o,"itemhide",[this]),v(l,"itemshow",[this]),c},getIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.index),ct(Zt(t,this.slides,e,this.finite),0,this.maxIndex)},getValidIndex(t,e){return t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),this.getIndex(t,e)},_show(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,{easing:i?e.offsetWidth<600?"cubic-bezier(0.25, 0.46, 0.45, 0.94)":"cubic-bezier(0.165, 0.84, 0.44, 1)":this.easing,...this.transitionOptions}),!i&&!t)return this._translate(1),Promise.resolve();const{length:s}=this.stack;return this._transitioner[s>1?"forward":"show"](s>1?Math.min(this.duration,75+75/(s-1)):this.duration,this.percent)},_getDistance(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()},_translate(t,e,i){e===void 0&&(e=this.prevIndex),i===void 0&&(i=this.index);const s=this._getTransitioner(e!==i?e:!1,i);return s.translate(t),s},_getTransitioner(t,e,i,s){return t===void 0&&(t=this.prevIndex),e===void 0&&(e=this.index),i===void 0&&(i=this.dir||1),s===void 0&&(s=this.transitionOptions),new this.Transitioner(Kt(t)?this.slides[t]:t,Kt(e)?this.slides[e]:e,i*(tt?-1:1),s)}}};function va(t,e){return t==="next"?1:t==="previous"||t<e?-1:1}function $n(t){return .5*t+300}var kn={mixins:[yn],props:{animation:String},data:{animation:"slide",clsActivated:"uk-transition-active",Animations:is,Transitioner:da},computed:{animation(t){let{animation:e,Animations:i}=t;return{...i[e]||i.slide,name:e}},transitionOptions(){return{animation:this.animation}}},events:{beforeitemshow(t){let{target:e}=t;y(e,this.clsActive)},itemshown(t){let{target:e}=t;y(e,this.clsActivated)},itemhidden(t){let{target:e}=t;M(e,this.clsActive,this.clsActivated)}}},Sn={mixins:[de,Ui,Pt,kn],functional:!0,props:{delayControls:Number,preload:Number,videoAutoplay:Boolean,template:String},data:()=>({preload:1,videoAutoplay:!1,delayControls:3e3,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",selList:".uk-lightbox-items",attrItem:"uk-lightbox-item",selClose:".uk-close-large",selCaption:".uk-lightbox-caption",pauseOnHover:!1,velocity:2,Animations:xn,template:'<div class="uk-lightbox uk-overflow-hidden"> <ul class="uk-lightbox-items"></ul> <div class="uk-lightbox-toolbar uk-position-top uk-text-right uk-transition-slide-top uk-transition-opaque"> <button class="uk-lightbox-toolbar-icon uk-close-large" type="button" uk-close></button> </div> <a class="uk-lightbox-button uk-position-center-left uk-position-medium uk-transition-fade" href uk-slidenav-previous uk-lightbox-item="previous"></a> <a class="uk-lightbox-button uk-position-center-right uk-position-medium uk-transition-fade" href uk-slidenav-next uk-lightbox-item="next"></a> <div class="uk-lightbox-toolbar uk-lightbox-caption uk-position-bottom uk-text-center uk-transition-slide-bottom uk-transition-opaque"></div> </div>'}),created(){const t=x(this.template),e=x(this.selList,t);this.items.forEach(()=>Q(e,"<li>")),this.$mount(Q(this.container,t))},computed:{caption(t,e){let{selCaption:i}=t;return x(i,e)}},events:[{name:re+" "+mt+" keydown",handler:"showControls"},{name:"click",self:!0,delegate(){return this.selSlides},handler(t){t.defaultPrevented||this.hide()}},{name:"shown",self:!0,handler(){this.showControls()}},{name:"hide",self:!0,handler(){this.hideControls(),M(this.slides,this.clsActive),A.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el(){return document},handler(t){if(!(!this.isToggled(this.$el)||!this.draggable))switch(t.keyCode){case 37:this.show("previous");break;case 39:this.show("next");break}}},{name:"beforeitemshow",handler(t){this.isToggled()||(this.draggable=!1,t.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=xn.scale,M(t.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshow",handler(){zt(this.caption,this.getItem().caption||"");for(let t=-this.preload;t<=this.preload;t++)this.loadItem(this.index+t)}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(t,e){const{source:i,type:s,alt:n="",poster:r,attrs:o={}}=e;if(this.setItem(e,"<span uk-spinner></span>"),!i)return;let a;const l={frameborder:"0",allow:"autoplay",allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":""+this.videoAutoplay};if(s==="image"||i.match(/\.(avif|jpe?g|a?png|gif|svg|webp)($|\?)/i))try{const{width:c,height:u}=await ms(i,o.srcset,o.size);this.setItem(e,We("img",{src:i,width:c,height:u,alt:n,...o}))}catch{this.setError(e)}else if(s==="video"||i.match(/\.(mp4|webm|ogv)($|\?)/i)){const c=We("video",{src:i,poster:r,controls:"",playsinline:"","uk-video":""+this.videoAutoplay,...o});_(c,"loadedmetadata",()=>{T(c,{width:c.videoWidth,height:c.videoHeight}),this.setItem(e,c)}),_(c,"error",()=>this.setError(e))}else if(s==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(e,We("iframe",{src:i,frameborder:"0",allowfullscreen:"",class:"uk-lightbox-iframe",...o}));else if(a=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?[?&]v=|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(e,We("iframe",{src:"https://www.youtube"+(a[1]||"")+".com/embed/"+a[2]+(a[3]?"?"+a[3]:""),width:1920,height:1080,...l,...o}));else if(a=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:c,width:u}=await(await fetch("https://vimeo.com/api/oembed.json?maxwidth=1920&url="+encodeURI(i),{credentials:"omit"})).json();this.setItem(e,We("iframe",{src:"https://player.vimeo.com/video/"+a[1]+(a[2]?"?"+a[2]:""),width:u,height:c,...l,...o}))}catch{this.setError(e)}}}],methods:{loadItem(t){t===void 0&&(t=this.index);const e=this.getItem(t);this.getSlide(e).childElementCount||v(this.$el,"itemload",[e])},getItem(t){return t===void 0&&(t=this.index),this.items[Zt(t,this.slides)]},setItem(t,e){v(this.$el,"itemloaded",[this,zt(this.getSlide(t),e)])},getSlide(t){return this.slides[this.items.indexOf(t)]},setError(t){this.setItem(t,'<span uk-icon="icon: bolt; ratio: 2"></span>')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=setTimeout(this.hideControls,this.delayControls),y(this.$el,"uk-active","uk-transition-active")},hideControls(){M(this.$el,"uk-active","uk-transition-active")}}};function We(t,e){const i=Wt("<"+t+">");return T(i,e),i}var wa={install:ba,props:{toggle:String},data:{toggle:"a"},computed:{toggles:{get(t,e){let{toggle:i}=t;return O(i,e)},watch(){this.hide()}}},disconnected(){this.hide()},events:[{name:"click",delegate(){return this.toggle+":not(.uk-disabled)"},handler(t){t.preventDefault(),this.show(t.current)}}],methods:{show(t){const e=cs(this.toggles.map(Tn),"source");if(Ht(t)){const{source:i}=Tn(t);t=kt(e,s=>{let{source:n}=s;return i===n})}return this.panel=this.panel||this.$create("lightboxPanel",{...this.$props,items:e}),_(this.panel.$el,"hidden",()=>this.panel=!1),this.panel.show(t)},hide(){return this.panel&&this.panel.hide()}}};function ba(t,e){t.lightboxPanel||t.component("lightboxPanel",Sn),St(e.props,t.component("lightboxPanel").options.props)}function Tn(t){const e={};for(const i of["href","caption","type","poster","alt","attrs"])e[i==="href"?"source":i]=nt(t,i);return e.attrs=Be(e.attrs),e}var xa={mixins:[de],functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:null,pos:"top-center",clsContainer:"uk-notification",clsClose:"uk-notification-close",clsMsg:"uk-notification-message"},install:ya,computed:{marginProp(t){let{pos:e}=t;return"margin"+(ft(e,"top")?"Top":"Bottom")},startProps(){return{opacity:0,[this.marginProp]:-this.$el.offsetHeight}}},created(){const t=x("."+this.clsContainer+"-"+this.pos,this.container)||Q(this.container,'<div class="'+this.clsContainer+" "+this.clsContainer+"-"+this.pos+'" style="display: block"></div>');this.$mount(Q(t,'<div class="'+this.clsMsg+(this.status?" "+this.clsMsg+"-"+this.status:"")+'"> <a href class="'+this.clsClose+'" data-uk-close></a> <div>'+this.message+"</div> </div>"))},async connected(){const t=b(h(this.$el,this.marginProp));await A.start(h(this.$el,this.startProps),{opacity:1,[this.marginProp]:t}),this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},events:{click(t){ut(t.target,'a[href="#"],a[href=""]')&&t.preventDefault(),this.close()},[jt](){this.timer&&clearTimeout(this.timer)},[oe](){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))}},methods:{async close(t){const e=i=>{const s=D(i);v(i,"close",[this]),pt(i),s!=null&&s.hasChildNodes()||pt(s)};this.timer&&clearTimeout(this.timer),t||await A.start(this.$el,this.startProps),e(this.$el)}}};function ya(t){t.notification.closeAll=function(e,i){It(document.body,s=>{const n=t.getComponent(s,"notification");n&&(!e||e===n.group)&&n.close(i)})}}const pi={x:mi,y:mi,rotate:mi,scale:mi,color:ns,backgroundColor:ns,borderColor:ns,blur:Gt,hue:Gt,fopacity:Gt,grayscale:Gt,invert:Gt,saturate:Gt,sepia:Gt,opacity:ka,stroke:Sa,bgx:In,bgy:In},{keys:ss}=Object;var Cn={mixins:[di],props:En(ss(pi),"list"),data:En(ss(pi),void 0),computed:{props(t,e){return ss(pi).reduce((i,s)=>(Z(t[s])||(i[s]=pi[s](s,e,t[s].slice())),i),{})}},events:{bgimageload(){this.$emit()}},methods:{reset(){at(this.getCss(0),(t,e)=>h(this.$el,e,""))},getCss(t){const e={transform:"",filter:""};for(const i in this.props)this.props[i](e,t);return e}}};function mi(t,e,i){const s=os(i)||{x:"px",y:"px",rotate:"deg"}[t]||"";let n;return(t==="x"||t==="y")&&(t="translate"+ve(t),n=r=>b(b(r).toFixed(s==="px"?0:6))),i.length===1&&i.unshift(t==="scale"?1:0),i=ge(i,n),(r,o)=>{r.transform+=" "+t+"("+Re(i,o)+s+")"}}function ns(t,e,i){return i.length===1&&i.unshift(je(e,t,"")),i=ge(i,s=>$a(e,s)),(s,n)=>{const[r,o,a]=An(i,n),l=r.map((c,u)=>(c+=a*(o[u]-c),u===3?b(c):parseInt(c,10))).join(",");s[t]="rgba("+l+")"}}function $a(t,e){return je(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(b)}function Gt(t,e,i){i.length===1&&i.unshift(0);const s=os(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=ge(i),(n,r)=>{const o=Re(i,r);n.filter+=" "+t+"("+(o+s)+")"}}function ka(t,e,i){return i.length===1&&i.unshift(je(e,t,"")),i=ge(i),(s,n)=>{s[t]=Re(i,n)}}function Sa(t,e,i){i.length===1&&i.unshift(0);const s=os(i),n=Zs(e);return i=ge(i.reverse(),r=>(r=b(r),s==="%"?r*n/100:r)),i.some(r=>{let[o]=r;return o})?(h(e,"strokeDasharray",n),(r,o)=>{r.strokeDashoffset=Re(i,o)}):N}function In(t,e,i){i.length===1&&i.unshift(0),t=t.substr(-1);const s=t==="y"?"height":"width";i=ge(i,r=>dt(r,s,e));const n=je(e,"background-position-"+t,"");return je(e,"backgroundSize","")==="cover"?Ta(t,e,i,n,s):Pn(t,i,n)}function Ta(t,e,i,s,n){const r=Ca(e);if(!r.width)return N;const o=i.map(m=>{let[E]=m;return E}),a=Math.min(...o),l=Math.max(...o),c=o.indexOf(a)<o.indexOf(l),u=l-a;let f=(c?-u:0)-(c?a:l);const p={width:e.offsetWidth,height:e.offsetHeight},$=$e.cover(r,p),k=$[n]-p[n];if(k<u)p[n]=$[n]+u-k;else if(k>u){const m=p[n]/dt(s,n,e,!0);m&&(f-=(k-u)/m)}const d=$e.cover(r,p),g=Pn(t,i,f+"px");return(m,E)=>{g(m,E),m.backgroundSize=d.width+"px "+d.height+"px",m.backgroundRepeat="no-repeat"}}function Pn(t,e,i){return function(s,n){s["background-position-"+t]="calc("+i+" + "+Re(e,n)+"px)"}}const vi={};function Ca(t){const e=h(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(vi[e])return vi[e];const i=new Image;return e&&(i.src=e,!i.naturalWidth)?(i.onload=()=>{vi[e]=rs(i),v(t,"bgimageload")},rs(i)):vi[e]=rs(i)}function rs(t){return{width:t.naturalWidth,height:t.naturalHeight}}function ge(t,e){e===void 0&&(e=b);const i=[],{length:s}=t;let n=0;for(let r=0;r<s;r++){let[o,a]=B(t[r])?t[r].trim().split(" "):[t[r]];if(o=e(o),a=a?b(a)/100:null,r===0?a===null?a=0:a&&i.push([o,0]):r===s-1&&(a===null?a=1:a!==1&&(i.push([o,a]),a=1)),i.push([o,a]),a===null)n++;else if(n){const l=i[r-n-1][1],c=(a-l)/(n+1);for(let u=n;u>0;u--)i[r-u][1]=l+c*(n-u+1);n=0}}return i}function An(t,e){const i=kt(t.slice(1),s=>{let[,n]=s;return e<=n})+1;return[t[i-1][0],t[i][0],(e-t[i-1][1])/(t[i][1]-t[i-1][1])]}function Re(t,e){const[i,s,n]=An(t,e);return Kt(i)?i+Math.abs(i-s)*n*(i<s?1:-1):+s}const Ia=/^-?\d+([^\s]*)/;function os(t,e){for(const i of t){const s=i.match==null?void 0:i.match(Ia);if(s)return s[1]}return e}function je(t,e,i){const s=t.style[e],n=h(h(t,e,i),e);return t.style[e]=s,n}function En(t,e){return t.reduce((i,s)=>(i[s]=e,i),{})}var Pa={mixins:[Cn],props:{target:String,viewport:Number,easing:Number,start:String,end:String},data:{target:!1,viewport:1,easing:1,start:0,end:0},computed:{target(t,e){let{target:i}=t;return _n(i&&vt(i,e)||e)},start(t){let{start:e}=t;return dt(e,"height",this.target,!0)},end(t){let{end:e,viewport:i}=t;return dt(e||(i=(1-i)*100)&&i+"vh+"+i+"%","height",this.target,!0)}},update:{read(t,e){let{percent:i}=t;if(e.has("scroll")||(i=!1),!this.matchMedia)return;const s=i;return i=Aa(Ki(this.target,this.start,this.end),this.easing),{percent:i,style:s===i?!1:this.getCss(i)}},write(t){let{style:e}=t;if(!this.matchMedia){this.reset();return}e&&h(this.$el,e)},events:["scroll","resize"]}};function Aa(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,-e+1)}function _n(t){return t?"offsetTop"in t?t:_n(D(t)):document.documentElement}var Nn={update:{write(){if(this.stack.length||this.dragging)return;const t=this.getValidIndex(this.index);(!~this.prevIndex||this.index!==t)&&this.show(t)},events:["resize"]}},Mn={connected(){this.registerObserver(De(this.slides.concat(this.$el),(t,e)=>{for(const i of this.getAdjacentSlides())O('img[loading="lazy"]',i).forEach(s=>Qt(s,"loading")),e.unobserve(i)},{rootMargin:"50% 50%"}))}};function Ea(t,e,i,s){let{center:n,easing:r,list:o}=s;const a=new Ke,l=t?qe(t,o,n):qe(e,o,n)+S(e).width*i,c=e?qe(e,o,n):l+S(t).width*i*(tt?-1:1);return{dir:i,show(u,f,p){f===void 0&&(f=0);const $=p?"linear":r;return u-=Math.round(u*ct(f,-1,1)),this.translate(f),f=t?f:ct(f,0,1),as(this.getItemIn(),"itemin",{percent:f,duration:u,timing:$,dir:i}),t&&as(this.getItemIn(!0),"itemout",{percent:1-f,duration:u,timing:$,dir:i}),A.start(o,{transform:Y(-c*(tt?-1:1),"px")},u,$).then(a.resolve,N),a.promise},cancel(){A.cancel(o)},reset(){h(o,"transform","")},forward(u,f){return f===void 0&&(f=this.percent()),A.cancel(o),this.show(u,f,!0)},translate(u){const f=this.getDistance()*i*(tt?-1:1);h(o,"transform",Y(ct(-c+(f-f*u),-wi(o),S(o).width)*(tt?-1:1),"px"));const p=this.getActives(),$=this.getItemIn(),k=this.getItemIn(!0);u=t?ct(u,-1,1):0;for(const d of L(o)){const g=w(p,d),m=d===$,E=d===k,I=m||!E&&(g||i*(tt?-1:1)===-1^bi(d,o)>bi(t||e));as(d,"itemtranslate"+(I?"in":"out"),{dir:i,percent:E?1-u:m?u:g?1:0})}},percent(){return Math.abs((h(o,"transform").split(",")[4]*(tt?-1:1)+l)/(c-l))},getDistance(){return Math.abs(c-l)},getItemIn(u){u===void 0&&(u=!1);let f=this.getActives(),p=Dn(o,qe(e||t,o,n));if(u){const $=f;f=p,p=$}return p[kt(p,$=>!w(f,$))]},getActives(){return Dn(o,qe(t||e,o,n))}}}function qe(t,e,i){const s=bi(t,e);return i?s-_a(t,e):Math.min(s,zn(e))}function zn(t){return Math.max(0,wi(t)-S(t).width)}function wi(t){return L(t).reduce((e,i)=>S(i).width+e,0)}function _a(t,e){return S(e).width/2-S(t).width/2}function bi(t,e){return t&&(ti(t).left+(tt?S(t).width-S(e).width:0))*(tt?-1:1)||0}function Dn(t,e){e-=1;const i=S(t).width,s=e+i+2;return L(t).filter(n=>{const r=bi(n,t),o=r+Math.min(S(n).width,i);return r>=e&&o<=s})}function as(t,e,i){v(t,Ae(e,!1,!1,i))}var Na={mixins:[ot,yn,Nn,Mn],props:{center:Boolean,sets:Boolean},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",Transitioner:Ea},computed:{avgWidth(){return wi(this.list)/this.length},finite(t){let{finite:e}=t;return e||Math.ceil(wi(this.list))<Math.floor(S(this.list).width+Ma(this.list)+this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return ye(this.sets);let t=0;const e=zn(this.list),i=kt(this.slides,s=>{if(t>=e)return!0;t+=S(s).width});return~i?i:this.length-1},sets(t){let{sets:e}=t;if(!e)return;let i=0;const s=[],n=S(this.list).width;for(let r in this.slides){const o=S(this.slides[r]).width;i+o>n&&(i=0),this.center?i<n/2&&i+o+S(this.slides[+r+1]).width/2>n/2&&(s.push(+r),i=n/2-o/2):i===0&&s.push(Math.min(+r,this.maxIndex)),i+=o}if(s.length)return s},transitionOptions(){return{center:this.center,list:this.list}}},connected(){G(this.$el,this.clsContainer,!x("."+this.clsContainer,this.$el))},update:{write(){for(const t of this.navItems){const e=Nt(nt(t,this.attrItem));e!==!1&&(t.hidden=!this.maxIndex||e>this.maxIndex||this.sets&&!w(this.sets,e))}this.length&&!this.dragging&&!this.stack.length&&(this.reorder(),this._translate(1)),this.updateActiveClasses()},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!w(this.sets,this.index)&&(this.index=this.getValidIndex());const e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(let s=0;s<e;s++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const i=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex;this.duration=$n(this.avgWidth/this.velocity)*(S(this.slides[i]).width/this.avgWidth),this.reorder()},itemshow(){~this.prevIndex&&y(this._getTransitioner().getItemIn(),this.clsActive)},itemshown(){this.updateActiveClasses()}},methods:{reorder(){if(this.finite){h(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((n,r)=>h(n,"order",this.dir>0&&r<t?1:this.dir<0&&r>=this.index?-1:"")),!this.center)return;const e=this.slides[t];let i=S(this.list).width/2-S(e).width/2,s=0;for(;i>0;){const n=this.getIndex(--s+t,t),r=this.slides[n];h(r,"order",n>t?-2:-1),i-=S(r).width}},updateActiveClasses(){const t=this._getTransitioner(this.index).getActives(),e=[this.clsActive,(!this.sets||w(this.sets,b(this.index)))&&this.clsActivated||""];for(const i of this.slides)G(i,e,w(t,i))},getValidIndex(t,e){if(t===void 0&&(t=this.index),e===void 0&&(e=this.prevIndex),t=this.getIndex(t,e),!this.sets)return t;let i;do{if(w(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t},getAdjacentSlides(){const{width:t}=S(this.list),e=-t,i=t*2,s=S(this.slides[this.index]).width,n=this.center?t/2-s/2:0,r=new Set;for(const o of[-1,1]){let a=n+(o>0?s:0),l=0;do{const c=this.slides[this.getIndex(this.index+o+l++*o)];a+=S(c).width*o,r.add(c)}while(this.slides.length>l&&a>e&&a<i)}return Array.from(r)}}};function Ma(t){return Math.max(0,...L(t).map(e=>S(e).width))}var Bn={mixins:[Cn],data:{selItem:"!li"},computed:{item(t,e){let{selItem:i}=t;return vt(i,e)}},events:[{name:"itemin itemout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,duration:s,timing:n,dir:r}}=t;H.read(()=>{const o=this.getCss(Hn(e,r,i)),a=this.getCss(On(e)?.5:r>0?1:0);H.write(()=>{h(this.$el,o),A.start(this.$el,a,s,n).catch(N)})})}},{name:"transitioncanceled transitionend",self:!0,el(){return this.item},handler(){A.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el(){return this.item},handler(t){let{type:e,detail:{percent:i,dir:s}}=t;H.read(()=>{const n=this.getCss(Hn(e,s,i));H.write(()=>h(this.$el,n))})}}]};function On(t){return At(t,"in")}function Hn(t,e,i){return i/=2,On(t)^e<0?i:1-i}var za={...is,fade:{show(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent(t){return 1-h(t,"opacity")},translate(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show(){return[{opacity:0,transform:fe(1+.5),zIndex:0},{zIndex:-1}]},percent(t){return 1-h(t,"opacity")},translate(t){return[{opacity:1-t,transform:fe(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show(t){return t<0?[{transform:Y(30),zIndex:-1},{transform:Y(),zIndex:0}]:[{transform:Y(-100),zIndex:0},{transform:Y(),zIndex:-1}]},percent(t,e,i){return i<0?1-Le(e):Le(t)},translate(t,e){return e<0?[{transform:Y(30*t),zIndex:-1},{transform:Y(-100*(1-t)),zIndex:0}]:[{transform:Y(-t*100),zIndex:0},{transform:Y(30*(1-t)),zIndex:-1}]}},push:{show(t){return t<0?[{transform:Y(100),zIndex:0},{transform:Y(),zIndex:-1}]:[{transform:Y(-30),zIndex:-1},{transform:Y(),zIndex:0}]},percent(t,e,i){return i>0?1-Le(e):Le(t)},translate(t,e){return e<0?[{transform:Y(t*100),zIndex:0},{transform:Y(-30*(1-t)),zIndex:-1}]:[{transform:Y(-30*t),zIndex:-1},{transform:Y(100*(1-t)),zIndex:0}]}}},Da={mixins:[ot,kn,Nn,Mn],props:{ratio:String,minHeight:Number,maxHeight:Number},data:{ratio:"16:9",minHeight:!1,maxHeight:!1,selList:".uk-slideshow-items",attrItem:"uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:za},update:{read(){if(!this.list)return!1;let[t,e]=this.ratio.split(":").map(Number);return e=e*this.list.offsetWidth/t||0,this.minHeight&&(e=Math.max(this.minHeight,e)),this.maxHeight&&(e=Math.min(this.maxHeight,e)),{height:e-ie(this.list,"height","content-box")}},write(t){let{height:e}=t;e>0&&h(this.list,"minHeight",e)},events:["resize"]},methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}},Ba={mixins:[ot,vn],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"uk-sortable-item",clsPlaceholder:"uk-sortable-placeholder",clsDrag:"uk-sortable-drag",clsDragState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},created(){for(const t of["init","start","move","end"]){const e=this[t];this[t]=i=>{St(this.pos,ee(i)),e(i)}}},events:{name:mt,passive:!1,handler:"init"},computed:{target(){return(this.$el.tBodies||[this.$el])[0]},items(){return L(this.target)},isEmpty:{get(){return xe(this.items)},watch(t){G(this.target,this.clsEmpty,t)},immediate:!0},handles:{get(t,e){let{handle:i}=t;return i?O(i,e):this.items},watch(t,e){h(e,{touchAction:"",userSelect:""}),h(t,{touchAction:Rt?"none":"",userSelect:"none"})},immediate:!0}},update:{write(t){if(!this.drag||!D(this.placeholder))return;const{pos:{x:e,y:i},origin:{offsetTop:s,offsetLeft:n},placeholder:r}=this;h(this.drag,{top:i-s,left:e-n});const o=this.getSortable(document.elementFromPoint(e,i));if(!o)return;const{items:a}=o;if(a.some(A.inProgress))return;const l=La(a,{x:e,y:i});if(a.length&&(!l||l===r))return;const c=this.getSortable(r),u=Wa(o.target,l,r,e,i,o===c&&t.moved!==l);u!==!1&&(u&&r===u||(o!==c?(c.remove(r),t.moved=l):delete t.moved,o.insert(r,u),this.touched.add(o)))},events:["move"]},methods:{init(t){const{target:e,button:i,defaultPrevented:s}=t,[n]=this.items.filter(r=>j(e,r));!n||s||i>0||Ai(e)||j(e,"."+this.clsNoDrag)||this.handle&&!j(e,this.handle)||(t.preventDefault(),this.touched=new Set([this]),this.placeholder=n,this.origin={target:e,index:Ut(n),...this.pos},_(document,re,this.move),_(document,xt,this.end),this.threshold||this.start(t))},start(t){this.drag=Fa(this.$container,this.placeholder);const{left:e,top:i}=this.placeholder.getBoundingClientRect();St(this.origin,{offsetLeft:this.pos.x-e,offsetTop:this.pos.y-i}),y(this.drag,this.clsDrag,this.clsCustom),y(this.placeholder,this.clsPlaceholder),y(this.items,this.clsItem),y(document.documentElement,this.clsDragState),v(this.$el,"start",[this,this.placeholder]),Oa(this.pos),this.move(t)},move(t){this.drag?this.$emit("move"):(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(t)},end(){if(te(document,re,this.move),te(document,xt,this.end),!this.drag)return;Ha();const t=this.getSortable(this.placeholder);this===t?this.origin.index!==Ut(this.placeholder)&&v(this.$el,"moved",[this,this.placeholder]):(v(t.$el,"added",[t,this.placeholder]),v(this.$el,"removed",[this,this.placeholder])),v(this.$el,"stop",[this,this.placeholder]),pt(this.drag),this.drag=null;for(const{clsPlaceholder:e,clsItem:i}of this.touched)for(const s of this.touched)M(s.items,e,i);this.touched=null,M(document.documentElement,this.clsDragState)},insert(t,e){y(this.items,this.clsItem);const i=()=>e?Fi(e,t):Q(this.target,t);this.animate(i)},remove(t){!j(t,this.target)||this.animate(()=>pt(t))},getSortable(t){do{const e=this.$getComponent(t,"sortable");if(e&&(e===this||this.group!==!1&&e.group===this.group))return e}while(t=D(t))}}};let Fn;function Oa(t){let e=Date.now();Fn=setInterval(()=>{let{x:i,y:s}=t;s+=qt(window);const n=(Date.now()-e)*.3;e=Date.now(),Vt(document.elementFromPoint(i,t.y),/auto|scroll/).reverse().some(r=>{let{scrollTop:o,scrollHeight:a}=r;const{top:l,bottom:c,height:u}=z(ce(r));if(l<s&&l+35>s)o-=n;else if(c>s&&c-35<s)o+=n;else return;if(o>0&&o<a-u)return qt(r,o),!0})},15)}function Ha(){clearInterval(Fn)}function Fa(t,e){const i=Q(t,e.outerHTML.replace(/(^<)(?:li|tr)|(?:li|tr)(\/>$)/g,"$1div$2"));return h(i,"margin","0","important"),h(i,{boxSizing:"border-box",width:e.offsetWidth,height:e.offsetHeight,padding:h(e,"padding")}),V(i.firstElementChild,V(e.firstElementChild)),i}function La(t,e){return t[kt(t,i=>Xe(e,i.getBoundingClientRect()))]}function Wa(t,e,i,s,n,r){if(!L(t).length)return;const o=e.getBoundingClientRect();if(!r)return Ra(t,i)||n<o.top+o.height/2?e:e.nextElementSibling;const a=i.getBoundingClientRect(),l=Ln([o.top,o.bottom],[a.top,a.bottom]),c=l?s:n,u=l?"width":"height",f=l?"left":"top",p=l?"right":"bottom",$=a[u]<o[u]?o[u]-a[u]:0;return a[f]<o[f]?$&&c<o[f]+$?!1:e.nextElementSibling:$&&c>o[p]-$?!1:e}function Ra(t,e){const i=L(t).length===1;i&&Q(t,e);const s=L(t),n=s.some((r,o)=>{const a=r.getBoundingClientRect();return s.slice(o+1).some(l=>{const c=l.getBoundingClientRect();return!Ln([a.left,a.right],[c.left,c.right])})});return i&&pt(e),n}function Ln(t,e){return t[1]>e[0]&&e[1]>t[0]}var ja={mixins:[de,Pt,js],args:"title",props:{delay:Number,title:String},data:{pos:"top",title:"",delay:0,animation:["uk-animation-scale-up"],duration:100,cls:"uk-active",clsPos:"uk-tooltip"},beforeConnect(){this._hasTitle=Lt(this.$el,"title"),T(this.$el,"title",""),this.updateAria(!1),qa(this.$el)},disconnected(){this.hide(),T(this.$el,"title",this._hasTitle?this.title:null)},methods:{show(){this.isToggled(this.tooltip||null)||!this.title||(this._unbind=q(document,"show keydown "+mt,this.hide,!1,t=>t.type===mt&&!j(t.target,this.$el)||t.type==="keydown"&&t.keyCode===27||t.type==="show"&&t.detail[0]!==this&&t.detail[0].$name===this.$name),clearTimeout(this.showTimer),this.showTimer=setTimeout(this._show,this.delay))},async hide(){R(this.$el,"input:focus")||(clearTimeout(this.showTimer),!!this.isToggled(this.tooltip||null)&&(await this.toggleElement(this.tooltip,!1,!1),pt(this.tooltip),this.tooltip=null,this._unbind()))},_show(){this.tooltip=Q(this.container,'<div class="'+this.clsPos+'"> <div class="'+this.clsPos+'-inner">'+this.title+"</div> </div>"),_(this.tooltip,"toggled",(t,e)=>{this.updateAria(e),!!e&&(this.positionAt(this.tooltip,this.$el),this.origin=this.getAxis()==="y"?Me(this.dir)+"-"+this.align:this.align+"-"+Me(this.dir))}),this.toggleElement(this.tooltip,!0)},updateAria(t){T(this.$el,"aria-expanded",t)}},events:{focus:"show",blur:"hide",[jt+" "+oe](t){Ct(t)||this[t.type===jt?"show":"hide"]()},[mt](t){Ct(t)&&this.show()}}};function qa(t){Ze(t)||T(t,"tabindex","0")}var Va={props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,msgInvalidMime:String,msgInvalidName:String,msgInvalidSize:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,msgInvalidMime:"Invalid File Type: %s",msgInvalidName:"Invalid File Name: %s",msgInvalidSize:"Invalid File Size: %s Kilobytes Max",multiple:!1,name:"files[]",params:{},type:"",url:"",abort:N,beforeAll:N,beforeSend:N,complete:N,completeAll:N,error:N,fail:N,load:N,loadEnd:N,loadStart:N,progress:N},events:{change(t){!R(t.target,'input[type="file"]')||(t.preventDefault(),t.target.files&&this.upload(t.target.files),t.target.value="")},drop(t){xi(t);const e=t.dataTransfer;!(e!=null&&e.files)||(M(this.$el,this.clsDragover),this.upload(e.files))},dragenter(t){xi(t)},dragover(t){xi(t),y(this.$el,this.clsDragover)},dragleave(t){xi(t),M(this.$el,this.clsDragover)}},methods:{async upload(t){if(!t.length)return;v(this.$el,"upload",[t]);for(const s of t){if(this.maxSize&&this.maxSize*1e3<s.size){this.fail(this.msgInvalidSize.replace("%s",this.maxSize));return}if(this.allow&&!Wn(this.allow,s.name)){this.fail(this.msgInvalidName.replace("%s",this.allow));return}if(this.mime&&!Wn(this.mime,s.type)){this.fail(this.msgInvalidMime.replace("%s",this.mime));return}}this.multiple||(t=t.slice(0,1)),this.beforeAll(this,t);const e=Ya(t,this.concurrent),i=async s=>{const n=new FormData;s.forEach(r=>n.append(this.name,r));for(const r in this.params)n.append(r,this.params[r]);try{const r=await ps(this.url,{data:n,method:this.method,responseType:this.type,beforeSend:o=>{const{xhr:a}=o;a.upload&&_(a.upload,"progress",this.progress);for(const l of["loadStart","load","loadEnd","abort"])_(a,l.toLowerCase(),this[l]);return this.beforeSend(o)}});this.complete(r),e.length?await i(e.shift()):this.completeAll(r)}catch(r){this.error(r)}};await i(e.shift())}}};function Wn(t,e){return e.match(new RegExp("^"+t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")+"$","i"))}function Ya(t,e){const i=[];for(let s=0;s<t.length;s+=e)i.push(t.slice(s,s+e));return i}function xi(t){t.preventDefault(),t.stopPropagation()}var Ga=Object.freeze({__proto__:null,Countdown:ea,Filter:ra,Lightbox:wa,LightboxPanel:Sn,Notification:xa,Parallax:Pa,Slider:Na,SliderParallax:Bn,Slideshow:Da,SlideshowParallax:Bn,Sortable:Ba,Tooltip:ja,Upload:Va});return at(Ga,(t,e)=>rt.component(e,t)),rt});
|