(self.webpackChunkconfig_npm=self.webpackChunkconfig_npm||[]).push([[143],{388:function(t){var o=function(t){var o="Menubar constructor argument menubarNode ";if(!t instanceof Element)throw new TypeError(o+"is not a DOM Element.");if(0===t.childElementCount)throw new Error(o+"has no element children.");for(e=t.firstElementChild;e;){var n=e.firstElementChild;if(e&&n&&"A"!==n.tagName)throw new Error(o+"has child elements are not A elements.");e=e.nextElementSibling}this.isMenubar=!0,this.domNode=t,this.menubarItems=[],this.firstChars=[],this.firstItem=null,this.lastItem=null,this.hasFocus=!1,this.hasHover=!1};o.prototype.init=function(){var e,t,o;for(elem=this.domNode.firstElementChild;elem;){var s=elem.firstElementChild;elem&&s&&"A"===s.tagName&&((e=new n(s,this)).init(),this.menubarItems.push(e),t=s.textContent.trim(),this.firstChars.push(t.substring(0,1).toLowerCase())),elem=elem.nextElementSibling}(o=this.menubarItems.length)>0&&(this.firstItem=this.menubarItems[0],this.lastItem=this.menubarItems[o-1]),this.firstItem.domNode.tabIndex=0},o.prototype.setFocusToItem=function(e){for(var t=!1,o=0;o<this.menubarItems.length;o++){var n=this.menubarItems[o];0==n.domNode.tabIndex&&(t="true"===n.domNode.getAttribute("aria-expanded")),n.domNode.tabIndex=-1,n.popupMenu&&n.popupMenu.close()}e.domNode.focus(),e.domNode.tabIndex=0,t&&e.popupMenu&&e.popupMenu.open()},o.prototype.setFocusToFirstItem=function(e){this.setFocusToItem(this.firstItem)},o.prototype.setFocusToLastItem=function(e){this.setFocusToItem(this.lastItem)},o.prototype.setFocusToPreviousItem=function(e){var t;e===this.firstItem?newItem=this.lastItem:(t=this.menubarItems.indexOf(e),newItem=this.menubarItems[t-1]),this.setFocusToItem(newItem)},o.prototype.setFocusToNextItem=function(e){var t;e===this.lastItem?newItem=this.firstItem:(t=this.menubarItems.indexOf(e),newItem=this.menubarItems[t+1]),this.setFocusToItem(newItem)},o.prototype.setFocusByFirstCharacter=function(e,t){var o,n;t=t.toLowerCase(),e.domNode.getAttribute("aria-expanded");(o=this.menubarItems.indexOf(e)+1)===this.menubarItems.length&&(o=0),-1===(n=this.getIndexFirstChars(o,t))&&(n=this.getIndexFirstChars(0,t)),n>-1&&this.setFocusToItem(this.menubarItems[n])},o.prototype.getIndexFirstChars=function(e,t){for(var o=e;o<this.firstChars.length;o++)if(t===this.firstChars[o])return o;return-1};var n=function(e,t){this.menu=t,this.domNode=e,this.popupMenu=!1,this.hasFocus=!1,this.hasHover=!1,this.isMenubarItem=!0,this.keyCode=Object.freeze({TAB:9,RETURN:13,ESC:27,SPACE:32,PAGEUP:33,PAGEDOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40})};n.prototype.init=function(){this.domNode.tabIndex=-1,this.domNode.addEventListener("keydown",this.handleKeydown.bind(this)),this.domNode.addEventListener("focus",this.handleFocus.bind(this)),this.domNode.addEventListener("blur",this.handleBlur.bind(this));var e=this.domNode.nextElementSibling;e&&"UL"===e.tagName&&(this.popupMenu=new s(e,this),this.popupMenu.init())},n.prototype.handleKeydown=function(e){e.currentTarget;var t,o=e.key,n=!1;switch(e.keyCode){case this.keyCode.SPACE:case this.keyCode.RETURN:case this.keyCode.DOWN:this.popupMenu&&(this.popupMenu.open(),this.popupMenu.setFocusToFirstItem(),n=!0);break;case this.keyCode.LEFT:this.menu.setFocusToPreviousItem(this),n=!0;break;case this.keyCode.RIGHT:this.menu.setFocusToNextItem(this),n=!0;break;case this.keyCode.UP:this.popupMenu&&(this.popupMenu.open(),this.popupMenu.setFocusToLastItem(),n=!0);break;case this.keyCode.HOME:case this.keyCode.PAGEUP:this.menu.setFocusToFirstItem(),n=!0;break;case this.keyCode.END:case this.keyCode.PAGEDOWN:this.menu.setFocusToLastItem(),n=!0;break;case this.keyCode.TAB:this.popupMenu.close(!0);break;default:1===(t=o).length&&t.match(/\S/)&&(this.menu.setFocusByFirstCharacter(this,o),n=!0)}n&&(e.stopPropagation(),e.preventDefault())},n.prototype.setExpanded=function(e){e?this.domNode.setAttribute("aria-expanded","true"):this.domNode.setAttribute("aria-expanded","false")},n.prototype.handleFocus=function(e){this.menu.hasFocus=!0},n.prototype.handleBlur=function(e){this.menu.hasFocus=!1};var s=function(e,t){var o="PopupMenu constructor argument domNode ";if(!e instanceof Element)throw new TypeError(o+"is not a DOM Element.");if(0===e.childElementCount)throw new Error(o+"has no element children.");for(var n=e.firstElementChild;n;){var s=n.firstElementChild;if(s&&"A"===s)throw new Error(o+"has descendant elements that are not A elements.");n=n.nextElementSibling}this.isMenubar=!1,this.domNode=e,this.controller=t,this.menuitems=[],this.firstChars=[],this.firstItem=null,this.lastItem=null,this.hasFocus=!1,this.hasHover=!1};s.prototype.init=function(){var e,t,o,n,s;for(e=this.domNode.firstElementChild;e;)(t=e.firstElementChild)&&"A"===t.tagName&&((o=new i(t,this)).init(),this.menuitems.push(o),n=t.textContent.trim(),this.firstChars.push(n.substring(0,1).toLowerCase())),e=e.nextElementSibling;(s=this.menuitems.length)>0&&(this.firstItem=this.menuitems[0],this.lastItem=this.menuitems[s-1])},s.prototype.setFocusToController=function(e,t){function o(e,t){for(;e;){if(e.isMenubarItem)return e.domNode.focus(),e;t&&e.menu.close(!0),e.hasFocus=!1,e=e.menu.controller}return!1}if("string"!=typeof e&&(e=""),""!==e){if(this.controller.isMenubarItem)"previous"===e?this.controller.menu.setFocusToPreviousItem(this.controller,t):"next"===e&&this.controller.menu.setFocusToNextItem(this.controller,t);else if(this.controller.domNode.focus(),this.close(),"next"===e){var n=o(this.controller,!1);n&&n.menu.setFocusToNextItem(n,t)}}else o(this.controller,!0)},s.prototype.setFocusToFirstItem=function(){this.firstItem.domNode.focus()},s.prototype.setFocusToLastItem=function(){this.lastItem.domNode.focus()},s.prototype.setFocusToPreviousItem=function(e){var t;e===this.firstItem?this.lastItem.domNode.focus():(t=this.menuitems.indexOf(e),this.menuitems[t-1].domNode.focus())},s.prototype.setFocusToNextItem=function(e){var t;e===this.lastItem?this.firstItem.domNode.focus():(t=this.menuitems.indexOf(e),this.menuitems[t+1].domNode.focus())},s.prototype.setFocusByFirstCharacter=function(e,t){var o,n;t=t.toLowerCase();(o=this.menuitems.indexOf(e)+1)===this.menuitems.length&&(o=0),-1===(n=this.getIndexFirstChars(o,t))&&(n=this.getIndexFirstChars(0,t)),n>-1&&this.menuitems[n].domNode.focus()},s.prototype.getIndexFirstChars=function(e,t){for(var o=e;o<this.firstChars.length;o++)if(t===this.firstChars[o])return o;return-1},s.prototype.open=function(){this.controller.domNode.getBoundingClientRect();this.controller.setExpanded(!0)},s.prototype.close=function(e){for(var t=this.controller.hasHover,o=this.hasFocus,n=0;n<this.menuitems.length;n++){var s=this.menuitems[n];s.popupMenu&&(o|=s.popupMenu.hasFocus)}this.controller.isMenubarItem||(t=!1),!e&&(o||this.hasHover||t)||this.controller.setExpanded(!1)};var i=function(e,t){"object"!=typeof popupObj&&(popupObj=!1),this.domNode=e,this.menu=t,this.popupMenu=!1,this.isMenubarItem=!1,this.keyCode=Object.freeze({TAB:9,RETURN:13,ESC:27,SPACE:32,PAGEUP:33,PAGEDOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40})};i.prototype.init=function(){this.domNode.tabIndex=-1,this.domNode.addEventListener("keydown",this.handleKeydown.bind(this)),this.domNode.addEventListener("click",this.handleClick.bind(this)),this.domNode.addEventListener("focus",this.handleFocus.bind(this)),this.domNode.addEventListener("blur",this.handleBlur.bind(this));var e=this.domNode.nextElementSibling;e&&"UL"===e.tagName&&(this.popupMenu=new s(e,this),this.popupMenu.init())},i.prototype.isExpanded=function(){return"true"===this.domNode.getAttribute("aria-expanded")},i.prototype.handleKeydown=function(e){var t,o,n=e.currentTarget,s=e.key,i=!1;switch(e.keyCode){case this.keyCode.SPACE:case this.keyCode.RETURN:if(this.popupMenu)this.popupMenu.open(),this.popupMenu.setFocusToFirstItem();else{try{t=new MouseEvent("click",{view:window,bubbles:!0,cancelable:!0})}catch(e){document.createEvent&&(t=document.createEvent("MouseEvents")).initEvent("click",!0,!0)}n.dispatchEvent(t)}i=!0;break;case this.keyCode.UP:this.menu.setFocusToPreviousItem(this),i=!0;break;case this.keyCode.DOWN:this.menu.setFocusToNextItem(this),i=!0;break;case this.keyCode.LEFT:this.menu.setFocusToController("previous",!0),this.menu.close(!0),i=!0;break;case this.keyCode.RIGHT:this.popupMenu?(this.popupMenu.open(),this.popupMenu.setFocusToFirstItem()):(this.menu.setFocusToController("next",!0),this.menu.close(!0)),i=!0;break;case this.keyCode.HOME:case this.keyCode.PAGEUP:this.menu.setFocusToFirstItem(),i=!0;break;case this.keyCode.END:case this.keyCode.PAGEDOWN:this.menu.setFocusToLastItem(),i=!0;break;case this.keyCode.ESC:this.menu.setFocusToController(),this.menu.close(!0),i=!0;break;case this.keyCode.TAB:this.menu.setFocusToController();break;default:1===(o=s).length&&o.match(/\S/)&&(this.menu.setFocusByFirstCharacter(this,s),i=!0)}i&&(e.stopPropagation(),e.preventDefault())},i.prototype.setExpanded=function(e){e?this.domNode.setAttribute("aria-expanded","true"):this.domNode.setAttribute("aria-expanded","false")},i.prototype.handleClick=function(e){this.popupMenu||(this.menu.setFocusToController(),this.menu.close(!0))},i.prototype.handleFocus=function(e){this.menu.hasFocus=!0},i.prototype.handleBlur=function(e){this.menu.hasFocus=!1,setTimeout(this.menu.close.bind(this.menu,!1),300)};var r=function(e){this.domNode=e,this.keyCode=Object.freeze({RETURN:13,SPACE:32})};r.prototype.init=function(){this.controlledNode=!1;var e=this.domNode.getAttribute("aria-controls");e&&(this.controlledNode=document.getElementById(e)),this.domNode.addEventListener("keydown",this.handleKeydown.bind(this)),this.domNode.addEventListener("focus",this.handleFocus.bind(this)),this.domNode.addEventListener("blur",this.handleBlur.bind(this))},r.prototype.showContent=function(){this.controlledNode&&(this.controlledNode.style.display="block")},r.prototype.hideContent=function(){this.controlledNode&&(this.controlledNode.style.display="none")},r.prototype.toggleExpand=function(){"true"===this.domNode.getAttribute("aria-expanded")?(this.domNode.setAttribute("aria-expanded","false"),this.hideContent()):(this.domNode.setAttribute("aria-expanded","true"),this.showContent())},r.prototype.handleKeydown=function(e){switch(e.keyCode){case this.keyCode.RETURN:case this.keyCode.SPACE:this.toggleExpand(),e.stopPropagation(),e.preventDefault()}},r.prototype.handleFocus=function(e){this.domNode.classList.add("focus")},r.prototype.handleBlur=function(e){this.domNode.classList.remove("focus")},window.addEventListener("load",(function(e){for(var t=document.querySelectorAll('button[aria-expanded][aria-controls],[role="button"][aria-expanded][aria-controls]'),o=0;o<t.length;o++){new r(t[o]).init()}}),!1),t.exports=o},645:function(e,t){"use strict";const o=function(e,t,o,n){return(e/=n/2)<1?o/2*e*e+t:-o/2*(--e*(e-2)-1)+t};t.Z={autoscroll:function(e,t=0,n=1e3){var s=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop,i=e.getBoundingClientRect().top-t,r=0,a=function(){var e=o(r+=20,s,i,n);window.scrollTo(0,e),r<n&&setTimeout(a,20)};a()},easeInOutQuad:o}},994:function(e,t,o){"use strict";const n=function(){document.body.classList.toggle("mobile-menu-open"),document.body.classList.remove("menu-open"),document.body.classList.remove("search-open"),document.body.classList.remove("lang-open"),document.body.classList.remove("-from-footer")};try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){!0}}))}catch(e){}document.createElement("div");var s=function(){document.querySelector(".mobileMenuButton").addEventListener("click",(function(){if(document.body.classList.contains("lang-open")&&document.body.classList.contains("-from-footer"))return document.body.classList.remove(),document.body.classList.remove("mobile-menu-open"),document.body.classList.remove("menu-open"),document.body.classList.remove("search-open"),document.body.classList.remove("lang-open"),void document.body.classList.remove("-from-footer");n()}),{passive:!0}),document.querySelector(".mobileMenuButton").addEventListener("keypress",(function(e){13==(e.which||e.keyCode||0)&&n()}),{passive:!0})};var i=function(e){e.length>0&&[].forEach.call(e,(function(e){let t="";if(e.querySelector("picture")){let o=0==document.createElement("canvas").toDataURL("image/webp").indexOf("data:image/webp");for(let n=0;n<e.querySelectorAll("picture source").length;n++){let s=e.querySelectorAll("picture source")[n];if((o||"image/webp"!=s.getAttribute("type"))&&window.matchMedia(s.getAttribute("media")).matches){const e=s.getAttribute("data-srcset")?s.getAttribute("data-srcset").split(","):s.getAttribute("srcset").split(",");t=1===window.devicePixelRatio&&e.length>1?e.reverse()[window.devicePixelRatio-1].slice(0,-3):-1!==e[0].indexOf(" ")?e[0].slice(0,-3):e[0];break}}}else t=e.querySelector("img").getAttribute("data-src")||e.querySelector("img").getAttribute("src");e.style.backgroundImage="url("+t+")"}))},r=o(645);var a=function(){document.querySelectorAll('form input[type="number"]').length>0&&document.querySelector('form input[type="number"]').addEventListener("mousewheel",(function(e){(e.target||e.srcElement).blur()}),{passive:!0})},u=function(e){[].forEach.call(e,(function(e){let t=document.createElement("div");t.classList.add("table-responsive"),e.parentNode.insertBefore(t,e),e.classList.add("table"),t.appendChild(e)}))};var c=function(e=0){[].forEach.call(document.querySelectorAll('#site a[href*="#"]'),(function(t){t.addEventListener("click",(function(t){if(location.pathname.replace(/^\//,"")===this.pathname.replace(/^\//,"")&&location.hostname===this.hostname&&""!==this.hash){let o=document.querySelector((t.target||t.srcElement).getAttribute("href"))||document.getElementsByName(this.hash.slice(1));if(void 0!==o){if(document.getElementById("header").classList.contains("menuOpen")){let e=document.createEvent("Events");e.initEvent("click",!0,!1),document.querySelector(".mobileMenuButton").dispatchEvent(e)}r.Z.autoscroll(o,e,1e3),window.location.hash=o.getAttribute("id")}}}),{passive:!1})}))},d=function(e=0){[].forEach.call(document.querySelectorAll('#skiplinks a[href*="#"]'),(function(t){t.addEventListener("click",(function(t){if(location.pathname.replace(/^\//,"")===this.pathname.replace(/^\//,"")&&location.hostname===this.hostname){let o=document.querySelector((t.target||t.srcElement).getAttribute("href"))||document.getElementsByName(this.hash.slice(1));if(void 0!==o&&o.length)r.Z.autoscroll(o,e,1e3),window.location.hash=o.getAttribute("id");else if("#search"==(t.target||t.srcElement).getAttribute("href")){t.preventDefault(),t.stopPropagation();let e=document.createEvent("MouseEvents");e.initEvent("click",!0,!0),document.querySelector("#header .layout-20").dispatchEvent(e)}}}),{passive:!1})}))},l=o(388),m=o.n(l);var h=function(){const e=Array.from(document.querySelectorAll("#main-nav > li.hasSub > a")),t="(max-width: 1199px)",o=function(t){n(),e.map((e=>e.setAttribute("aria-expanded",!1))),document.body.classList.add("menu-open"),t.setAttribute("aria-expanded",!0);const o=t.nextElementSibling.children[0],s=t.nextElementSibling.children[0].children[0];s.classList.contains("aligned-item")&&(o.style.height=s.getBoundingClientRect().height+"px")};if(e.length>0&&e.map((e=>{e.addEventListener("mouseenter",(()=>{window.matchMedia(t).matches||"true"!==e.getAttribute("aria-expanded")&&o(e)})),e.addEventListener("click",(s=>{window.matchMedia(t).matches&&(s.preventDefault(),"true"!==e.getAttribute("aria-expanded")?(n(),o(e)):n())}))})),document.querySelector("#menu-19")){const e=Array.from(document.querySelectorAll("#menu-19 .level-1 > li:nth-child(1), #menu-19 .level-1 > li:nth-child(2)")),t=document.createElement("li");t.className="column-wrapper",e.map((e=>{const o=document.createElement("div");Array.from(e.attributes).map((e=>{o.setAttribute(e.name,e.value)})),o.innerHTML=e.innerHTML,t.appendChild(o),e.parentNode.removeChild(e)})),document.querySelector("#menu-19 .level-1").prepend(t);const o=Array.from(document.querySelectorAll("#menu-19 .level-1 > li:nth-last-child(3), #menu-19 .level-1 > li:nth-last-child(2), #menu-19 .level-1 > li:nth-last-child(1)")),n=document.createElement("li");n.className="column-wrapper",o.map((e=>{const t=document.createElement("div");Array.from(e.attributes).map((e=>{t.setAttribute(e.name,e.value)})),t.innerHTML=e.innerHTML,n.appendChild(t),e.parentNode.removeChild(e)})),document.querySelector("#menu-19 .level-1").appendChild(n)}function n(){document.body.classList.remove("menu-open"),document.body.classList.remove("lang-open"),document.body.classList.remove("search-open"),document.body.classList.remove("-from-footer"),e.map((e=>e.setAttribute("aria-expanded",!1)))}const s=function(){n(),document.body.classList.add("lang-open","menu-open");const e=document.querySelector("#main-nav > li:first-child > a");document.querySelector("#header .right-box .language-wrap").style.left=e.getBoundingClientRect().left+"px"};document.querySelector("#header .right-box .language-btn").addEventListener("mouseenter",(()=>{n(),s()})),Array.from(document.querySelectorAll("#footer .language-btn, .mobile-nav-footer .language-btn")).map((e=>e.addEventListener("click",(()=>{s(),document.body.classList.add("-from-footer")})))),document.querySelector(".search-toggler").addEventListener("mouseenter",(()=>{n(),document.body.classList.add("search-open","menu-open"),document.querySelector("#header-search-field").focus()})),document.querySelector("#hover-guard").addEventListener("mouseenter",(()=>{n()})),document.querySelector("#click-guard").addEventListener("click",(()=>{n()}))},p=function(e){new(m())(e).init()};let f=window.matchMedia("(min-width: 992px)").matches?145:110,g=document.getElementById("header");(function(){function e(){function e(e){const t=function(e){const t=document.createElement("link");return t.rel="prerender",t.href=e,t}(e);document.head.appendChild(t)}function t(e){e.removeEventListener("mouseenter",n,!1)}function n(o){const n=o.target,{href:s}=n,i=new URL(s),r=i.href;!function(e){return!!document.head.querySelector('link[rel="prerender"][href="'.concat(e,'"]'))}(r)&&function(e){const{host:t}=window.location;return e.host===t}(i)?(e(r),t(n)):t(n)}document.getElementById("toTop")&&o.e(47).then(o.bind(o,47)).then((({default:e})=>{e.init(document.getElementById("toTop"))})),/^((?!chrome|android).)*safari/i.test(navigator.userAgent)&&document.body.classList.add("-is-safari"),i(document.querySelectorAll(".imgFullCover")),h(g),p(document.getElementById("main-nav")),s(),c(f),d(f),a(),document.querySelectorAll(".tx-solr-q").length>0&&o.e(371).then(o.t.bind(o,371,23)).then((({default:e})=>{let t=document.querySelector(".tx-solr-q"),o=t.closest("form");const n=new e(document.querySelector(".tx-solr-q").closest("form").querySelector(".tx-solr-suggest"),{serviceUrl:o.getAttribute("data-suggest"),dataType:"jsonp",paramName:"tx_solr[queryString]",groupBy:"category",maxHeight:1e3,appendTo:document.querySelector(".tx-solr-q").parentNode,autoSelectFirst:!1,triggerSelectOnValidInput:!1,width:.66*t.clientWidth,onSelect:function(e){e.data.link?location.href=e.data.link:o.submit()},transformResult:function(e){if(!(e=JSON.parse(e)).suggestions)return{suggestions:[]};let t,n={suggestions:Object.entries(e.suggestions).map((function(e,o){return t||(t=e[0]),{value:e[0],data:{category:"suggestion",count:e[1]}}}))};return Object.values(e.documents).map((function(e,s){let i=e,r=o.getAttribute("data-suggest-header")?o.getAttribute("data-suggest-header"):"Top results";i.category=r,i.group&&(i.category=o.getAttribute("data-suggest-header-"+i.group)?o.getAttribute("data-suggest-header-"+i.group):i.group),n.suggestions.push({value:t,data:i})})),n},beforeRender:function(e){e.querySelector(".autocomplete-group").remove(),e.classList.add("tx-solr-autosuggest"),t.parentNode.classList.add("autocomplete-active"),t.parentNode.style.display="block"},formatResult:function(e,t){if(!t)return e.value;let o="("+t.trim()+")";if("suggestion"===e.data.category)return e.value.replace(new RegExp(o,"gi"),"<strong>$1</strong>").replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/&lt;(\/?strong)&gt;/g,"<$1>");var n=e.data.title.replace(new RegExp(o,"gi"),"<em>$1</em>").replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/&lt;(\/?em)&gt;/g,"<$1>");return'<div class="'+e.data.type+'">'+(e.data.previewImage?"<figure "+(e.data.hasVideo?'class="hasVideo"':"")+'><img src="'+e.data.previewImage+'" /></figure>':"")+'<a href="'+e.data.link+'" class="internal-link">'+n+"</a></div>"}});t.addEventListener("blur",(function(e){t.parentNode.classList.remove("autocomplete-active");e.target||e.srcElement;setTimeout((function(){console.log(n)}),200)}))})),document.querySelectorAll(".lightbox").length>0&&o.e(321).then(o.t.bind(o,321,23)).then((({default:e})=>{new e({selector:".lightbox",touchNavigation:!0,loop:!0,autoplayVideos:!0})})),u(document.querySelectorAll("table.contenttable, .ce-table"));document.querySelectorAll("a").forEach((function(e){e.addEventListener("mouseenter",n,!1)}))}"loading"!==document.readyState?e():document.addEventListener("DOMContentLoaded",(function(){e()})),window.addEventListener("resize",(function(){i(document.querySelectorAll(".imgFullCover"))}),{passive:!0}),window.addEventListener("load",(function(){window.location.hash.length>0&&r.Z.autoscroll(document.querySelector(window.location.hash),f)}),{passive:!0}),Array.from(document.querySelectorAll(".tab-container")).map((e=>{document.querySelector("#"+e.id+" .tab-box"),document.querySelector("#"+e.id+" .show-tab")})),Array.from(document.querySelectorAll(".tab-item-btn")).map((e=>{e.addEventListener("click",(t=>{const o=document.querySelector(e.getAttribute("data-target")),n=Array.from(document.querySelectorAll(e.getAttribute("data-group")+" .tab-item")),s=Array.from(document.querySelectorAll(e.getAttribute("data-group")+" .tab-item-btn"));n.map((e=>e.classList.remove("show-tab"))),o.classList.add("show-tab"),s.map((e=>e.classList.remove("active"))),e.classList.add("active");const i=e.getAttribute("data-container-uid"),r=e.getAttribute("data-index");Array.from(document.querySelectorAll("#tab-container-"+i+" .tab-item-image")).map((e=>e.classList.remove("active")));const a=document.querySelector("#tab-item-image-"+r);a&&a.classList.add("active")}))})),Array.from(document.querySelectorAll(".tab-container-v2")).map((e=>{const t=Array.from(document.querySelectorAll("#"+e.id+" button[data-target]"));t.map((o=>{o.addEventListener("click",(n=>{n.preventDefault();const s=o.getAttribute("data-target"),i=document.querySelector("#"+e.id+' [data-content="'+s+'"]');Array.from(document.querySelectorAll("#"+e.id+" [data-content]")).map((e=>e.style.display="none")),i.style.display="block",t.map((e=>e.classList.remove("active"))),n.target.classList.add("active")}))}))})),Array.from(document.querySelectorAll(".expander-box-button")).map((e=>{e.addEventListener("click",(t=>{t.preventDefault();const o=document.querySelector(e.getAttribute("data-target"));if(o.parentElement.classList.contains("expanded"))o.parentElement.classList.remove("expanded"),o.style.height="255px";else{o.parentElement.classList.add("expanded");const t=document.querySelector(e.getAttribute("data-target")+" .inner").clientHeight;o.style.height=t+"px"}e.blur()}))})),Array.from(document.querySelectorAll(".toggle-box > button")).map((e=>{e.addEventListener("click",(()=>{e.parentNode.classList.toggle("open")}))})),Array.from(document.querySelectorAll(".download-toggle")).map((e=>{e.addEventListener("click",(()=>{e.parentNode.classList.toggle("open")}))})),window.addEventListener("scroll",(function(e){(window.pageYOffset||document.documentElement.scrollTop)>600?document.body.classList.add("show-up"):document.body.classList.remove("show-up")}))})()}},function(e){e.O(0,[143],(function(){[47,371,321].map(e.E)}),5);var t;t=994,e(e.s=t)}]);